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
@@ -0,0 +1,1144 @@
1
+ windows_targets::link!("api-ms-win-core-state-helpers-l1-1-0.dll" "system" fn GetRegistryValueWithFallbackW(hkeyprimary : HKEY, pwszprimarysubkey : windows_sys::core::PCWSTR, hkeyfallback : HKEY, pwszfallbacksubkey : windows_sys::core::PCWSTR, pwszvalue : windows_sys::core::PCWSTR, dwflags : u32, pdwtype : *mut u32, pvdata : *mut core::ffi::c_void, cbdatain : u32, pcbdataout : *mut u32) -> super::super::Foundation:: WIN32_ERROR);
2
+ windows_targets::link!("advapi32.dll" "system" fn RegCloseKey(hkey : HKEY) -> super::super::Foundation:: WIN32_ERROR);
3
+ windows_targets::link!("advapi32.dll" "system" fn RegConnectRegistryA(lpmachinename : windows_sys::core::PCSTR, hkey : HKEY, phkresult : *mut HKEY) -> super::super::Foundation:: WIN32_ERROR);
4
+ windows_targets::link!("advapi32.dll" "system" fn RegConnectRegistryExA(lpmachinename : windows_sys::core::PCSTR, hkey : HKEY, flags : u32, phkresult : *mut HKEY) -> i32);
5
+ windows_targets::link!("advapi32.dll" "system" fn RegConnectRegistryExW(lpmachinename : windows_sys::core::PCWSTR, hkey : HKEY, flags : u32, phkresult : *mut HKEY) -> i32);
6
+ windows_targets::link!("advapi32.dll" "system" fn RegConnectRegistryW(lpmachinename : windows_sys::core::PCWSTR, hkey : HKEY, phkresult : *mut HKEY) -> super::super::Foundation:: WIN32_ERROR);
7
+ windows_targets::link!("advapi32.dll" "system" fn RegCopyTreeA(hkeysrc : HKEY, lpsubkey : windows_sys::core::PCSTR, hkeydest : HKEY) -> super::super::Foundation:: WIN32_ERROR);
8
+ windows_targets::link!("advapi32.dll" "system" fn RegCopyTreeW(hkeysrc : HKEY, lpsubkey : windows_sys::core::PCWSTR, hkeydest : HKEY) -> super::super::Foundation:: WIN32_ERROR);
9
+ windows_targets::link!("advapi32.dll" "system" fn RegCreateKeyA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, phkresult : *mut HKEY) -> super::super::Foundation:: WIN32_ERROR);
10
+ #[cfg(feature = "Win32_Security")]
11
+ windows_targets::link!("advapi32.dll" "system" fn RegCreateKeyExA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, reserved : u32, lpclass : windows_sys::core::PCSTR, dwoptions : REG_OPEN_CREATE_OPTIONS, samdesired : REG_SAM_FLAGS, lpsecurityattributes : *const super::super::Security:: SECURITY_ATTRIBUTES, phkresult : *mut HKEY, lpdwdisposition : *mut REG_CREATE_KEY_DISPOSITION) -> super::super::Foundation:: WIN32_ERROR);
12
+ #[cfg(feature = "Win32_Security")]
13
+ windows_targets::link!("advapi32.dll" "system" fn RegCreateKeyExW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, reserved : u32, lpclass : windows_sys::core::PCWSTR, dwoptions : REG_OPEN_CREATE_OPTIONS, samdesired : REG_SAM_FLAGS, lpsecurityattributes : *const super::super::Security:: SECURITY_ATTRIBUTES, phkresult : *mut HKEY, lpdwdisposition : *mut REG_CREATE_KEY_DISPOSITION) -> super::super::Foundation:: WIN32_ERROR);
14
+ #[cfg(feature = "Win32_Security")]
15
+ windows_targets::link!("advapi32.dll" "system" fn RegCreateKeyTransactedA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, reserved : u32, lpclass : windows_sys::core::PCSTR, dwoptions : REG_OPEN_CREATE_OPTIONS, samdesired : REG_SAM_FLAGS, lpsecurityattributes : *const super::super::Security:: SECURITY_ATTRIBUTES, phkresult : *mut HKEY, lpdwdisposition : *mut REG_CREATE_KEY_DISPOSITION, htransaction : super::super::Foundation:: HANDLE, pextendedparemeter : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR);
16
+ #[cfg(feature = "Win32_Security")]
17
+ windows_targets::link!("advapi32.dll" "system" fn RegCreateKeyTransactedW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, reserved : u32, lpclass : windows_sys::core::PCWSTR, dwoptions : REG_OPEN_CREATE_OPTIONS, samdesired : REG_SAM_FLAGS, lpsecurityattributes : *const super::super::Security:: SECURITY_ATTRIBUTES, phkresult : *mut HKEY, lpdwdisposition : *mut REG_CREATE_KEY_DISPOSITION, htransaction : super::super::Foundation:: HANDLE, pextendedparemeter : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR);
18
+ windows_targets::link!("advapi32.dll" "system" fn RegCreateKeyW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, phkresult : *mut HKEY) -> super::super::Foundation:: WIN32_ERROR);
19
+ windows_targets::link!("advapi32.dll" "system" fn RegDeleteKeyA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR) -> super::super::Foundation:: WIN32_ERROR);
20
+ windows_targets::link!("advapi32.dll" "system" fn RegDeleteKeyExA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, samdesired : u32, reserved : u32) -> super::super::Foundation:: WIN32_ERROR);
21
+ windows_targets::link!("advapi32.dll" "system" fn RegDeleteKeyExW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, samdesired : u32, reserved : u32) -> super::super::Foundation:: WIN32_ERROR);
22
+ windows_targets::link!("advapi32.dll" "system" fn RegDeleteKeyTransactedA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, samdesired : u32, reserved : u32, htransaction : super::super::Foundation:: HANDLE, pextendedparameter : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR);
23
+ windows_targets::link!("advapi32.dll" "system" fn RegDeleteKeyTransactedW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, samdesired : u32, reserved : u32, htransaction : super::super::Foundation:: HANDLE, pextendedparameter : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR);
24
+ windows_targets::link!("advapi32.dll" "system" fn RegDeleteKeyValueA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, lpvaluename : windows_sys::core::PCSTR) -> super::super::Foundation:: WIN32_ERROR);
25
+ windows_targets::link!("advapi32.dll" "system" fn RegDeleteKeyValueW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, lpvaluename : windows_sys::core::PCWSTR) -> super::super::Foundation:: WIN32_ERROR);
26
+ windows_targets::link!("advapi32.dll" "system" fn RegDeleteKeyW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR) -> super::super::Foundation:: WIN32_ERROR);
27
+ windows_targets::link!("advapi32.dll" "system" fn RegDeleteTreeA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR) -> super::super::Foundation:: WIN32_ERROR);
28
+ windows_targets::link!("advapi32.dll" "system" fn RegDeleteTreeW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR) -> super::super::Foundation:: WIN32_ERROR);
29
+ windows_targets::link!("advapi32.dll" "system" fn RegDeleteValueA(hkey : HKEY, lpvaluename : windows_sys::core::PCSTR) -> super::super::Foundation:: WIN32_ERROR);
30
+ windows_targets::link!("advapi32.dll" "system" fn RegDeleteValueW(hkey : HKEY, lpvaluename : windows_sys::core::PCWSTR) -> super::super::Foundation:: WIN32_ERROR);
31
+ windows_targets::link!("advapi32.dll" "system" fn RegDisablePredefinedCache() -> super::super::Foundation:: WIN32_ERROR);
32
+ windows_targets::link!("advapi32.dll" "system" fn RegDisablePredefinedCacheEx() -> super::super::Foundation:: WIN32_ERROR);
33
+ windows_targets::link!("advapi32.dll" "system" fn RegDisableReflectionKey(hbase : HKEY) -> super::super::Foundation:: WIN32_ERROR);
34
+ windows_targets::link!("advapi32.dll" "system" fn RegEnableReflectionKey(hbase : HKEY) -> super::super::Foundation:: WIN32_ERROR);
35
+ windows_targets::link!("advapi32.dll" "system" fn RegEnumKeyA(hkey : HKEY, dwindex : u32, lpname : windows_sys::core::PSTR, cchname : u32) -> super::super::Foundation:: WIN32_ERROR);
36
+ windows_targets::link!("advapi32.dll" "system" fn RegEnumKeyExA(hkey : HKEY, dwindex : u32, lpname : windows_sys::core::PSTR, lpcchname : *mut u32, lpreserved : *const u32, lpclass : windows_sys::core::PSTR, lpcchclass : *mut u32, lpftlastwritetime : *mut super::super::Foundation:: FILETIME) -> super::super::Foundation:: WIN32_ERROR);
37
+ windows_targets::link!("advapi32.dll" "system" fn RegEnumKeyExW(hkey : HKEY, dwindex : u32, lpname : windows_sys::core::PWSTR, lpcchname : *mut u32, lpreserved : *const u32, lpclass : windows_sys::core::PWSTR, lpcchclass : *mut u32, lpftlastwritetime : *mut super::super::Foundation:: FILETIME) -> super::super::Foundation:: WIN32_ERROR);
38
+ windows_targets::link!("advapi32.dll" "system" fn RegEnumKeyW(hkey : HKEY, dwindex : u32, lpname : windows_sys::core::PWSTR, cchname : u32) -> super::super::Foundation:: WIN32_ERROR);
39
+ windows_targets::link!("advapi32.dll" "system" fn RegEnumValueA(hkey : HKEY, dwindex : u32, lpvaluename : windows_sys::core::PSTR, lpcchvaluename : *mut u32, lpreserved : *const u32, lptype : *mut u32, lpdata : *mut u8, lpcbdata : *mut u32) -> super::super::Foundation:: WIN32_ERROR);
40
+ windows_targets::link!("advapi32.dll" "system" fn RegEnumValueW(hkey : HKEY, dwindex : u32, lpvaluename : windows_sys::core::PWSTR, lpcchvaluename : *mut u32, lpreserved : *const u32, lptype : *mut u32, lpdata : *mut u8, lpcbdata : *mut u32) -> super::super::Foundation:: WIN32_ERROR);
41
+ windows_targets::link!("advapi32.dll" "system" fn RegFlushKey(hkey : HKEY) -> super::super::Foundation:: WIN32_ERROR);
42
+ #[cfg(feature = "Win32_Security")]
43
+ windows_targets::link!("advapi32.dll" "system" fn RegGetKeySecurity(hkey : HKEY, securityinformation : super::super::Security:: OBJECT_SECURITY_INFORMATION, psecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR, lpcbsecuritydescriptor : *mut u32) -> super::super::Foundation:: WIN32_ERROR);
44
+ windows_targets::link!("advapi32.dll" "system" fn RegGetValueA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, lpvalue : windows_sys::core::PCSTR, dwflags : REG_ROUTINE_FLAGS, pdwtype : *mut REG_VALUE_TYPE, pvdata : *mut core::ffi::c_void, pcbdata : *mut u32) -> super::super::Foundation:: WIN32_ERROR);
45
+ windows_targets::link!("advapi32.dll" "system" fn RegGetValueW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, lpvalue : windows_sys::core::PCWSTR, dwflags : REG_ROUTINE_FLAGS, pdwtype : *mut REG_VALUE_TYPE, pvdata : *mut core::ffi::c_void, pcbdata : *mut u32) -> super::super::Foundation:: WIN32_ERROR);
46
+ windows_targets::link!("advapi32.dll" "system" fn RegLoadAppKeyA(lpfile : windows_sys::core::PCSTR, phkresult : *mut HKEY, samdesired : u32, dwoptions : u32, reserved : u32) -> super::super::Foundation:: WIN32_ERROR);
47
+ windows_targets::link!("advapi32.dll" "system" fn RegLoadAppKeyW(lpfile : windows_sys::core::PCWSTR, phkresult : *mut HKEY, samdesired : u32, dwoptions : u32, reserved : u32) -> super::super::Foundation:: WIN32_ERROR);
48
+ windows_targets::link!("advapi32.dll" "system" fn RegLoadKeyA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, lpfile : windows_sys::core::PCSTR) -> super::super::Foundation:: WIN32_ERROR);
49
+ windows_targets::link!("advapi32.dll" "system" fn RegLoadKeyW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, lpfile : windows_sys::core::PCWSTR) -> super::super::Foundation:: WIN32_ERROR);
50
+ windows_targets::link!("advapi32.dll" "system" fn RegLoadMUIStringA(hkey : HKEY, pszvalue : windows_sys::core::PCSTR, pszoutbuf : windows_sys::core::PSTR, cboutbuf : u32, pcbdata : *mut u32, flags : u32, pszdirectory : windows_sys::core::PCSTR) -> super::super::Foundation:: WIN32_ERROR);
51
+ windows_targets::link!("advapi32.dll" "system" fn RegLoadMUIStringW(hkey : HKEY, pszvalue : windows_sys::core::PCWSTR, pszoutbuf : windows_sys::core::PWSTR, cboutbuf : u32, pcbdata : *mut u32, flags : u32, pszdirectory : windows_sys::core::PCWSTR) -> super::super::Foundation:: WIN32_ERROR);
52
+ windows_targets::link!("advapi32.dll" "system" fn RegNotifyChangeKeyValue(hkey : HKEY, bwatchsubtree : windows_sys::core::BOOL, dwnotifyfilter : REG_NOTIFY_FILTER, hevent : super::super::Foundation:: HANDLE, fasynchronous : windows_sys::core::BOOL) -> super::super::Foundation:: WIN32_ERROR);
53
+ windows_targets::link!("advapi32.dll" "system" fn RegOpenCurrentUser(samdesired : u32, phkresult : *mut HKEY) -> super::super::Foundation:: WIN32_ERROR);
54
+ windows_targets::link!("advapi32.dll" "system" fn RegOpenKeyA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, phkresult : *mut HKEY) -> super::super::Foundation:: WIN32_ERROR);
55
+ windows_targets::link!("advapi32.dll" "system" fn RegOpenKeyExA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, uloptions : u32, samdesired : REG_SAM_FLAGS, phkresult : *mut HKEY) -> super::super::Foundation:: WIN32_ERROR);
56
+ windows_targets::link!("advapi32.dll" "system" fn RegOpenKeyExW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, uloptions : u32, samdesired : REG_SAM_FLAGS, phkresult : *mut HKEY) -> super::super::Foundation:: WIN32_ERROR);
57
+ windows_targets::link!("advapi32.dll" "system" fn RegOpenKeyTransactedA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, uloptions : u32, samdesired : REG_SAM_FLAGS, phkresult : *mut HKEY, htransaction : super::super::Foundation:: HANDLE, pextendedparemeter : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR);
58
+ windows_targets::link!("advapi32.dll" "system" fn RegOpenKeyTransactedW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, uloptions : u32, samdesired : REG_SAM_FLAGS, phkresult : *mut HKEY, htransaction : super::super::Foundation:: HANDLE, pextendedparemeter : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR);
59
+ windows_targets::link!("advapi32.dll" "system" fn RegOpenKeyW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, phkresult : *mut HKEY) -> super::super::Foundation:: WIN32_ERROR);
60
+ windows_targets::link!("advapi32.dll" "system" fn RegOpenUserClassesRoot(htoken : super::super::Foundation:: HANDLE, dwoptions : u32, samdesired : u32, phkresult : *mut HKEY) -> super::super::Foundation:: WIN32_ERROR);
61
+ windows_targets::link!("advapi32.dll" "system" fn RegOverridePredefKey(hkey : HKEY, hnewhkey : HKEY) -> super::super::Foundation:: WIN32_ERROR);
62
+ windows_targets::link!("advapi32.dll" "system" fn RegQueryInfoKeyA(hkey : HKEY, lpclass : windows_sys::core::PSTR, lpcchclass : *mut u32, lpreserved : *const u32, lpcsubkeys : *mut u32, lpcbmaxsubkeylen : *mut u32, lpcbmaxclasslen : *mut u32, lpcvalues : *mut u32, lpcbmaxvaluenamelen : *mut u32, lpcbmaxvaluelen : *mut u32, lpcbsecuritydescriptor : *mut u32, lpftlastwritetime : *mut super::super::Foundation:: FILETIME) -> super::super::Foundation:: WIN32_ERROR);
63
+ windows_targets::link!("advapi32.dll" "system" fn RegQueryInfoKeyW(hkey : HKEY, lpclass : windows_sys::core::PWSTR, lpcchclass : *mut u32, lpreserved : *const u32, lpcsubkeys : *mut u32, lpcbmaxsubkeylen : *mut u32, lpcbmaxclasslen : *mut u32, lpcvalues : *mut u32, lpcbmaxvaluenamelen : *mut u32, lpcbmaxvaluelen : *mut u32, lpcbsecuritydescriptor : *mut u32, lpftlastwritetime : *mut super::super::Foundation:: FILETIME) -> super::super::Foundation:: WIN32_ERROR);
64
+ windows_targets::link!("advapi32.dll" "system" fn RegQueryMultipleValuesA(hkey : HKEY, val_list : *mut VALENTA, num_vals : u32, lpvaluebuf : windows_sys::core::PSTR, ldwtotsize : *mut u32) -> super::super::Foundation:: WIN32_ERROR);
65
+ windows_targets::link!("advapi32.dll" "system" fn RegQueryMultipleValuesW(hkey : HKEY, val_list : *mut VALENTW, num_vals : u32, lpvaluebuf : windows_sys::core::PWSTR, ldwtotsize : *mut u32) -> super::super::Foundation:: WIN32_ERROR);
66
+ windows_targets::link!("advapi32.dll" "system" fn RegQueryReflectionKey(hbase : HKEY, bisreflectiondisabled : *mut windows_sys::core::BOOL) -> super::super::Foundation:: WIN32_ERROR);
67
+ windows_targets::link!("advapi32.dll" "system" fn RegQueryValueA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, lpdata : windows_sys::core::PSTR, lpcbdata : *mut i32) -> super::super::Foundation:: WIN32_ERROR);
68
+ windows_targets::link!("advapi32.dll" "system" fn RegQueryValueExA(hkey : HKEY, lpvaluename : windows_sys::core::PCSTR, lpreserved : *const u32, lptype : *mut REG_VALUE_TYPE, lpdata : *mut u8, lpcbdata : *mut u32) -> super::super::Foundation:: WIN32_ERROR);
69
+ windows_targets::link!("advapi32.dll" "system" fn RegQueryValueExW(hkey : HKEY, lpvaluename : windows_sys::core::PCWSTR, lpreserved : *const u32, lptype : *mut REG_VALUE_TYPE, lpdata : *mut u8, lpcbdata : *mut u32) -> super::super::Foundation:: WIN32_ERROR);
70
+ windows_targets::link!("advapi32.dll" "system" fn RegQueryValueW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, lpdata : windows_sys::core::PWSTR, lpcbdata : *mut i32) -> super::super::Foundation:: WIN32_ERROR);
71
+ windows_targets::link!("advapi32.dll" "system" fn RegRenameKey(hkey : HKEY, lpsubkeyname : windows_sys::core::PCWSTR, lpnewkeyname : windows_sys::core::PCWSTR) -> super::super::Foundation:: WIN32_ERROR);
72
+ windows_targets::link!("advapi32.dll" "system" fn RegReplaceKeyA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, lpnewfile : windows_sys::core::PCSTR, lpoldfile : windows_sys::core::PCSTR) -> super::super::Foundation:: WIN32_ERROR);
73
+ windows_targets::link!("advapi32.dll" "system" fn RegReplaceKeyW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, lpnewfile : windows_sys::core::PCWSTR, lpoldfile : windows_sys::core::PCWSTR) -> super::super::Foundation:: WIN32_ERROR);
74
+ windows_targets::link!("advapi32.dll" "system" fn RegRestoreKeyA(hkey : HKEY, lpfile : windows_sys::core::PCSTR, dwflags : u32) -> super::super::Foundation:: WIN32_ERROR);
75
+ windows_targets::link!("advapi32.dll" "system" fn RegRestoreKeyW(hkey : HKEY, lpfile : windows_sys::core::PCWSTR, dwflags : u32) -> super::super::Foundation:: WIN32_ERROR);
76
+ #[cfg(feature = "Win32_Security")]
77
+ windows_targets::link!("advapi32.dll" "system" fn RegSaveKeyA(hkey : HKEY, lpfile : windows_sys::core::PCSTR, lpsecurityattributes : *const super::super::Security:: SECURITY_ATTRIBUTES) -> super::super::Foundation:: WIN32_ERROR);
78
+ #[cfg(feature = "Win32_Security")]
79
+ windows_targets::link!("advapi32.dll" "system" fn RegSaveKeyExA(hkey : HKEY, lpfile : windows_sys::core::PCSTR, lpsecurityattributes : *const super::super::Security:: SECURITY_ATTRIBUTES, flags : REG_SAVE_FORMAT) -> super::super::Foundation:: WIN32_ERROR);
80
+ #[cfg(feature = "Win32_Security")]
81
+ windows_targets::link!("advapi32.dll" "system" fn RegSaveKeyExW(hkey : HKEY, lpfile : windows_sys::core::PCWSTR, lpsecurityattributes : *const super::super::Security:: SECURITY_ATTRIBUTES, flags : REG_SAVE_FORMAT) -> super::super::Foundation:: WIN32_ERROR);
82
+ #[cfg(feature = "Win32_Security")]
83
+ windows_targets::link!("advapi32.dll" "system" fn RegSaveKeyW(hkey : HKEY, lpfile : windows_sys::core::PCWSTR, lpsecurityattributes : *const super::super::Security:: SECURITY_ATTRIBUTES) -> super::super::Foundation:: WIN32_ERROR);
84
+ #[cfg(feature = "Win32_Security")]
85
+ windows_targets::link!("advapi32.dll" "system" fn RegSetKeySecurity(hkey : HKEY, securityinformation : super::super::Security:: OBJECT_SECURITY_INFORMATION, psecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR);
86
+ windows_targets::link!("advapi32.dll" "system" fn RegSetKeyValueA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, lpvaluename : windows_sys::core::PCSTR, dwtype : u32, lpdata : *const core::ffi::c_void, cbdata : u32) -> super::super::Foundation:: WIN32_ERROR);
87
+ windows_targets::link!("advapi32.dll" "system" fn RegSetKeyValueW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, lpvaluename : windows_sys::core::PCWSTR, dwtype : u32, lpdata : *const core::ffi::c_void, cbdata : u32) -> super::super::Foundation:: WIN32_ERROR);
88
+ windows_targets::link!("advapi32.dll" "system" fn RegSetValueA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR, dwtype : REG_VALUE_TYPE, lpdata : windows_sys::core::PCSTR, cbdata : u32) -> super::super::Foundation:: WIN32_ERROR);
89
+ windows_targets::link!("advapi32.dll" "system" fn RegSetValueExA(hkey : HKEY, lpvaluename : windows_sys::core::PCSTR, reserved : u32, dwtype : REG_VALUE_TYPE, lpdata : *const u8, cbdata : u32) -> super::super::Foundation:: WIN32_ERROR);
90
+ windows_targets::link!("advapi32.dll" "system" fn RegSetValueExW(hkey : HKEY, lpvaluename : windows_sys::core::PCWSTR, reserved : u32, dwtype : REG_VALUE_TYPE, lpdata : *const u8, cbdata : u32) -> super::super::Foundation:: WIN32_ERROR);
91
+ windows_targets::link!("advapi32.dll" "system" fn RegSetValueW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR, dwtype : REG_VALUE_TYPE, lpdata : windows_sys::core::PCWSTR, cbdata : u32) -> super::super::Foundation:: WIN32_ERROR);
92
+ windows_targets::link!("advapi32.dll" "system" fn RegUnLoadKeyA(hkey : HKEY, lpsubkey : windows_sys::core::PCSTR) -> super::super::Foundation:: WIN32_ERROR);
93
+ windows_targets::link!("advapi32.dll" "system" fn RegUnLoadKeyW(hkey : HKEY, lpsubkey : windows_sys::core::PCWSTR) -> super::super::Foundation:: WIN32_ERROR);
94
+ pub const AGP_FLAG_NO_1X_RATE: i32 = 1i32;
95
+ pub const AGP_FLAG_NO_2X_RATE: i32 = 2i32;
96
+ pub const AGP_FLAG_NO_4X_RATE: i32 = 4i32;
97
+ pub const AGP_FLAG_NO_8X_RATE: i32 = 8i32;
98
+ pub const AGP_FLAG_NO_FW_ENABLE: i32 = 512i32;
99
+ pub const AGP_FLAG_NO_SBA_ENABLE: i32 = 256i32;
100
+ pub const AGP_FLAG_REVERSE_INITIALIZATION: i32 = 128i32;
101
+ pub const AGP_FLAG_SPECIAL_RESERVE: i32 = 1015808i32;
102
+ pub const AGP_FLAG_SPECIAL_TARGET: i32 = 1048575i32;
103
+ pub const APMMENUSUSPEND_DISABLED: u32 = 0u32;
104
+ pub const APMMENUSUSPEND_ENABLED: u32 = 1u32;
105
+ pub const APMMENUSUSPEND_NOCHANGE: u32 = 128u32;
106
+ pub const APMMENUSUSPEND_UNDOCKED: u32 = 2u32;
107
+ pub const APMTIMEOUT_DISABLED: u32 = 0u32;
108
+ pub const BIF_RAWDEVICENEEDSDRIVER: u32 = 2u32;
109
+ pub const BIF_SHOWSIMILARDRIVERS: u32 = 1u32;
110
+ pub const CSCONFIGFLAG_BITS: u32 = 7u32;
111
+ pub const CSCONFIGFLAG_DISABLED: u32 = 1u32;
112
+ pub const CSCONFIGFLAG_DO_NOT_CREATE: u32 = 2u32;
113
+ pub const CSCONFIGFLAG_DO_NOT_START: u32 = 4u32;
114
+ pub const DMSTATEFLAG_APPLYTOALL: u32 = 1u32;
115
+ pub const DOSOPTF_ALWAYSUSE: i32 = 4i32;
116
+ pub const DOSOPTF_DEFAULT: i32 = 1i32;
117
+ pub const DOSOPTF_INDOSSTART: i32 = 64i32;
118
+ pub const DOSOPTF_MULTIPLE: i32 = 128i32;
119
+ pub const DOSOPTF_NEEDSETUP: i32 = 32i32;
120
+ pub const DOSOPTF_PROVIDESUMB: i32 = 16i32;
121
+ pub const DOSOPTF_SUPPORTED: i32 = 2i32;
122
+ pub const DOSOPTF_USESPMODE: i32 = 8i32;
123
+ pub const DOSOPTGF_DEFCLEAN: i32 = 1i32;
124
+ pub const DRIVERSIGN_BLOCKING: u32 = 2u32;
125
+ pub const DRIVERSIGN_NONE: u32 = 0u32;
126
+ pub const DRIVERSIGN_WARNING: u32 = 1u32;
127
+ #[repr(C)]
128
+ #[derive(Clone, Copy, Default)]
129
+ pub struct DSKTLSYSTEMTIME {
130
+ pub wYear: u16,
131
+ pub wMonth: u16,
132
+ pub wDayOfWeek: u16,
133
+ pub wDay: u16,
134
+ pub wHour: u16,
135
+ pub wMinute: u16,
136
+ pub wSecond: u16,
137
+ pub wMilliseconds: u16,
138
+ pub wResult: u16,
139
+ }
140
+ pub const DTRESULTFIX: u32 = 1u32;
141
+ pub const DTRESULTOK: u32 = 0u32;
142
+ pub const DTRESULTPART: u32 = 3u32;
143
+ pub const DTRESULTPROB: u32 = 2u32;
144
+ pub const EISAFLAG_NO_IO_MERGE: u32 = 1u32;
145
+ pub const EISAFLAG_SLOT_IO_FIRST: u32 = 2u32;
146
+ pub const EISA_NO_MAX_FUNCTION: u32 = 255u32;
147
+ pub type HKEY = *mut core::ffi::c_void;
148
+ pub const HKEY_CLASSES_ROOT: HKEY = -2147483648i32 as _;
149
+ pub const HKEY_CURRENT_CONFIG: HKEY = -2147483643i32 as _;
150
+ pub const HKEY_CURRENT_USER: HKEY = -2147483647i32 as _;
151
+ pub const HKEY_CURRENT_USER_LOCAL_SETTINGS: HKEY = -2147483641i32 as _;
152
+ pub const HKEY_DYN_DATA: HKEY = -2147483642i32 as _;
153
+ pub const HKEY_LOCAL_MACHINE: HKEY = -2147483646i32 as _;
154
+ pub const HKEY_PERFORMANCE_DATA: HKEY = -2147483644i32 as _;
155
+ pub const HKEY_PERFORMANCE_NLSTEXT: HKEY = -2147483552i32 as _;
156
+ pub const HKEY_PERFORMANCE_TEXT: HKEY = -2147483568i32 as _;
157
+ pub const HKEY_USERS: HKEY = -2147483645i32 as _;
158
+ pub const IT_COMPACT: u32 = 0u32;
159
+ pub const IT_CUSTOM: u32 = 3u32;
160
+ pub const IT_PORTABLE: u32 = 2u32;
161
+ pub const IT_TYPICAL: u32 = 1u32;
162
+ pub const KEY_ALL_ACCESS: REG_SAM_FLAGS = 983103u32;
163
+ pub const KEY_CREATE_LINK: REG_SAM_FLAGS = 32u32;
164
+ pub const KEY_CREATE_SUB_KEY: REG_SAM_FLAGS = 4u32;
165
+ pub const KEY_ENUMERATE_SUB_KEYS: REG_SAM_FLAGS = 8u32;
166
+ pub const KEY_EXECUTE: REG_SAM_FLAGS = 131097u32;
167
+ pub const KEY_NOTIFY: REG_SAM_FLAGS = 16u32;
168
+ pub const KEY_QUERY_VALUE: REG_SAM_FLAGS = 1u32;
169
+ pub const KEY_READ: REG_SAM_FLAGS = 131097u32;
170
+ pub const KEY_SET_VALUE: REG_SAM_FLAGS = 2u32;
171
+ pub const KEY_WOW64_32KEY: REG_SAM_FLAGS = 512u32;
172
+ pub const KEY_WOW64_64KEY: REG_SAM_FLAGS = 256u32;
173
+ pub const KEY_WOW64_RES: REG_SAM_FLAGS = 768u32;
174
+ pub const KEY_WRITE: REG_SAM_FLAGS = 131078u32;
175
+ pub const LASTGOOD_OPERATION: u32 = 255u32;
176
+ pub const LASTGOOD_OPERATION_DELETE: u32 = 1u32;
177
+ pub const LASTGOOD_OPERATION_NOPOSTPROC: u32 = 0u32;
178
+ pub const MF_FLAGS_CREATE_BUT_NO_SHOW_DISABLED: u32 = 8u32;
179
+ pub const MF_FLAGS_EVEN_IF_NO_RESOURCE: u32 = 1u32;
180
+ pub const MF_FLAGS_FILL_IN_UNKNOWN_RESOURCE: u32 = 4u32;
181
+ pub const MF_FLAGS_NO_CREATE_IF_NO_RESOURCE: u32 = 2u32;
182
+ pub const NUM_EISA_RANGES: u32 = 4u32;
183
+ pub const NUM_RESOURCE_MAP: u32 = 256u32;
184
+ pub const PCIC_DEFAULT_IRQMASK: u32 = 20152u32;
185
+ pub const PCIC_DEFAULT_NUMSOCKETS: u32 = 0u32;
186
+ pub const PCI_OPTIONS_USE_BIOS: i32 = 1i32;
187
+ pub const PCI_OPTIONS_USE_IRQ_STEERING: i32 = 2i32;
188
+ pub const PCMCIA_DEF_MEMBEGIN: u32 = 786432u32;
189
+ pub const PCMCIA_DEF_MEMEND: u32 = 16777215u32;
190
+ pub const PCMCIA_DEF_MEMLEN: u32 = 4096u32;
191
+ pub const PCMCIA_DEF_MIN_REGION: u32 = 65536u32;
192
+ pub const PCMCIA_OPT_AUTOMEM: i32 = 4i32;
193
+ pub const PCMCIA_OPT_HAVE_SOCKET: i32 = 1i32;
194
+ pub const PCMCIA_OPT_NO_APMREMOVE: i32 = 32i32;
195
+ pub const PCMCIA_OPT_NO_AUDIO: i32 = 16i32;
196
+ pub const PCMCIA_OPT_NO_SOUND: i32 = 8i32;
197
+ pub const PIR_OPTION_DEFAULT: u32 = 15u32;
198
+ pub const PIR_OPTION_ENABLED: u32 = 1u32;
199
+ pub const PIR_OPTION_MSSPEC: u32 = 4u32;
200
+ pub const PIR_OPTION_REALMODE: u32 = 8u32;
201
+ pub const PIR_OPTION_REGISTRY: u32 = 2u32;
202
+ pub const PIR_STATUS_DISABLED: u32 = 2u32;
203
+ pub const PIR_STATUS_ENABLED: u32 = 1u32;
204
+ pub const PIR_STATUS_ERROR: u32 = 0u32;
205
+ pub const PIR_STATUS_MAX: u32 = 3u32;
206
+ pub const PIR_STATUS_MINIPORT_COMPATIBLE: u32 = 1u32;
207
+ pub const PIR_STATUS_MINIPORT_ERROR: u32 = 4u32;
208
+ pub const PIR_STATUS_MINIPORT_INVALID: u32 = 7u32;
209
+ pub const PIR_STATUS_MINIPORT_MAX: u32 = 8u32;
210
+ pub const PIR_STATUS_MINIPORT_NOKEY: u32 = 5u32;
211
+ pub const PIR_STATUS_MINIPORT_NONE: u32 = 3u32;
212
+ pub const PIR_STATUS_MINIPORT_NORMAL: u32 = 0u32;
213
+ pub const PIR_STATUS_MINIPORT_OVERRIDE: u32 = 2u32;
214
+ pub const PIR_STATUS_MINIPORT_SUCCESS: u32 = 6u32;
215
+ pub const PIR_STATUS_TABLE_BAD: u32 = 5u32;
216
+ pub const PIR_STATUS_TABLE_ERROR: u32 = 4u32;
217
+ pub const PIR_STATUS_TABLE_MAX: u32 = 7u32;
218
+ pub const PIR_STATUS_TABLE_MSSPEC: u32 = 1u32;
219
+ pub const PIR_STATUS_TABLE_NONE: u32 = 3u32;
220
+ pub const PIR_STATUS_TABLE_REALMODE: u32 = 2u32;
221
+ pub const PIR_STATUS_TABLE_REGISTRY: u32 = 0u32;
222
+ pub const PIR_STATUS_TABLE_SUCCESS: u32 = 6u32;
223
+ pub type PQUERYHANDLER = Option<unsafe extern "system" fn(keycontext: *mut core::ffi::c_void, val_list: *mut val_context, num_vals: u32, outputbuffer: *mut core::ffi::c_void, total_outlen: *mut u32, input_blen: u32) -> u32>;
224
+ pub const PROVIDER_KEEPS_VALUE_LENGTH: u32 = 1u32;
225
+ #[repr(C)]
226
+ #[derive(Clone, Copy)]
227
+ pub struct PVALUEA {
228
+ pub pv_valuename: windows_sys::core::PSTR,
229
+ pub pv_valuelen: i32,
230
+ pub pv_value_context: *mut core::ffi::c_void,
231
+ pub pv_type: u32,
232
+ }
233
+ impl Default for PVALUEA {
234
+ fn default() -> Self {
235
+ unsafe { core::mem::zeroed() }
236
+ }
237
+ }
238
+ #[repr(C)]
239
+ #[derive(Clone, Copy)]
240
+ pub struct PVALUEW {
241
+ pub pv_valuename: windows_sys::core::PWSTR,
242
+ pub pv_valuelen: i32,
243
+ pub pv_value_context: *mut core::ffi::c_void,
244
+ pub pv_type: u32,
245
+ }
246
+ impl Default for PVALUEW {
247
+ fn default() -> Self {
248
+ unsafe { core::mem::zeroed() }
249
+ }
250
+ }
251
+ pub const REGDF_CONFLICTDMA: u32 = 524288u32;
252
+ pub const REGDF_CONFLICTIO: u32 = 65536u32;
253
+ pub const REGDF_CONFLICTIRQ: u32 = 262144u32;
254
+ pub const REGDF_CONFLICTMEM: u32 = 131072u32;
255
+ pub const REGDF_GENFORCEDCONFIG: u32 = 32u32;
256
+ pub const REGDF_MAPIRQ2TO9: u32 = 1048576u32;
257
+ pub const REGDF_NEEDFULLCONFIG: u32 = 16u32;
258
+ pub const REGDF_NODETCONFIG: u32 = 32768u32;
259
+ pub const REGDF_NOTDETDMA: u32 = 8u32;
260
+ pub const REGDF_NOTDETIO: u32 = 1u32;
261
+ pub const REGDF_NOTDETIRQ: u32 = 4u32;
262
+ pub const REGDF_NOTDETMEM: u32 = 2u32;
263
+ pub const REGDF_NOTVERIFIED: u32 = 2147483648u32;
264
+ pub const REGSTR_DATA_NETOS_IPX: windows_sys::core::PCWSTR = windows_sys::core::w!("IPX");
265
+ pub const REGSTR_DATA_NETOS_NDIS: windows_sys::core::PCWSTR = windows_sys::core::w!("NDIS");
266
+ pub const REGSTR_DATA_NETOS_ODI: windows_sys::core::PCWSTR = windows_sys::core::w!("ODI");
267
+ pub const REGSTR_DEFAULT_INSTANCE: windows_sys::core::PCWSTR = windows_sys::core::w!("0000");
268
+ pub const REGSTR_KEY_ACPIENUM: windows_sys::core::PCWSTR = windows_sys::core::w!("ACPI");
269
+ pub const REGSTR_KEY_APM: windows_sys::core::PCWSTR = windows_sys::core::w!("*PNP0C05");
270
+ pub const REGSTR_KEY_BIOSENUM: windows_sys::core::PCWSTR = windows_sys::core::w!("BIOS");
271
+ pub const REGSTR_KEY_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("Class");
272
+ pub const REGSTR_KEY_CONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("Config");
273
+ pub const REGSTR_KEY_CONTROL: windows_sys::core::PCWSTR = windows_sys::core::w!("Control");
274
+ pub const REGSTR_KEY_CRASHES: windows_sys::core::PCWSTR = windows_sys::core::w!("Crashes");
275
+ pub const REGSTR_KEY_CURRENT: windows_sys::core::PCWSTR = windows_sys::core::w!("Current");
276
+ pub const REGSTR_KEY_CURRENT_ENV: windows_sys::core::PCWSTR = windows_sys::core::w!("\\Windows 4.0");
277
+ pub const REGSTR_KEY_DANGERS: windows_sys::core::PCWSTR = windows_sys::core::w!("Dangers");
278
+ pub const REGSTR_KEY_DEFAULT: windows_sys::core::PCWSTR = windows_sys::core::w!("Default");
279
+ pub const REGSTR_KEY_DETMODVARS: windows_sys::core::PCWSTR = windows_sys::core::w!("DetModVars");
280
+ pub const REGSTR_KEY_DEVICEPARAMETERS: windows_sys::core::PCWSTR = windows_sys::core::w!("Device Parameters");
281
+ pub const REGSTR_KEY_DEVICE_PROPERTIES: windows_sys::core::PCWSTR = windows_sys::core::w!("Properties");
282
+ pub const REGSTR_KEY_DISPLAY_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("Display");
283
+ pub const REGSTR_KEY_DOSOPTCDROM: windows_sys::core::PCWSTR = windows_sys::core::w!("CD-ROM");
284
+ pub const REGSTR_KEY_DOSOPTMOUSE: windows_sys::core::PCWSTR = windows_sys::core::w!("MOUSE");
285
+ pub const REGSTR_KEY_DRIVERPARAMETERS: windows_sys::core::PCWSTR = windows_sys::core::w!("Driver Parameters");
286
+ pub const REGSTR_KEY_DRIVERS: windows_sys::core::PCWSTR = windows_sys::core::w!("\\Drivers");
287
+ pub const REGSTR_KEY_EBDAUTOEXECBATKEYBOARD: windows_sys::core::PCWSTR = windows_sys::core::w!("EBDAutoexecBatKeyboard");
288
+ pub const REGSTR_KEY_EBDAUTOEXECBATLOCAL: windows_sys::core::PCWSTR = windows_sys::core::w!("EBDAutoexecBatLocale");
289
+ pub const REGSTR_KEY_EBDCONFIGSYSKEYBOARD: windows_sys::core::PCWSTR = windows_sys::core::w!("EBDConfigSysKeyboard");
290
+ pub const REGSTR_KEY_EBDCONFIGSYSLOCAL: windows_sys::core::PCWSTR = windows_sys::core::w!("EBDConfigSysLocale");
291
+ pub const REGSTR_KEY_EBDFILESKEYBOARD: windows_sys::core::PCWSTR = windows_sys::core::w!("EBDFilesKeyboard");
292
+ pub const REGSTR_KEY_EBDFILESLOCAL: windows_sys::core::PCWSTR = windows_sys::core::w!("EBDFilesLocale");
293
+ pub const REGSTR_KEY_EISAENUM: windows_sys::core::PCWSTR = windows_sys::core::w!("EISA");
294
+ pub const REGSTR_KEY_ENUM: windows_sys::core::PCWSTR = windows_sys::core::w!("Enum");
295
+ pub const REGSTR_KEY_EXPLORER: windows_sys::core::PCWSTR = windows_sys::core::w!("Explorer");
296
+ pub const REGSTR_KEY_FILTERS: windows_sys::core::PCWSTR = windows_sys::core::w!("Filters");
297
+ pub const REGSTR_KEY_INIUPDATE: windows_sys::core::PCWSTR = windows_sys::core::w!("IniUpdate");
298
+ pub const REGSTR_KEY_ISAENUM: windows_sys::core::PCWSTR = windows_sys::core::w!("ISAPnP");
299
+ pub const REGSTR_KEY_JOYCURR: windows_sys::core::PCWSTR = windows_sys::core::w!("CurrentJoystickSettings");
300
+ pub const REGSTR_KEY_JOYSETTINGS: windows_sys::core::PCWSTR = windows_sys::core::w!("JoystickSettings");
301
+ pub const REGSTR_KEY_KEYBOARD_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("Keyboard");
302
+ pub const REGSTR_KEY_KNOWNDOCKINGSTATES: windows_sys::core::PCWSTR = windows_sys::core::w!("Hardware Profiles");
303
+ pub const REGSTR_KEY_LOGCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("LogConfig");
304
+ pub const REGSTR_KEY_LOGON: windows_sys::core::PCWSTR = windows_sys::core::w!("\\Logon");
305
+ pub const REGSTR_KEY_LOWER_FILTER_LEVEL_DEFAULT: windows_sys::core::PCWSTR = windows_sys::core::w!("*Lower");
306
+ pub const REGSTR_KEY_MEDIA_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("MEDIA");
307
+ pub const REGSTR_KEY_MODEM_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("Modem");
308
+ pub const REGSTR_KEY_MODES: windows_sys::core::PCWSTR = windows_sys::core::w!("Modes");
309
+ pub const REGSTR_KEY_MONITOR_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("Monitor");
310
+ pub const REGSTR_KEY_MOUSE_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("Mouse");
311
+ pub const REGSTR_KEY_NDISINFO: windows_sys::core::PCWSTR = windows_sys::core::w!("NDISInfo");
312
+ pub const REGSTR_KEY_NETWORK: windows_sys::core::PCWSTR = windows_sys::core::w!("Network");
313
+ pub const REGSTR_KEY_NETWORKPROVIDER: windows_sys::core::PCWSTR = windows_sys::core::w!("\\NetworkProvider");
314
+ pub const REGSTR_KEY_NETWORK_PERSISTENT: windows_sys::core::PCWSTR = windows_sys::core::w!("\\Persistent");
315
+ pub const REGSTR_KEY_NETWORK_RECENT: windows_sys::core::PCWSTR = windows_sys::core::w!("\\Recent");
316
+ pub const REGSTR_KEY_OVERRIDE: windows_sys::core::PCWSTR = windows_sys::core::w!("Override");
317
+ pub const REGSTR_KEY_PCIENUM: windows_sys::core::PCWSTR = windows_sys::core::w!("PCI");
318
+ pub const REGSTR_KEY_PCMCIA: windows_sys::core::PCWSTR = windows_sys::core::w!("PCMCIA\\");
319
+ pub const REGSTR_KEY_PCMCIAENUM: windows_sys::core::PCWSTR = windows_sys::core::w!("PCMCIA");
320
+ pub const REGSTR_KEY_PCMCIA_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("PCMCIA");
321
+ pub const REGSTR_KEY_PCMTD: windows_sys::core::PCWSTR = windows_sys::core::w!("MTD-");
322
+ pub const REGSTR_KEY_PCUNKNOWN: windows_sys::core::PCWSTR = windows_sys::core::w!("UNKNOWN_MANUFACTURER");
323
+ pub const REGSTR_KEY_POL_COMPUTERS: windows_sys::core::PCWSTR = windows_sys::core::w!("Computers");
324
+ pub const REGSTR_KEY_POL_DEFAULT: windows_sys::core::PCWSTR = windows_sys::core::w!(".default");
325
+ pub const REGSTR_KEY_POL_USERGROUPDATA: windows_sys::core::PCWSTR = windows_sys::core::w!("GroupData\\UserGroups\\Priority");
326
+ pub const REGSTR_KEY_POL_USERGROUPS: windows_sys::core::PCWSTR = windows_sys::core::w!("UserGroups");
327
+ pub const REGSTR_KEY_POL_USERS: windows_sys::core::PCWSTR = windows_sys::core::w!("Users");
328
+ pub const REGSTR_KEY_PORTS_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("ports");
329
+ pub const REGSTR_KEY_PRINTERS: windows_sys::core::PCWSTR = windows_sys::core::w!("Printers");
330
+ pub const REGSTR_KEY_PRINT_PROC: windows_sys::core::PCWSTR = windows_sys::core::w!("\\Print Processors");
331
+ pub const REGSTR_KEY_ROOTENUM: windows_sys::core::PCWSTR = windows_sys::core::w!("Root");
332
+ pub const REGSTR_KEY_RUNHISTORY: windows_sys::core::PCWSTR = windows_sys::core::w!("RunHistory");
333
+ pub const REGSTR_KEY_SCSI_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("SCSIAdapter");
334
+ pub const REGSTR_KEY_SETUP: windows_sys::core::PCWSTR = windows_sys::core::w!("\\Setup");
335
+ pub const REGSTR_KEY_SHARES: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Network\\LanMan");
336
+ pub const REGSTR_KEY_SYSTEM: windows_sys::core::PCWSTR = windows_sys::core::w!("System");
337
+ pub const REGSTR_KEY_SYSTEMBOARD: windows_sys::core::PCWSTR = windows_sys::core::w!("*PNP0C01");
338
+ pub const REGSTR_KEY_UPPER_FILTER_LEVEL_DEFAULT: windows_sys::core::PCWSTR = windows_sys::core::w!("*Upper");
339
+ pub const REGSTR_KEY_USER: windows_sys::core::PCWSTR = windows_sys::core::w!("User");
340
+ pub const REGSTR_KEY_VPOWERDENUM: windows_sys::core::PCWSTR = windows_sys::core::w!("VPOWERD");
341
+ pub const REGSTR_KEY_WINOLDAPP: windows_sys::core::PCWSTR = windows_sys::core::w!("WinOldApp");
342
+ pub const REGSTR_MACHTYPE_ATT_PC: windows_sys::core::PCWSTR = windows_sys::core::w!("AT&T PC");
343
+ pub const REGSTR_MACHTYPE_HP_VECTRA: windows_sys::core::PCWSTR = windows_sys::core::w!("HP Vectra");
344
+ pub const REGSTR_MACHTYPE_IBMPC: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PC");
345
+ pub const REGSTR_MACHTYPE_IBMPCAT: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PC/AT");
346
+ pub const REGSTR_MACHTYPE_IBMPCCONV: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PC Convertible");
347
+ pub const REGSTR_MACHTYPE_IBMPCJR: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PCjr");
348
+ pub const REGSTR_MACHTYPE_IBMPCXT: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PC/XT");
349
+ pub const REGSTR_MACHTYPE_IBMPCXT_286: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PC/XT 286");
350
+ pub const REGSTR_MACHTYPE_IBMPS1: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/1");
351
+ pub const REGSTR_MACHTYPE_IBMPS2_25: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-25");
352
+ pub const REGSTR_MACHTYPE_IBMPS2_30: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-30");
353
+ pub const REGSTR_MACHTYPE_IBMPS2_30_286: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-30 286");
354
+ pub const REGSTR_MACHTYPE_IBMPS2_50: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-50");
355
+ pub const REGSTR_MACHTYPE_IBMPS2_50Z: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-50Z");
356
+ pub const REGSTR_MACHTYPE_IBMPS2_55SX: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-55SX");
357
+ pub const REGSTR_MACHTYPE_IBMPS2_60: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-60");
358
+ pub const REGSTR_MACHTYPE_IBMPS2_65SX: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-65SX");
359
+ pub const REGSTR_MACHTYPE_IBMPS2_70: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-70");
360
+ pub const REGSTR_MACHTYPE_IBMPS2_70_80: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-70/80");
361
+ pub const REGSTR_MACHTYPE_IBMPS2_80: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-80");
362
+ pub const REGSTR_MACHTYPE_IBMPS2_90: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-90");
363
+ pub const REGSTR_MACHTYPE_IBMPS2_P70: windows_sys::core::PCWSTR = windows_sys::core::w!("IBM PS/2-P70");
364
+ pub const REGSTR_MACHTYPE_PHOENIX_PCAT: windows_sys::core::PCWSTR = windows_sys::core::w!("Phoenix PC/AT Compatible");
365
+ pub const REGSTR_MACHTYPE_UNKNOWN: windows_sys::core::PCWSTR = windows_sys::core::w!("Unknown");
366
+ pub const REGSTR_MACHTYPE_ZENITH_PC: windows_sys::core::PCWSTR = windows_sys::core::w!("Zenith PC");
367
+ pub const REGSTR_MAX_VALUE_LENGTH: u32 = 256u32;
368
+ pub const REGSTR_PATH_ADDRARB: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\Arbitrators\\AddrArb");
369
+ pub const REGSTR_PATH_AEDEBUG: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows NT\\CurrentVersion\\AeDebug");
370
+ pub const REGSTR_PATH_APPEARANCE: windows_sys::core::PCWSTR = windows_sys::core::w!("Control Panel\\Appearance");
371
+ pub const REGSTR_PATH_APPPATCH: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\SessionManager\\AppPatches");
372
+ pub const REGSTR_PATH_APPPATHS: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\App Paths");
373
+ pub const REGSTR_PATH_BIOSINFO: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\BiosInfo");
374
+ pub const REGSTR_PATH_BUSINFORMATION: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\PnP\\BusInformation");
375
+ pub const REGSTR_PATH_CDFS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\FileSystem\\CDFS");
376
+ pub const REGSTR_PATH_CHECKBADAPPS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\SessionManager\\CheckBadApps");
377
+ pub const REGSTR_PATH_CHECKBADAPPS400: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\SessionManager\\CheckBadApps400");
378
+ pub const REGSTR_PATH_CHECKDISK: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Applets\\Check Drive");
379
+ pub const REGSTR_PATH_CHECKDISKSET: windows_sys::core::PCWSTR = windows_sys::core::w!("Settings");
380
+ pub const REGSTR_PATH_CHECKDISKUDRVS: windows_sys::core::PCWSTR = windows_sys::core::w!("NoUnknownDDErrDrvs");
381
+ pub const REGSTR_PATH_CHECKVERDLLS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\SessionManager\\CheckVerDLLs");
382
+ pub const REGSTR_PATH_CHILD_PREFIX: windows_sys::core::PCWSTR = windows_sys::core::w!("Child");
383
+ pub const REGSTR_PATH_CHKLASTCHECK: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Applets\\Check Drive\\LastCheck");
384
+ pub const REGSTR_PATH_CHKLASTSURFAN: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Applets\\Check Drive\\LastSurfaceAnalysis");
385
+ pub const REGSTR_PATH_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\Class");
386
+ pub const REGSTR_PATH_CLASS_NT: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\Class");
387
+ pub const REGSTR_PATH_CODEPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\Nls\\Codepage");
388
+ pub const REGSTR_PATH_CODEVICEINSTALLERS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\CoDeviceInstallers");
389
+ pub const REGSTR_PATH_COLORS: windows_sys::core::PCWSTR = windows_sys::core::w!("Control Panel\\Colors");
390
+ pub const REGSTR_PATH_COMPUTRNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\ComputerName\\ComputerName");
391
+ pub const REGSTR_PATH_CONTROLPANEL: windows_sys::core::PCWSTR = windows_sys::core::w!("Control Panel");
392
+ pub const REGSTR_PATH_CONTROLSFOLDER: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Controls Folder");
393
+ pub const REGSTR_PATH_CRITICALDEVICEDATABASE: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\CriticalDeviceDatabase");
394
+ pub const REGSTR_PATH_CURRENTCONTROLSET: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet");
395
+ pub const REGSTR_PATH_CURRENT_CONTROL_SET: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control");
396
+ pub const REGSTR_PATH_CURSORS: windows_sys::core::PCWSTR = windows_sys::core::w!("Control Panel\\Cursors");
397
+ pub const REGSTR_PATH_CVNETWORK: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Network");
398
+ pub const REGSTR_PATH_DESKTOP: windows_sys::core::PCWSTR = windows_sys::core::w!("Control Panel\\Desktop");
399
+ pub const REGSTR_PATH_DETECT: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Detect");
400
+ pub const REGSTR_PATH_DEVICEINSTALLER: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Device Installer");
401
+ pub const REGSTR_PATH_DEVICE_CLASSES: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\DeviceClasses");
402
+ pub const REGSTR_PATH_DIFX: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\DIFX");
403
+ pub const REGSTR_PATH_DISPLAYSETTINGS: windows_sys::core::PCWSTR = windows_sys::core::w!("Display\\Settings");
404
+ pub const REGSTR_PATH_DMAARB: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\Arbitrators\\DMAArb");
405
+ pub const REGSTR_PATH_DRIVERSIGN: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Driver Signing");
406
+ pub const REGSTR_PATH_DRIVERSIGN_POLICY: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Policies\\Microsoft\\Windows NT\\Driver Signing");
407
+ pub const REGSTR_PATH_ENUM: windows_sys::core::PCWSTR = windows_sys::core::w!("Enum");
408
+ pub const REGSTR_PATH_ENVIRONMENTS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\Print\\Environments");
409
+ pub const REGSTR_PATH_EVENTLABELS: windows_sys::core::PCWSTR = windows_sys::core::w!("AppEvents\\EventLabels");
410
+ pub const REGSTR_PATH_EXPLORER: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer");
411
+ pub const REGSTR_PATH_FAULT: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Fault");
412
+ pub const REGSTR_PATH_FILESYSTEM: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\FileSystem");
413
+ pub const REGSTR_PATH_FILESYSTEM_NOVOLTRACK: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\FileSystem\\NoVolTrack");
414
+ pub const REGSTR_PATH_FLOATINGPOINTPROCESSOR: windows_sys::core::PCWSTR = windows_sys::core::w!("HARDWARE\\DESCRIPTION\\System\\FloatingPointProcessor");
415
+ pub const REGSTR_PATH_FLOATINGPOINTPROCESSOR0: windows_sys::core::PCWSTR = windows_sys::core::w!("HARDWARE\\DESCRIPTION\\System\\FloatingPointProcessor\\0");
416
+ pub const REGSTR_PATH_FONTS: windows_sys::core::PCWSTR = windows_sys::core::w!("Display\\Fonts");
417
+ pub const REGSTR_PATH_GRPCONV: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\GrpConv");
418
+ pub const REGSTR_PATH_HACKINIFILE: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\SessionManager\\HackIniFiles");
419
+ pub const REGSTR_PATH_HWPROFILES: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Hardware Profiles");
420
+ pub const REGSTR_PATH_HWPROFILESCURRENT: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Hardware Profiles\\Current");
421
+ pub const REGSTR_PATH_ICONS: windows_sys::core::PCWSTR = windows_sys::core::w!("Control Panel\\Icons");
422
+ pub const REGSTR_PATH_IDCONFIGDB: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\IDConfigDB");
423
+ pub const REGSTR_PATH_INSTALLEDFILES: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\InstalledFiles");
424
+ pub const REGSTR_PATH_IOARB: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\Arbitrators\\IOArb");
425
+ pub const REGSTR_PATH_IOS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\VxD\\IOS");
426
+ pub const REGSTR_PATH_IRQARB: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\Arbitrators\\IRQArb");
427
+ pub const REGSTR_PATH_KEYBOARD: windows_sys::core::PCWSTR = windows_sys::core::w!("Control Panel\\Keyboard");
428
+ pub const REGSTR_PATH_KNOWN16DLLS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\SessionManager\\Known16DLLs");
429
+ pub const REGSTR_PATH_KNOWNDLLS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\SessionManager\\KnownDLLs");
430
+ pub const REGSTR_PATH_KNOWNVXDS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\SessionManager\\KnownVxDs");
431
+ pub const REGSTR_PATH_LASTBACKUP: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\LastBackup");
432
+ pub const REGSTR_PATH_LASTCHECK: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\LastCheck");
433
+ pub const REGSTR_PATH_LASTGOOD: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\LastKnownGoodRecovery\\LastGood");
434
+ pub const REGSTR_PATH_LASTGOODTMP: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\LastKnownGoodRecovery\\LastGood.Tmp");
435
+ pub const REGSTR_PATH_LASTOPTIMIZE: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\LastOptimize");
436
+ pub const REGSTR_PATH_LOOKSCHEMES: windows_sys::core::PCWSTR = windows_sys::core::w!("Control Panel\\Appearance\\Schemes");
437
+ pub const REGSTR_PATH_METRICS: windows_sys::core::PCWSTR = windows_sys::core::w!("Control Panel\\Desktop\\WindowMetrics");
438
+ pub const REGSTR_PATH_MONITORS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\Print\\Monitors");
439
+ pub const REGSTR_PATH_MOUSE: windows_sys::core::PCWSTR = windows_sys::core::w!("Control Panel\\Mouse");
440
+ pub const REGSTR_PATH_MSDOSOPTS: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\MS-DOSOptions");
441
+ pub const REGSTR_PATH_MULTIMEDIA_AUDIO: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Multimedia\\Audio");
442
+ pub const REGSTR_PATH_MULTI_FUNCTION: windows_sys::core::PCWSTR = windows_sys::core::w!("MF");
443
+ pub const REGSTR_PATH_NCPSERVER: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\NcpServer\\Parameters");
444
+ pub const REGSTR_PATH_NETEQUIV: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Network\\Equivalent");
445
+ pub const REGSTR_PATH_NETWORK_USERSETTINGS: windows_sys::core::PCWSTR = windows_sys::core::w!("Network");
446
+ pub const REGSTR_PATH_NEWDOSBOX: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\MS-DOSSpecialConfig");
447
+ pub const REGSTR_PATH_NONDRIVERSIGN: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Non-Driver Signing");
448
+ pub const REGSTR_PATH_NONDRIVERSIGN_POLICY: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Policies\\Microsoft\\Windows NT\\Non-Driver Signing");
449
+ pub const REGSTR_PATH_NOSUGGMSDOS: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\NoMSDOSWarn");
450
+ pub const REGSTR_PATH_NT_CURRENTVERSION: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows NT\\CurrentVersion");
451
+ pub const REGSTR_PATH_NWREDIR: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\VxD\\NWREDIR");
452
+ pub const REGSTR_PATH_PCIIR: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\Pnp\\PciIrqRouting");
453
+ pub const REGSTR_PATH_PER_HW_ID_STORAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows NT\\CurrentVersion\\PerHwIdStorage");
454
+ pub const REGSTR_PATH_PIFCONVERT: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\PIFConvert");
455
+ pub const REGSTR_PATH_POLICIES: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Policies");
456
+ pub const REGSTR_PATH_PRINT: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\Print");
457
+ pub const REGSTR_PATH_PRINTERS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\Print\\Printers");
458
+ pub const REGSTR_PATH_PROPERTYSYSTEM: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\PropertySystem");
459
+ pub const REGSTR_PATH_PROVIDERS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\Print\\Providers");
460
+ pub const REGSTR_PATH_PWDPROVIDER: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\PwdProvider");
461
+ pub const REGSTR_PATH_REALMODENET: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Network\\Real Mode Net");
462
+ pub const REGSTR_PATH_REINSTALL: windows_sys::core::PCWSTR = windows_sys::core::w!("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Reinstall");
463
+ pub const REGSTR_PATH_RELIABILITY: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Reliability");
464
+ pub const REGSTR_PATH_RELIABILITY_POLICY: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Policies\\Microsoft\\Windows NT\\Reliability");
465
+ pub const REGSTR_PATH_RELIABILITY_POLICY_REPORTSNAPSHOT: windows_sys::core::PCWSTR = windows_sys::core::w!("ReportSnapshot");
466
+ pub const REGSTR_PATH_RELIABILITY_POLICY_SHUTDOWNREASONUI: windows_sys::core::PCWSTR = windows_sys::core::w!("ShutdownReasonUI");
467
+ pub const REGSTR_PATH_RELIABILITY_POLICY_SNAPSHOT: windows_sys::core::PCWSTR = windows_sys::core::w!("Snapshot");
468
+ pub const REGSTR_PATH_ROOT: windows_sys::core::PCWSTR = windows_sys::core::w!("Enum\\Root");
469
+ pub const REGSTR_PATH_RUN: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Run");
470
+ pub const REGSTR_PATH_RUNONCE: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce");
471
+ pub const REGSTR_PATH_RUNONCEEX: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\RunOnceEx");
472
+ pub const REGSTR_PATH_RUNSERVICES: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\RunServices");
473
+ pub const REGSTR_PATH_RUNSERVICESONCE: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\RunServicesOnce");
474
+ pub const REGSTR_PATH_SCHEMES: windows_sys::core::PCWSTR = windows_sys::core::w!("AppEvents\\Schemes");
475
+ pub const REGSTR_PATH_SCREENSAVE: windows_sys::core::PCWSTR = windows_sys::core::w!("Control Panel\\Desktop");
476
+ pub const REGSTR_PATH_SERVICES: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services");
477
+ pub const REGSTR_PATH_SETUP: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion");
478
+ pub const REGSTR_PATH_SHUTDOWN: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\Shutdown");
479
+ pub const REGSTR_PATH_SOUND: windows_sys::core::PCWSTR = windows_sys::core::w!("Control Panel\\Sound");
480
+ pub const REGSTR_PATH_SYSTEMENUM: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Enum");
481
+ pub const REGSTR_PATH_SYSTRAY: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Applets\\SysTray");
482
+ pub const REGSTR_PATH_TIMEZONE: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\TimeZoneInformation");
483
+ pub const REGSTR_PATH_UNINSTALL: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall");
484
+ pub const REGSTR_PATH_UPDATE: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\Update");
485
+ pub const REGSTR_PATH_VCOMM: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\VxD\\VCOMM");
486
+ pub const REGSTR_PATH_VMM: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\VxD\\VMM");
487
+ pub const REGSTR_PATH_VMM32FILES: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\VMM32Files");
488
+ pub const REGSTR_PATH_VNETSUP: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\VxD\\VNETSUP");
489
+ pub const REGSTR_PATH_VOLUMECACHE: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VolumeCaches");
490
+ pub const REGSTR_PATH_VPOWERD: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\VxD\\VPOWERD");
491
+ pub const REGSTR_PATH_VXD: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Services\\VxD");
492
+ pub const REGSTR_PATH_WARNVERDLLS: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\SessionManager\\WarnVerDLLs");
493
+ pub const REGSTR_PATH_WINBOOT: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\WinBoot");
494
+ pub const REGSTR_PATH_WINDOWSAPPLETS: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Applets");
495
+ pub const REGSTR_PATH_WINLOGON: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\Winlogon");
496
+ pub const REGSTR_PATH_WMI_SECURITY: windows_sys::core::PCWSTR = windows_sys::core::w!("System\\CurrentControlSet\\Control\\Wmi\\Security");
497
+ pub const REGSTR_PCI_DUAL_IDE: windows_sys::core::PCWSTR = windows_sys::core::w!("PCIDualIDE");
498
+ pub const REGSTR_PCI_OPTIONS: windows_sys::core::PCWSTR = windows_sys::core::w!("Options");
499
+ pub const REGSTR_VALUE_DEFAULTLOC: windows_sys::core::PCWSTR = windows_sys::core::w!("UseDefaultNetLocation");
500
+ pub const REGSTR_VALUE_ENABLE: windows_sys::core::PCWSTR = windows_sys::core::w!("Enable");
501
+ pub const REGSTR_VALUE_LOWPOWERACTIVE: windows_sys::core::PCWSTR = windows_sys::core::w!("ScreenSaveLowPowerActive");
502
+ pub const REGSTR_VALUE_LOWPOWERTIMEOUT: windows_sys::core::PCWSTR = windows_sys::core::w!("ScreenSaveLowPowerTimeout");
503
+ pub const REGSTR_VALUE_NETPATH: windows_sys::core::PCWSTR = windows_sys::core::w!("NetworkPath");
504
+ pub const REGSTR_VALUE_POWEROFFACTIVE: windows_sys::core::PCWSTR = windows_sys::core::w!("ScreenSavePowerOffActive");
505
+ pub const REGSTR_VALUE_POWEROFFTIMEOUT: windows_sys::core::PCWSTR = windows_sys::core::w!("ScreenSavePowerOffTimeout");
506
+ pub const REGSTR_VALUE_SCRPASSWORD: windows_sys::core::PCWSTR = windows_sys::core::w!("ScreenSave_Data");
507
+ pub const REGSTR_VALUE_USESCRPASSWORD: windows_sys::core::PCWSTR = windows_sys::core::w!("ScreenSaveUsePassword");
508
+ pub const REGSTR_VALUE_VERBOSE: windows_sys::core::PCWSTR = windows_sys::core::w!("Verbose");
509
+ pub const REGSTR_VAL_ACDRIVESPINDOWN: windows_sys::core::PCWSTR = windows_sys::core::w!("ACDriveSpinDown");
510
+ pub const REGSTR_VAL_ACSPINDOWNPREVIOUS: windows_sys::core::PCWSTR = windows_sys::core::w!("ACSpinDownPrevious");
511
+ pub const REGSTR_VAL_ACTIVESERVICE: windows_sys::core::PCWSTR = windows_sys::core::w!("ActiveService");
512
+ pub const REGSTR_VAL_ADDRESS: windows_sys::core::PCWSTR = windows_sys::core::w!("Address");
513
+ pub const REGSTR_VAL_AEDEBUG_AUTO: windows_sys::core::PCWSTR = windows_sys::core::w!("Auto");
514
+ pub const REGSTR_VAL_AEDEBUG_DEBUGGER: windows_sys::core::PCWSTR = windows_sys::core::w!("Debugger");
515
+ pub const REGSTR_VAL_ALPHANUMPWDS: windows_sys::core::PCWSTR = windows_sys::core::w!("AlphanumPwds");
516
+ pub const REGSTR_VAL_APISUPPORT: windows_sys::core::PCWSTR = windows_sys::core::w!("APISupport");
517
+ pub const REGSTR_VAL_APMACTIMEOUT: windows_sys::core::PCWSTR = windows_sys::core::w!("APMACTimeout");
518
+ pub const REGSTR_VAL_APMBATTIMEOUT: windows_sys::core::PCWSTR = windows_sys::core::w!("APMBatTimeout");
519
+ pub const REGSTR_VAL_APMBIOSVER: windows_sys::core::PCWSTR = windows_sys::core::w!("APMBiosVer");
520
+ pub const REGSTR_VAL_APMFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("APMFlags");
521
+ pub const REGSTR_VAL_APMMENUSUSPEND: windows_sys::core::PCWSTR = windows_sys::core::w!("APMMenuSuspend");
522
+ pub const REGSTR_VAL_APMSHUTDOWNPOWER: windows_sys::core::PCWSTR = windows_sys::core::w!("APMShutDownPower");
523
+ pub const REGSTR_VAL_APPINSTPATH: windows_sys::core::PCWSTR = windows_sys::core::w!("AppInstallPath");
524
+ pub const REGSTR_VAL_ASKFORCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("AskForConfig");
525
+ pub const REGSTR_VAL_ASKFORCONFIGFUNC: windows_sys::core::PCWSTR = windows_sys::core::w!("AskForConfigFunc");
526
+ pub const REGSTR_VAL_ASYNCFILECOMMIT: windows_sys::core::PCWSTR = windows_sys::core::w!("AsyncFileCommit");
527
+ pub const REGSTR_VAL_AUDIO_BITMAP: windows_sys::core::PCWSTR = windows_sys::core::w!("bitmap");
528
+ pub const REGSTR_VAL_AUDIO_ICON: windows_sys::core::PCWSTR = windows_sys::core::w!("icon");
529
+ pub const REGSTR_VAL_AUTHENT_AGENT: windows_sys::core::PCWSTR = windows_sys::core::w!("AuthenticatingAgent");
530
+ pub const REGSTR_VAL_AUTOEXEC: windows_sys::core::PCWSTR = windows_sys::core::w!("Autoexec.Bat");
531
+ pub const REGSTR_VAL_AUTOINSNOTE: windows_sys::core::PCWSTR = windows_sys::core::w!("AutoInsertNotification");
532
+ pub const REGSTR_VAL_AUTOLOGON: windows_sys::core::PCWSTR = windows_sys::core::w!("AutoLogon");
533
+ pub const REGSTR_VAL_AUTOMOUNT: windows_sys::core::PCWSTR = windows_sys::core::w!("AutoMountDrives");
534
+ pub const REGSTR_VAL_AUTOSTART: windows_sys::core::PCWSTR = windows_sys::core::w!("AutoStart");
535
+ pub const REGSTR_VAL_BASICPROPERTIES: windows_sys::core::PCWSTR = windows_sys::core::w!("BasicProperties");
536
+ pub const REGSTR_VAL_BASICPROPERTIES_32: windows_sys::core::PCWSTR = windows_sys::core::w!("BasicProperties32");
537
+ pub const REGSTR_VAL_BATDRIVESPINDOWN: windows_sys::core::PCWSTR = windows_sys::core::w!("BatDriveSpinDown");
538
+ pub const REGSTR_VAL_BATSPINDOWNPREVIOUS: windows_sys::core::PCWSTR = windows_sys::core::w!("BatSpinDownPrevious");
539
+ pub const REGSTR_VAL_BEHAVIOR_ON_FAILED_VERIFY: windows_sys::core::PCWSTR = windows_sys::core::w!("BehaviorOnFailedVerify");
540
+ pub const REGSTR_VAL_BIOSDATE: windows_sys::core::PCWSTR = windows_sys::core::w!("BIOSDate");
541
+ pub const REGSTR_VAL_BIOSNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("BIOSName");
542
+ pub const REGSTR_VAL_BIOSVERSION: windows_sys::core::PCWSTR = windows_sys::core::w!("BIOSVersion");
543
+ pub const REGSTR_VAL_BITSPERPIXEL: windows_sys::core::PCWSTR = windows_sys::core::w!("BitsPerPixel");
544
+ pub const REGSTR_VAL_BOOTCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("BootConfig");
545
+ pub const REGSTR_VAL_BOOTCOUNT: windows_sys::core::PCWSTR = windows_sys::core::w!("BootCount");
546
+ pub const REGSTR_VAL_BOOTDIR: windows_sys::core::PCWSTR = windows_sys::core::w!("BootDir");
547
+ pub const REGSTR_VAL_BPP: windows_sys::core::PCWSTR = windows_sys::core::w!("BPP");
548
+ pub const REGSTR_VAL_BT: windows_sys::core::PCWSTR = windows_sys::core::w!("6005BT");
549
+ pub const REGSTR_VAL_BUFFAGETIMEOUT: windows_sys::core::PCWSTR = windows_sys::core::w!("BufferAgeTimeout");
550
+ pub const REGSTR_VAL_BUFFIDLETIMEOUT: windows_sys::core::PCWSTR = windows_sys::core::w!("BufferIdleTimeout");
551
+ pub const REGSTR_VAL_BUSTYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("BusType");
552
+ pub const REGSTR_VAL_CAPABILITIES: windows_sys::core::PCWSTR = windows_sys::core::w!("Capabilities");
553
+ pub const REGSTR_VAL_CARDSPECIFIC: windows_sys::core::PCWSTR = windows_sys::core::w!("CardSpecific");
554
+ pub const REGSTR_VAL_CDCACHESIZE: windows_sys::core::PCWSTR = windows_sys::core::w!("CacheSize");
555
+ pub const REGSTR_VAL_CDCOMPATNAMES: windows_sys::core::PCWSTR = windows_sys::core::w!("MSCDEXCompatNames");
556
+ pub const REGSTR_VAL_CDEXTERRORS: windows_sys::core::PCWSTR = windows_sys::core::w!("ExtendedErrors");
557
+ pub const REGSTR_VAL_CDNOREADAHEAD: windows_sys::core::PCWSTR = windows_sys::core::w!("NoReadAhead");
558
+ pub const REGSTR_VAL_CDPREFETCH: windows_sys::core::PCWSTR = windows_sys::core::w!("Prefetch");
559
+ pub const REGSTR_VAL_CDPREFETCHTAIL: windows_sys::core::PCWSTR = windows_sys::core::w!("PrefetchTail");
560
+ pub const REGSTR_VAL_CDRAWCACHE: windows_sys::core::PCWSTR = windows_sys::core::w!("RawCache");
561
+ pub const REGSTR_VAL_CDROM: windows_sys::core::PCWSTR = windows_sys::core::w!("GenCD");
562
+ pub const REGSTR_VAL_CDROMCLASSNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("CDROM");
563
+ pub const REGSTR_VAL_CDSHOWVERSIONS: windows_sys::core::PCWSTR = windows_sys::core::w!("ShowVersions");
564
+ pub const REGSTR_VAL_CDSVDSENSE: windows_sys::core::PCWSTR = windows_sys::core::w!("SVDSense");
565
+ pub const REGSTR_VAL_CHECKSUM: windows_sys::core::PCWSTR = windows_sys::core::w!("CurrentChecksum");
566
+ pub const REGSTR_VAL_CLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("Class");
567
+ pub const REGSTR_VAL_CLASSDESC: windows_sys::core::PCWSTR = windows_sys::core::w!("ClassDesc");
568
+ pub const REGSTR_VAL_CLASSGUID: windows_sys::core::PCWSTR = windows_sys::core::w!("ClassGUID");
569
+ pub const REGSTR_VAL_CMDRIVFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("CMDrivFlags");
570
+ pub const REGSTR_VAL_CMENUMFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("CMEnumFlags");
571
+ pub const REGSTR_VAL_COINSTALLERS_32: windows_sys::core::PCWSTR = windows_sys::core::w!("CoInstallers32");
572
+ pub const REGSTR_VAL_COMINFO: windows_sys::core::PCWSTR = windows_sys::core::w!("ComInfo");
573
+ pub const REGSTR_VAL_COMMENT: windows_sys::core::PCWSTR = windows_sys::core::w!("Comment");
574
+ pub const REGSTR_VAL_COMPATIBLEIDS: windows_sys::core::PCWSTR = windows_sys::core::w!("CompatibleIDs");
575
+ pub const REGSTR_VAL_COMPRESSIONMETHOD: windows_sys::core::PCWSTR = windows_sys::core::w!("CompressionAlgorithm");
576
+ pub const REGSTR_VAL_COMPRESSIONTHRESHOLD: windows_sys::core::PCWSTR = windows_sys::core::w!("CompressionThreshold");
577
+ pub const REGSTR_VAL_COMPUTERNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("ComputerName");
578
+ pub const REGSTR_VAL_COMPUTRNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("ComputerName");
579
+ pub const REGSTR_VAL_COMVERIFYBASE: windows_sys::core::PCWSTR = windows_sys::core::w!("COMVerifyBase");
580
+ pub const REGSTR_VAL_CONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("ConfigPath");
581
+ pub const REGSTR_VAL_CONFIGFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("ConfigFlags");
582
+ pub const REGSTR_VAL_CONFIGMG: windows_sys::core::PCWSTR = windows_sys::core::w!("CONFIGMG");
583
+ pub const REGSTR_VAL_CONFIGSYS: windows_sys::core::PCWSTR = windows_sys::core::w!("Config.Sys");
584
+ pub const REGSTR_VAL_CONNECTION_TYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("ConnectionType");
585
+ pub const REGSTR_VAL_CONTAINERID: windows_sys::core::PCWSTR = windows_sys::core::w!("ContainerID");
586
+ pub const REGSTR_VAL_CONTIGFILEALLOC: windows_sys::core::PCWSTR = windows_sys::core::w!("ContigFileAllocSize");
587
+ pub const REGSTR_VAL_CONVMEM: windows_sys::core::PCWSTR = windows_sys::core::w!("ConvMem");
588
+ pub const REGSTR_VAL_CPU: windows_sys::core::PCWSTR = windows_sys::core::w!("CPU");
589
+ pub const REGSTR_VAL_CRASHFUNCS: windows_sys::core::PCWSTR = windows_sys::core::w!("CrashFuncs");
590
+ pub const REGSTR_VAL_CSCONFIGFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("CSConfigFlags");
591
+ pub const REGSTR_VAL_CURCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("CurrentConfig");
592
+ pub const REGSTR_VAL_CURDRVLET: windows_sys::core::PCWSTR = windows_sys::core::w!("CurrentDriveLetterAssignment");
593
+ pub const REGSTR_VAL_CURRENTCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("CurrentConfig");
594
+ pub const REGSTR_VAL_CURRENT_BUILD: windows_sys::core::PCWSTR = windows_sys::core::w!("CurrentBuildNumber");
595
+ pub const REGSTR_VAL_CURRENT_CSDVERSION: windows_sys::core::PCWSTR = windows_sys::core::w!("CSDVersion");
596
+ pub const REGSTR_VAL_CURRENT_TYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("CurrentType");
597
+ pub const REGSTR_VAL_CURRENT_USER: windows_sys::core::PCWSTR = windows_sys::core::w!("Current User");
598
+ pub const REGSTR_VAL_CURRENT_VERSION: windows_sys::core::PCWSTR = windows_sys::core::w!("CurrentVersion");
599
+ pub const REGSTR_VAL_CUSTOMCOLORS: windows_sys::core::PCWSTR = windows_sys::core::w!("CustomColors");
600
+ pub const REGSTR_VAL_CUSTOM_PROPERTY_CACHE_DATE: windows_sys::core::PCWSTR = windows_sys::core::w!("CustomPropertyCacheDate");
601
+ pub const REGSTR_VAL_CUSTOM_PROPERTY_HW_ID_KEY: windows_sys::core::PCWSTR = windows_sys::core::w!("CustomPropertyHwIdKey");
602
+ pub const REGSTR_VAL_DEFAULT: windows_sys::core::PCWSTR = windows_sys::core::w!("Default");
603
+ pub const REGSTR_VAL_DETCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("DetConfig");
604
+ pub const REGSTR_VAL_DETECT: windows_sys::core::PCWSTR = windows_sys::core::w!("Detect");
605
+ pub const REGSTR_VAL_DETECTFUNC: windows_sys::core::PCWSTR = windows_sys::core::w!("DetectFunc");
606
+ pub const REGSTR_VAL_DETFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("DetFlags");
607
+ pub const REGSTR_VAL_DETFUNC: windows_sys::core::PCWSTR = windows_sys::core::w!("DetFunc");
608
+ pub const REGSTR_VAL_DEVDESC: windows_sys::core::PCWSTR = windows_sys::core::w!("DeviceDesc");
609
+ pub const REGSTR_VAL_DEVICEDRIVER: windows_sys::core::PCWSTR = windows_sys::core::w!("DeviceDriver");
610
+ pub const REGSTR_VAL_DEVICEPATH: windows_sys::core::PCWSTR = windows_sys::core::w!("DevicePath");
611
+ pub const REGSTR_VAL_DEVICE_CHARACTERISTICS: windows_sys::core::PCWSTR = windows_sys::core::w!("DeviceCharacteristics");
612
+ pub const REGSTR_VAL_DEVICE_EXCLUSIVE: windows_sys::core::PCWSTR = windows_sys::core::w!("Exclusive");
613
+ pub const REGSTR_VAL_DEVICE_INSTANCE: windows_sys::core::PCWSTR = windows_sys::core::w!("DeviceInstance");
614
+ pub const REGSTR_VAL_DEVICE_SECURITY_DESCRIPTOR: windows_sys::core::PCWSTR = windows_sys::core::w!("Security");
615
+ pub const REGSTR_VAL_DEVICE_TYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("DeviceType");
616
+ pub const REGSTR_VAL_DEVLOADER: windows_sys::core::PCWSTR = windows_sys::core::w!("DevLoader");
617
+ pub const REGSTR_VAL_DEVTYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("DeviceType");
618
+ pub const REGSTR_VAL_DIRECTHOST: windows_sys::core::PCWSTR = windows_sys::core::w!("DirectHost");
619
+ pub const REGSTR_VAL_DIRTYSHUTDOWN: windows_sys::core::PCWSTR = windows_sys::core::w!("DirtyShutdown");
620
+ pub const REGSTR_VAL_DIRTYSHUTDOWNTIME: windows_sys::core::PCWSTR = windows_sys::core::w!("DirtyShutdownTime");
621
+ pub const REGSTR_VAL_DISABLECOUNT: windows_sys::core::PCWSTR = windows_sys::core::w!("DisableCount");
622
+ pub const REGSTR_VAL_DISABLEPWDCACHING: windows_sys::core::PCWSTR = windows_sys::core::w!("DisablePwdCaching");
623
+ pub const REGSTR_VAL_DISABLEREGTOOLS: windows_sys::core::PCWSTR = windows_sys::core::w!("DisableRegistryTools");
624
+ pub const REGSTR_VAL_DISCONNECT: windows_sys::core::PCWSTR = windows_sys::core::w!("Disconnect");
625
+ pub const REGSTR_VAL_DISK: windows_sys::core::PCWSTR = windows_sys::core::w!("GenDisk");
626
+ pub const REGSTR_VAL_DISKCLASSNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("DiskDrive");
627
+ pub const REGSTR_VAL_DISPCPL_NOAPPEARANCEPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoDispAppearancePage");
628
+ pub const REGSTR_VAL_DISPCPL_NOBACKGROUNDPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoDispBackgroundPage");
629
+ pub const REGSTR_VAL_DISPCPL_NODISPCPL: windows_sys::core::PCWSTR = windows_sys::core::w!("NoDispCPL");
630
+ pub const REGSTR_VAL_DISPCPL_NOSCRSAVPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoDispScrSavPage");
631
+ pub const REGSTR_VAL_DISPCPL_NOSETTINGSPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoDispSettingsPage");
632
+ pub const REGSTR_VAL_DISPLAY: windows_sys::core::PCWSTR = windows_sys::core::w!("display");
633
+ pub const REGSTR_VAL_DISPLAYFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("DisplayFlags");
634
+ pub const REGSTR_VAL_DOCKED: windows_sys::core::PCWSTR = windows_sys::core::w!("CurrentDockedState");
635
+ pub const REGSTR_VAL_DOCKSTATE: windows_sys::core::PCWSTR = windows_sys::core::w!("DockState");
636
+ pub const REGSTR_VAL_DOES_POLLING: windows_sys::core::PCWSTR = windows_sys::core::w!("PollingSupportNeeded");
637
+ pub const REGSTR_VAL_DONTLOADIFCONFLICT: windows_sys::core::PCWSTR = windows_sys::core::w!("DontLoadIfConflict");
638
+ pub const REGSTR_VAL_DONTUSEMEM: windows_sys::core::PCWSTR = windows_sys::core::w!("DontAllocLastMem");
639
+ pub const REGSTR_VAL_DOSCP: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCP");
640
+ pub const REGSTR_VAL_DOSOPTFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("Flags");
641
+ pub const REGSTR_VAL_DOSOPTGLOBALFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("GlobalFlags");
642
+ pub const REGSTR_VAL_DOSOPTTIP: windows_sys::core::PCWSTR = windows_sys::core::w!("TipText");
643
+ pub const REGSTR_VAL_DOSPAGER: windows_sys::core::PCWSTR = windows_sys::core::w!("DOSPager");
644
+ pub const REGSTR_VAL_DOS_SPOOL_MASK: windows_sys::core::PCWSTR = windows_sys::core::w!("DOSSpoolMask");
645
+ pub const REGSTR_VAL_DOUBLEBUFFER: windows_sys::core::PCWSTR = windows_sys::core::w!("DoubleBuffer");
646
+ pub const REGSTR_VAL_DPI: windows_sys::core::PCWSTR = windows_sys::core::w!("dpi");
647
+ pub const REGSTR_VAL_DPILOGICALX: windows_sys::core::PCWSTR = windows_sys::core::w!("DPILogicalX");
648
+ pub const REGSTR_VAL_DPILOGICALY: windows_sys::core::PCWSTR = windows_sys::core::w!("DPILogicalY");
649
+ pub const REGSTR_VAL_DPIPHYSICALX: windows_sys::core::PCWSTR = windows_sys::core::w!("DPIPhysicalX");
650
+ pub const REGSTR_VAL_DPIPHYSICALY: windows_sys::core::PCWSTR = windows_sys::core::w!("DPIPhysicalY");
651
+ pub const REGSTR_VAL_DPMS: windows_sys::core::PCWSTR = windows_sys::core::w!("DPMS");
652
+ pub const REGSTR_VAL_DRIVER: windows_sys::core::PCWSTR = windows_sys::core::w!("Driver");
653
+ pub const REGSTR_VAL_DRIVERCACHEPATH: windows_sys::core::PCWSTR = windows_sys::core::w!("DriverCachePath");
654
+ pub const REGSTR_VAL_DRIVERDATE: windows_sys::core::PCWSTR = windows_sys::core::w!("DriverDate");
655
+ pub const REGSTR_VAL_DRIVERDATEDATA: windows_sys::core::PCWSTR = windows_sys::core::w!("DriverDateData");
656
+ pub const REGSTR_VAL_DRIVERVERSION: windows_sys::core::PCWSTR = windows_sys::core::w!("DriverVersion");
657
+ pub const REGSTR_VAL_DRIVESPINDOWN: windows_sys::core::PCWSTR = windows_sys::core::w!("DriveSpinDown");
658
+ pub const REGSTR_VAL_DRIVEWRITEBEHIND: windows_sys::core::PCWSTR = windows_sys::core::w!("DriveWriteBehind");
659
+ pub const REGSTR_VAL_DRIVE_SPINDOWN: windows_sys::core::PCWSTR = windows_sys::core::w!("NoDispSpinDown");
660
+ pub const REGSTR_VAL_DRV: windows_sys::core::PCWSTR = windows_sys::core::w!("drv");
661
+ pub const REGSTR_VAL_DRVDESC: windows_sys::core::PCWSTR = windows_sys::core::w!("DriverDesc");
662
+ pub const REGSTR_VAL_DYNAMIC: windows_sys::core::PCWSTR = windows_sys::core::w!("Dynamic");
663
+ pub const REGSTR_VAL_EISA_FLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("EISAFlags");
664
+ pub const REGSTR_VAL_EISA_FUNCTIONS: windows_sys::core::PCWSTR = windows_sys::core::w!("EISAFunctions");
665
+ pub const REGSTR_VAL_EISA_FUNCTIONS_MASK: windows_sys::core::PCWSTR = windows_sys::core::w!("EISAFunctionsMask");
666
+ pub const REGSTR_VAL_EISA_RANGES: windows_sys::core::PCWSTR = windows_sys::core::w!("EISARanges");
667
+ pub const REGSTR_VAL_EISA_SIMULATE_INT15: windows_sys::core::PCWSTR = windows_sys::core::w!("EISASimulateInt15");
668
+ pub const REGSTR_VAL_EJECT_PRIORITY: windows_sys::core::PCWSTR = windows_sys::core::w!("EjectPriority");
669
+ pub const REGSTR_VAL_ENABLEINTS: windows_sys::core::PCWSTR = windows_sys::core::w!("EnableInts");
670
+ pub const REGSTR_VAL_ENUMERATOR: windows_sys::core::PCWSTR = windows_sys::core::w!("Enumerator");
671
+ pub const REGSTR_VAL_ENUMPROPPAGES: windows_sys::core::PCWSTR = windows_sys::core::w!("EnumPropPages");
672
+ pub const REGSTR_VAL_ENUMPROPPAGES_32: windows_sys::core::PCWSTR = windows_sys::core::w!("EnumPropPages32");
673
+ pub const REGSTR_VAL_ESDI: windows_sys::core::PCWSTR = windows_sys::core::w!("ESDI\\");
674
+ pub const REGSTR_VAL_EXISTS: windows_sys::core::PCWSTR = windows_sys::core::w!("Exists");
675
+ pub const REGSTR_VAL_EXTMEM: windows_sys::core::PCWSTR = windows_sys::core::w!("ExtMem");
676
+ pub const REGSTR_VAL_FAULT_LOGFILE: windows_sys::core::PCWSTR = windows_sys::core::w!("LogFile");
677
+ pub const REGSTR_VAL_FIFODEPTH: windows_sys::core::PCWSTR = windows_sys::core::w!("FIFODepth");
678
+ pub const REGSTR_VAL_FILESHARING: windows_sys::core::PCWSTR = windows_sys::core::w!("FileSharing");
679
+ pub const REGSTR_VAL_FIRSTINSTALLDATETIME: windows_sys::core::PCWSTR = windows_sys::core::w!("FirstInstallDateTime");
680
+ pub const REGSTR_VAL_FIRSTNETDRIVE: windows_sys::core::PCWSTR = windows_sys::core::w!("FirstNetworkDrive");
681
+ pub const REGSTR_VAL_FLOP: windows_sys::core::PCWSTR = windows_sys::core::w!("FLOP\\");
682
+ pub const REGSTR_VAL_FLOPPY: windows_sys::core::PCWSTR = windows_sys::core::w!("FLOPPY");
683
+ pub const REGSTR_VAL_FONTSIZE: windows_sys::core::PCWSTR = windows_sys::core::w!("FontSize");
684
+ pub const REGSTR_VAL_FORCECL: windows_sys::core::PCWSTR = windows_sys::core::w!("ForceChangeLine");
685
+ pub const REGSTR_VAL_FORCEDCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("ForcedConfig");
686
+ pub const REGSTR_VAL_FORCEFIFO: windows_sys::core::PCWSTR = windows_sys::core::w!("ForceFIFO");
687
+ pub const REGSTR_VAL_FORCELOAD: windows_sys::core::PCWSTR = windows_sys::core::w!("ForceLoadPD");
688
+ pub const REGSTR_VAL_FORCEPMIO: windows_sys::core::PCWSTR = windows_sys::core::w!("ForcePMIO");
689
+ pub const REGSTR_VAL_FORCEREBOOT: windows_sys::core::PCWSTR = windows_sys::core::w!("ForceReboot");
690
+ pub const REGSTR_VAL_FORCERMIO: windows_sys::core::PCWSTR = windows_sys::core::w!("ForceRMIO");
691
+ pub const REGSTR_VAL_FREESPACERATIO: windows_sys::core::PCWSTR = windows_sys::core::w!("FreeSpaceRatio");
692
+ pub const REGSTR_VAL_FRIENDLYNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("FriendlyName");
693
+ pub const REGSTR_VAL_FSFILTERCLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("FSFilterClass");
694
+ pub const REGSTR_VAL_FULLTRACE: windows_sys::core::PCWSTR = windows_sys::core::w!("FullTrace");
695
+ pub const REGSTR_VAL_FUNCDESC: windows_sys::core::PCWSTR = windows_sys::core::w!("FunctionDesc");
696
+ pub const REGSTR_VAL_GAPTIME: windows_sys::core::PCWSTR = windows_sys::core::w!("GapTime");
697
+ pub const REGSTR_VAL_GRB: windows_sys::core::PCWSTR = windows_sys::core::w!("grb");
698
+ pub const REGSTR_VAL_HARDWAREID: windows_sys::core::PCWSTR = windows_sys::core::w!("HardwareID");
699
+ pub const REGSTR_VAL_HIDESHAREPWDS: windows_sys::core::PCWSTR = windows_sys::core::w!("HideSharePwds");
700
+ pub const REGSTR_VAL_HRES: windows_sys::core::PCWSTR = windows_sys::core::w!("HRes");
701
+ pub const REGSTR_VAL_HWDETECT: windows_sys::core::PCWSTR = windows_sys::core::w!("HardwareDetect");
702
+ pub const REGSTR_VAL_HWMECHANISM: windows_sys::core::PCWSTR = windows_sys::core::w!("HWMechanism");
703
+ pub const REGSTR_VAL_HWREV: windows_sys::core::PCWSTR = windows_sys::core::w!("HWRevision");
704
+ pub const REGSTR_VAL_ID: windows_sys::core::PCWSTR = windows_sys::core::w!("CurrentID");
705
+ pub const REGSTR_VAL_IDE_FORCE_SERIALIZE: windows_sys::core::PCWSTR = windows_sys::core::w!("ForceSerialization");
706
+ pub const REGSTR_VAL_IDE_NO_SERIALIZE: windows_sys::core::PCWSTR = windows_sys::core::w!("IDENoSerialize");
707
+ pub const REGSTR_VAL_INFNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("InfName");
708
+ pub const REGSTR_VAL_INFPATH: windows_sys::core::PCWSTR = windows_sys::core::w!("InfPath");
709
+ pub const REGSTR_VAL_INFSECTION: windows_sys::core::PCWSTR = windows_sys::core::w!("InfSection");
710
+ pub const REGSTR_VAL_INFSECTIONEXT: windows_sys::core::PCWSTR = windows_sys::core::w!("InfSectionExt");
711
+ pub const REGSTR_VAL_INHIBITRESULTS: windows_sys::core::PCWSTR = windows_sys::core::w!("InhibitResults");
712
+ pub const REGSTR_VAL_INSICON: windows_sys::core::PCWSTR = windows_sys::core::w!("Icon");
713
+ pub const REGSTR_VAL_INSTALLER: windows_sys::core::PCWSTR = windows_sys::core::w!("Installer");
714
+ pub const REGSTR_VAL_INSTALLER_32: windows_sys::core::PCWSTR = windows_sys::core::w!("Installer32");
715
+ pub const REGSTR_VAL_INSTALLTYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("InstallType");
716
+ pub const REGSTR_VAL_INT13: windows_sys::core::PCWSTR = windows_sys::core::w!("Int13");
717
+ pub const REGSTR_VAL_ISAPNP: windows_sys::core::PCWSTR = windows_sys::core::w!("ISAPNP");
718
+ pub const REGSTR_VAL_ISAPNP_RDP_OVERRIDE: windows_sys::core::PCWSTR = windows_sys::core::w!("RDPOverRide");
719
+ pub const REGSTR_VAL_JOYCALLOUT: windows_sys::core::PCWSTR = windows_sys::core::w!("JoystickCallout");
720
+ pub const REGSTR_VAL_JOYNCONFIG: windows_sys::core::PCWSTR = windows_sys::core::w!("Joystick%dConfiguration");
721
+ pub const REGSTR_VAL_JOYNOEMCALLOUT: windows_sys::core::PCWSTR = windows_sys::core::w!("Joystick%dOEMCallout");
722
+ pub const REGSTR_VAL_JOYNOEMNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("Joystick%dOEMName");
723
+ pub const REGSTR_VAL_JOYOEMCAL1: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCal1");
724
+ pub const REGSTR_VAL_JOYOEMCAL10: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCal10");
725
+ pub const REGSTR_VAL_JOYOEMCAL11: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCal11");
726
+ pub const REGSTR_VAL_JOYOEMCAL12: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCal12");
727
+ pub const REGSTR_VAL_JOYOEMCAL2: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCal2");
728
+ pub const REGSTR_VAL_JOYOEMCAL3: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCal3");
729
+ pub const REGSTR_VAL_JOYOEMCAL4: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCal4");
730
+ pub const REGSTR_VAL_JOYOEMCAL5: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCal5");
731
+ pub const REGSTR_VAL_JOYOEMCAL6: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCal6");
732
+ pub const REGSTR_VAL_JOYOEMCAL7: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCal7");
733
+ pub const REGSTR_VAL_JOYOEMCAL8: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCal8");
734
+ pub const REGSTR_VAL_JOYOEMCAL9: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCal9");
735
+ pub const REGSTR_VAL_JOYOEMCALCAP: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCalCap");
736
+ pub const REGSTR_VAL_JOYOEMCALLOUT: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCallout");
737
+ pub const REGSTR_VAL_JOYOEMCALWINCAP: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMCalWinCap");
738
+ pub const REGSTR_VAL_JOYOEMDATA: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMData");
739
+ pub const REGSTR_VAL_JOYOEMNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMName");
740
+ pub const REGSTR_VAL_JOYOEMPOVLABEL: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMPOVLabel");
741
+ pub const REGSTR_VAL_JOYOEMRLABEL: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMRLabel");
742
+ pub const REGSTR_VAL_JOYOEMTESTBUTTONCAP: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMTestButtonCap");
743
+ pub const REGSTR_VAL_JOYOEMTESTBUTTONDESC: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMTestButtonDesc");
744
+ pub const REGSTR_VAL_JOYOEMTESTMOVECAP: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMTestMoveCap");
745
+ pub const REGSTR_VAL_JOYOEMTESTMOVEDESC: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMTestMoveDesc");
746
+ pub const REGSTR_VAL_JOYOEMTESTWINCAP: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMTestWinCap");
747
+ pub const REGSTR_VAL_JOYOEMULABEL: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMULabel");
748
+ pub const REGSTR_VAL_JOYOEMVLABEL: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMVLabel");
749
+ pub const REGSTR_VAL_JOYOEMXYLABEL: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMXYLabel");
750
+ pub const REGSTR_VAL_JOYOEMZLABEL: windows_sys::core::PCWSTR = windows_sys::core::w!("OEMZLabel");
751
+ pub const REGSTR_VAL_JOYUSERVALUES: windows_sys::core::PCWSTR = windows_sys::core::w!("JoystickUserValues");
752
+ pub const REGSTR_VAL_LASTALIVEBT: windows_sys::core::PCWSTR = windows_sys::core::w!("LastAliveBT");
753
+ pub const REGSTR_VAL_LASTALIVEINTERVAL: windows_sys::core::PCWSTR = windows_sys::core::w!("TimeStampInterval");
754
+ pub const REGSTR_VAL_LASTALIVEPMPOLICY: windows_sys::core::PCWSTR = windows_sys::core::w!("LastAlivePMPolicy");
755
+ pub const REGSTR_VAL_LASTALIVESTAMP: windows_sys::core::PCWSTR = windows_sys::core::w!("LastAliveStamp");
756
+ pub const REGSTR_VAL_LASTALIVESTAMPFORCED: windows_sys::core::PCWSTR = windows_sys::core::w!("LastAliveStampForced");
757
+ pub const REGSTR_VAL_LASTALIVESTAMPINTERVAL: windows_sys::core::PCWSTR = windows_sys::core::w!("LastAliveStampInterval");
758
+ pub const REGSTR_VAL_LASTALIVESTAMPPOLICYINTERVAL: windows_sys::core::PCWSTR = windows_sys::core::w!("LastAliveStampPolicyInterval");
759
+ pub const REGSTR_VAL_LASTALIVEUPTIME: windows_sys::core::PCWSTR = windows_sys::core::w!("LastAliveUptime");
760
+ pub const REGSTR_VAL_LASTBOOTPMDRVS: windows_sys::core::PCWSTR = windows_sys::core::w!("LastBootPMDrvs");
761
+ pub const REGSTR_VAL_LASTCOMPUTERNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("LastComputerName");
762
+ pub const REGSTR_VAL_LASTPCIBUSNUM: windows_sys::core::PCWSTR = windows_sys::core::w!("LastPCIBusNum");
763
+ pub const REGSTR_VAL_LAST_UPDATE_TIME: windows_sys::core::PCWSTR = windows_sys::core::w!("LastUpdateTime");
764
+ pub const REGSTR_VAL_LEGALNOTICECAPTION: windows_sys::core::PCWSTR = windows_sys::core::w!("LegalNoticeCaption");
765
+ pub const REGSTR_VAL_LEGALNOTICETEXT: windows_sys::core::PCWSTR = windows_sys::core::w!("LegalNoticeText");
766
+ pub const REGSTR_VAL_LICENSINGINFO: windows_sys::core::PCWSTR = windows_sys::core::w!("LicensingInfo");
767
+ pub const REGSTR_VAL_LINKED: windows_sys::core::PCWSTR = windows_sys::core::w!("Linked");
768
+ pub const REGSTR_VAL_LOADHI: windows_sys::core::PCWSTR = windows_sys::core::w!("LoadHi");
769
+ pub const REGSTR_VAL_LOADRMDRIVERS: windows_sys::core::PCWSTR = windows_sys::core::w!("LoadRMDrivers");
770
+ pub const REGSTR_VAL_LOCATION_INFORMATION: windows_sys::core::PCWSTR = windows_sys::core::w!("LocationInformation");
771
+ pub const REGSTR_VAL_LOCATION_INFORMATION_OVERRIDE: windows_sys::core::PCWSTR = windows_sys::core::w!("LocationInformationOverride");
772
+ pub const REGSTR_VAL_LOWERFILTERS: windows_sys::core::PCWSTR = windows_sys::core::w!("LowerFilters");
773
+ pub const REGSTR_VAL_LOWER_FILTER_DEFAULT_LEVEL: windows_sys::core::PCWSTR = windows_sys::core::w!("LowerFilterDefaultLevel");
774
+ pub const REGSTR_VAL_LOWER_FILTER_LEVELS: windows_sys::core::PCWSTR = windows_sys::core::w!("LowerFilterLevels");
775
+ pub const REGSTR_VAL_MACHINETYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("MachineType");
776
+ pub const REGSTR_VAL_MANUFACTURER: windows_sys::core::PCWSTR = windows_sys::core::w!("Manufacturer");
777
+ pub const REGSTR_VAL_MAP: windows_sys::core::PCWSTR = windows_sys::core::w!("Map");
778
+ pub const REGSTR_VAL_MATCHINGDEVID: windows_sys::core::PCWSTR = windows_sys::core::w!("MatchingDeviceId");
779
+ pub const REGSTR_VAL_MAXCONNECTIONS: windows_sys::core::PCWSTR = windows_sys::core::w!("MaxConnections");
780
+ pub const REGSTR_VAL_MAXLIP: windows_sys::core::PCWSTR = windows_sys::core::w!("MaxLIP");
781
+ pub const REGSTR_VAL_MAXRES: windows_sys::core::PCWSTR = windows_sys::core::w!("MaxResolution");
782
+ pub const REGSTR_VAL_MAXRETRY: windows_sys::core::PCWSTR = windows_sys::core::w!("MaxRetry");
783
+ pub const REGSTR_VAL_MAX_HCID_LEN: u32 = 1024u32;
784
+ pub const REGSTR_VAL_MEDIA: windows_sys::core::PCWSTR = windows_sys::core::w!("MediaPath");
785
+ pub const REGSTR_VAL_MFG: windows_sys::core::PCWSTR = windows_sys::core::w!("Mfg");
786
+ pub const REGSTR_VAL_MF_FLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("MFFlags");
787
+ pub const REGSTR_VAL_MINIPORT_STAT: windows_sys::core::PCWSTR = windows_sys::core::w!("MiniportStatus");
788
+ pub const REGSTR_VAL_MINPWDLEN: windows_sys::core::PCWSTR = windows_sys::core::w!("MinPwdLen");
789
+ pub const REGSTR_VAL_MINRETRY: windows_sys::core::PCWSTR = windows_sys::core::w!("MinRetry");
790
+ pub const REGSTR_VAL_MODE: windows_sys::core::PCWSTR = windows_sys::core::w!("Mode");
791
+ pub const REGSTR_VAL_MODEL: windows_sys::core::PCWSTR = windows_sys::core::w!("Model");
792
+ pub const REGSTR_VAL_MSDOSMODE: windows_sys::core::PCWSTR = windows_sys::core::w!("MSDOSMode");
793
+ pub const REGSTR_VAL_MSDOSMODEDISCARD: windows_sys::core::PCWSTR = windows_sys::core::w!("Discard");
794
+ pub const REGSTR_VAL_MUSTBEVALIDATED: windows_sys::core::PCWSTR = windows_sys::core::w!("MustBeValidated");
795
+ pub const REGSTR_VAL_NAMECACHECOUNT: windows_sys::core::PCWSTR = windows_sys::core::w!("NameCache");
796
+ pub const REGSTR_VAL_NAMENUMERICTAIL: windows_sys::core::PCWSTR = windows_sys::core::w!("NameNumericTail");
797
+ pub const REGSTR_VAL_NCP_BROWSEMASTER: windows_sys::core::PCWSTR = windows_sys::core::w!("BrowseMaster");
798
+ pub const REGSTR_VAL_NCP_USEPEERBROWSING: windows_sys::core::PCWSTR = windows_sys::core::w!("Use_PeerBrowsing");
799
+ pub const REGSTR_VAL_NCP_USESAP: windows_sys::core::PCWSTR = windows_sys::core::w!("Use_Sap");
800
+ pub const REGSTR_VAL_NDP: windows_sys::core::PCWSTR = windows_sys::core::w!("NDP");
801
+ pub const REGSTR_VAL_NETCARD: windows_sys::core::PCWSTR = windows_sys::core::w!("Netcard");
802
+ pub const REGSTR_VAL_NETCLEAN: windows_sys::core::PCWSTR = windows_sys::core::w!("NetClean");
803
+ pub const REGSTR_VAL_NETOSTYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("NetOSType");
804
+ pub const REGSTR_VAL_NETSETUP_DISABLE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoNetSetup");
805
+ pub const REGSTR_VAL_NETSETUP_NOCONFIGPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoNetSetupConfigPage");
806
+ pub const REGSTR_VAL_NETSETUP_NOIDPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoNetSetupIDPage");
807
+ pub const REGSTR_VAL_NETSETUP_NOSECURITYPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoNetSetupSecurityPage");
808
+ pub const REGSTR_VAL_NOCMOSORFDPT: windows_sys::core::PCWSTR = windows_sys::core::w!("NoCMOSorFDPT");
809
+ pub const REGSTR_VAL_NODISPLAYCLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("NoDisplayClass");
810
+ pub const REGSTR_VAL_NOENTIRENETWORK: windows_sys::core::PCWSTR = windows_sys::core::w!("NoEntireNetwork");
811
+ pub const REGSTR_VAL_NOFILESHARING: windows_sys::core::PCWSTR = windows_sys::core::w!("NoFileSharing");
812
+ pub const REGSTR_VAL_NOFILESHARINGCTRL: windows_sys::core::PCWSTR = windows_sys::core::w!("NoFileSharingControl");
813
+ pub const REGSTR_VAL_NOIDE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoIDE");
814
+ pub const REGSTR_VAL_NOINSTALLCLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("NoInstallClass");
815
+ pub const REGSTR_VAL_NONSTANDARD_ATAPI: windows_sys::core::PCWSTR = windows_sys::core::w!("NonStandardATAPI");
816
+ pub const REGSTR_VAL_NOPRINTSHARING: windows_sys::core::PCWSTR = windows_sys::core::w!("NoPrintSharing");
817
+ pub const REGSTR_VAL_NOPRINTSHARINGCTRL: windows_sys::core::PCWSTR = windows_sys::core::w!("NoPrintSharingControl");
818
+ pub const REGSTR_VAL_NOUSECLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("NoUseClass");
819
+ pub const REGSTR_VAL_NOWORKGROUPCONTENTS: windows_sys::core::PCWSTR = windows_sys::core::w!("NoWorkgroupContents");
820
+ pub const REGSTR_VAL_OLDMSDOSVER: windows_sys::core::PCWSTR = windows_sys::core::w!("OldMSDOSVer");
821
+ pub const REGSTR_VAL_OLDWINDIR: windows_sys::core::PCWSTR = windows_sys::core::w!("OldWinDir");
822
+ pub const REGSTR_VAL_OPTIMIZESFN: windows_sys::core::PCWSTR = windows_sys::core::w!("OptimizeSFN");
823
+ pub const REGSTR_VAL_OPTIONS: windows_sys::core::PCWSTR = windows_sys::core::w!("Options");
824
+ pub const REGSTR_VAL_OPTORDER: windows_sys::core::PCWSTR = windows_sys::core::w!("Order");
825
+ pub const REGSTR_VAL_P1284MDL: windows_sys::core::PCWSTR = windows_sys::core::w!("Model");
826
+ pub const REGSTR_VAL_P1284MFG: windows_sys::core::PCWSTR = windows_sys::core::w!("Manufacturer");
827
+ pub const REGSTR_VAL_PATHCACHECOUNT: windows_sys::core::PCWSTR = windows_sys::core::w!("PathCache");
828
+ pub const REGSTR_VAL_PCCARD_POWER: windows_sys::core::PCWSTR = windows_sys::core::w!("EnablePowerManagement");
829
+ pub const REGSTR_VAL_PCI: windows_sys::core::PCWSTR = windows_sys::core::w!("PCI");
830
+ pub const REGSTR_VAL_PCIBIOSVER: windows_sys::core::PCWSTR = windows_sys::core::w!("PCIBIOSVer");
831
+ pub const REGSTR_VAL_PCICIRQMAP: windows_sys::core::PCWSTR = windows_sys::core::w!("PCICIRQMap");
832
+ pub const REGSTR_VAL_PCICOPTIONS: windows_sys::core::PCWSTR = windows_sys::core::w!("PCICOptions");
833
+ pub const REGSTR_VAL_PCMCIA_ALLOC: windows_sys::core::PCWSTR = windows_sys::core::w!("AllocMemWin");
834
+ pub const REGSTR_VAL_PCMCIA_ATAD: windows_sys::core::PCWSTR = windows_sys::core::w!("ATADelay");
835
+ pub const REGSTR_VAL_PCMCIA_MEM: windows_sys::core::PCWSTR = windows_sys::core::w!("Memory");
836
+ pub const REGSTR_VAL_PCMCIA_OPT: windows_sys::core::PCWSTR = windows_sys::core::w!("Options");
837
+ pub const REGSTR_VAL_PCMCIA_SIZ: windows_sys::core::PCWSTR = windows_sys::core::w!("MinRegionSize");
838
+ pub const REGSTR_VAL_PCMTDRIVER: windows_sys::core::PCWSTR = windows_sys::core::w!("MTD");
839
+ pub const REGSTR_VAL_PCSSDRIVER: windows_sys::core::PCWSTR = windows_sys::core::w!("Driver");
840
+ pub const REGSTR_VAL_PHYSICALDEVICEOBJECT: windows_sys::core::PCWSTR = windows_sys::core::w!("PhysicalDeviceObject");
841
+ pub const REGSTR_VAL_PMODE_INT13: windows_sys::core::PCWSTR = windows_sys::core::w!("PModeInt13");
842
+ pub const REGSTR_VAL_PNPBIOSVER: windows_sys::core::PCWSTR = windows_sys::core::w!("PnPBIOSVer");
843
+ pub const REGSTR_VAL_PNPSTRUCOFFSET: windows_sys::core::PCWSTR = windows_sys::core::w!("PnPStrucOffset");
844
+ pub const REGSTR_VAL_POLICY: windows_sys::core::PCWSTR = windows_sys::core::w!("Policy");
845
+ pub const REGSTR_VAL_POLLING: windows_sys::core::PCWSTR = windows_sys::core::w!("Polling");
846
+ pub const REGSTR_VAL_PORTNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("PortName");
847
+ pub const REGSTR_VAL_PORTSUBCLASS: windows_sys::core::PCWSTR = windows_sys::core::w!("PortSubClass");
848
+ pub const REGSTR_VAL_PREFREDIR: windows_sys::core::PCWSTR = windows_sys::core::w!("PreferredRedir");
849
+ pub const REGSTR_VAL_PRESERVECASE: windows_sys::core::PCWSTR = windows_sys::core::w!("PreserveCase");
850
+ pub const REGSTR_VAL_PRESERVELONGNAMES: windows_sys::core::PCWSTR = windows_sys::core::w!("PreserveLongNames");
851
+ pub const REGSTR_VAL_PRINTERS_HIDETABS: windows_sys::core::PCWSTR = windows_sys::core::w!("NoPrinterTabs");
852
+ pub const REGSTR_VAL_PRINTERS_MASK: windows_sys::core::PCWSTR = windows_sys::core::w!("PrintersMask");
853
+ pub const REGSTR_VAL_PRINTERS_NOADD: windows_sys::core::PCWSTR = windows_sys::core::w!("NoAddPrinter");
854
+ pub const REGSTR_VAL_PRINTERS_NODELETE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoDeletePrinter");
855
+ pub const REGSTR_VAL_PRINTSHARING: windows_sys::core::PCWSTR = windows_sys::core::w!("PrintSharing");
856
+ pub const REGSTR_VAL_PRIORITY: windows_sys::core::PCWSTR = windows_sys::core::w!("Priority");
857
+ pub const REGSTR_VAL_PRIVATE: windows_sys::core::PCWSTR = windows_sys::core::w!("Private");
858
+ pub const REGSTR_VAL_PRIVATEFUNC: windows_sys::core::PCWSTR = windows_sys::core::w!("PrivateFunc");
859
+ pub const REGSTR_VAL_PRIVATEPROBLEM: windows_sys::core::PCWSTR = windows_sys::core::w!("PrivateProblem");
860
+ pub const REGSTR_VAL_PRODUCTID: windows_sys::core::PCWSTR = windows_sys::core::w!("ProductId");
861
+ pub const REGSTR_VAL_PRODUCTTYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("ProductType");
862
+ pub const REGSTR_VAL_PROFILEFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("ProfileFlags");
863
+ pub const REGSTR_VAL_PROPERTIES: windows_sys::core::PCWSTR = windows_sys::core::w!("Properties");
864
+ pub const REGSTR_VAL_PROTINIPATH: windows_sys::core::PCWSTR = windows_sys::core::w!("ProtIniPath");
865
+ pub const REGSTR_VAL_PROVIDER_NAME: windows_sys::core::PCWSTR = windows_sys::core::w!("ProviderName");
866
+ pub const REGSTR_VAL_PWDEXPIRATION: windows_sys::core::PCWSTR = windows_sys::core::w!("PwdExpiration");
867
+ pub const REGSTR_VAL_PWDPROVIDER_CHANGEORDER: windows_sys::core::PCWSTR = windows_sys::core::w!("ChangeOrder");
868
+ pub const REGSTR_VAL_PWDPROVIDER_CHANGEPWD: windows_sys::core::PCWSTR = windows_sys::core::w!("ChangePassword");
869
+ pub const REGSTR_VAL_PWDPROVIDER_CHANGEPWDHWND: windows_sys::core::PCWSTR = windows_sys::core::w!("ChangePasswordHwnd");
870
+ pub const REGSTR_VAL_PWDPROVIDER_DESC: windows_sys::core::PCWSTR = windows_sys::core::w!("Description");
871
+ pub const REGSTR_VAL_PWDPROVIDER_GETPWDSTATUS: windows_sys::core::PCWSTR = windows_sys::core::w!("GetPasswordStatus");
872
+ pub const REGSTR_VAL_PWDPROVIDER_ISNP: windows_sys::core::PCWSTR = windows_sys::core::w!("NetworkProvider");
873
+ pub const REGSTR_VAL_PWDPROVIDER_PATH: windows_sys::core::PCWSTR = windows_sys::core::w!("ProviderPath");
874
+ pub const REGSTR_VAL_RDINTTHRESHOLD: windows_sys::core::PCWSTR = windows_sys::core::w!("RDIntThreshold");
875
+ pub const REGSTR_VAL_READAHEADTHRESHOLD: windows_sys::core::PCWSTR = windows_sys::core::w!("ReadAheadThreshold");
876
+ pub const REGSTR_VAL_READCACHING: windows_sys::core::PCWSTR = windows_sys::core::w!("ReadCaching");
877
+ pub const REGSTR_VAL_REALNETSTART: windows_sys::core::PCWSTR = windows_sys::core::w!("RealNetStart");
878
+ pub const REGSTR_VAL_REASONCODE: windows_sys::core::PCWSTR = windows_sys::core::w!("ReasonCode");
879
+ pub const REGSTR_VAL_REFRESHRATE: windows_sys::core::PCWSTR = windows_sys::core::w!("RefreshRate");
880
+ pub const REGSTR_VAL_REGITEMDELETEMESSAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("Removal Message");
881
+ pub const REGSTR_VAL_REGORGANIZATION: windows_sys::core::PCWSTR = windows_sys::core::w!("RegisteredOrganization");
882
+ pub const REGSTR_VAL_REGOWNER: windows_sys::core::PCWSTR = windows_sys::core::w!("RegisteredOwner");
883
+ pub const REGSTR_VAL_REINSTALL_DEVICEINSTANCEIDS: windows_sys::core::PCWSTR = windows_sys::core::w!("DeviceInstanceIds");
884
+ pub const REGSTR_VAL_REINSTALL_DISPLAYNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("DisplayName");
885
+ pub const REGSTR_VAL_REINSTALL_STRING: windows_sys::core::PCWSTR = windows_sys::core::w!("ReinstallString");
886
+ pub const REGSTR_VAL_REMOTE_PATH: windows_sys::core::PCWSTR = windows_sys::core::w!("RemotePath");
887
+ pub const REGSTR_VAL_REMOVABLE: windows_sys::core::PCWSTR = windows_sys::core::w!("Removable");
888
+ pub const REGSTR_VAL_REMOVAL_POLICY: windows_sys::core::PCWSTR = windows_sys::core::w!("RemovalPolicy");
889
+ pub const REGSTR_VAL_REMOVEROMOKAY: windows_sys::core::PCWSTR = windows_sys::core::w!("RemoveRomOkay");
890
+ pub const REGSTR_VAL_REMOVEROMOKAYFUNC: windows_sys::core::PCWSTR = windows_sys::core::w!("RemoveRomOkayFunc");
891
+ pub const REGSTR_VAL_RESERVED_DEVNODE: windows_sys::core::PCWSTR = windows_sys::core::w!("HTREE\\RESERVED\\0");
892
+ pub const REGSTR_VAL_RESOLUTION: windows_sys::core::PCWSTR = windows_sys::core::w!("Resolution");
893
+ pub const REGSTR_VAL_RESOURCES: windows_sys::core::PCWSTR = windows_sys::core::w!("Resources");
894
+ pub const REGSTR_VAL_RESOURCE_MAP: windows_sys::core::PCWSTR = windows_sys::core::w!("ResourceMap");
895
+ pub const REGSTR_VAL_RESOURCE_PICKER_EXCEPTIONS: windows_sys::core::PCWSTR = windows_sys::core::w!("ResourcePickerExceptions");
896
+ pub const REGSTR_VAL_RESOURCE_PICKER_TAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("ResourcePickerTags");
897
+ pub const REGSTR_VAL_RESTRICTRUN: windows_sys::core::PCWSTR = windows_sys::core::w!("RestrictRun");
898
+ pub const REGSTR_VAL_RESUMERESET: windows_sys::core::PCWSTR = windows_sys::core::w!("ResumeReset");
899
+ pub const REGSTR_VAL_REVISION: windows_sys::core::PCWSTR = windows_sys::core::w!("Revision");
900
+ pub const REGSTR_VAL_REVLEVEL: windows_sys::core::PCWSTR = windows_sys::core::w!("RevisionLevel");
901
+ pub const REGSTR_VAL_ROOT_DEVNODE: windows_sys::core::PCWSTR = windows_sys::core::w!("HTREE\\ROOT\\0");
902
+ pub const REGSTR_VAL_RUNLOGINSCRIPT: windows_sys::core::PCWSTR = windows_sys::core::w!("ProcessLoginScript");
903
+ pub const REGSTR_VAL_SCANNER: windows_sys::core::PCWSTR = windows_sys::core::w!("SCANNER");
904
+ pub const REGSTR_VAL_SCAN_ONLY_FIRST: windows_sys::core::PCWSTR = windows_sys::core::w!("ScanOnlyFirstDrive");
905
+ pub const REGSTR_VAL_SCSI: windows_sys::core::PCWSTR = windows_sys::core::w!("SCSI\\");
906
+ pub const REGSTR_VAL_SCSILUN: windows_sys::core::PCWSTR = windows_sys::core::w!("SCSILUN");
907
+ pub const REGSTR_VAL_SCSITID: windows_sys::core::PCWSTR = windows_sys::core::w!("SCSITargetID");
908
+ pub const REGSTR_VAL_SEARCHMODE: windows_sys::core::PCWSTR = windows_sys::core::w!("SearchMode");
909
+ pub const REGSTR_VAL_SEARCHOPTIONS: windows_sys::core::PCWSTR = windows_sys::core::w!("SearchOptions");
910
+ pub const REGSTR_VAL_SECCPL_NOADMINPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoAdminPage");
911
+ pub const REGSTR_VAL_SECCPL_NOPROFILEPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoProfilePage");
912
+ pub const REGSTR_VAL_SECCPL_NOPWDPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoPwdPage");
913
+ pub const REGSTR_VAL_SECCPL_NOSECCPL: windows_sys::core::PCWSTR = windows_sys::core::w!("NoSecCPL");
914
+ pub const REGSTR_VAL_SERVICE: windows_sys::core::PCWSTR = windows_sys::core::w!("Service");
915
+ pub const REGSTR_VAL_SETUPFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("SetupFlags");
916
+ pub const REGSTR_VAL_SETUPMACHINETYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("SetupMachineType");
917
+ pub const REGSTR_VAL_SETUPN: windows_sys::core::PCWSTR = windows_sys::core::w!("SetupN");
918
+ pub const REGSTR_VAL_SETUPNPATH: windows_sys::core::PCWSTR = windows_sys::core::w!("SetupNPath");
919
+ pub const REGSTR_VAL_SETUPPROGRAMRAN: windows_sys::core::PCWSTR = windows_sys::core::w!("SetupProgramRan");
920
+ pub const REGSTR_VAL_SHARES_FLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("Flags");
921
+ pub const REGSTR_VAL_SHARES_PATH: windows_sys::core::PCWSTR = windows_sys::core::w!("Path");
922
+ pub const REGSTR_VAL_SHARES_REMARK: windows_sys::core::PCWSTR = windows_sys::core::w!("Remark");
923
+ pub const REGSTR_VAL_SHARES_RO_PASS: windows_sys::core::PCWSTR = windows_sys::core::w!("Parm2");
924
+ pub const REGSTR_VAL_SHARES_RW_PASS: windows_sys::core::PCWSTR = windows_sys::core::w!("Parm1");
925
+ pub const REGSTR_VAL_SHARES_TYPE: windows_sys::core::PCWSTR = windows_sys::core::w!("Type");
926
+ pub const REGSTR_VAL_SHARE_IRQ: windows_sys::core::PCWSTR = windows_sys::core::w!("ForceIRQSharing");
927
+ pub const REGSTR_VAL_SHELLVERSION: windows_sys::core::PCWSTR = windows_sys::core::w!("ShellVersion");
928
+ pub const REGSTR_VAL_SHOWDOTS: windows_sys::core::PCWSTR = windows_sys::core::w!("ShowDots");
929
+ pub const REGSTR_VAL_SHOWREASONUI: windows_sys::core::PCWSTR = windows_sys::core::w!("ShutdownReasonUI");
930
+ pub const REGSTR_VAL_SHUTDOWNREASON: windows_sys::core::PCWSTR = windows_sys::core::w!("ShutdownReason");
931
+ pub const REGSTR_VAL_SHUTDOWNREASON_CODE: windows_sys::core::PCWSTR = windows_sys::core::w!("ShutdownReasonCode");
932
+ pub const REGSTR_VAL_SHUTDOWNREASON_COMMENT: windows_sys::core::PCWSTR = windows_sys::core::w!("ShutdownReasonComment");
933
+ pub const REGSTR_VAL_SHUTDOWNREASON_PROCESS: windows_sys::core::PCWSTR = windows_sys::core::w!("ShutdownReasonProcess");
934
+ pub const REGSTR_VAL_SHUTDOWNREASON_USERNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("ShutdownReasonUserName");
935
+ pub const REGSTR_VAL_SHUTDOWN_FLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("ShutdownFlags");
936
+ pub const REGSTR_VAL_SHUTDOWN_IGNORE_PREDEFINED: windows_sys::core::PCWSTR = windows_sys::core::w!("ShutdownIgnorePredefinedReasons");
937
+ pub const REGSTR_VAL_SHUTDOWN_STATE_SNAPSHOT: windows_sys::core::PCWSTR = windows_sys::core::w!("ShutdownStateSnapshot");
938
+ pub const REGSTR_VAL_SILENTINSTALL: windows_sys::core::PCWSTR = windows_sys::core::w!("SilentInstall");
939
+ pub const REGSTR_VAL_SLSUPPORT: windows_sys::core::PCWSTR = windows_sys::core::w!("SLSupport");
940
+ pub const REGSTR_VAL_SOFTCOMPATMODE: windows_sys::core::PCWSTR = windows_sys::core::w!("SoftCompatMode");
941
+ pub const REGSTR_VAL_SRCPATH: windows_sys::core::PCWSTR = windows_sys::core::w!("SourcePath");
942
+ pub const REGSTR_VAL_SRVNAMECACHE: windows_sys::core::PCWSTR = windows_sys::core::w!("ServerNameCache");
943
+ pub const REGSTR_VAL_SRVNAMECACHECOUNT: windows_sys::core::PCWSTR = windows_sys::core::w!("ServerNameCacheMax");
944
+ pub const REGSTR_VAL_SRVNAMECACHENETPROV: windows_sys::core::PCWSTR = windows_sys::core::w!("ServerNameCacheNumNets");
945
+ pub const REGSTR_VAL_START_ON_BOOT: windows_sys::core::PCWSTR = windows_sys::core::w!("StartOnBoot");
946
+ pub const REGSTR_VAL_STAT: windows_sys::core::PCWSTR = windows_sys::core::w!("Status");
947
+ pub const REGSTR_VAL_STATICDRIVE: windows_sys::core::PCWSTR = windows_sys::core::w!("StaticDrive");
948
+ pub const REGSTR_VAL_STATICVXD: windows_sys::core::PCWSTR = windows_sys::core::w!("StaticVxD");
949
+ pub const REGSTR_VAL_STDDOSOPTION: windows_sys::core::PCWSTR = windows_sys::core::w!("StdOption");
950
+ pub const REGSTR_VAL_SUBMODEL: windows_sys::core::PCWSTR = windows_sys::core::w!("Submodel");
951
+ pub const REGSTR_VAL_SUPPORTBURST: windows_sys::core::PCWSTR = windows_sys::core::w!("SupportBurst");
952
+ pub const REGSTR_VAL_SUPPORTLFN: windows_sys::core::PCWSTR = windows_sys::core::w!("SupportLFN");
953
+ pub const REGSTR_VAL_SUPPORTTUNNELLING: windows_sys::core::PCWSTR = windows_sys::core::w!("SupportTunnelling");
954
+ pub const REGSTR_VAL_SYMBOLIC_LINK: windows_sys::core::PCWSTR = windows_sys::core::w!("SymbolicLink");
955
+ pub const REGSTR_VAL_SYNCDATAXFER: windows_sys::core::PCWSTR = windows_sys::core::w!("SyncDataXfer");
956
+ pub const REGSTR_VAL_SYSDM: windows_sys::core::PCWSTR = windows_sys::core::w!("SysDM");
957
+ pub const REGSTR_VAL_SYSDMFUNC: windows_sys::core::PCWSTR = windows_sys::core::w!("SysDMFunc");
958
+ pub const REGSTR_VAL_SYSTEMCPL_NOCONFIGPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoConfigPage");
959
+ pub const REGSTR_VAL_SYSTEMCPL_NODEVMGRPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoDevMgrPage");
960
+ pub const REGSTR_VAL_SYSTEMCPL_NOFILESYSPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoFileSysPage");
961
+ pub const REGSTR_VAL_SYSTEMCPL_NOVIRTMEMPAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoVirtMemPage");
962
+ pub const REGSTR_VAL_SYSTEMROOT: windows_sys::core::PCWSTR = windows_sys::core::w!("SystemRoot");
963
+ pub const REGSTR_VAL_SYSTRAYBATFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("PowerFlags");
964
+ pub const REGSTR_VAL_SYSTRAYPCCARDFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("PCMCIAFlags");
965
+ pub const REGSTR_VAL_SYSTRAYSVCS: windows_sys::core::PCWSTR = windows_sys::core::w!("Services");
966
+ pub const REGSTR_VAL_TABLE_STAT: windows_sys::core::PCWSTR = windows_sys::core::w!("TableStatus");
967
+ pub const REGSTR_VAL_TAPE: windows_sys::core::PCWSTR = windows_sys::core::w!("TAPE");
968
+ pub const REGSTR_VAL_TRANSITION: windows_sys::core::PCWSTR = windows_sys::core::w!("Transition");
969
+ pub const REGSTR_VAL_TRANSPORT: windows_sys::core::PCWSTR = windows_sys::core::w!("Transport");
970
+ pub const REGSTR_VAL_TZACTBIAS: windows_sys::core::PCWSTR = windows_sys::core::w!("ActiveTimeBias");
971
+ pub const REGSTR_VAL_TZBIAS: windows_sys::core::PCWSTR = windows_sys::core::w!("Bias");
972
+ pub const REGSTR_VAL_TZDLTBIAS: windows_sys::core::PCWSTR = windows_sys::core::w!("DaylightBias");
973
+ pub const REGSTR_VAL_TZDLTFLAG: windows_sys::core::PCWSTR = windows_sys::core::w!("DaylightFlag");
974
+ pub const REGSTR_VAL_TZDLTNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("DaylightName");
975
+ pub const REGSTR_VAL_TZDLTSTART: windows_sys::core::PCWSTR = windows_sys::core::w!("DaylightStart");
976
+ pub const REGSTR_VAL_TZNOAUTOTIME: windows_sys::core::PCWSTR = windows_sys::core::w!("DisableAutoDaylightTimeSet");
977
+ pub const REGSTR_VAL_TZNOCHANGEEND: windows_sys::core::PCWSTR = windows_sys::core::w!("NoChangeEnd");
978
+ pub const REGSTR_VAL_TZNOCHANGESTART: windows_sys::core::PCWSTR = windows_sys::core::w!("NoChangeStart");
979
+ pub const REGSTR_VAL_TZSTDBIAS: windows_sys::core::PCWSTR = windows_sys::core::w!("StandardBias");
980
+ pub const REGSTR_VAL_TZSTDNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("StandardName");
981
+ pub const REGSTR_VAL_TZSTDSTART: windows_sys::core::PCWSTR = windows_sys::core::w!("StandardStart");
982
+ pub const REGSTR_VAL_UI_NUMBER: windows_sys::core::PCWSTR = windows_sys::core::w!("UINumber");
983
+ pub const REGSTR_VAL_UI_NUMBER_DESC_FORMAT: windows_sys::core::PCWSTR = windows_sys::core::w!("UINumberDescFormat");
984
+ pub const REGSTR_VAL_UNDOCK_WITHOUT_LOGON: windows_sys::core::PCWSTR = windows_sys::core::w!("UndockWithoutLogon");
985
+ pub const REGSTR_VAL_UNINSTALLER_COMMANDLINE: windows_sys::core::PCWSTR = windows_sys::core::w!("UninstallString");
986
+ pub const REGSTR_VAL_UNINSTALLER_DISPLAYNAME: windows_sys::core::PCWSTR = windows_sys::core::w!("DisplayName");
987
+ pub const REGSTR_VAL_UPGRADE: windows_sys::core::PCWSTR = windows_sys::core::w!("Upgrade");
988
+ pub const REGSTR_VAL_UPPERFILTERS: windows_sys::core::PCWSTR = windows_sys::core::w!("UpperFilters");
989
+ pub const REGSTR_VAL_UPPER_FILTER_DEFAULT_LEVEL: windows_sys::core::PCWSTR = windows_sys::core::w!("UpperFilterDefaultLevel");
990
+ pub const REGSTR_VAL_UPPER_FILTER_LEVELS: windows_sys::core::PCWSTR = windows_sys::core::w!("UpperFilterLevels");
991
+ pub const REGSTR_VAL_USERSETTINGS: windows_sys::core::PCWSTR = windows_sys::core::w!("AdapterSettings");
992
+ pub const REGSTR_VAL_USER_NAME: windows_sys::core::PCWSTR = windows_sys::core::w!("UserName");
993
+ pub const REGSTR_VAL_USRDRVLET: windows_sys::core::PCWSTR = windows_sys::core::w!("UserDriveLetterAssignment");
994
+ pub const REGSTR_VAL_VDD: windows_sys::core::PCWSTR = windows_sys::core::w!("vdd");
995
+ pub const REGSTR_VAL_VER: windows_sys::core::PCWSTR = windows_sys::core::w!("Ver");
996
+ pub const REGSTR_VAL_VERIFYKEY: windows_sys::core::PCWSTR = windows_sys::core::w!("VerifyKey");
997
+ pub const REGSTR_VAL_VIRTUALHDIRQ: windows_sys::core::PCWSTR = windows_sys::core::w!("VirtualHDIRQ");
998
+ pub const REGSTR_VAL_VOLIDLETIMEOUT: windows_sys::core::PCWSTR = windows_sys::core::w!("VolumeIdleTimeout");
999
+ pub const REGSTR_VAL_VPOWERDFLAGS: windows_sys::core::PCWSTR = windows_sys::core::w!("Flags");
1000
+ pub const REGSTR_VAL_VRES: windows_sys::core::PCWSTR = windows_sys::core::w!("VRes");
1001
+ pub const REGSTR_VAL_VXDGROUPS: windows_sys::core::PCWSTR = windows_sys::core::w!("VXDGroups");
1002
+ pub const REGSTR_VAL_WAITFORUNDOCK: windows_sys::core::PCWSTR = windows_sys::core::w!("WaitForUndock");
1003
+ pub const REGSTR_VAL_WAITFORUNDOCKFUNC: windows_sys::core::PCWSTR = windows_sys::core::w!("WaitForUndockFunc");
1004
+ pub const REGSTR_VAL_WIN31FILESYSTEM: windows_sys::core::PCWSTR = windows_sys::core::w!("Win31FileSystem");
1005
+ pub const REGSTR_VAL_WIN31PROVIDER: windows_sys::core::PCWSTR = windows_sys::core::w!("Win31Provider");
1006
+ pub const REGSTR_VAL_WINBOOTDIR: windows_sys::core::PCWSTR = windows_sys::core::w!("WinbootDir");
1007
+ pub const REGSTR_VAL_WINCP: windows_sys::core::PCWSTR = windows_sys::core::w!("ACP");
1008
+ pub const REGSTR_VAL_WINDIR: windows_sys::core::PCWSTR = windows_sys::core::w!("WinDir");
1009
+ pub const REGSTR_VAL_WINOLDAPP_DISABLED: windows_sys::core::PCWSTR = windows_sys::core::w!("Disabled");
1010
+ pub const REGSTR_VAL_WINOLDAPP_NOREALMODE: windows_sys::core::PCWSTR = windows_sys::core::w!("NoRealMode");
1011
+ pub const REGSTR_VAL_WORKGROUP: windows_sys::core::PCWSTR = windows_sys::core::w!("Workgroup");
1012
+ pub const REGSTR_VAL_WRAPPER: windows_sys::core::PCWSTR = windows_sys::core::w!("Wrapper");
1013
+ pub const REGSTR_VAL_WRINTTHRESHOLD: windows_sys::core::PCWSTR = windows_sys::core::w!("WRIntThreshold");
1014
+ pub const REGSTR_VAL_WRKGRP_FORCEMAPPING: windows_sys::core::PCWSTR = windows_sys::core::w!("WrkgrpForceMapping");
1015
+ pub const REGSTR_VAL_WRKGRP_REQUIRED: windows_sys::core::PCWSTR = windows_sys::core::w!("WrkgrpRequired");
1016
+ pub const REG_BINARY: REG_VALUE_TYPE = 3u32;
1017
+ pub const REG_CREATED_NEW_KEY: REG_CREATE_KEY_DISPOSITION = 1u32;
1018
+ pub type REG_CREATE_KEY_DISPOSITION = u32;
1019
+ pub const REG_DWORD: REG_VALUE_TYPE = 4u32;
1020
+ pub const REG_DWORD_BIG_ENDIAN: REG_VALUE_TYPE = 5u32;
1021
+ pub const REG_DWORD_LITTLE_ENDIAN: REG_VALUE_TYPE = 4u32;
1022
+ pub const REG_EXPAND_SZ: REG_VALUE_TYPE = 2u32;
1023
+ pub const REG_FORCE_RESTORE: REG_RESTORE_KEY_FLAGS = 8i32;
1024
+ pub const REG_FULL_RESOURCE_DESCRIPTOR: REG_VALUE_TYPE = 9u32;
1025
+ pub const REG_KEY_INSTDEV: windows_sys::core::PCWSTR = windows_sys::core::w!("Installed");
1026
+ pub const REG_LATEST_FORMAT: REG_SAVE_FORMAT = 2u32;
1027
+ pub const REG_LINK: REG_VALUE_TYPE = 6u32;
1028
+ pub const REG_MUI_STRING_TRUNCATE: u32 = 1u32;
1029
+ pub const REG_MULTI_SZ: REG_VALUE_TYPE = 7u32;
1030
+ pub const REG_NONE: REG_VALUE_TYPE = 0u32;
1031
+ pub const REG_NOTIFY_CHANGE_ATTRIBUTES: REG_NOTIFY_FILTER = 2u32;
1032
+ pub const REG_NOTIFY_CHANGE_LAST_SET: REG_NOTIFY_FILTER = 4u32;
1033
+ pub const REG_NOTIFY_CHANGE_NAME: REG_NOTIFY_FILTER = 1u32;
1034
+ pub const REG_NOTIFY_CHANGE_SECURITY: REG_NOTIFY_FILTER = 8u32;
1035
+ pub type REG_NOTIFY_FILTER = u32;
1036
+ pub const REG_NOTIFY_THREAD_AGNOSTIC: REG_NOTIFY_FILTER = 268435456u32;
1037
+ pub const REG_NO_COMPRESSION: REG_SAVE_FORMAT = 4u32;
1038
+ pub const REG_OPENED_EXISTING_KEY: REG_CREATE_KEY_DISPOSITION = 2u32;
1039
+ pub type REG_OPEN_CREATE_OPTIONS = u32;
1040
+ pub const REG_OPTION_BACKUP_RESTORE: REG_OPEN_CREATE_OPTIONS = 4u32;
1041
+ pub const REG_OPTION_CREATE_LINK: REG_OPEN_CREATE_OPTIONS = 2u32;
1042
+ pub const REG_OPTION_DONT_VIRTUALIZE: REG_OPEN_CREATE_OPTIONS = 16u32;
1043
+ pub const REG_OPTION_NON_VOLATILE: REG_OPEN_CREATE_OPTIONS = 0u32;
1044
+ pub const REG_OPTION_OPEN_LINK: REG_OPEN_CREATE_OPTIONS = 8u32;
1045
+ pub const REG_OPTION_RESERVED: REG_OPEN_CREATE_OPTIONS = 0u32;
1046
+ pub const REG_OPTION_VOLATILE: REG_OPEN_CREATE_OPTIONS = 1u32;
1047
+ pub const REG_PROCESS_APPKEY: u32 = 1u32;
1048
+ #[repr(C)]
1049
+ #[derive(Clone, Copy)]
1050
+ pub struct REG_PROVIDER {
1051
+ pub pi_R0_1val: PQUERYHANDLER,
1052
+ pub pi_R0_allvals: PQUERYHANDLER,
1053
+ pub pi_R3_1val: PQUERYHANDLER,
1054
+ pub pi_R3_allvals: PQUERYHANDLER,
1055
+ pub pi_flags: u32,
1056
+ pub pi_key_context: *mut core::ffi::c_void,
1057
+ }
1058
+ impl Default for REG_PROVIDER {
1059
+ fn default() -> Self {
1060
+ unsafe { core::mem::zeroed() }
1061
+ }
1062
+ }
1063
+ pub const REG_QWORD: REG_VALUE_TYPE = 11u32;
1064
+ pub const REG_QWORD_LITTLE_ENDIAN: REG_VALUE_TYPE = 11u32;
1065
+ pub const REG_RESOURCE_LIST: REG_VALUE_TYPE = 8u32;
1066
+ pub const REG_RESOURCE_REQUIREMENTS_LIST: REG_VALUE_TYPE = 10u32;
1067
+ pub type REG_RESTORE_KEY_FLAGS = i32;
1068
+ pub type REG_ROUTINE_FLAGS = u32;
1069
+ pub type REG_SAM_FLAGS = u32;
1070
+ pub type REG_SAVE_FORMAT = u32;
1071
+ pub const REG_SECURE_CONNECTION: u32 = 1u32;
1072
+ pub const REG_STANDARD_FORMAT: REG_SAVE_FORMAT = 1u32;
1073
+ pub const REG_SZ: REG_VALUE_TYPE = 1u32;
1074
+ pub const REG_USE_CURRENT_SECURITY_CONTEXT: u32 = 2u32;
1075
+ pub type REG_VALUE_TYPE = u32;
1076
+ pub const REG_WHOLE_HIVE_VOLATILE: REG_RESTORE_KEY_FLAGS = 1i32;
1077
+ pub const RRF_NOEXPAND: REG_ROUTINE_FLAGS = 268435456u32;
1078
+ pub const RRF_RT_ANY: REG_ROUTINE_FLAGS = 65535u32;
1079
+ pub const RRF_RT_DWORD: REG_ROUTINE_FLAGS = 24u32;
1080
+ pub const RRF_RT_QWORD: REG_ROUTINE_FLAGS = 72u32;
1081
+ pub const RRF_RT_REG_BINARY: REG_ROUTINE_FLAGS = 8u32;
1082
+ pub const RRF_RT_REG_DWORD: REG_ROUTINE_FLAGS = 16u32;
1083
+ pub const RRF_RT_REG_EXPAND_SZ: REG_ROUTINE_FLAGS = 4u32;
1084
+ pub const RRF_RT_REG_MULTI_SZ: REG_ROUTINE_FLAGS = 32u32;
1085
+ pub const RRF_RT_REG_NONE: REG_ROUTINE_FLAGS = 1u32;
1086
+ pub const RRF_RT_REG_QWORD: REG_ROUTINE_FLAGS = 64u32;
1087
+ pub const RRF_RT_REG_SZ: REG_ROUTINE_FLAGS = 2u32;
1088
+ pub const RRF_SUBKEY_WOW6432KEY: REG_ROUTINE_FLAGS = 131072u32;
1089
+ pub const RRF_SUBKEY_WOW6464KEY: REG_ROUTINE_FLAGS = 65536u32;
1090
+ pub const RRF_WOW64_MASK: REG_ROUTINE_FLAGS = 196608u32;
1091
+ pub const RRF_ZEROONFAILURE: REG_ROUTINE_FLAGS = 536870912u32;
1092
+ pub const SUF_BATCHINF: i32 = 4i32;
1093
+ pub const SUF_CLEAN: i32 = 8i32;
1094
+ pub const SUF_EXPRESS: i32 = 2i32;
1095
+ pub const SUF_FIRSTTIME: i32 = 1i32;
1096
+ pub const SUF_INSETUP: i32 = 16i32;
1097
+ pub const SUF_NETHDBOOT: i32 = 64i32;
1098
+ pub const SUF_NETRPLBOOT: i32 = 128i32;
1099
+ pub const SUF_NETSETUP: i32 = 32i32;
1100
+ pub const SUF_SBSCOPYOK: i32 = 256i32;
1101
+ #[repr(C)]
1102
+ #[derive(Clone, Copy)]
1103
+ pub struct VALENTA {
1104
+ pub ve_valuename: windows_sys::core::PSTR,
1105
+ pub ve_valuelen: u32,
1106
+ pub ve_valueptr: usize,
1107
+ pub ve_type: REG_VALUE_TYPE,
1108
+ }
1109
+ impl Default for VALENTA {
1110
+ fn default() -> Self {
1111
+ unsafe { core::mem::zeroed() }
1112
+ }
1113
+ }
1114
+ #[repr(C)]
1115
+ #[derive(Clone, Copy)]
1116
+ pub struct VALENTW {
1117
+ pub ve_valuename: windows_sys::core::PWSTR,
1118
+ pub ve_valuelen: u32,
1119
+ pub ve_valueptr: usize,
1120
+ pub ve_type: REG_VALUE_TYPE,
1121
+ }
1122
+ impl Default for VALENTW {
1123
+ fn default() -> Self {
1124
+ unsafe { core::mem::zeroed() }
1125
+ }
1126
+ }
1127
+ pub const VPDF_DISABLEPWRMGMT: u32 = 1u32;
1128
+ pub const VPDF_DISABLEPWRSTATUSPOLL: u32 = 8u32;
1129
+ pub const VPDF_DISABLERINGRESUME: u32 = 16u32;
1130
+ pub const VPDF_FORCEAPM10MODE: u32 = 2u32;
1131
+ pub const VPDF_SHOWMULTIBATT: u32 = 32u32;
1132
+ pub const VPDF_SKIPINTELSLCHECK: u32 = 4u32;
1133
+ #[repr(C)]
1134
+ #[derive(Clone, Copy)]
1135
+ pub struct val_context {
1136
+ pub valuelen: i32,
1137
+ pub value_context: *mut core::ffi::c_void,
1138
+ pub val_buff_ptr: *mut core::ffi::c_void,
1139
+ }
1140
+ impl Default for val_context {
1141
+ fn default() -> Self {
1142
+ unsafe { core::mem::zeroed() }
1143
+ }
1144
+ }