pyrefly 0.20.2__tar.gz → 0.22.0__tar.gz

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 (1209) hide show
  1. pyrefly-0.22.0/Cargo.lock +3621 -0
  2. pyrefly-0.22.0/PKG-INFO +33 -0
  3. pyrefly-0.22.0/crates/pyrefly_python/Cargo.toml +28 -0
  4. pyrefly-0.22.0/crates/pyrefly_python/src/ast.rs +287 -0
  5. pyrefly-0.22.0/crates/pyrefly_python/src/dunder.rs +78 -0
  6. pyrefly-0.22.0/crates/pyrefly_python/src/lib.rs +26 -0
  7. pyrefly-0.22.0/crates/pyrefly_python/src/module_name.rs +329 -0
  8. pyrefly-0.22.0/crates/pyrefly_python/src/symbol_kind.rs +78 -0
  9. pyrefly-0.22.0/crates/pyrefly_python/src/sys_info.rs +475 -0
  10. pyrefly-0.22.0/pyrefly/Cargo.toml +89 -0
  11. pyrefly-0.22.0/pyrefly/bin/main.rs +267 -0
  12. pyrefly-0.22.0/pyrefly/lib/alt/answers.rs +666 -0
  13. pyrefly-0.22.0/pyrefly/lib/alt/answers_solver.rs +702 -0
  14. pyrefly-0.22.0/pyrefly/lib/alt/attr.rs +1998 -0
  15. pyrefly-0.22.0/pyrefly/lib/alt/call.rs +977 -0
  16. pyrefly-0.22.0/pyrefly/lib/alt/callable.rs +992 -0
  17. pyrefly-0.22.0/pyrefly/lib/alt/class/base_class.rs +117 -0
  18. pyrefly-0.22.0/pyrefly/lib/alt/class/class_field.rs +1531 -0
  19. pyrefly-0.22.0/pyrefly/lib/alt/class/class_metadata.rs +647 -0
  20. pyrefly-0.22.0/pyrefly/lib/alt/class/classdef.rs +178 -0
  21. pyrefly-0.22.0/pyrefly/lib/alt/class/dataclass.rs +235 -0
  22. pyrefly-0.22.0/pyrefly/lib/alt/class/enums.rs +67 -0
  23. pyrefly-0.22.0/pyrefly/lib/alt/class/mod.rs +20 -0
  24. pyrefly-0.22.0/pyrefly/lib/alt/class/named_tuple.rs +173 -0
  25. pyrefly-0.22.0/pyrefly/lib/alt/class/new_type.rs +75 -0
  26. pyrefly-0.22.0/pyrefly/lib/alt/class/targs.rs +526 -0
  27. pyrefly-0.22.0/pyrefly/lib/alt/class/total_ordering.rs +85 -0
  28. pyrefly-0.22.0/pyrefly/lib/alt/class/tparams.rs +164 -0
  29. pyrefly-0.22.0/pyrefly/lib/alt/class/typed_dict.rs +600 -0
  30. pyrefly-0.22.0/pyrefly/lib/alt/class/variance_inference.rs +511 -0
  31. pyrefly-0.22.0/pyrefly/lib/alt/debugging.rs +181 -0
  32. pyrefly-0.22.0/pyrefly/lib/alt/expr.rs +1664 -0
  33. pyrefly-0.22.0/pyrefly/lib/alt/function.rs +596 -0
  34. pyrefly-0.22.0/pyrefly/lib/alt/mod.rs +24 -0
  35. pyrefly-0.22.0/pyrefly/lib/alt/narrow.rs +633 -0
  36. pyrefly-0.22.0/pyrefly/lib/alt/operators.rs +451 -0
  37. pyrefly-0.22.0/pyrefly/lib/alt/solve.rs +3177 -0
  38. pyrefly-0.22.0/pyrefly/lib/alt/special_calls.rs +430 -0
  39. pyrefly-0.22.0/pyrefly/lib/alt/specials.rs +540 -0
  40. pyrefly-0.22.0/pyrefly/lib/alt/traits.rs +346 -0
  41. pyrefly-0.22.0/pyrefly/lib/alt/types/class_metadata.rs +666 -0
  42. pyrefly-0.22.0/pyrefly/lib/alt/types/decorated_function.rs +59 -0
  43. pyrefly-0.22.0/pyrefly/lib/alt/unwrap.rs +228 -0
  44. pyrefly-0.22.0/pyrefly/lib/binding/binding.rs +1738 -0
  45. pyrefly-0.22.0/pyrefly/lib/binding/bindings.rs +1423 -0
  46. pyrefly-0.22.0/pyrefly/lib/binding/class.rs +1051 -0
  47. pyrefly-0.22.0/pyrefly/lib/binding/expr.rs +750 -0
  48. pyrefly-0.22.0/pyrefly/lib/binding/function.rs +662 -0
  49. pyrefly-0.22.0/pyrefly/lib/binding/narrow.rs +492 -0
  50. pyrefly-0.22.0/pyrefly/lib/binding/pattern.rs +282 -0
  51. pyrefly-0.22.0/pyrefly/lib/binding/scope.rs +1027 -0
  52. pyrefly-0.22.0/pyrefly/lib/binding/stmt.rs +952 -0
  53. pyrefly-0.22.0/pyrefly/lib/binding/table.rs +215 -0
  54. pyrefly-0.22.0/pyrefly/lib/binding/target.rs +490 -0
  55. pyrefly-0.22.0/pyrefly/lib/commands/autotype.rs +288 -0
  56. pyrefly-0.22.0/pyrefly/lib/commands/buck_check.rs +123 -0
  57. pyrefly-0.22.0/pyrefly/lib/commands/check.rs +781 -0
  58. pyrefly-0.22.0/pyrefly/lib/commands/config_finder.rs +288 -0
  59. pyrefly-0.22.0/pyrefly/lib/commands/config_migration.rs +611 -0
  60. pyrefly-0.22.0/pyrefly/lib/commands/globs_and_config_getter.rs +168 -0
  61. pyrefly-0.22.0/pyrefly/lib/commands/init.rs +648 -0
  62. pyrefly-0.22.0/pyrefly/lib/commands/lsp.rs +2275 -0
  63. pyrefly-0.22.0/pyrefly/lib/commands/mod.rs +22 -0
  64. pyrefly-0.22.0/pyrefly/lib/commands/suppress.rs +503 -0
  65. pyrefly-0.22.0/pyrefly/lib/commands/util.rs +83 -0
  66. pyrefly-0.22.0/pyrefly/lib/common/mod.rs +8 -0
  67. pyrefly-0.22.0/pyrefly/lib/config/config.rs +1429 -0
  68. pyrefly-0.22.0/pyrefly/lib/config/environment/active_environment.rs +34 -0
  69. pyrefly-0.22.0/pyrefly/lib/config/environment/conda.rs +73 -0
  70. pyrefly-0.22.0/pyrefly/lib/config/environment/environment.rs +293 -0
  71. pyrefly-0.22.0/pyrefly/lib/config/environment/mod.rs +12 -0
  72. pyrefly-0.22.0/pyrefly/lib/config/environment/venv.rs +158 -0
  73. pyrefly-0.22.0/pyrefly/lib/config/finder.rs +217 -0
  74. pyrefly-0.22.0/pyrefly/lib/config/mypy/ini.rs +408 -0
  75. pyrefly-0.22.0/pyrefly/lib/config/mypy/pyproject.rs +415 -0
  76. pyrefly-0.22.0/pyrefly/lib/config/pyright.rs +389 -0
  77. pyrefly-0.22.0/pyrefly/lib/error/collector.rs +347 -0
  78. pyrefly-0.22.0/pyrefly/lib/error/context.rs +167 -0
  79. pyrefly-0.22.0/pyrefly/lib/error/display.rs +239 -0
  80. pyrefly-0.22.0/pyrefly/lib/error/error.rs +232 -0
  81. pyrefly-0.22.0/pyrefly/lib/error/expectation.rs +59 -0
  82. pyrefly-0.22.0/pyrefly/lib/error/kind.rs +293 -0
  83. pyrefly-0.22.0/pyrefly/lib/error/legacy.rs +60 -0
  84. pyrefly-0.22.0/pyrefly/lib/export/definitions.rs +722 -0
  85. pyrefly-0.22.0/pyrefly/lib/export/exports.rs +303 -0
  86. pyrefly-0.22.0/pyrefly/lib/export/special.rs +98 -0
  87. pyrefly-0.22.0/pyrefly/lib/graph/calculation.rs +179 -0
  88. pyrefly-0.22.0/pyrefly/lib/graph/index.rs +134 -0
  89. pyrefly-0.22.0/pyrefly/lib/lib.rs +82 -0
  90. pyrefly-0.22.0/pyrefly/lib/module/bundled.rs +139 -0
  91. pyrefly-0.22.0/pyrefly/lib/module/display.rs +85 -0
  92. pyrefly-0.22.0/pyrefly/lib/module/finder.rs +1171 -0
  93. pyrefly-0.22.0/pyrefly/lib/module/ignore.rs +187 -0
  94. pyrefly-0.22.0/pyrefly/lib/module/mod.rs +17 -0
  95. pyrefly-0.22.0/pyrefly/lib/module/module_info.rs +140 -0
  96. pyrefly-0.22.0/pyrefly/lib/module/module_path.rs +185 -0
  97. pyrefly-0.22.0/pyrefly/lib/module/parse.rs +128 -0
  98. pyrefly-0.22.0/pyrefly/lib/module/short_identifier.rs +80 -0
  99. pyrefly-0.22.0/pyrefly/lib/module/source_db.rs +380 -0
  100. pyrefly-0.22.0/pyrefly/lib/module/wildcard.rs +194 -0
  101. pyrefly-0.22.0/pyrefly/lib/playground.rs +293 -0
  102. pyrefly-0.22.0/pyrefly/lib/query.rs +104 -0
  103. pyrefly-0.22.0/pyrefly/lib/report/binding_memory.rs +176 -0
  104. pyrefly-0.22.0/pyrefly/lib/report/debug_info.rs +164 -0
  105. pyrefly-0.22.0/pyrefly/lib/report/glean/convert.rs +60 -0
  106. pyrefly-0.22.0/pyrefly/lib/report/trace.rs +75 -0
  107. pyrefly-0.22.0/pyrefly/lib/solver/solver.rs +657 -0
  108. pyrefly-0.22.0/pyrefly/lib/solver/subset.rs +1051 -0
  109. pyrefly-0.22.0/pyrefly/lib/solver/type_order.rs +146 -0
  110. pyrefly-0.22.0/pyrefly/lib/state/errors.rs +61 -0
  111. pyrefly-0.22.0/pyrefly/lib/state/handle.rs +41 -0
  112. pyrefly-0.22.0/pyrefly/lib/state/ide.rs +136 -0
  113. pyrefly-0.22.0/pyrefly/lib/state/load.rs +83 -0
  114. pyrefly-0.22.0/pyrefly/lib/state/loader.rs +133 -0
  115. pyrefly-0.22.0/pyrefly/lib/state/lsp.rs +2021 -0
  116. pyrefly-0.22.0/pyrefly/lib/state/semantic_tokens.rs +245 -0
  117. pyrefly-0.22.0/pyrefly/lib/state/state.rs +1755 -0
  118. pyrefly-0.22.0/pyrefly/lib/state/steps.rs +210 -0
  119. pyrefly-0.22.0/pyrefly/lib/test/assign.rs +762 -0
  120. pyrefly-0.22.0/pyrefly/lib/test/attributes.rs +1063 -0
  121. pyrefly-0.22.0/pyrefly/lib/test/callable.rs +816 -0
  122. pyrefly-0.22.0/pyrefly/lib/test/class_keywords.rs +155 -0
  123. pyrefly-0.22.0/pyrefly/lib/test/class_super.rs +286 -0
  124. pyrefly-0.22.0/pyrefly/lib/test/cycles.rs +353 -0
  125. pyrefly-0.22.0/pyrefly/lib/test/dataclass_transform.rs +72 -0
  126. pyrefly-0.22.0/pyrefly/lib/test/dataclasses.rs +710 -0
  127. pyrefly-0.22.0/pyrefly/lib/test/decorators.rs +420 -0
  128. pyrefly-0.22.0/pyrefly/lib/test/delayed_inference.rs +309 -0
  129. pyrefly-0.22.0/pyrefly/lib/test/enums.rs +355 -0
  130. pyrefly-0.22.0/pyrefly/lib/test/flow.rs +1182 -0
  131. pyrefly-0.22.0/pyrefly/lib/test/generic_basic.rs +871 -0
  132. pyrefly-0.22.0/pyrefly/lib/test/generic_restrictions.rs +318 -0
  133. pyrefly-0.22.0/pyrefly/lib/test/imports.rs +764 -0
  134. pyrefly-0.22.0/pyrefly/lib/test/literal.rs +222 -0
  135. pyrefly-0.22.0/pyrefly/lib/test/lsp/code_actions.rs +204 -0
  136. pyrefly-0.22.0/pyrefly/lib/test/lsp/completion.rs +622 -0
  137. pyrefly-0.22.0/pyrefly/lib/test/lsp/definition.rs +1164 -0
  138. pyrefly-0.22.0/pyrefly/lib/test/lsp/hover_docstring.rs +249 -0
  139. pyrefly-0.22.0/pyrefly/lib/test/lsp/hover_type.rs +395 -0
  140. pyrefly-0.22.0/pyrefly/lib/test/lsp/lsp_interaction.rs +1939 -0
  141. pyrefly-0.22.0/pyrefly/lib/test/lsp/lsp_interaction_util.rs +382 -0
  142. pyrefly-0.22.0/pyrefly/lib/test/lsp/semantic_tokens.rs +429 -0
  143. pyrefly-0.22.0/pyrefly/lib/test/lsp/test_files/notebook.py +8 -0
  144. pyrefly-0.22.0/pyrefly/lib/test/lsp/test_files/tests_requiring_config/autoimport_provider.py +10 -0
  145. pyrefly-0.22.0/pyrefly/lib/test/lsp/test_files/tests_requiring_config/various_imports.py +9 -0
  146. pyrefly-0.22.0/pyrefly/lib/test/lsp/test_files/text_document.py +6 -0
  147. pyrefly-0.22.0/pyrefly/lib/test/lsp/test_files/utf.py +10 -0
  148. pyrefly-0.22.0/pyrefly/lib/test/metadata.rs +188 -0
  149. pyrefly-0.22.0/pyrefly/lib/test/mro.rs +226 -0
  150. pyrefly-0.22.0/pyrefly/lib/test/named_tuple.rs +275 -0
  151. pyrefly-0.22.0/pyrefly/lib/test/narrow.rs +1242 -0
  152. pyrefly-0.22.0/pyrefly/lib/test/operators.rs +436 -0
  153. pyrefly-0.22.0/pyrefly/lib/test/overload.rs +440 -0
  154. pyrefly-0.22.0/pyrefly/lib/test/paramspec.rs +448 -0
  155. pyrefly-0.22.0/pyrefly/lib/test/simple.rs +1525 -0
  156. pyrefly-0.22.0/pyrefly/lib/test/state.rs +450 -0
  157. pyrefly-0.22.0/pyrefly/lib/test/subscript_narrow.rs +192 -0
  158. pyrefly-0.22.0/pyrefly/lib/test/tuple.rs +372 -0
  159. pyrefly-0.22.0/pyrefly/lib/test/type_alias.rs +609 -0
  160. pyrefly-0.22.0/pyrefly/lib/test/type_var_tuple.rs +150 -0
  161. pyrefly-0.22.0/pyrefly/lib/test/typed_dict.rs +964 -0
  162. pyrefly-0.22.0/pyrefly/lib/test/untyped_def_behaviors.rs +263 -0
  163. pyrefly-0.22.0/pyrefly/lib/test/util.rs +482 -0
  164. pyrefly-0.22.0/pyrefly/lib/types/alias.rs +52 -0
  165. pyrefly-0.22.0/pyrefly/lib/types/annotation.rs +117 -0
  166. pyrefly-0.22.0/pyrefly/lib/types/callable.rs +649 -0
  167. pyrefly-0.22.0/pyrefly/lib/types/class.rs +346 -0
  168. pyrefly-0.22.0/pyrefly/lib/types/display.rs +716 -0
  169. pyrefly-0.22.0/pyrefly/lib/types/equality.rs +386 -0
  170. pyrefly-0.22.0/pyrefly/lib/types/facet.rs +74 -0
  171. pyrefly-0.22.0/pyrefly/lib/types/globals.rs +79 -0
  172. pyrefly-0.22.0/pyrefly/lib/types/literal.rs +174 -0
  173. pyrefly-0.22.0/pyrefly/lib/types/mod.rs +31 -0
  174. pyrefly-0.22.0/pyrefly/lib/types/module.rs +113 -0
  175. pyrefly-0.22.0/pyrefly/lib/types/qname.rs +140 -0
  176. pyrefly-0.22.0/pyrefly/lib/types/quantified.rs +228 -0
  177. pyrefly-0.22.0/pyrefly/lib/types/read_only.rs +38 -0
  178. pyrefly-0.22.0/pyrefly/lib/types/special_form.rs +154 -0
  179. pyrefly-0.22.0/pyrefly/lib/types/stdlib.rs +390 -0
  180. pyrefly-0.22.0/pyrefly/lib/types/type_info.rs +687 -0
  181. pyrefly-0.22.0/pyrefly/lib/types/typed_dict.rs +70 -0
  182. pyrefly-0.22.0/pyrefly/lib/types/types.rs +1307 -0
  183. pyrefly-0.22.0/pyrefly_derive/Cargo.toml +19 -0
  184. pyrefly-0.22.0/pyrefly_util/Cargo.toml +49 -0
  185. pyrefly-0.22.0/pyrefly_util/src/lib.rs +62 -0
  186. pyrefly-0.22.0/pyrefly_util/src/lined_buffer.rs +304 -0
  187. pyrefly-0.22.0/pyrefly_util/src/uniques.rs +59 -0
  188. pyrefly-0.20.2/Cargo.lock +0 -3568
  189. pyrefly-0.20.2/PKG-INFO +0 -33
  190. pyrefly-0.20.2/pyrefly/Cargo.toml +0 -86
  191. pyrefly-0.20.2/pyrefly/bin/main.rs +0 -414
  192. pyrefly-0.20.2/pyrefly/lib/alt/answers.rs +0 -996
  193. pyrefly-0.20.2/pyrefly/lib/alt/attr.rs +0 -1883
  194. pyrefly-0.20.2/pyrefly/lib/alt/call.rs +0 -870
  195. pyrefly-0.20.2/pyrefly/lib/alt/callable.rs +0 -992
  196. pyrefly-0.20.2/pyrefly/lib/alt/class/class_field.rs +0 -1448
  197. pyrefly-0.20.2/pyrefly/lib/alt/class/class_metadata.rs +0 -762
  198. pyrefly-0.20.2/pyrefly/lib/alt/class/classdef.rs +0 -178
  199. pyrefly-0.20.2/pyrefly/lib/alt/class/dataclass.rs +0 -235
  200. pyrefly-0.20.2/pyrefly/lib/alt/class/enums.rs +0 -67
  201. pyrefly-0.20.2/pyrefly/lib/alt/class/mod.rs +0 -17
  202. pyrefly-0.20.2/pyrefly/lib/alt/class/named_tuple.rs +0 -152
  203. pyrefly-0.20.2/pyrefly/lib/alt/class/new_type.rs +0 -75
  204. pyrefly-0.20.2/pyrefly/lib/alt/class/targs.rs +0 -484
  205. pyrefly-0.20.2/pyrefly/lib/alt/class/typed_dict.rs +0 -395
  206. pyrefly-0.20.2/pyrefly/lib/alt/class/variance_inference.rs +0 -500
  207. pyrefly-0.20.2/pyrefly/lib/alt/debugging.rs +0 -128
  208. pyrefly-0.20.2/pyrefly/lib/alt/expr.rs +0 -1638
  209. pyrefly-0.20.2/pyrefly/lib/alt/function.rs +0 -530
  210. pyrefly-0.20.2/pyrefly/lib/alt/mod.rs +0 -23
  211. pyrefly-0.20.2/pyrefly/lib/alt/narrow.rs +0 -632
  212. pyrefly-0.20.2/pyrefly/lib/alt/operators.rs +0 -451
  213. pyrefly-0.20.2/pyrefly/lib/alt/solve.rs +0 -3043
  214. pyrefly-0.20.2/pyrefly/lib/alt/special_calls.rs +0 -430
  215. pyrefly-0.20.2/pyrefly/lib/alt/specials.rs +0 -528
  216. pyrefly-0.20.2/pyrefly/lib/alt/traits.rs +0 -376
  217. pyrefly-0.20.2/pyrefly/lib/alt/types/class_metadata.rs +0 -639
  218. pyrefly-0.20.2/pyrefly/lib/alt/types/decorated_function.rs +0 -56
  219. pyrefly-0.20.2/pyrefly/lib/alt/unwrap.rs +0 -228
  220. pyrefly-0.20.2/pyrefly/lib/binding/binding.rs +0 -1594
  221. pyrefly-0.20.2/pyrefly/lib/binding/bindings.rs +0 -1422
  222. pyrefly-0.20.2/pyrefly/lib/binding/class.rs +0 -1001
  223. pyrefly-0.20.2/pyrefly/lib/binding/expr.rs +0 -741
  224. pyrefly-0.20.2/pyrefly/lib/binding/function.rs +0 -642
  225. pyrefly-0.20.2/pyrefly/lib/binding/narrow.rs +0 -563
  226. pyrefly-0.20.2/pyrefly/lib/binding/pattern.rs +0 -282
  227. pyrefly-0.20.2/pyrefly/lib/binding/scope.rs +0 -1025
  228. pyrefly-0.20.2/pyrefly/lib/binding/stmt.rs +0 -950
  229. pyrefly-0.20.2/pyrefly/lib/binding/table.rs +0 -195
  230. pyrefly-0.20.2/pyrefly/lib/binding/target.rs +0 -492
  231. pyrefly-0.20.2/pyrefly/lib/commands/autotype.rs +0 -222
  232. pyrefly-0.20.2/pyrefly/lib/commands/buck_check.rs +0 -123
  233. pyrefly-0.20.2/pyrefly/lib/commands/check.rs +0 -762
  234. pyrefly-0.20.2/pyrefly/lib/commands/config_finder.rs +0 -276
  235. pyrefly-0.20.2/pyrefly/lib/commands/config_migration.rs +0 -602
  236. pyrefly-0.20.2/pyrefly/lib/commands/init.rs +0 -551
  237. pyrefly-0.20.2/pyrefly/lib/commands/lsp.rs +0 -2085
  238. pyrefly-0.20.2/pyrefly/lib/commands/mod.rs +0 -21
  239. pyrefly-0.20.2/pyrefly/lib/commands/suppress.rs +0 -503
  240. pyrefly-0.20.2/pyrefly/lib/commands/util.rs +0 -83
  241. pyrefly-0.20.2/pyrefly/lib/common/mod.rs +0 -9
  242. pyrefly-0.20.2/pyrefly/lib/common/symbol_kind.rs +0 -87
  243. pyrefly-0.20.2/pyrefly/lib/config/config.rs +0 -1377
  244. pyrefly-0.20.2/pyrefly/lib/config/environment/active_environment.rs +0 -29
  245. pyrefly-0.20.2/pyrefly/lib/config/environment/environment.rs +0 -293
  246. pyrefly-0.20.2/pyrefly/lib/config/environment/mod.rs +0 -11
  247. pyrefly-0.20.2/pyrefly/lib/config/environment/venv.rs +0 -168
  248. pyrefly-0.20.2/pyrefly/lib/config/finder.rs +0 -201
  249. pyrefly-0.20.2/pyrefly/lib/config/mypy/ini.rs +0 -408
  250. pyrefly-0.20.2/pyrefly/lib/config/mypy/pyproject.rs +0 -413
  251. pyrefly-0.20.2/pyrefly/lib/config/pyright.rs +0 -387
  252. pyrefly-0.20.2/pyrefly/lib/dunder.rs +0 -78
  253. pyrefly-0.20.2/pyrefly/lib/error/collector.rs +0 -333
  254. pyrefly-0.20.2/pyrefly/lib/error/context.rs +0 -167
  255. pyrefly-0.20.2/pyrefly/lib/error/display.rs +0 -238
  256. pyrefly-0.20.2/pyrefly/lib/error/error.rs +0 -214
  257. pyrefly-0.20.2/pyrefly/lib/error/expectation.rs +0 -59
  258. pyrefly-0.20.2/pyrefly/lib/error/kind.rs +0 -279
  259. pyrefly-0.20.2/pyrefly/lib/error/legacy.rs +0 -60
  260. pyrefly-0.20.2/pyrefly/lib/export/definitions.rs +0 -726
  261. pyrefly-0.20.2/pyrefly/lib/export/exports.rs +0 -303
  262. pyrefly-0.20.2/pyrefly/lib/export/special.rs +0 -99
  263. pyrefly-0.20.2/pyrefly/lib/graph/calculation.rs +0 -124
  264. pyrefly-0.20.2/pyrefly/lib/graph/index.rs +0 -121
  265. pyrefly-0.20.2/pyrefly/lib/lib.rs +0 -83
  266. pyrefly-0.20.2/pyrefly/lib/module/bundled.rs +0 -138
  267. pyrefly-0.20.2/pyrefly/lib/module/display.rs +0 -78
  268. pyrefly-0.20.2/pyrefly/lib/module/finder.rs +0 -761
  269. pyrefly-0.20.2/pyrefly/lib/module/ignore.rs +0 -187
  270. pyrefly-0.20.2/pyrefly/lib/module/mod.rs +0 -17
  271. pyrefly-0.20.2/pyrefly/lib/module/module_info.rs +0 -412
  272. pyrefly-0.20.2/pyrefly/lib/module/module_name.rs +0 -321
  273. pyrefly-0.20.2/pyrefly/lib/module/module_path.rs +0 -186
  274. pyrefly-0.20.2/pyrefly/lib/module/short_identifier.rs +0 -94
  275. pyrefly-0.20.2/pyrefly/lib/module/source_db.rs +0 -380
  276. pyrefly-0.20.2/pyrefly/lib/module/wildcard.rs +0 -195
  277. pyrefly-0.20.2/pyrefly/lib/playground.rs +0 -289
  278. pyrefly-0.20.2/pyrefly/lib/query.rs +0 -104
  279. pyrefly-0.20.2/pyrefly/lib/report/binding_memory.rs +0 -176
  280. pyrefly-0.20.2/pyrefly/lib/report/debug_info.rs +0 -145
  281. pyrefly-0.20.2/pyrefly/lib/report/glean/convert.rs +0 -60
  282. pyrefly-0.20.2/pyrefly/lib/report/trace.rs +0 -75
  283. pyrefly-0.20.2/pyrefly/lib/ruff/ast.rs +0 -286
  284. pyrefly-0.20.2/pyrefly/lib/ruff/mod.rs +0 -9
  285. pyrefly-0.20.2/pyrefly/lib/solver/solver.rs +0 -654
  286. pyrefly-0.20.2/pyrefly/lib/solver/subset.rs +0 -1050
  287. pyrefly-0.20.2/pyrefly/lib/solver/type_order.rs +0 -142
  288. pyrefly-0.20.2/pyrefly/lib/state/errors.rs +0 -61
  289. pyrefly-0.20.2/pyrefly/lib/state/handle.rs +0 -41
  290. pyrefly-0.20.2/pyrefly/lib/state/ide.rs +0 -127
  291. pyrefly-0.20.2/pyrefly/lib/state/load.rs +0 -83
  292. pyrefly-0.20.2/pyrefly/lib/state/loader.rs +0 -133
  293. pyrefly-0.20.2/pyrefly/lib/state/lsp.rs +0 -1693
  294. pyrefly-0.20.2/pyrefly/lib/state/semantic_tokens.rs +0 -231
  295. pyrefly-0.20.2/pyrefly/lib/state/state.rs +0 -1652
  296. pyrefly-0.20.2/pyrefly/lib/state/steps.rs +0 -205
  297. pyrefly-0.20.2/pyrefly/lib/sys_info.rs +0 -477
  298. pyrefly-0.20.2/pyrefly/lib/test/assign.rs +0 -762
  299. pyrefly-0.20.2/pyrefly/lib/test/attributes.rs +0 -944
  300. pyrefly-0.20.2/pyrefly/lib/test/callable.rs +0 -784
  301. pyrefly-0.20.2/pyrefly/lib/test/class_keywords.rs +0 -142
  302. pyrefly-0.20.2/pyrefly/lib/test/class_super.rs +0 -288
  303. pyrefly-0.20.2/pyrefly/lib/test/cycles.rs +0 -299
  304. pyrefly-0.20.2/pyrefly/lib/test/dataclass_transform.rs +0 -58
  305. pyrefly-0.20.2/pyrefly/lib/test/dataclasses.rs +0 -682
  306. pyrefly-0.20.2/pyrefly/lib/test/decorators.rs +0 -325
  307. pyrefly-0.20.2/pyrefly/lib/test/delayed_inference.rs +0 -310
  308. pyrefly-0.20.2/pyrefly/lib/test/enums.rs +0 -349
  309. pyrefly-0.20.2/pyrefly/lib/test/flow.rs +0 -1148
  310. pyrefly-0.20.2/pyrefly/lib/test/generic_basic.rs +0 -848
  311. pyrefly-0.20.2/pyrefly/lib/test/generic_restrictions.rs +0 -318
  312. pyrefly-0.20.2/pyrefly/lib/test/imports.rs +0 -764
  313. pyrefly-0.20.2/pyrefly/lib/test/literal.rs +0 -222
  314. pyrefly-0.20.2/pyrefly/lib/test/lsp/code_actions.rs +0 -212
  315. pyrefly-0.20.2/pyrefly/lib/test/lsp/completion.rs +0 -272
  316. pyrefly-0.20.2/pyrefly/lib/test/lsp/definition.rs +0 -1105
  317. pyrefly-0.20.2/pyrefly/lib/test/lsp/hover_docstring.rs +0 -249
  318. pyrefly-0.20.2/pyrefly/lib/test/lsp/hover_type.rs +0 -395
  319. pyrefly-0.20.2/pyrefly/lib/test/lsp/lsp_interaction.rs +0 -1423
  320. pyrefly-0.20.2/pyrefly/lib/test/lsp/lsp_interaction_util.rs +0 -371
  321. pyrefly-0.20.2/pyrefly/lib/test/lsp/semantic_tokens.rs +0 -312
  322. pyrefly-0.20.2/pyrefly/lib/test/metadata.rs +0 -187
  323. pyrefly-0.20.2/pyrefly/lib/test/mro.rs +0 -226
  324. pyrefly-0.20.2/pyrefly/lib/test/named_tuple.rs +0 -247
  325. pyrefly-0.20.2/pyrefly/lib/test/narrow.rs +0 -1243
  326. pyrefly-0.20.2/pyrefly/lib/test/operators.rs +0 -428
  327. pyrefly-0.20.2/pyrefly/lib/test/overload.rs +0 -407
  328. pyrefly-0.20.2/pyrefly/lib/test/paramspec.rs +0 -450
  329. pyrefly-0.20.2/pyrefly/lib/test/simple.rs +0 -1430
  330. pyrefly-0.20.2/pyrefly/lib/test/state.rs +0 -450
  331. pyrefly-0.20.2/pyrefly/lib/test/subscript_narrow.rs +0 -156
  332. pyrefly-0.20.2/pyrefly/lib/test/tuple.rs +0 -362
  333. pyrefly-0.20.2/pyrefly/lib/test/type_alias.rs +0 -557
  334. pyrefly-0.20.2/pyrefly/lib/test/type_var_tuple.rs +0 -150
  335. pyrefly-0.20.2/pyrefly/lib/test/typed_dict.rs +0 -639
  336. pyrefly-0.20.2/pyrefly/lib/test/untyped_def_behaviors.rs +0 -235
  337. pyrefly-0.20.2/pyrefly/lib/test/util.rs +0 -482
  338. pyrefly-0.20.2/pyrefly/lib/types/alias.rs +0 -53
  339. pyrefly-0.20.2/pyrefly/lib/types/annotation.rs +0 -124
  340. pyrefly-0.20.2/pyrefly/lib/types/callable.rs +0 -625
  341. pyrefly-0.20.2/pyrefly/lib/types/class.rs +0 -414
  342. pyrefly-0.20.2/pyrefly/lib/types/display.rs +0 -693
  343. pyrefly-0.20.2/pyrefly/lib/types/equality.rs +0 -386
  344. pyrefly-0.20.2/pyrefly/lib/types/literal.rs +0 -167
  345. pyrefly-0.20.2/pyrefly/lib/types/lsp.rs +0 -27
  346. pyrefly-0.20.2/pyrefly/lib/types/mod.rs +0 -29
  347. pyrefly-0.20.2/pyrefly/lib/types/module.rs +0 -113
  348. pyrefly-0.20.2/pyrefly/lib/types/qname.rs +0 -136
  349. pyrefly-0.20.2/pyrefly/lib/types/quantified.rs +0 -221
  350. pyrefly-0.20.2/pyrefly/lib/types/special_form.rs +0 -140
  351. pyrefly-0.20.2/pyrefly/lib/types/stdlib.rs +0 -378
  352. pyrefly-0.20.2/pyrefly/lib/types/type_info.rs +0 -664
  353. pyrefly-0.20.2/pyrefly/lib/types/typed_dict.rs +0 -63
  354. pyrefly-0.20.2/pyrefly/lib/types/types.rs +0 -1184
  355. pyrefly-0.20.2/pyrefly_derive/Cargo.toml +0 -19
  356. pyrefly-0.20.2/pyrefly_util/Cargo.toml +0 -46
  357. pyrefly-0.20.2/pyrefly_util/src/lib.rs +0 -61
  358. pyrefly-0.20.2/pyrefly_util/src/uniques.rs +0 -62
  359. {pyrefly-0.20.2 → pyrefly-0.22.0}/Cargo.toml +0 -0
  360. {pyrefly-0.20.2 → pyrefly-0.22.0}/README.md +0 -0
  361. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyproject.toml +0 -0
  362. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/.gitignore +0 -0
  363. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/README.md +0 -0
  364. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/build.rs +0 -0
  365. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/alt/types/legacy_lookup.rs +0 -0
  366. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/alt/types/mod.rs +0 -0
  367. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/alt/types/yields.rs +0 -0
  368. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/binding/mod.rs +0 -0
  369. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/commands/run.rs +0 -0
  370. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/common/files.rs +0 -0
  371. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/config/base.rs +0 -0
  372. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/config/environment/finder.rs +0 -0
  373. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/config/error.rs +0 -0
  374. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/config/mod.rs +0 -0
  375. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/config/mypy/mod.rs +0 -0
  376. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/config/mypy/regex_converter.rs +0 -0
  377. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/config/util.rs +0 -0
  378. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/error/mod.rs +0 -0
  379. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/error/style.rs +0 -0
  380. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/error/summarise.rs +0 -0
  381. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/export/mod.rs +0 -0
  382. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/graph/index_map.rs +0 -0
  383. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/graph/mod.rs +0 -0
  384. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/report/glean/facts.rs +0 -0
  385. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/report/glean/mod.rs +0 -0
  386. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/report/glean/schema/builtin.rs +0 -0
  387. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/report/glean/schema/digest.rs +0 -0
  388. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/report/glean/schema/mod.rs +0 -0
  389. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/report/glean/schema/python.rs +0 -0
  390. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/report/glean/schema/src.rs +0 -0
  391. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/report/mod.rs +0 -0
  392. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/solver/mod.rs +0 -0
  393. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/state/dirty.rs +0 -0
  394. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/state/epoch.rs +0 -0
  395. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/state/memory.rs +0 -0
  396. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/state/mod.rs +0 -0
  397. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/state/require.rs +0 -0
  398. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/state/subscriber.rs +0 -0
  399. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/attribute_narrow.rs +0 -0
  400. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/calls.rs +0 -0
  401. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/class_overrides.rs +0 -0
  402. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/class_subtyping.rs +0 -0
  403. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/constructors.rs +0 -0
  404. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/contextual.rs +0 -0
  405. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/descriptors.rs +0 -0
  406. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/document_symbols.rs +0 -0
  407. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/inlay_hint.rs +0 -0
  408. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/local_find_refs.rs +0 -0
  409. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/mod.rs +0 -0
  410. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/signature_help.rs +0 -0
  411. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/test_files/bar.py +0 -0
  412. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/test_files/foo.py +0 -0
  413. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/test_files/foo_relative.py +0 -0
  414. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/test_files/imports_builtins.py +0 -0
  415. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/bar.py +0 -0
  416. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/foo.py +0 -0
  417. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/pyrefly.toml +0 -0
  418. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/with_synthetic_bindings.py +0 -0
  419. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/lsp/test_files/type_errors.py +0 -0
  420. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/mod.rs +0 -0
  421. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/new_type.rs +0 -0
  422. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/pattern_match.rs +0 -0
  423. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/perf.rs +0 -0
  424. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/protocol.rs +0 -0
  425. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/returns.rs +0 -0
  426. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/scope.rs +0 -0
  427. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/suppression.rs +0 -0
  428. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/typing_self.rs +0 -0
  429. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/var_resolution.rs +0 -0
  430. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/variance_inference.rs +0 -0
  431. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/with.rs +0 -0
  432. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/test/yields.rs +0 -0
  433. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/types/lit_int.rs +0 -0
  434. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/types/param_spec.rs +0 -0
  435. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/types/simplify.rs +0 -0
  436. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/types/tuple.rs +0 -0
  437. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/types/type_var.rs +0 -0
  438. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/lib/types/type_var_tuple.rs +0 -0
  439. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/pyrefly.dotslash.py +0 -0
  440. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/rust-toolchain +0 -0
  441. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/__future__.pyi +0 -0
  442. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/__main__.pyi +0 -0
  443. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_ast.pyi +0 -0
  444. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_asyncio.pyi +0 -0
  445. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_bisect.pyi +0 -0
  446. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_blake2.pyi +0 -0
  447. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_bootlocale.pyi +0 -0
  448. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_bz2.pyi +0 -0
  449. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_codecs.pyi +0 -0
  450. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_collections_abc.pyi +0 -0
  451. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_compat_pickle.pyi +0 -0
  452. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_compression.pyi +0 -0
  453. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_contextvars.pyi +0 -0
  454. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_csv.pyi +0 -0
  455. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_ctypes.pyi +0 -0
  456. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_curses.pyi +0 -0
  457. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_curses_panel.pyi +0 -0
  458. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_dbm.pyi +0 -0
  459. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_decimal.pyi +0 -0
  460. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_frozen_importlib.pyi +0 -0
  461. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_frozen_importlib_external.pyi +0 -0
  462. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_gdbm.pyi +0 -0
  463. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_hashlib.pyi +0 -0
  464. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_heapq.pyi +0 -0
  465. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_imp.pyi +0 -0
  466. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_interpchannels.pyi +0 -0
  467. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_interpqueues.pyi +0 -0
  468. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_interpreters.pyi +0 -0
  469. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_io.pyi +0 -0
  470. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_json.pyi +0 -0
  471. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_locale.pyi +0 -0
  472. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_lsprof.pyi +0 -0
  473. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_lzma.pyi +0 -0
  474. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_markupbase.pyi +0 -0
  475. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_msi.pyi +0 -0
  476. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_multibytecodec.pyi +0 -0
  477. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_operator.pyi +0 -0
  478. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_osx_support.pyi +0 -0
  479. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_pickle.pyi +0 -0
  480. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_posixsubprocess.pyi +0 -0
  481. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_py_abc.pyi +0 -0
  482. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_pydecimal.pyi +0 -0
  483. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_queue.pyi +0 -0
  484. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_random.pyi +0 -0
  485. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_sitebuiltins.pyi +0 -0
  486. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_socket.pyi +0 -0
  487. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_sqlite3.pyi +0 -0
  488. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_ssl.pyi +0 -0
  489. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_stat.pyi +0 -0
  490. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_struct.pyi +0 -0
  491. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_thread.pyi +0 -0
  492. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_threading_local.pyi +0 -0
  493. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_tkinter.pyi +0 -0
  494. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_tracemalloc.pyi +0 -0
  495. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_typeshed/__init__.pyi +0 -0
  496. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_typeshed/_type_checker_internals.pyi +0 -0
  497. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_typeshed/dbapi.pyi +0 -0
  498. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_typeshed/importlib.pyi +0 -0
  499. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_typeshed/wsgi.pyi +0 -0
  500. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_typeshed/xml.pyi +0 -0
  501. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_warnings.pyi +0 -0
  502. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_weakref.pyi +0 -0
  503. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_weakrefset.pyi +0 -0
  504. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/_winapi.pyi +0 -0
  505. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/abc.pyi +0 -0
  506. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/aifc.pyi +0 -0
  507. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/annotationlib.pyi +0 -0
  508. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/antigravity.pyi +0 -0
  509. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/argparse.pyi +0 -0
  510. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/array.pyi +0 -0
  511. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ast.pyi +0 -0
  512. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asynchat.pyi +0 -0
  513. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/__init__.pyi +0 -0
  514. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/base_events.pyi +0 -0
  515. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/base_futures.pyi +0 -0
  516. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/base_subprocess.pyi +0 -0
  517. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/base_tasks.pyi +0 -0
  518. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/constants.pyi +0 -0
  519. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/coroutines.pyi +0 -0
  520. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/events.pyi +0 -0
  521. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/exceptions.pyi +0 -0
  522. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/format_helpers.pyi +0 -0
  523. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/futures.pyi +0 -0
  524. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/graph.pyi +0 -0
  525. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/locks.pyi +0 -0
  526. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/log.pyi +0 -0
  527. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/mixins.pyi +0 -0
  528. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/proactor_events.pyi +0 -0
  529. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/protocols.pyi +0 -0
  530. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/queues.pyi +0 -0
  531. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/runners.pyi +0 -0
  532. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/selector_events.pyi +0 -0
  533. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/sslproto.pyi +0 -0
  534. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/staggered.pyi +0 -0
  535. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/streams.pyi +0 -0
  536. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/subprocess.pyi +0 -0
  537. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/taskgroups.pyi +0 -0
  538. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/tasks.pyi +0 -0
  539. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/threads.pyi +0 -0
  540. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/timeouts.pyi +0 -0
  541. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/transports.pyi +0 -0
  542. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/trsock.pyi +0 -0
  543. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/unix_events.pyi +0 -0
  544. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/windows_events.pyi +0 -0
  545. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncio/windows_utils.pyi +0 -0
  546. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/asyncore.pyi +0 -0
  547. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/atexit.pyi +0 -0
  548. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/audioop.pyi +0 -0
  549. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/base64.pyi +0 -0
  550. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/bdb.pyi +0 -0
  551. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/binascii.pyi +0 -0
  552. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/binhex.pyi +0 -0
  553. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/bisect.pyi +0 -0
  554. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/builtins.pyi +0 -0
  555. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/bz2.pyi +0 -0
  556. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/cProfile.pyi +0 -0
  557. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/calendar.pyi +0 -0
  558. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/cgi.pyi +0 -0
  559. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/cgitb.pyi +0 -0
  560. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/chunk.pyi +0 -0
  561. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/cmath.pyi +0 -0
  562. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/cmd.pyi +0 -0
  563. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/code.pyi +0 -0
  564. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/codecs.pyi +0 -0
  565. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/codeop.pyi +0 -0
  566. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/collections/__init__.pyi +0 -0
  567. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/collections/abc.pyi +0 -0
  568. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/colorsys.pyi +0 -0
  569. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/compileall.pyi +0 -0
  570. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/compression/__init__.pyi +0 -0
  571. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/compression/_common/__init__.pyi +0 -0
  572. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/compression/_common/_streams.pyi +0 -0
  573. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/compression/bz2/__init__.pyi +0 -0
  574. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/compression/gzip/__init__.pyi +0 -0
  575. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/compression/lzma/__init__.pyi +0 -0
  576. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/compression/zlib/__init__.pyi +0 -0
  577. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/concurrent/__init__.pyi +0 -0
  578. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/__init__.pyi +0 -0
  579. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/_base.pyi +0 -0
  580. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/interpreter.pyi +0 -0
  581. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/process.pyi +0 -0
  582. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/thread.pyi +0 -0
  583. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/configparser.pyi +0 -0
  584. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/contextlib.pyi +0 -0
  585. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/contextvars.pyi +0 -0
  586. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/copy.pyi +0 -0
  587. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/copyreg.pyi +0 -0
  588. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/crypt.pyi +0 -0
  589. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/csv.pyi +0 -0
  590. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ctypes/__init__.pyi +0 -0
  591. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ctypes/_endian.pyi +0 -0
  592. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/__init__.pyi +0 -0
  593. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/dyld.pyi +0 -0
  594. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/dylib.pyi +0 -0
  595. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/framework.pyi +0 -0
  596. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ctypes/util.pyi +0 -0
  597. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ctypes/wintypes.pyi +0 -0
  598. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/curses/__init__.pyi +0 -0
  599. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/curses/ascii.pyi +0 -0
  600. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/curses/has_key.pyi +0 -0
  601. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/curses/panel.pyi +0 -0
  602. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/curses/textpad.pyi +0 -0
  603. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/dataclasses.pyi +0 -0
  604. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/datetime.pyi +0 -0
  605. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/dbm/__init__.pyi +0 -0
  606. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/dbm/dumb.pyi +0 -0
  607. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/dbm/gnu.pyi +0 -0
  608. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/dbm/ndbm.pyi +0 -0
  609. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/dbm/sqlite3.pyi +0 -0
  610. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/decimal.pyi +0 -0
  611. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/difflib.pyi +0 -0
  612. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/dis.pyi +0 -0
  613. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/__init__.pyi +0 -0
  614. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/_msvccompiler.pyi +0 -0
  615. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/archive_util.pyi +0 -0
  616. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/bcppcompiler.pyi +0 -0
  617. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/ccompiler.pyi +0 -0
  618. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/cmd.pyi +0 -0
  619. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/__init__.pyi +0 -0
  620. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist.pyi +0 -0
  621. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_dumb.pyi +0 -0
  622. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_msi.pyi +0 -0
  623. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_packager.pyi +0 -0
  624. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_rpm.pyi +0 -0
  625. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_wininst.pyi +0 -0
  626. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/build.pyi +0 -0
  627. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_clib.pyi +0 -0
  628. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_ext.pyi +0 -0
  629. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_py.pyi +0 -0
  630. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_scripts.pyi +0 -0
  631. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/check.pyi +0 -0
  632. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/clean.pyi +0 -0
  633. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/config.pyi +0 -0
  634. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/install.pyi +0 -0
  635. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_data.pyi +0 -0
  636. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_egg_info.pyi +0 -0
  637. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_headers.pyi +0 -0
  638. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_lib.pyi +0 -0
  639. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_scripts.pyi +0 -0
  640. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/register.pyi +0 -0
  641. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/sdist.pyi +0 -0
  642. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/command/upload.pyi +0 -0
  643. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/config.pyi +0 -0
  644. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/core.pyi +0 -0
  645. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/cygwinccompiler.pyi +0 -0
  646. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/debug.pyi +0 -0
  647. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/dep_util.pyi +0 -0
  648. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/dir_util.pyi +0 -0
  649. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/dist.pyi +0 -0
  650. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/errors.pyi +0 -0
  651. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/extension.pyi +0 -0
  652. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/fancy_getopt.pyi +0 -0
  653. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/file_util.pyi +0 -0
  654. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/filelist.pyi +0 -0
  655. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/log.pyi +0 -0
  656. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/msvccompiler.pyi +0 -0
  657. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/spawn.pyi +0 -0
  658. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/sysconfig.pyi +0 -0
  659. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/text_file.pyi +0 -0
  660. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/unixccompiler.pyi +0 -0
  661. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/util.pyi +0 -0
  662. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/distutils/version.pyi +0 -0
  663. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/doctest.pyi +0 -0
  664. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/__init__.pyi +0 -0
  665. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/_header_value_parser.pyi +0 -0
  666. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/_policybase.pyi +0 -0
  667. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/base64mime.pyi +0 -0
  668. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/charset.pyi +0 -0
  669. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/contentmanager.pyi +0 -0
  670. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/encoders.pyi +0 -0
  671. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/errors.pyi +0 -0
  672. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/feedparser.pyi +0 -0
  673. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/generator.pyi +0 -0
  674. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/header.pyi +0 -0
  675. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/headerregistry.pyi +0 -0
  676. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/iterators.pyi +0 -0
  677. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/message.pyi +0 -0
  678. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/mime/__init__.pyi +0 -0
  679. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/mime/application.pyi +0 -0
  680. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/mime/audio.pyi +0 -0
  681. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/mime/base.pyi +0 -0
  682. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/mime/image.pyi +0 -0
  683. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/mime/message.pyi +0 -0
  684. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/mime/multipart.pyi +0 -0
  685. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/mime/nonmultipart.pyi +0 -0
  686. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/mime/text.pyi +0 -0
  687. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/parser.pyi +0 -0
  688. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/policy.pyi +0 -0
  689. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/quoprimime.pyi +0 -0
  690. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/email/utils.pyi +0 -0
  691. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/__init__.pyi +0 -0
  692. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/aliases.pyi +0 -0
  693. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/ascii.pyi +0 -0
  694. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/base64_codec.pyi +0 -0
  695. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/big5.pyi +0 -0
  696. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/big5hkscs.pyi +0 -0
  697. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/bz2_codec.pyi +0 -0
  698. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/charmap.pyi +0 -0
  699. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp037.pyi +0 -0
  700. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1006.pyi +0 -0
  701. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1026.pyi +0 -0
  702. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1125.pyi +0 -0
  703. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1140.pyi +0 -0
  704. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1250.pyi +0 -0
  705. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1251.pyi +0 -0
  706. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1252.pyi +0 -0
  707. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1253.pyi +0 -0
  708. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1254.pyi +0 -0
  709. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1255.pyi +0 -0
  710. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1256.pyi +0 -0
  711. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1257.pyi +0 -0
  712. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp1258.pyi +0 -0
  713. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp273.pyi +0 -0
  714. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp424.pyi +0 -0
  715. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp437.pyi +0 -0
  716. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp500.pyi +0 -0
  717. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp720.pyi +0 -0
  718. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp737.pyi +0 -0
  719. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp775.pyi +0 -0
  720. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp850.pyi +0 -0
  721. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp852.pyi +0 -0
  722. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp855.pyi +0 -0
  723. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp856.pyi +0 -0
  724. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp857.pyi +0 -0
  725. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp858.pyi +0 -0
  726. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp860.pyi +0 -0
  727. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp861.pyi +0 -0
  728. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp862.pyi +0 -0
  729. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp863.pyi +0 -0
  730. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp864.pyi +0 -0
  731. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp865.pyi +0 -0
  732. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp866.pyi +0 -0
  733. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp869.pyi +0 -0
  734. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp874.pyi +0 -0
  735. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp875.pyi +0 -0
  736. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp932.pyi +0 -0
  737. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp949.pyi +0 -0
  738. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/cp950.pyi +0 -0
  739. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jis_2004.pyi +0 -0
  740. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jisx0213.pyi +0 -0
  741. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jp.pyi +0 -0
  742. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/euc_kr.pyi +0 -0
  743. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/gb18030.pyi +0 -0
  744. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/gb2312.pyi +0 -0
  745. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/gbk.pyi +0 -0
  746. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/hex_codec.pyi +0 -0
  747. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/hp_roman8.pyi +0 -0
  748. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/hz.pyi +0 -0
  749. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/idna.pyi +0 -0
  750. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp.pyi +0 -0
  751. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_1.pyi +0 -0
  752. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_2.pyi +0 -0
  753. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
  754. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_3.pyi +0 -0
  755. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
  756. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_kr.pyi +0 -0
  757. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_1.pyi +0 -0
  758. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_10.pyi +0 -0
  759. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_11.pyi +0 -0
  760. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_13.pyi +0 -0
  761. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_14.pyi +0 -0
  762. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_15.pyi +0 -0
  763. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_16.pyi +0 -0
  764. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_2.pyi +0 -0
  765. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_3.pyi +0 -0
  766. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_4.pyi +0 -0
  767. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_5.pyi +0 -0
  768. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_6.pyi +0 -0
  769. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_7.pyi +0 -0
  770. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_8.pyi +0 -0
  771. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_9.pyi +0 -0
  772. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/johab.pyi +0 -0
  773. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_r.pyi +0 -0
  774. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_t.pyi +0 -0
  775. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_u.pyi +0 -0
  776. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/kz1048.pyi +0 -0
  777. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/latin_1.pyi +0 -0
  778. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/mac_arabic.pyi +0 -0
  779. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/mac_croatian.pyi +0 -0
  780. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/mac_cyrillic.pyi +0 -0
  781. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/mac_farsi.pyi +0 -0
  782. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/mac_greek.pyi +0 -0
  783. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/mac_iceland.pyi +0 -0
  784. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/mac_latin2.pyi +0 -0
  785. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/mac_roman.pyi +0 -0
  786. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/mac_romanian.pyi +0 -0
  787. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/mac_turkish.pyi +0 -0
  788. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/mbcs.pyi +0 -0
  789. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/oem.pyi +0 -0
  790. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/palmos.pyi +0 -0
  791. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/ptcp154.pyi +0 -0
  792. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/punycode.pyi +0 -0
  793. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/quopri_codec.pyi +0 -0
  794. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/raw_unicode_escape.pyi +0 -0
  795. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/rot_13.pyi +0 -0
  796. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jis.pyi +0 -0
  797. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jis_2004.pyi +0 -0
  798. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jisx0213.pyi +0 -0
  799. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/tis_620.pyi +0 -0
  800. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/undefined.pyi +0 -0
  801. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/unicode_escape.pyi +0 -0
  802. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16.pyi +0 -0
  803. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16_be.pyi +0 -0
  804. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16_le.pyi +0 -0
  805. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32.pyi +0 -0
  806. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32_be.pyi +0 -0
  807. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32_le.pyi +0 -0
  808. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/utf_7.pyi +0 -0
  809. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/utf_8.pyi +0 -0
  810. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/utf_8_sig.pyi +0 -0
  811. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/uu_codec.pyi +0 -0
  812. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/encodings/zlib_codec.pyi +0 -0
  813. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ensurepip/__init__.pyi +0 -0
  814. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/enum.pyi +0 -0
  815. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/errno.pyi +0 -0
  816. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/faulthandler.pyi +0 -0
  817. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/fcntl.pyi +0 -0
  818. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/filecmp.pyi +0 -0
  819. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/fileinput.pyi +0 -0
  820. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/fnmatch.pyi +0 -0
  821. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/formatter.pyi +0 -0
  822. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/fractions.pyi +0 -0
  823. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ftplib.pyi +0 -0
  824. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/functools.pyi +0 -0
  825. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/gc.pyi +0 -0
  826. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/genericpath.pyi +0 -0
  827. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/getopt.pyi +0 -0
  828. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/getpass.pyi +0 -0
  829. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/gettext.pyi +0 -0
  830. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/glob.pyi +0 -0
  831. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/graphlib.pyi +0 -0
  832. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/grp.pyi +0 -0
  833. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/gzip.pyi +0 -0
  834. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/hashlib.pyi +0 -0
  835. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/heapq.pyi +0 -0
  836. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/hmac.pyi +0 -0
  837. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/html/__init__.pyi +0 -0
  838. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/html/entities.pyi +0 -0
  839. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/html/parser.pyi +0 -0
  840. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/http/__init__.pyi +0 -0
  841. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/http/client.pyi +0 -0
  842. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/http/cookiejar.pyi +0 -0
  843. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/http/cookies.pyi +0 -0
  844. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/http/server.pyi +0 -0
  845. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/imaplib.pyi +0 -0
  846. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/imghdr.pyi +0 -0
  847. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/imp.pyi +0 -0
  848. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/__init__.pyi +0 -0
  849. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/_abc.pyi +0 -0
  850. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/_bootstrap.pyi +0 -0
  851. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/_bootstrap_external.pyi +0 -0
  852. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/abc.pyi +0 -0
  853. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/machinery.pyi +0 -0
  854. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/__init__.pyi +0 -0
  855. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/_meta.pyi +0 -0
  856. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/diagnose.pyi +0 -0
  857. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/readers.pyi +0 -0
  858. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/resources/__init__.pyi +0 -0
  859. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/resources/_common.pyi +0 -0
  860. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/resources/_functional.pyi +0 -0
  861. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/resources/abc.pyi +0 -0
  862. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/resources/readers.pyi +0 -0
  863. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/resources/simple.pyi +0 -0
  864. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/simple.pyi +0 -0
  865. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/importlib/util.pyi +0 -0
  866. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/inspect.pyi +0 -0
  867. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/io.pyi +0 -0
  868. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ipaddress.pyi +0 -0
  869. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/itertools.pyi +0 -0
  870. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/json/__init__.pyi +0 -0
  871. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/json/decoder.pyi +0 -0
  872. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/json/encoder.pyi +0 -0
  873. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/json/scanner.pyi +0 -0
  874. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/json/tool.pyi +0 -0
  875. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/keyword.pyi +0 -0
  876. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/__init__.pyi +0 -0
  877. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/btm_matcher.pyi +0 -0
  878. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixer_base.pyi +0 -0
  879. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/__init__.pyi +0 -0
  880. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
  881. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
  882. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
  883. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
  884. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
  885. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
  886. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
  887. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
  888. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
  889. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
  890. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
  891. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
  892. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
  893. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
  894. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
  895. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
  896. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
  897. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
  898. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
  899. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
  900. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
  901. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
  902. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
  903. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
  904. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
  905. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
  906. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
  907. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
  908. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
  909. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
  910. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
  911. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
  912. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
  913. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
  914. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
  915. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
  916. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
  917. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
  918. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
  919. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
  920. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
  921. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
  922. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
  923. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
  924. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
  925. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
  926. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
  927. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
  928. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
  929. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
  930. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
  931. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
  932. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/main.pyi +0 -0
  933. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
  934. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/driver.pyi +0 -0
  935. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
  936. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/literals.pyi +0 -0
  937. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/parse.pyi +0 -0
  938. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
  939. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/token.pyi +0 -0
  940. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
  941. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/pygram.pyi +0 -0
  942. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/pytree.pyi +0 -0
  943. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lib2to3/refactor.pyi +0 -0
  944. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/linecache.pyi +0 -0
  945. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/locale.pyi +0 -0
  946. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/logging/__init__.pyi +0 -0
  947. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/logging/config.pyi +0 -0
  948. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/logging/handlers.pyi +0 -0
  949. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/lzma.pyi +0 -0
  950. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/mailbox.pyi +0 -0
  951. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/mailcap.pyi +0 -0
  952. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/marshal.pyi +0 -0
  953. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/math.pyi +0 -0
  954. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/mimetypes.pyi +0 -0
  955. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/mmap.pyi +0 -0
  956. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/modulefinder.pyi +0 -0
  957. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/msilib/__init__.pyi +0 -0
  958. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/msilib/schema.pyi +0 -0
  959. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/msilib/sequence.pyi +0 -0
  960. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/msilib/text.pyi +0 -0
  961. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/msvcrt.pyi +0 -0
  962. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/__init__.pyi +0 -0
  963. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/connection.pyi +0 -0
  964. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/context.pyi +0 -0
  965. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
  966. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/dummy/connection.pyi +0 -0
  967. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/forkserver.pyi +0 -0
  968. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/heap.pyi +0 -0
  969. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/managers.pyi +0 -0
  970. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/pool.pyi +0 -0
  971. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_fork.pyi +0 -0
  972. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
  973. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
  974. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
  975. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/process.pyi +0 -0
  976. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/queues.pyi +0 -0
  977. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/reduction.pyi +0 -0
  978. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/resource_sharer.pyi +0 -0
  979. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/resource_tracker.pyi +0 -0
  980. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/shared_memory.pyi +0 -0
  981. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/sharedctypes.pyi +0 -0
  982. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/spawn.pyi +0 -0
  983. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/synchronize.pyi +0 -0
  984. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/multiprocessing/util.pyi +0 -0
  985. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/netrc.pyi +0 -0
  986. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/nis.pyi +0 -0
  987. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/nntplib.pyi +0 -0
  988. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/nt.pyi +0 -0
  989. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ntpath.pyi +0 -0
  990. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/nturl2path.pyi +0 -0
  991. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/numbers.pyi +0 -0
  992. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/opcode.pyi +0 -0
  993. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/operator.pyi +0 -0
  994. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/optparse.pyi +0 -0
  995. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/os/__init__.pyi +0 -0
  996. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/os/path.pyi +0 -0
  997. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ossaudiodev.pyi +0 -0
  998. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/parser.pyi +0 -0
  999. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pathlib/__init__.pyi +0 -0
  1000. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pathlib/types.pyi +0 -0
  1001. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pdb.pyi +0 -0
  1002. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pickle.pyi +0 -0
  1003. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pickletools.pyi +0 -0
  1004. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pipes.pyi +0 -0
  1005. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pkgutil.pyi +0 -0
  1006. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/platform.pyi +0 -0
  1007. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/plistlib.pyi +0 -0
  1008. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/poplib.pyi +0 -0
  1009. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/posix.pyi +0 -0
  1010. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/posixpath.pyi +0 -0
  1011. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pprint.pyi +0 -0
  1012. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/profile.pyi +0 -0
  1013. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pstats.pyi +0 -0
  1014. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pty.pyi +0 -0
  1015. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pwd.pyi +0 -0
  1016. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/py_compile.pyi +0 -0
  1017. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pyclbr.pyi +0 -0
  1018. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pydoc.pyi +0 -0
  1019. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pydoc_data/__init__.pyi +0 -0
  1020. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pydoc_data/topics.pyi +0 -0
  1021. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pyexpat/__init__.pyi +0 -0
  1022. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pyexpat/errors.pyi +0 -0
  1023. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/pyexpat/model.pyi +0 -0
  1024. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/queue.pyi +0 -0
  1025. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/quopri.pyi +0 -0
  1026. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/random.pyi +0 -0
  1027. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/re.pyi +0 -0
  1028. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/readline.pyi +0 -0
  1029. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/reprlib.pyi +0 -0
  1030. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/resource.pyi +0 -0
  1031. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/rlcompleter.pyi +0 -0
  1032. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/runpy.pyi +0 -0
  1033. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/sched.pyi +0 -0
  1034. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/secrets.pyi +0 -0
  1035. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/select.pyi +0 -0
  1036. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/selectors.pyi +0 -0
  1037. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/shelve.pyi +0 -0
  1038. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/shlex.pyi +0 -0
  1039. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/shutil.pyi +0 -0
  1040. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/signal.pyi +0 -0
  1041. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/site.pyi +0 -0
  1042. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/smtpd.pyi +0 -0
  1043. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/smtplib.pyi +0 -0
  1044. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/sndhdr.pyi +0 -0
  1045. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/socket.pyi +0 -0
  1046. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/socketserver.pyi +0 -0
  1047. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/spwd.pyi +0 -0
  1048. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/sqlite3/__init__.pyi +0 -0
  1049. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/sqlite3/dbapi2.pyi +0 -0
  1050. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/sqlite3/dump.pyi +0 -0
  1051. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/sre_compile.pyi +0 -0
  1052. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/sre_constants.pyi +0 -0
  1053. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/sre_parse.pyi +0 -0
  1054. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/ssl.pyi +0 -0
  1055. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/stat.pyi +0 -0
  1056. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/statistics.pyi +0 -0
  1057. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/string/__init__.pyi +0 -0
  1058. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/string/templatelib.pyi +0 -0
  1059. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/stringprep.pyi +0 -0
  1060. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/struct.pyi +0 -0
  1061. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/subprocess.pyi +0 -0
  1062. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/sunau.pyi +0 -0
  1063. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/symbol.pyi +0 -0
  1064. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/symtable.pyi +0 -0
  1065. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/sys/__init__.pyi +0 -0
  1066. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/sys/_monitoring.pyi +0 -0
  1067. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/sysconfig.pyi +0 -0
  1068. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/syslog.pyi +0 -0
  1069. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tabnanny.pyi +0 -0
  1070. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tarfile.pyi +0 -0
  1071. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/telnetlib.pyi +0 -0
  1072. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tempfile.pyi +0 -0
  1073. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/termios.pyi +0 -0
  1074. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/textwrap.pyi +0 -0
  1075. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/this.pyi +0 -0
  1076. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/threading.pyi +0 -0
  1077. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/time.pyi +0 -0
  1078. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/timeit.pyi +0 -0
  1079. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/__init__.pyi +0 -0
  1080. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/colorchooser.pyi +0 -0
  1081. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/commondialog.pyi +0 -0
  1082. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/constants.pyi +0 -0
  1083. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/dialog.pyi +0 -0
  1084. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/dnd.pyi +0 -0
  1085. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/filedialog.pyi +0 -0
  1086. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/font.pyi +0 -0
  1087. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/messagebox.pyi +0 -0
  1088. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/scrolledtext.pyi +0 -0
  1089. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/simpledialog.pyi +0 -0
  1090. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/tix.pyi +0 -0
  1091. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tkinter/ttk.pyi +0 -0
  1092. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/token.pyi +0 -0
  1093. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tokenize.pyi +0 -0
  1094. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tomllib.pyi +0 -0
  1095. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/trace.pyi +0 -0
  1096. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/traceback.pyi +0 -0
  1097. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tracemalloc.pyi +0 -0
  1098. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/tty.pyi +0 -0
  1099. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/turtle.pyi +0 -0
  1100. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/types.pyi +0 -0
  1101. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/typing.pyi +0 -0
  1102. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/typing_extensions.pyi +0 -0
  1103. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unicodedata.pyi +0 -0
  1104. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unittest/__init__.pyi +0 -0
  1105. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unittest/_log.pyi +0 -0
  1106. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unittest/async_case.pyi +0 -0
  1107. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unittest/case.pyi +0 -0
  1108. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unittest/loader.pyi +0 -0
  1109. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unittest/main.pyi +0 -0
  1110. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unittest/mock.pyi +0 -0
  1111. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unittest/result.pyi +0 -0
  1112. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unittest/runner.pyi +0 -0
  1113. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unittest/signals.pyi +0 -0
  1114. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unittest/suite.pyi +0 -0
  1115. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/unittest/util.pyi +0 -0
  1116. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/urllib/__init__.pyi +0 -0
  1117. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/urllib/error.pyi +0 -0
  1118. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/urllib/parse.pyi +0 -0
  1119. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/urllib/request.pyi +0 -0
  1120. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/urllib/response.pyi +0 -0
  1121. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/urllib/robotparser.pyi +0 -0
  1122. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/uu.pyi +0 -0
  1123. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/uuid.pyi +0 -0
  1124. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/venv/__init__.pyi +0 -0
  1125. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/warnings.pyi +0 -0
  1126. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/wave.pyi +0 -0
  1127. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/weakref.pyi +0 -0
  1128. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/webbrowser.pyi +0 -0
  1129. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/winreg.pyi +0 -0
  1130. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/winsound.pyi +0 -0
  1131. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/wsgiref/__init__.pyi +0 -0
  1132. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/wsgiref/handlers.pyi +0 -0
  1133. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/wsgiref/headers.pyi +0 -0
  1134. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/wsgiref/simple_server.pyi +0 -0
  1135. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/wsgiref/types.pyi +0 -0
  1136. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/wsgiref/util.pyi +0 -0
  1137. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/wsgiref/validate.pyi +0 -0
  1138. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xdrlib.pyi +0 -0
  1139. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/__init__.pyi +0 -0
  1140. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/dom/NodeFilter.pyi +0 -0
  1141. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/dom/__init__.pyi +0 -0
  1142. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/dom/domreg.pyi +0 -0
  1143. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/dom/expatbuilder.pyi +0 -0
  1144. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/dom/minicompat.pyi +0 -0
  1145. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/dom/minidom.pyi +0 -0
  1146. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/dom/pulldom.pyi +0 -0
  1147. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/dom/xmlbuilder.pyi +0 -0
  1148. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementInclude.pyi +0 -0
  1149. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementPath.pyi +0 -0
  1150. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementTree.pyi +0 -0
  1151. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/etree/__init__.pyi +0 -0
  1152. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/etree/cElementTree.pyi +0 -0
  1153. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/parsers/__init__.pyi +0 -0
  1154. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/__init__.pyi +0 -0
  1155. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/errors.pyi +0 -0
  1156. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/model.pyi +0 -0
  1157. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/sax/__init__.pyi +0 -0
  1158. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/sax/_exceptions.pyi +0 -0
  1159. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/sax/expatreader.pyi +0 -0
  1160. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/sax/handler.pyi +0 -0
  1161. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/sax/saxutils.pyi +0 -0
  1162. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xml/sax/xmlreader.pyi +0 -0
  1163. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xmlrpc/__init__.pyi +0 -0
  1164. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xmlrpc/client.pyi +0 -0
  1165. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xmlrpc/server.pyi +0 -0
  1166. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/xxlimited.pyi +0 -0
  1167. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/zipapp.pyi +0 -0
  1168. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/zipfile/__init__.pyi +0 -0
  1169. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/zipfile/_path/__init__.pyi +0 -0
  1170. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/zipfile/_path/glob.pyi +0 -0
  1171. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/zipimport.pyi +0 -0
  1172. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/zlib.pyi +0 -0
  1173. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/zoneinfo/__init__.pyi +0 -0
  1174. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/zoneinfo/_common.pyi +0 -0
  1175. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed/stdlib/zoneinfo/_tzpath.pyi +0 -0
  1176. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly/third_party/typeshed_metadata.json +0 -0
  1177. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_derive/.gitignore +0 -0
  1178. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_derive/src/lib.rs +0 -0
  1179. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_derive/src/type_eq.rs +0 -0
  1180. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_derive/src/visit.rs +0 -0
  1181. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/arc_id.rs +0 -0
  1182. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/args.rs +0 -0
  1183. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/assert_size.rs +0 -0
  1184. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/display.rs +0 -0
  1185. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/events.rs +0 -0
  1186. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/exclusive_lock.rs +0 -0
  1187. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/forgetter.rs +0 -0
  1188. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/fs_anyhow.rs +0 -0
  1189. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/gas.rs +0 -0
  1190. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/globs.rs +0 -0
  1191. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/lock.rs +0 -0
  1192. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/locked_map.rs +0 -0
  1193. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/memory.rs +0 -0
  1194. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/no_hash.rs +0 -0
  1195. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/owner.rs +0 -0
  1196. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/prelude.rs +0 -0
  1197. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/recurser.rs +0 -0
  1198. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/ruff_visitors.rs +0 -0
  1199. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/small_set1.rs +0 -0
  1200. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/task_heap.rs +0 -0
  1201. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/test_path.rs +0 -0
  1202. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/thread_pool.rs +0 -0
  1203. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/trace.rs +0 -0
  1204. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/upgrade_lock.rs +0 -0
  1205. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/upward_search.rs +0 -0
  1206. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/visit.rs +0 -0
  1207. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/watcher.rs +0 -0
  1208. {pyrefly-0.20.2 → pyrefly-0.22.0}/pyrefly_util/src/with_hash.rs +0 -0
  1209. {pyrefly-0.20.2 → pyrefly-0.22.0}/rust-toolchain +0 -0
@@ -0,0 +1,3621 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "Inflector"
7
+ version = "0.11.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
10
+
11
+ [[package]]
12
+ name = "addr2line"
13
+ version = "0.19.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
16
+ dependencies = [
17
+ "gimli",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "adler"
22
+ version = "1.0.2"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
25
+
26
+ [[package]]
27
+ name = "ahash"
28
+ version = "0.8.11"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
31
+ dependencies = [
32
+ "cfg-if",
33
+ "once_cell",
34
+ "version_check",
35
+ "zerocopy 0.7.35",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "aho-corasick"
40
+ version = "1.1.3"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
43
+ dependencies = [
44
+ "memchr",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "allocative"
49
+ version = "0.3.4"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "8fac2ce611db8b8cee9b2aa886ca03c924e9da5e5295d0dbd0526e5d0b0710f7"
52
+ dependencies = [
53
+ "allocative_derive",
54
+ "anyhow",
55
+ "bumpalo",
56
+ "compact_str 0.8.0",
57
+ "ctor",
58
+ "dashmap",
59
+ "either",
60
+ "futures 0.3.31",
61
+ "hashbrown 0.14.5",
62
+ "indexmap",
63
+ "num-bigint",
64
+ "once_cell",
65
+ "parking_lot 0.11.2",
66
+ "prost-types",
67
+ "relative-path",
68
+ "serde_json",
69
+ "slab",
70
+ "smallvec",
71
+ "sorted_vector_map",
72
+ "tokio",
73
+ "triomphe",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "allocative_derive"
78
+ version = "0.3.3"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "fe233a377643e0fc1a56421d7c90acdec45c291b30345eb9f08e8d0ddce5a4ab"
81
+ dependencies = [
82
+ "proc-macro2",
83
+ "quote",
84
+ "syn 2.0.101",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "allocator-api2"
89
+ version = "0.2.21"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
92
+
93
+ [[package]]
94
+ name = "android-tzdata"
95
+ version = "0.1.1"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
98
+
99
+ [[package]]
100
+ name = "android_system_properties"
101
+ version = "0.1.5"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
104
+ dependencies = [
105
+ "libc",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "anstream"
110
+ version = "0.6.18"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
113
+ dependencies = [
114
+ "anstyle",
115
+ "anstyle-parse",
116
+ "anstyle-query",
117
+ "anstyle-wincon",
118
+ "colorchoice",
119
+ "is_terminal_polyfill",
120
+ "utf8parse",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "anstyle"
125
+ version = "1.0.10"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
128
+
129
+ [[package]]
130
+ name = "anstyle-parse"
131
+ version = "0.2.0"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
134
+ dependencies = [
135
+ "utf8parse",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "anstyle-query"
140
+ version = "1.0.0"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
143
+ dependencies = [
144
+ "windows-sys 0.48.0",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "anstyle-wincon"
149
+ version = "3.0.7"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
152
+ dependencies = [
153
+ "anstyle",
154
+ "once_cell",
155
+ "windows-sys 0.59.0",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "anyhow"
160
+ version = "1.0.98"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
163
+
164
+ [[package]]
165
+ name = "append-only-vec"
166
+ version = "0.1.2"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "5608767d94038891df4c7bb82f6b1beb55fe3d204735985e20de329bc35d5fee"
169
+
170
+ [[package]]
171
+ name = "argfile"
172
+ version = "0.1.6"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "1287c4f82a41c5085e65ee337c7934d71ab43d5187740a81fb69129013f6a5f6"
175
+ dependencies = [
176
+ "fs-err",
177
+ "os_str_bytes",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "arrayref"
182
+ version = "0.3.6"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
185
+
186
+ [[package]]
187
+ name = "arrayvec"
188
+ version = "0.7.4"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
191
+
192
+ [[package]]
193
+ name = "atomic"
194
+ version = "0.5.1"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
197
+ dependencies = [
198
+ "autocfg",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "autocfg"
203
+ version = "1.1.0"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
206
+
207
+ [[package]]
208
+ name = "backtrace"
209
+ version = "0.3.67"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
212
+ dependencies = [
213
+ "addr2line",
214
+ "cc",
215
+ "cfg-if",
216
+ "libc",
217
+ "miniz_oxide",
218
+ "object",
219
+ "rustc-demangle",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "base64"
224
+ version = "0.22.1"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
227
+
228
+ [[package]]
229
+ name = "bitflags"
230
+ version = "1.3.2"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
233
+
234
+ [[package]]
235
+ name = "bitflags"
236
+ version = "2.9.0"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
239
+
240
+ [[package]]
241
+ name = "blake3"
242
+ version = "1.6.1"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "675f87afced0413c9bb02843499dbbd3882a237645883f71a2b59644a6d2f753"
245
+ dependencies = [
246
+ "arrayref",
247
+ "arrayvec",
248
+ "cc",
249
+ "cfg-if",
250
+ "constant_time_eq",
251
+ "digest",
252
+ "memmap2",
253
+ "rayon-core",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "block-buffer"
258
+ version = "0.10.2"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
261
+ dependencies = [
262
+ "generic-array",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "bstr"
267
+ version = "1.12.0"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
270
+ dependencies = [
271
+ "memchr",
272
+ "regex-automata 0.4.9",
273
+ "serde",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "bumpalo"
278
+ version = "3.16.0"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
281
+
282
+ [[package]]
283
+ name = "byteorder"
284
+ version = "1.5.0"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
287
+
288
+ [[package]]
289
+ name = "bytes"
290
+ version = "1.10.1"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
293
+ dependencies = [
294
+ "serde",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "castaway"
299
+ version = "0.2.3"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
302
+ dependencies = [
303
+ "rustversion",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "cc"
308
+ version = "1.2.10"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
311
+ dependencies = [
312
+ "jobserver",
313
+ "libc",
314
+ "shlex",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "cfg-if"
319
+ version = "1.0.0"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
322
+
323
+ [[package]]
324
+ name = "chrono"
325
+ version = "0.4.41"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
328
+ dependencies = [
329
+ "android-tzdata",
330
+ "iana-time-zone",
331
+ "num-traits",
332
+ "windows-link",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "clap"
337
+ version = "4.5.38"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000"
340
+ dependencies = [
341
+ "clap_builder",
342
+ "clap_derive",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "clap_builder"
347
+ version = "4.5.38"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120"
350
+ dependencies = [
351
+ "anstream",
352
+ "anstyle",
353
+ "clap_lex",
354
+ "strsim 0.11.1",
355
+ "terminal_size",
356
+ "unicase",
357
+ "unicode-width 0.2.0",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "clap_derive"
362
+ version = "4.5.32"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
365
+ dependencies = [
366
+ "heck",
367
+ "proc-macro2",
368
+ "quote",
369
+ "syn 2.0.101",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "clap_lex"
374
+ version = "0.7.4"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
377
+
378
+ [[package]]
379
+ name = "codespan-reporting"
380
+ version = "0.12.0"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
383
+ dependencies = [
384
+ "serde",
385
+ "termcolor",
386
+ "unicode-width 0.2.0",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "colorchoice"
391
+ version = "1.0.0"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
394
+
395
+ [[package]]
396
+ name = "compact_str"
397
+ version = "0.8.0"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "6050c3a16ddab2e412160b31f2c871015704239bca62f72f6e5f0be631d3f644"
400
+ dependencies = [
401
+ "castaway",
402
+ "cfg-if",
403
+ "itoa 1.0.14",
404
+ "rustversion",
405
+ "ryu 1.0.17",
406
+ "static_assertions",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "compact_str"
411
+ version = "0.9.0"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
414
+ dependencies = [
415
+ "castaway",
416
+ "cfg-if",
417
+ "itoa 1.0.14",
418
+ "rustversion",
419
+ "ryu 1.0.17",
420
+ "static_assertions",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "configparser"
425
+ version = "3.1.0"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "e57e3272f0190c3f1584272d613719ba5fc7df7f4942fe542e63d949cf3a649b"
428
+ dependencies = [
429
+ "indexmap",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "console"
434
+ version = "0.15.7"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
437
+ dependencies = [
438
+ "encode_unicode",
439
+ "lazy_static",
440
+ "libc",
441
+ "unicode-width 0.1.12",
442
+ "windows-sys 0.45.0",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "const-str"
447
+ version = "0.4.3"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3"
450
+
451
+ [[package]]
452
+ name = "constant_time_eq"
453
+ version = "0.3.1"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
456
+
457
+ [[package]]
458
+ name = "convert_case"
459
+ version = "0.6.0"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
462
+ dependencies = [
463
+ "unicode-segmentation",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "core-foundation-sys"
468
+ version = "0.8.7"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
471
+
472
+ [[package]]
473
+ name = "crossbeam-channel"
474
+ version = "0.5.15"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
477
+ dependencies = [
478
+ "crossbeam-utils",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "crossbeam-deque"
483
+ version = "0.8.6"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
486
+ dependencies = [
487
+ "crossbeam-epoch",
488
+ "crossbeam-utils",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "crossbeam-epoch"
493
+ version = "0.9.18"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
496
+ dependencies = [
497
+ "crossbeam-utils",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "crossbeam-utils"
502
+ version = "0.8.21"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
505
+
506
+ [[package]]
507
+ name = "crypto-common"
508
+ version = "0.1.6"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
511
+ dependencies = [
512
+ "generic-array",
513
+ "typenum",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "ctor"
518
+ version = "0.1.26"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
521
+ dependencies = [
522
+ "quote",
523
+ "syn 1.0.109",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "cxx"
528
+ version = "1.0.150"
529
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
530
+ dependencies = [
531
+ "cc",
532
+ "cxxbridge-cmd",
533
+ "cxxbridge-flags",
534
+ "cxxbridge-macro",
535
+ "foldhash",
536
+ "link-cplusplus",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "cxx-build"
541
+ version = "1.0.150"
542
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
543
+ dependencies = [
544
+ "cc",
545
+ "codespan-reporting",
546
+ "proc-macro2",
547
+ "quote",
548
+ "scratch",
549
+ "syn 2.0.101",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "cxxbridge-cmd"
554
+ version = "1.0.150"
555
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
556
+ dependencies = [
557
+ "clap",
558
+ "codespan-reporting",
559
+ "proc-macro2",
560
+ "quote",
561
+ "syn 2.0.101",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "cxxbridge-flags"
566
+ version = "1.0.150"
567
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
568
+
569
+ [[package]]
570
+ name = "cxxbridge-macro"
571
+ version = "1.0.150"
572
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
573
+ dependencies = [
574
+ "proc-macro2",
575
+ "quote",
576
+ "rustversion",
577
+ "syn 2.0.101",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "darling"
582
+ version = "0.13.4"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
585
+ dependencies = [
586
+ "darling_core",
587
+ "darling_macro",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "darling_core"
592
+ version = "0.13.4"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
595
+ dependencies = [
596
+ "fnv",
597
+ "ident_case",
598
+ "proc-macro2",
599
+ "quote",
600
+ "strsim 0.10.0",
601
+ "syn 1.0.109",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "darling_macro"
606
+ version = "0.13.4"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
609
+ dependencies = [
610
+ "darling_core",
611
+ "quote",
612
+ "syn 1.0.109",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "dashmap"
617
+ version = "5.5.3"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
620
+ dependencies = [
621
+ "cfg-if",
622
+ "hashbrown 0.14.5",
623
+ "lock_api",
624
+ "once_cell",
625
+ "parking_lot_core 0.9.9",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "deranged"
630
+ version = "0.4.1"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "28cfac68e08048ae1883171632c2aef3ebc555621ae56fbccce1cbf22dd7f058"
633
+ dependencies = [
634
+ "powerfmt",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "diff"
639
+ version = "0.1.12"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
642
+
643
+ [[package]]
644
+ name = "digest"
645
+ version = "0.10.7"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
648
+ dependencies = [
649
+ "block-buffer",
650
+ "crypto-common",
651
+ "subtle",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "displaydoc"
656
+ version = "0.2.5"
657
+ source = "git+https://github.com/yaahc/displaydoc?rev=7dc6e324b1788a6b7fb9f3a1953c512923a3e9f0#7dc6e324b1788a6b7fb9f3a1953c512923a3e9f0"
658
+ dependencies = [
659
+ "proc-macro2",
660
+ "quote",
661
+ "syn 2.0.101",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "dupe"
666
+ version = "0.9.1"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "6ed2bc011db9c93fbc2b6cdb341a53737a55bafb46dbb74cf6764fc33a2fbf9c"
669
+ dependencies = [
670
+ "dupe_derive",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "dupe_derive"
675
+ version = "0.9.1"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "83e195b4945e88836d826124af44fdcb262ec01ef94d44f14f4fb5103f19892a"
678
+ dependencies = [
679
+ "proc-macro2",
680
+ "quote",
681
+ "syn 2.0.101",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "either"
686
+ version = "1.15.0"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
689
+
690
+ [[package]]
691
+ name = "encode_unicode"
692
+ version = "0.3.6"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
695
+
696
+ [[package]]
697
+ name = "enum-iterator"
698
+ version = "1.4.1"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "7add3873b5dd076766ee79c8e406ad1a472c385476b9e38849f8eec24f1be689"
701
+ dependencies = [
702
+ "enum-iterator-derive",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "enum-iterator-derive"
707
+ version = "1.2.1"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "eecf8589574ce9b895052fa12d69af7a233f99e6107f5cb8dd1044f2a17bfdcb"
710
+ dependencies = [
711
+ "proc-macro2",
712
+ "quote",
713
+ "syn 2.0.101",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "env_logger"
718
+ version = "0.8.4"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
721
+ dependencies = [
722
+ "log",
723
+ "regex",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "equivalent"
728
+ version = "1.0.0"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1"
731
+
732
+ [[package]]
733
+ name = "errno"
734
+ version = "0.3.10"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
737
+ dependencies = [
738
+ "libc",
739
+ "windows-sys 0.59.0",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "fastrand"
744
+ version = "2.3.0"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
747
+
748
+ [[package]]
749
+ name = "filetime"
750
+ version = "0.2.25"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
753
+ dependencies = [
754
+ "cfg-if",
755
+ "libc",
756
+ "libredox",
757
+ "windows-sys 0.59.0",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "fnv"
762
+ version = "1.0.7"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
765
+
766
+ [[package]]
767
+ name = "foldhash"
768
+ version = "0.1.5"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
771
+
772
+ [[package]]
773
+ name = "form_urlencoded"
774
+ version = "1.2.1"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
777
+ dependencies = [
778
+ "percent-encoding",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "fs-err"
783
+ version = "2.11.0"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
786
+ dependencies = [
787
+ "autocfg",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "fsevent-sys"
792
+ version = "4.0.0"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "5c0e564d24da983c053beff1bb7178e237501206840a3e6bf4e267b9e8ae734a"
795
+ dependencies = [
796
+ "libc",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "futures"
801
+ version = "0.1.31"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
804
+
805
+ [[package]]
806
+ name = "futures"
807
+ version = "0.3.31"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
810
+ dependencies = [
811
+ "futures-channel",
812
+ "futures-core",
813
+ "futures-executor",
814
+ "futures-io",
815
+ "futures-sink",
816
+ "futures-task",
817
+ "futures-util",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "futures-channel"
822
+ version = "0.3.31"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
825
+ dependencies = [
826
+ "futures-core",
827
+ "futures-sink",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "futures-core"
832
+ version = "0.3.31"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
835
+
836
+ [[package]]
837
+ name = "futures-executor"
838
+ version = "0.3.31"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
841
+ dependencies = [
842
+ "futures-core",
843
+ "futures-task",
844
+ "futures-util",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "futures-io"
849
+ version = "0.3.31"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
852
+
853
+ [[package]]
854
+ name = "futures-macro"
855
+ version = "0.3.31"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
858
+ dependencies = [
859
+ "proc-macro2",
860
+ "quote",
861
+ "syn 2.0.101",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "futures-sink"
866
+ version = "0.3.31"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
869
+
870
+ [[package]]
871
+ name = "futures-task"
872
+ version = "0.3.31"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
875
+
876
+ [[package]]
877
+ name = "futures-util"
878
+ version = "0.3.31"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
881
+ dependencies = [
882
+ "futures 0.1.31",
883
+ "futures-channel",
884
+ "futures-core",
885
+ "futures-io",
886
+ "futures-macro",
887
+ "futures-sink",
888
+ "futures-task",
889
+ "memchr",
890
+ "pin-project-lite",
891
+ "pin-utils",
892
+ "slab",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "fuzzy-matcher"
897
+ version = "0.3.7"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "54614a3312934d066701a80f20f15fa3b56d67ac7722b39eea5b4c9dd1d66c94"
900
+ dependencies = [
901
+ "thread_local",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "fxhash"
906
+ version = "0.2.1"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
909
+ dependencies = [
910
+ "byteorder",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "generic-array"
915
+ version = "0.14.7"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
918
+ dependencies = [
919
+ "typenum",
920
+ "version_check",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "getopts"
925
+ version = "0.2.21"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
928
+ dependencies = [
929
+ "unicode-width 0.1.12",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "getrandom"
934
+ version = "0.2.16"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
937
+ dependencies = [
938
+ "cfg-if",
939
+ "js-sys",
940
+ "libc",
941
+ "wasi 0.11.0+wasi-snapshot-preview1",
942
+ "wasm-bindgen",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "getrandom"
947
+ version = "0.3.3"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
950
+ dependencies = [
951
+ "cfg-if",
952
+ "libc",
953
+ "r-efi",
954
+ "wasi 0.14.2+wasi-0.2.4",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "gimli"
959
+ version = "0.27.2"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
962
+
963
+ [[package]]
964
+ name = "glob"
965
+ version = "0.3.2"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
968
+
969
+ [[package]]
970
+ name = "hashbrown"
971
+ version = "0.14.5"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
974
+ dependencies = [
975
+ "ahash",
976
+ "allocator-api2",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "hashbrown"
981
+ version = "0.15.2"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
984
+
985
+ [[package]]
986
+ name = "heck"
987
+ version = "0.5.0"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
990
+
991
+ [[package]]
992
+ name = "hermit-abi"
993
+ version = "0.3.9"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
996
+
997
+ [[package]]
998
+ name = "hex"
999
+ version = "0.4.3"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1002
+
1003
+ [[package]]
1004
+ name = "human_bytes"
1005
+ version = "0.4.3"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "91f255a4535024abf7640cb288260811fc14794f62b063652ed349f9a6c2348e"
1008
+
1009
+ [[package]]
1010
+ name = "iana-time-zone"
1011
+ version = "0.1.53"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
1014
+ dependencies = [
1015
+ "android_system_properties",
1016
+ "core-foundation-sys",
1017
+ "iana-time-zone-haiku",
1018
+ "js-sys",
1019
+ "wasm-bindgen",
1020
+ "winapi",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "iana-time-zone-haiku"
1025
+ version = "0.1.1"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
1028
+ dependencies = [
1029
+ "cxx",
1030
+ "cxx-build",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "icu_collections"
1035
+ version = "1.5.0"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1038
+ dependencies = [
1039
+ "displaydoc",
1040
+ "yoke",
1041
+ "zerofrom",
1042
+ "zerovec",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "icu_locid"
1047
+ version = "1.5.0"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1050
+ dependencies = [
1051
+ "displaydoc",
1052
+ "litemap",
1053
+ "tinystr",
1054
+ "writeable",
1055
+ "zerovec",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "icu_locid_transform"
1060
+ version = "1.5.0"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1063
+ dependencies = [
1064
+ "displaydoc",
1065
+ "icu_locid",
1066
+ "icu_locid_transform_data",
1067
+ "icu_provider",
1068
+ "tinystr",
1069
+ "zerovec",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "icu_locid_transform_data"
1074
+ version = "1.5.0"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1077
+
1078
+ [[package]]
1079
+ name = "icu_normalizer"
1080
+ version = "1.5.0"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1083
+ dependencies = [
1084
+ "displaydoc",
1085
+ "icu_collections",
1086
+ "icu_normalizer_data",
1087
+ "icu_properties",
1088
+ "icu_provider",
1089
+ "smallvec",
1090
+ "utf16_iter",
1091
+ "utf8_iter",
1092
+ "write16",
1093
+ "zerovec",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "icu_normalizer_data"
1098
+ version = "1.5.0"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1101
+
1102
+ [[package]]
1103
+ name = "icu_properties"
1104
+ version = "1.5.1"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1107
+ dependencies = [
1108
+ "displaydoc",
1109
+ "icu_collections",
1110
+ "icu_locid_transform",
1111
+ "icu_properties_data",
1112
+ "icu_provider",
1113
+ "tinystr",
1114
+ "zerovec",
1115
+ ]
1116
+
1117
+ [[package]]
1118
+ name = "icu_properties_data"
1119
+ version = "1.5.0"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1122
+
1123
+ [[package]]
1124
+ name = "icu_provider"
1125
+ version = "1.5.0"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1128
+ dependencies = [
1129
+ "displaydoc",
1130
+ "icu_locid",
1131
+ "icu_provider_macros",
1132
+ "stable_deref_trait",
1133
+ "tinystr",
1134
+ "writeable",
1135
+ "yoke",
1136
+ "zerofrom",
1137
+ "zerovec",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "icu_provider_macros"
1142
+ version = "1.5.0"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1145
+ dependencies = [
1146
+ "proc-macro2",
1147
+ "quote",
1148
+ "syn 2.0.101",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "ident_case"
1153
+ version = "1.0.1"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1156
+
1157
+ [[package]]
1158
+ name = "idna"
1159
+ version = "1.0.3"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1162
+ dependencies = [
1163
+ "idna_adapter",
1164
+ "smallvec",
1165
+ "utf8_iter",
1166
+ ]
1167
+
1168
+ [[package]]
1169
+ name = "idna_adapter"
1170
+ version = "1.2.0"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1173
+ dependencies = [
1174
+ "icu_normalizer",
1175
+ "icu_properties",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "indexmap"
1180
+ version = "2.9.0"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1183
+ dependencies = [
1184
+ "equivalent",
1185
+ "hashbrown 0.15.2",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "indicatif"
1190
+ version = "0.17.9"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281"
1193
+ dependencies = [
1194
+ "console",
1195
+ "futures-core",
1196
+ "number_prefix",
1197
+ "portable-atomic",
1198
+ "rayon",
1199
+ "tokio",
1200
+ "unicode-segmentation",
1201
+ "unicode-width 0.2.0",
1202
+ "web-time",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "inotify"
1207
+ version = "0.9.2"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "d19f57db1baad9d09e43a3cd76dcf82ebdafd37d75c9498b87762dba77c93f15"
1210
+ dependencies = [
1211
+ "bitflags 1.3.2",
1212
+ "inotify-sys",
1213
+ "libc",
1214
+ ]
1215
+
1216
+ [[package]]
1217
+ name = "inotify-sys"
1218
+ version = "0.1.3"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0"
1221
+ dependencies = [
1222
+ "libc",
1223
+ ]
1224
+
1225
+ [[package]]
1226
+ name = "instant"
1227
+ version = "0.1.12"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1230
+ dependencies = [
1231
+ "cfg-if",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "is-macro"
1236
+ version = "0.3.6"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "2069faacbe981460232f880d26bf3c7634e322d49053aa48c27e3ae642f728f1"
1239
+ dependencies = [
1240
+ "Inflector",
1241
+ "proc-macro2",
1242
+ "quote",
1243
+ "syn 2.0.101",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "is_terminal_polyfill"
1248
+ version = "1.70.1"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1251
+
1252
+ [[package]]
1253
+ name = "itertools"
1254
+ version = "0.10.5"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1257
+ dependencies = [
1258
+ "either",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "itertools"
1263
+ version = "0.11.0"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
1266
+ dependencies = [
1267
+ "either",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "itertools"
1272
+ version = "0.14.0"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1275
+ dependencies = [
1276
+ "either",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "itoa"
1281
+ version = "0.4.8"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1284
+
1285
+ [[package]]
1286
+ name = "itoa"
1287
+ version = "1.0.14"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1290
+
1291
+ [[package]]
1292
+ name = "jobserver"
1293
+ version = "0.1.32"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1296
+ dependencies = [
1297
+ "libc",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "js-sys"
1302
+ version = "0.3.77"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1305
+ dependencies = [
1306
+ "once_cell",
1307
+ "wasm-bindgen",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "kqueue"
1312
+ version = "1.0.4"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "058a107a784f8be94c7d35c1300f4facced2e93d2fbe5b1452b44e905ddca4a9"
1315
+ dependencies = [
1316
+ "kqueue-sys",
1317
+ "libc",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "kqueue-sys"
1322
+ version = "1.0.3"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587"
1325
+ dependencies = [
1326
+ "bitflags 1.3.2",
1327
+ "libc",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "lazy_static"
1332
+ version = "1.5.0"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1335
+
1336
+ [[package]]
1337
+ name = "libc"
1338
+ version = "0.2.172"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1341
+
1342
+ [[package]]
1343
+ name = "libmimalloc-sys"
1344
+ version = "0.1.42"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "ec9d6fac27761dabcd4ee73571cdb06b7022dc99089acbe5435691edffaac0f4"
1347
+ dependencies = [
1348
+ "cc",
1349
+ "libc",
1350
+ ]
1351
+
1352
+ [[package]]
1353
+ name = "libredox"
1354
+ version = "0.1.3"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1357
+ dependencies = [
1358
+ "bitflags 2.9.0",
1359
+ "libc",
1360
+ "redox_syscall 0.5.6",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "link-cplusplus"
1365
+ version = "1.0.9"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9"
1368
+ dependencies = [
1369
+ "cc",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "linux-raw-sys"
1374
+ version = "0.9.4"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1377
+
1378
+ [[package]]
1379
+ name = "litemap"
1380
+ version = "0.7.3"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704"
1383
+
1384
+ [[package]]
1385
+ name = "lock_api"
1386
+ version = "0.4.12"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1389
+ dependencies = [
1390
+ "autocfg",
1391
+ "scopeguard",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "lock_free_hashtable"
1396
+ version = "0.1.1"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "fc989b5e3e04411250b5d1ce0d880e5de77b36703f3012d56acb43e6ff07f31b"
1399
+ dependencies = [
1400
+ "allocative",
1401
+ "atomic",
1402
+ "parking_lot 0.12.3",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "log"
1407
+ version = "0.4.27"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1410
+
1411
+ [[package]]
1412
+ name = "lsp-server"
1413
+ version = "0.7.2"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "37ea9ae5a5082ca3b6ae824fc7666cd206b99168a4d4c769ad8fe9cc740df6a6"
1416
+ dependencies = [
1417
+ "crossbeam-channel",
1418
+ "log",
1419
+ "serde",
1420
+ "serde_json",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "lsp-types"
1425
+ version = "0.94.1"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "c66bfd44a06ae10647fe3f8214762e9369fd4248df1350924b4ef9e770a85ea1"
1428
+ dependencies = [
1429
+ "bitflags 1.3.2",
1430
+ "serde",
1431
+ "serde_json",
1432
+ "serde_repr",
1433
+ "url",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "maplit"
1438
+ version = "1.0.2"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1441
+
1442
+ [[package]]
1443
+ name = "matchers"
1444
+ version = "0.1.0"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1447
+ dependencies = [
1448
+ "regex-automata 0.1.9",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "memchr"
1453
+ version = "2.7.4"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1456
+
1457
+ [[package]]
1458
+ name = "memmap2"
1459
+ version = "0.9.5"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
1462
+ dependencies = [
1463
+ "libc",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "memory-stats"
1468
+ version = "1.2.0"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "c73f5c649995a115e1a0220b35e4df0a1294500477f97a91d0660fb5abeb574a"
1471
+ dependencies = [
1472
+ "libc",
1473
+ "windows-sys 0.52.0",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "mimalloc"
1478
+ version = "0.1.46"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "995942f432bbb4822a7e9c3faa87a695185b0d09273ba85f097b54f4e458f2af"
1481
+ dependencies = [
1482
+ "libmimalloc-sys",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "miniz_oxide"
1487
+ version = "0.6.2"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
1490
+ dependencies = [
1491
+ "adler",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "mio"
1496
+ version = "0.8.11"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1499
+ dependencies = [
1500
+ "libc",
1501
+ "log",
1502
+ "wasi 0.11.0+wasi-snapshot-preview1",
1503
+ "windows-sys 0.48.0",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "mio"
1508
+ version = "1.0.2"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
1511
+ dependencies = [
1512
+ "hermit-abi",
1513
+ "libc",
1514
+ "wasi 0.11.0+wasi-snapshot-preview1",
1515
+ "windows-sys 0.52.0",
1516
+ ]
1517
+
1518
+ [[package]]
1519
+ name = "notify"
1520
+ version = "5.0.0"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "ed2c66da08abae1c024c01d635253e402341b4060a12e99b31c7594063bf490a"
1523
+ dependencies = [
1524
+ "bitflags 1.3.2",
1525
+ "crossbeam-channel",
1526
+ "filetime",
1527
+ "fsevent-sys",
1528
+ "inotify",
1529
+ "kqueue",
1530
+ "libc",
1531
+ "mio 0.8.11",
1532
+ "walkdir",
1533
+ "winapi",
1534
+ ]
1535
+
1536
+ [[package]]
1537
+ name = "nu-ansi-term"
1538
+ version = "0.46.0"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1541
+ dependencies = [
1542
+ "overload",
1543
+ "winapi",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "num-bigint"
1548
+ version = "0.4.6"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1551
+ dependencies = [
1552
+ "num-integer",
1553
+ "num-traits",
1554
+ "rand",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "num-conv"
1559
+ version = "0.1.0"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1562
+
1563
+ [[package]]
1564
+ name = "num-integer"
1565
+ version = "0.1.46"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1568
+ dependencies = [
1569
+ "num-traits",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "num-traits"
1574
+ version = "0.2.19"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1577
+ dependencies = [
1578
+ "autocfg",
1579
+ ]
1580
+
1581
+ [[package]]
1582
+ name = "num_threads"
1583
+ version = "0.1.3"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "97ba99ba6393e2c3734791401b66902d981cb03bf190af674ca69949b6d5fb15"
1586
+ dependencies = [
1587
+ "libc",
1588
+ ]
1589
+
1590
+ [[package]]
1591
+ name = "number_prefix"
1592
+ version = "0.4.0"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1595
+
1596
+ [[package]]
1597
+ name = "object"
1598
+ version = "0.30.4"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385"
1601
+ dependencies = [
1602
+ "memchr",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "once_cell"
1607
+ version = "1.21.3"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1610
+
1611
+ [[package]]
1612
+ name = "os_str_bytes"
1613
+ version = "6.6.0"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "5b7ebac344522a099ad6b4ec72b21e428bdcd5ee390b277bd858a464fbca5ac8"
1616
+ dependencies = [
1617
+ "memchr",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "overload"
1622
+ version = "0.1.1"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1625
+
1626
+ [[package]]
1627
+ name = "parking_lot"
1628
+ version = "0.11.2"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
1631
+ dependencies = [
1632
+ "instant",
1633
+ "lock_api",
1634
+ "parking_lot_core 0.8.5",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "parking_lot"
1639
+ version = "0.12.3"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1642
+ dependencies = [
1643
+ "lock_api",
1644
+ "parking_lot_core 0.9.9",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "parking_lot_core"
1649
+ version = "0.8.5"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
1652
+ dependencies = [
1653
+ "cfg-if",
1654
+ "instant",
1655
+ "libc",
1656
+ "redox_syscall 0.2.10",
1657
+ "smallvec",
1658
+ "winapi",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "parking_lot_core"
1663
+ version = "0.9.9"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
1666
+ dependencies = [
1667
+ "cfg-if",
1668
+ "libc",
1669
+ "redox_syscall 0.4.1",
1670
+ "smallvec",
1671
+ "windows-targets 0.48.5",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "parse-display"
1676
+ version = "0.8.2"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "c6509d08722b53e8dafe97f2027b22ccbe3a5db83cb352931e9716b0aa44bc5c"
1679
+ dependencies = [
1680
+ "once_cell",
1681
+ "parse-display-derive",
1682
+ "regex",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "parse-display-derive"
1687
+ version = "0.8.2"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "68517892c8daf78da08c0db777fcc17e07f2f63ef70041718f8a7630ad84f341"
1690
+ dependencies = [
1691
+ "once_cell",
1692
+ "proc-macro2",
1693
+ "quote",
1694
+ "regex",
1695
+ "regex-syntax 0.7.5",
1696
+ "structmeta",
1697
+ "syn 2.0.101",
1698
+ ]
1699
+
1700
+ [[package]]
1701
+ name = "paste"
1702
+ version = "1.0.15"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1705
+
1706
+ [[package]]
1707
+ name = "path-absolutize"
1708
+ version = "3.1.0"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "43eb3595c63a214e1b37b44f44b0a84900ef7ae0b4c5efce59e123d246d7a0de"
1711
+ dependencies = [
1712
+ "path-dedot",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "path-dedot"
1717
+ version = "3.1.0"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "9d55e486337acb9973cdea3ec5638c1b3bcb22e573b2b7b41969e0c744d5a15e"
1720
+ dependencies = [
1721
+ "once_cell",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "percent-encoding"
1726
+ version = "2.3.1"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1729
+
1730
+ [[package]]
1731
+ name = "phf"
1732
+ version = "0.11.3"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1735
+ dependencies = [
1736
+ "phf_shared",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "phf_codegen"
1741
+ version = "0.11.2"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
1744
+ dependencies = [
1745
+ "phf_generator",
1746
+ "phf_shared",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "phf_generator"
1751
+ version = "0.11.1"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
1754
+ dependencies = [
1755
+ "phf_shared",
1756
+ "rand",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "phf_shared"
1761
+ version = "0.11.3"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1764
+ dependencies = [
1765
+ "siphasher",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "pin-project-lite"
1770
+ version = "0.2.15"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
1773
+
1774
+ [[package]]
1775
+ name = "pin-utils"
1776
+ version = "0.1.0"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1779
+
1780
+ [[package]]
1781
+ name = "pkg-config"
1782
+ version = "0.3.30"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
1785
+
1786
+ [[package]]
1787
+ name = "portable-atomic"
1788
+ version = "1.11.0"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
1791
+
1792
+ [[package]]
1793
+ name = "powerfmt"
1794
+ version = "0.2.0"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1797
+
1798
+ [[package]]
1799
+ name = "ppv-lite86"
1800
+ version = "0.2.21"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1803
+ dependencies = [
1804
+ "zerocopy 0.8.25",
1805
+ ]
1806
+
1807
+ [[package]]
1808
+ name = "pretty_assertions"
1809
+ version = "1.4.0"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
1812
+ dependencies = [
1813
+ "diff",
1814
+ "yansi 0.5.1",
1815
+ ]
1816
+
1817
+ [[package]]
1818
+ name = "proc-macro2"
1819
+ version = "1.0.95"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1822
+ dependencies = [
1823
+ "unicode-ident",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "prost"
1828
+ version = "0.11.9"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
1831
+ dependencies = [
1832
+ "bytes",
1833
+ "prost-derive",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "prost-derive"
1838
+ version = "0.11.9"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
1841
+ dependencies = [
1842
+ "anyhow",
1843
+ "itertools 0.10.5",
1844
+ "proc-macro2",
1845
+ "quote",
1846
+ "syn 1.0.109",
1847
+ ]
1848
+
1849
+ [[package]]
1850
+ name = "prost-types"
1851
+ version = "0.11.9"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
1854
+ dependencies = [
1855
+ "prost",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "pulldown-cmark"
1860
+ version = "0.9.1"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "34f197a544b0c9ab3ae46c359a7ec9cbbb5c7bf97054266fecb7ead794a181d6"
1863
+ dependencies = [
1864
+ "bitflags 1.3.2",
1865
+ "getopts",
1866
+ "memchr",
1867
+ "unicase",
1868
+ ]
1869
+
1870
+ [[package]]
1871
+ name = "pyrefly"
1872
+ version = "0.22.0"
1873
+ dependencies = [
1874
+ "anstream",
1875
+ "anyhow",
1876
+ "base64",
1877
+ "blake3",
1878
+ "clap",
1879
+ "configparser",
1880
+ "convert_case",
1881
+ "crossbeam-channel",
1882
+ "dupe",
1883
+ "enum-iterator",
1884
+ "fuzzy-matcher",
1885
+ "indicatif",
1886
+ "itertools 0.14.0",
1887
+ "lsp-server",
1888
+ "lsp-types",
1889
+ "mimalloc",
1890
+ "num-bigint",
1891
+ "num-traits",
1892
+ "parse-display",
1893
+ "paste",
1894
+ "path-absolutize",
1895
+ "pretty_assertions",
1896
+ "pulldown-cmark",
1897
+ "pyrefly_derive",
1898
+ "pyrefly_python",
1899
+ "pyrefly_util",
1900
+ "regex",
1901
+ "regex-syntax 0.7.5",
1902
+ "ruff_annotate_snippets",
1903
+ "ruff_python_ast",
1904
+ "ruff_python_parser",
1905
+ "ruff_source_file",
1906
+ "ruff_text_size",
1907
+ "serde",
1908
+ "serde_json",
1909
+ "serde_jsonrc",
1910
+ "serde_with",
1911
+ "starlark_map",
1912
+ "static_assertions",
1913
+ "tar",
1914
+ "tempfile",
1915
+ "thiserror 2.0.12",
1916
+ "tikv-jemallocator",
1917
+ "tokio",
1918
+ "toml",
1919
+ "toml_edit",
1920
+ "tracing",
1921
+ "vec1",
1922
+ "walkdir",
1923
+ "which",
1924
+ "yansi 1.0.1",
1925
+ "zstd",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "pyrefly_derive"
1930
+ version = "0.22.0"
1931
+ dependencies = [
1932
+ "proc-macro2",
1933
+ "quote",
1934
+ "syn 2.0.101",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "pyrefly_python"
1939
+ version = "0.22.0"
1940
+ dependencies = [
1941
+ "anyhow",
1942
+ "dupe",
1943
+ "equivalent",
1944
+ "itertools 0.14.0",
1945
+ "lsp-types",
1946
+ "parse-display",
1947
+ "pyrefly_util",
1948
+ "regex",
1949
+ "ruff_python_ast",
1950
+ "ruff_python_parser",
1951
+ "ruff_text_size",
1952
+ "serde",
1953
+ "static_interner",
1954
+ "thiserror 2.0.12",
1955
+ "toml",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "pyrefly_util"
1960
+ version = "0.22.0"
1961
+ dependencies = [
1962
+ "anstream",
1963
+ "anyhow",
1964
+ "append-only-vec",
1965
+ "argfile",
1966
+ "bstr",
1967
+ "const-str",
1968
+ "dupe",
1969
+ "equivalent",
1970
+ "glob",
1971
+ "human_bytes",
1972
+ "itertools 0.14.0",
1973
+ "lock_free_hashtable",
1974
+ "lsp-types",
1975
+ "memory-stats",
1976
+ "notify",
1977
+ "parse-display",
1978
+ "path-absolutize",
1979
+ "pyrefly_derive",
1980
+ "rayon",
1981
+ "ruff_python_ast",
1982
+ "ruff_source_file",
1983
+ "ruff_text_size",
1984
+ "serde",
1985
+ "serde_json",
1986
+ "starlark_map",
1987
+ "static_assertions",
1988
+ "tempfile",
1989
+ "tracing",
1990
+ "tracing-subscriber",
1991
+ "vec1",
1992
+ "watchman_client",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "pyrefly_wasm"
1997
+ version = "0.0.0"
1998
+ dependencies = [
1999
+ "dupe",
2000
+ "getrandom 0.2.16",
2001
+ "pyrefly",
2002
+ "serde",
2003
+ "serde-wasm-bindgen",
2004
+ "starlark_map",
2005
+ "tar",
2006
+ "wasm-bindgen",
2007
+ "zstd",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "quickcheck"
2012
+ version = "1.0.3"
2013
+ source = "git+https://github.com/jakoschiko/quickcheck?rev=6ecdf5bb4b0132ce66670b4d46453aa022ea892c#6ecdf5bb4b0132ce66670b4d46453aa022ea892c"
2014
+ dependencies = [
2015
+ "env_logger",
2016
+ "log",
2017
+ "rand",
2018
+ ]
2019
+
2020
+ [[package]]
2021
+ name = "quote"
2022
+ version = "1.0.40"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2025
+ dependencies = [
2026
+ "proc-macro2",
2027
+ ]
2028
+
2029
+ [[package]]
2030
+ name = "r-efi"
2031
+ version = "5.2.0"
2032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2033
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2034
+
2035
+ [[package]]
2036
+ name = "rand"
2037
+ version = "0.8.5"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2040
+ dependencies = [
2041
+ "libc",
2042
+ "rand_chacha",
2043
+ "rand_core",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "rand_chacha"
2048
+ version = "0.3.1"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2051
+ dependencies = [
2052
+ "ppv-lite86",
2053
+ "rand_core",
2054
+ ]
2055
+
2056
+ [[package]]
2057
+ name = "rand_core"
2058
+ version = "0.6.4"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2061
+ dependencies = [
2062
+ "getrandom 0.2.16",
2063
+ ]
2064
+
2065
+ [[package]]
2066
+ name = "rayon"
2067
+ version = "1.10.0"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2070
+ dependencies = [
2071
+ "either",
2072
+ "rayon-core",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "rayon-core"
2077
+ version = "1.12.1"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2080
+ dependencies = [
2081
+ "crossbeam-deque",
2082
+ "crossbeam-utils",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "redox_syscall"
2087
+ version = "0.2.10"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
2090
+ dependencies = [
2091
+ "bitflags 1.3.2",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "redox_syscall"
2096
+ version = "0.4.1"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
2099
+ dependencies = [
2100
+ "bitflags 1.3.2",
2101
+ ]
2102
+
2103
+ [[package]]
2104
+ name = "redox_syscall"
2105
+ version = "0.5.6"
2106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2107
+ checksum = "355ae415ccd3a04315d3f8246e86d67689ea74d88d915576e1589a351062a13b"
2108
+ dependencies = [
2109
+ "bitflags 2.9.0",
2110
+ ]
2111
+
2112
+ [[package]]
2113
+ name = "regex"
2114
+ version = "1.11.1"
2115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2116
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2117
+ dependencies = [
2118
+ "aho-corasick",
2119
+ "memchr",
2120
+ "regex-automata 0.4.9",
2121
+ "regex-syntax 0.8.5",
2122
+ ]
2123
+
2124
+ [[package]]
2125
+ name = "regex-automata"
2126
+ version = "0.1.9"
2127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2128
+ checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4"
2129
+ dependencies = [
2130
+ "byteorder",
2131
+ "regex-syntax 0.6.27",
2132
+ ]
2133
+
2134
+ [[package]]
2135
+ name = "regex-automata"
2136
+ version = "0.4.9"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2139
+ dependencies = [
2140
+ "aho-corasick",
2141
+ "memchr",
2142
+ "regex-syntax 0.8.5",
2143
+ ]
2144
+
2145
+ [[package]]
2146
+ name = "regex-syntax"
2147
+ version = "0.6.27"
2148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2149
+ checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2150
+
2151
+ [[package]]
2152
+ name = "regex-syntax"
2153
+ version = "0.7.5"
2154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2155
+ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
2156
+
2157
+ [[package]]
2158
+ name = "regex-syntax"
2159
+ version = "0.8.5"
2160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2161
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2162
+
2163
+ [[package]]
2164
+ name = "relative-path"
2165
+ version = "1.9.3"
2166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2167
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2168
+
2169
+ [[package]]
2170
+ name = "ruff_annotate_snippets"
2171
+ version = "0.1.0"
2172
+ source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c372b3effba90032#6e785867c3a97691972e8a49c372b3effba90032"
2173
+ dependencies = [
2174
+ "anstyle",
2175
+ "memchr",
2176
+ "unicode-width 0.2.0",
2177
+ ]
2178
+
2179
+ [[package]]
2180
+ name = "ruff_python_ast"
2181
+ version = "0.0.0"
2182
+ source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c372b3effba90032#6e785867c3a97691972e8a49c372b3effba90032"
2183
+ dependencies = [
2184
+ "aho-corasick",
2185
+ "bitflags 2.9.0",
2186
+ "compact_str 0.9.0",
2187
+ "is-macro",
2188
+ "itertools 0.14.0",
2189
+ "memchr",
2190
+ "ruff_python_trivia",
2191
+ "ruff_source_file",
2192
+ "ruff_text_size",
2193
+ "rustc-hash",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "ruff_python_parser"
2198
+ version = "0.0.0"
2199
+ source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c372b3effba90032#6e785867c3a97691972e8a49c372b3effba90032"
2200
+ dependencies = [
2201
+ "bitflags 2.9.0",
2202
+ "bstr",
2203
+ "compact_str 0.9.0",
2204
+ "memchr",
2205
+ "ruff_python_ast",
2206
+ "ruff_python_trivia",
2207
+ "ruff_text_size",
2208
+ "rustc-hash",
2209
+ "static_assertions",
2210
+ "unicode-ident",
2211
+ "unicode-normalization",
2212
+ "unicode_names2",
2213
+ ]
2214
+
2215
+ [[package]]
2216
+ name = "ruff_python_trivia"
2217
+ version = "0.0.0"
2218
+ source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c372b3effba90032#6e785867c3a97691972e8a49c372b3effba90032"
2219
+ dependencies = [
2220
+ "itertools 0.14.0",
2221
+ "ruff_source_file",
2222
+ "ruff_text_size",
2223
+ "unicode-ident",
2224
+ ]
2225
+
2226
+ [[package]]
2227
+ name = "ruff_source_file"
2228
+ version = "0.0.0"
2229
+ source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c372b3effba90032#6e785867c3a97691972e8a49c372b3effba90032"
2230
+ dependencies = [
2231
+ "memchr",
2232
+ "ruff_text_size",
2233
+ ]
2234
+
2235
+ [[package]]
2236
+ name = "ruff_text_size"
2237
+ version = "0.0.0"
2238
+ source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c372b3effba90032#6e785867c3a97691972e8a49c372b3effba90032"
2239
+
2240
+ [[package]]
2241
+ name = "rustc-demangle"
2242
+ version = "0.1.21"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2245
+
2246
+ [[package]]
2247
+ name = "rustc-hash"
2248
+ version = "2.1.1"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2251
+
2252
+ [[package]]
2253
+ name = "rustix"
2254
+ version = "1.0.7"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
2257
+ dependencies = [
2258
+ "bitflags 2.9.0",
2259
+ "errno",
2260
+ "libc",
2261
+ "linux-raw-sys",
2262
+ "windows-sys 0.59.0",
2263
+ ]
2264
+
2265
+ [[package]]
2266
+ name = "rustversion"
2267
+ version = "1.0.14"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2270
+
2271
+ [[package]]
2272
+ name = "ryu"
2273
+ version = "0.2.8"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "b96a9549dc8d48f2c283938303c4b5a77aa29bfbc5b54b084fb1630408899a8f"
2276
+
2277
+ [[package]]
2278
+ name = "ryu"
2279
+ version = "1.0.17"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
2282
+
2283
+ [[package]]
2284
+ name = "same-file"
2285
+ version = "1.0.6"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2288
+ dependencies = [
2289
+ "winapi-util",
2290
+ ]
2291
+
2292
+ [[package]]
2293
+ name = "scopeguard"
2294
+ version = "1.2.0"
2295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2296
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2297
+
2298
+ [[package]]
2299
+ name = "scratch"
2300
+ version = "1.0.6"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "764cad9e7e1ca5fe15b552859ff5d96a314e6ed2934f2260168cd5dfa5891409"
2303
+
2304
+ [[package]]
2305
+ name = "serde"
2306
+ version = "1.0.219"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2309
+ dependencies = [
2310
+ "serde_derive",
2311
+ ]
2312
+
2313
+ [[package]]
2314
+ name = "serde-wasm-bindgen"
2315
+ version = "0.5.0"
2316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2317
+ checksum = "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e"
2318
+ dependencies = [
2319
+ "js-sys",
2320
+ "serde",
2321
+ "wasm-bindgen",
2322
+ ]
2323
+
2324
+ [[package]]
2325
+ name = "serde_bser"
2326
+ version = "0.4.0"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "a56b4bcc15e42e5b5ae16c6f75582bef80d36c6ffe2c03b1b5317754b38f8717"
2329
+ dependencies = [
2330
+ "anyhow",
2331
+ "byteorder",
2332
+ "bytes",
2333
+ "serde",
2334
+ "serde_bytes",
2335
+ "thiserror 1.0.69",
2336
+ ]
2337
+
2338
+ [[package]]
2339
+ name = "serde_bytes"
2340
+ version = "0.11.17"
2341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+ checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96"
2343
+ dependencies = [
2344
+ "serde",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "serde_derive"
2349
+ version = "1.0.219"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2352
+ dependencies = [
2353
+ "proc-macro2",
2354
+ "quote",
2355
+ "syn 2.0.101",
2356
+ ]
2357
+
2358
+ [[package]]
2359
+ name = "serde_json"
2360
+ version = "1.0.140"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
2363
+ dependencies = [
2364
+ "itoa 1.0.14",
2365
+ "memchr",
2366
+ "ryu 1.0.17",
2367
+ "serde",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "serde_jsonrc"
2372
+ version = "0.1.0"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "b591e90bcce7185aa4f8c775c504456586ae0f7df49a4087a1ee4179d402b8a8"
2375
+ dependencies = [
2376
+ "itoa 0.4.8",
2377
+ "ryu 0.2.8",
2378
+ "serde",
2379
+ ]
2380
+
2381
+ [[package]]
2382
+ name = "serde_repr"
2383
+ version = "0.1.19"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
2386
+ dependencies = [
2387
+ "proc-macro2",
2388
+ "quote",
2389
+ "syn 2.0.101",
2390
+ ]
2391
+
2392
+ [[package]]
2393
+ name = "serde_spanned"
2394
+ version = "0.6.8"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
2397
+ dependencies = [
2398
+ "serde",
2399
+ ]
2400
+
2401
+ [[package]]
2402
+ name = "serde_with"
2403
+ version = "1.14.0"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff"
2406
+ dependencies = [
2407
+ "hex",
2408
+ "serde",
2409
+ "serde_json",
2410
+ "serde_with_macros",
2411
+ ]
2412
+
2413
+ [[package]]
2414
+ name = "serde_with_macros"
2415
+ version = "1.5.2"
2416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+ checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082"
2418
+ dependencies = [
2419
+ "darling",
2420
+ "proc-macro2",
2421
+ "quote",
2422
+ "syn 1.0.109",
2423
+ ]
2424
+
2425
+ [[package]]
2426
+ name = "sharded-slab"
2427
+ version = "0.1.4"
2428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2429
+ checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
2430
+ dependencies = [
2431
+ "lazy_static",
2432
+ ]
2433
+
2434
+ [[package]]
2435
+ name = "shlex"
2436
+ version = "1.3.0"
2437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2438
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2439
+
2440
+ [[package]]
2441
+ name = "signal-hook-registry"
2442
+ version = "1.4.5"
2443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2444
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
2445
+ dependencies = [
2446
+ "libc",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "siphasher"
2451
+ version = "1.0.1"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2454
+
2455
+ [[package]]
2456
+ name = "slab"
2457
+ version = "0.4.9"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2460
+ dependencies = [
2461
+ "autocfg",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "smallvec"
2466
+ version = "1.15.0"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2469
+
2470
+ [[package]]
2471
+ name = "socket2"
2472
+ version = "0.5.8"
2473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2474
+ checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
2475
+ dependencies = [
2476
+ "libc",
2477
+ "windows-sys 0.52.0",
2478
+ ]
2479
+
2480
+ [[package]]
2481
+ name = "sorted_vector_map"
2482
+ version = "0.2.0"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "d9167648c2ababdbe45294fe7f7b0ab56555fd754990a7637a5a420774461368"
2485
+ dependencies = [
2486
+ "itertools 0.11.0",
2487
+ "quickcheck",
2488
+ ]
2489
+
2490
+ [[package]]
2491
+ name = "stable_deref_trait"
2492
+ version = "1.2.0"
2493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2495
+
2496
+ [[package]]
2497
+ name = "starlark_map"
2498
+ version = "0.13.0"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "92659970f120df0cc1c0bb220b33587b7a9a90e80d4eecc5c5af5debb950173d"
2501
+ dependencies = [
2502
+ "allocative",
2503
+ "dupe",
2504
+ "equivalent",
2505
+ "fxhash",
2506
+ "hashbrown 0.14.5",
2507
+ "serde",
2508
+ ]
2509
+
2510
+ [[package]]
2511
+ name = "static_assertions"
2512
+ version = "1.1.0"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2515
+
2516
+ [[package]]
2517
+ name = "static_interner"
2518
+ version = "0.1.1"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "a18cca271f002300361200bfd4d681fae4a68744817cfee6a084ce13fc23cfa7"
2521
+ dependencies = [
2522
+ "allocative",
2523
+ "dupe",
2524
+ "equivalent",
2525
+ "lock_free_hashtable",
2526
+ ]
2527
+
2528
+ [[package]]
2529
+ name = "strsim"
2530
+ version = "0.10.0"
2531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2532
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2533
+
2534
+ [[package]]
2535
+ name = "strsim"
2536
+ version = "0.11.1"
2537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2538
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2539
+
2540
+ [[package]]
2541
+ name = "structmeta"
2542
+ version = "0.2.0"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "78ad9e09554f0456d67a69c1584c9798ba733a5b50349a6c0d0948710523922d"
2545
+ dependencies = [
2546
+ "proc-macro2",
2547
+ "quote",
2548
+ "structmeta-derive",
2549
+ "syn 2.0.101",
2550
+ ]
2551
+
2552
+ [[package]]
2553
+ name = "structmeta-derive"
2554
+ version = "0.2.0"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
2557
+ dependencies = [
2558
+ "proc-macro2",
2559
+ "quote",
2560
+ "syn 2.0.101",
2561
+ ]
2562
+
2563
+ [[package]]
2564
+ name = "subtle"
2565
+ version = "2.6.1"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2568
+
2569
+ [[package]]
2570
+ name = "syn"
2571
+ version = "1.0.109"
2572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2573
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2574
+ dependencies = [
2575
+ "proc-macro2",
2576
+ "quote",
2577
+ "unicode-ident",
2578
+ ]
2579
+
2580
+ [[package]]
2581
+ name = "syn"
2582
+ version = "2.0.101"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
2585
+ dependencies = [
2586
+ "proc-macro2",
2587
+ "quote",
2588
+ "unicode-ident",
2589
+ ]
2590
+
2591
+ [[package]]
2592
+ name = "synstructure"
2593
+ version = "0.13.1"
2594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2595
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
2596
+ dependencies = [
2597
+ "proc-macro2",
2598
+ "quote",
2599
+ "syn 2.0.101",
2600
+ ]
2601
+
2602
+ [[package]]
2603
+ name = "tar"
2604
+ version = "0.4.44"
2605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2606
+ checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
2607
+ dependencies = [
2608
+ "filetime",
2609
+ "libc",
2610
+ "xattr",
2611
+ ]
2612
+
2613
+ [[package]]
2614
+ name = "tempfile"
2615
+ version = "3.19.1"
2616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2617
+ checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
2618
+ dependencies = [
2619
+ "fastrand",
2620
+ "getrandom 0.3.3",
2621
+ "once_cell",
2622
+ "rustix",
2623
+ "windows-sys 0.59.0",
2624
+ ]
2625
+
2626
+ [[package]]
2627
+ name = "termcolor"
2628
+ version = "1.4.1"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2631
+ dependencies = [
2632
+ "winapi-util",
2633
+ ]
2634
+
2635
+ [[package]]
2636
+ name = "terminal_size"
2637
+ version = "0.4.2"
2638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2639
+ checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed"
2640
+ dependencies = [
2641
+ "rustix",
2642
+ "windows-sys 0.59.0",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "thiserror"
2647
+ version = "1.0.69"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2650
+ dependencies = [
2651
+ "thiserror-impl 1.0.69",
2652
+ ]
2653
+
2654
+ [[package]]
2655
+ name = "thiserror"
2656
+ version = "2.0.12"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
2659
+ dependencies = [
2660
+ "thiserror-impl 2.0.12",
2661
+ ]
2662
+
2663
+ [[package]]
2664
+ name = "thiserror-impl"
2665
+ version = "1.0.69"
2666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2667
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2668
+ dependencies = [
2669
+ "proc-macro2",
2670
+ "quote",
2671
+ "syn 2.0.101",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "thiserror-impl"
2676
+ version = "2.0.12"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2679
+ dependencies = [
2680
+ "proc-macro2",
2681
+ "quote",
2682
+ "syn 2.0.101",
2683
+ ]
2684
+
2685
+ [[package]]
2686
+ name = "thread_local"
2687
+ version = "1.1.4"
2688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2689
+ checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2690
+ dependencies = [
2691
+ "once_cell",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "tikv-jemalloc-sys"
2696
+ version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d"
2699
+ dependencies = [
2700
+ "cc",
2701
+ "libc",
2702
+ ]
2703
+
2704
+ [[package]]
2705
+ name = "tikv-jemallocator"
2706
+ version = "0.6.0"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865"
2709
+ dependencies = [
2710
+ "libc",
2711
+ "tikv-jemalloc-sys",
2712
+ ]
2713
+
2714
+ [[package]]
2715
+ name = "time"
2716
+ version = "0.3.41"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2719
+ dependencies = [
2720
+ "deranged",
2721
+ "itoa 1.0.14",
2722
+ "libc",
2723
+ "num-conv",
2724
+ "num_threads",
2725
+ "powerfmt",
2726
+ "serde",
2727
+ "time-core",
2728
+ "time-macros",
2729
+ ]
2730
+
2731
+ [[package]]
2732
+ name = "time-core"
2733
+ version = "0.1.4"
2734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2735
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
2736
+
2737
+ [[package]]
2738
+ name = "time-macros"
2739
+ version = "0.2.22"
2740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2741
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
2742
+ dependencies = [
2743
+ "num-conv",
2744
+ "time-core",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "tinystr"
2749
+ version = "0.7.6"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
2752
+ dependencies = [
2753
+ "displaydoc",
2754
+ "zerovec",
2755
+ ]
2756
+
2757
+ [[package]]
2758
+ name = "tinyvec"
2759
+ version = "1.8.0"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
2762
+ dependencies = [
2763
+ "tinyvec_macros",
2764
+ ]
2765
+
2766
+ [[package]]
2767
+ name = "tinyvec_macros"
2768
+ version = "0.1.0"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2771
+
2772
+ [[package]]
2773
+ name = "tokio"
2774
+ version = "1.45.0"
2775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2776
+ checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
2777
+ dependencies = [
2778
+ "backtrace",
2779
+ "bytes",
2780
+ "libc",
2781
+ "mio 1.0.2",
2782
+ "parking_lot 0.12.3",
2783
+ "pin-project-lite",
2784
+ "signal-hook-registry",
2785
+ "socket2",
2786
+ "tokio-macros",
2787
+ "windows-sys 0.52.0",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "tokio-macros"
2792
+ version = "2.5.0"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2795
+ dependencies = [
2796
+ "proc-macro2",
2797
+ "quote",
2798
+ "syn 2.0.101",
2799
+ ]
2800
+
2801
+ [[package]]
2802
+ name = "tokio-util"
2803
+ version = "0.6.10"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
2806
+ dependencies = [
2807
+ "bytes",
2808
+ "futures-core",
2809
+ "futures-io",
2810
+ "futures-sink",
2811
+ "log",
2812
+ "pin-project-lite",
2813
+ "slab",
2814
+ "tokio",
2815
+ ]
2816
+
2817
+ [[package]]
2818
+ name = "toml"
2819
+ version = "0.8.22"
2820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2821
+ checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
2822
+ dependencies = [
2823
+ "serde",
2824
+ "serde_spanned",
2825
+ "toml_datetime",
2826
+ "toml_edit",
2827
+ ]
2828
+
2829
+ [[package]]
2830
+ name = "toml_datetime"
2831
+ version = "0.6.9"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
2834
+ dependencies = [
2835
+ "serde",
2836
+ ]
2837
+
2838
+ [[package]]
2839
+ name = "toml_edit"
2840
+ version = "0.22.26"
2841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2842
+ checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
2843
+ dependencies = [
2844
+ "indexmap",
2845
+ "serde",
2846
+ "serde_spanned",
2847
+ "toml_datetime",
2848
+ "toml_write",
2849
+ "winnow",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "toml_write"
2854
+ version = "0.1.1"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
2857
+
2858
+ [[package]]
2859
+ name = "tracing"
2860
+ version = "0.1.41"
2861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2862
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2863
+ dependencies = [
2864
+ "pin-project-lite",
2865
+ "tracing-attributes",
2866
+ "tracing-core",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "tracing-attributes"
2871
+ version = "0.1.28"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
2874
+ dependencies = [
2875
+ "proc-macro2",
2876
+ "quote",
2877
+ "syn 2.0.101",
2878
+ ]
2879
+
2880
+ [[package]]
2881
+ name = "tracing-core"
2882
+ version = "0.1.33"
2883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2884
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
2885
+ dependencies = [
2886
+ "once_cell",
2887
+ "valuable",
2888
+ ]
2889
+
2890
+ [[package]]
2891
+ name = "tracing-log"
2892
+ version = "0.2.0"
2893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2894
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2895
+ dependencies = [
2896
+ "log",
2897
+ "once_cell",
2898
+ "tracing-core",
2899
+ ]
2900
+
2901
+ [[package]]
2902
+ name = "tracing-serde"
2903
+ version = "0.2.0"
2904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2905
+ checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
2906
+ dependencies = [
2907
+ "serde",
2908
+ "tracing-core",
2909
+ ]
2910
+
2911
+ [[package]]
2912
+ name = "tracing-subscriber"
2913
+ version = "0.3.19"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
2916
+ dependencies = [
2917
+ "chrono",
2918
+ "matchers",
2919
+ "nu-ansi-term",
2920
+ "once_cell",
2921
+ "parking_lot 0.12.3",
2922
+ "regex",
2923
+ "serde",
2924
+ "serde_json",
2925
+ "sharded-slab",
2926
+ "smallvec",
2927
+ "thread_local",
2928
+ "time",
2929
+ "tracing",
2930
+ "tracing-core",
2931
+ "tracing-log",
2932
+ "tracing-serde",
2933
+ ]
2934
+
2935
+ [[package]]
2936
+ name = "triomphe"
2937
+ version = "0.1.11"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3"
2940
+ dependencies = [
2941
+ "serde",
2942
+ "stable_deref_trait",
2943
+ ]
2944
+
2945
+ [[package]]
2946
+ name = "typenum"
2947
+ version = "1.17.0"
2948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2949
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2950
+
2951
+ [[package]]
2952
+ name = "unicase"
2953
+ version = "2.8.1"
2954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2955
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
2956
+
2957
+ [[package]]
2958
+ name = "unicode-ident"
2959
+ version = "1.0.16"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
2962
+
2963
+ [[package]]
2964
+ name = "unicode-normalization"
2965
+ version = "0.1.24"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
2968
+ dependencies = [
2969
+ "tinyvec",
2970
+ ]
2971
+
2972
+ [[package]]
2973
+ name = "unicode-segmentation"
2974
+ version = "1.12.0"
2975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2977
+
2978
+ [[package]]
2979
+ name = "unicode-width"
2980
+ version = "0.1.12"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6"
2983
+
2984
+ [[package]]
2985
+ name = "unicode-width"
2986
+ version = "0.2.0"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
2989
+
2990
+ [[package]]
2991
+ name = "unicode_names2"
2992
+ version = "1.2.2"
2993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2994
+ checksum = "addeebf294df7922a1164f729fb27ebbbcea99cc32b3bf08afab62757f707677"
2995
+ dependencies = [
2996
+ "phf",
2997
+ "unicode_names2_generator",
2998
+ ]
2999
+
3000
+ [[package]]
3001
+ name = "unicode_names2_generator"
3002
+ version = "1.2.2"
3003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3004
+ checksum = "f444b8bba042fe3c1251ffaca35c603f2dc2ccc08d595c65a8c4f76f3e8426c0"
3005
+ dependencies = [
3006
+ "getopts",
3007
+ "log",
3008
+ "phf_codegen",
3009
+ "rand",
3010
+ ]
3011
+
3012
+ [[package]]
3013
+ name = "url"
3014
+ version = "2.5.4"
3015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3016
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3017
+ dependencies = [
3018
+ "form_urlencoded",
3019
+ "idna",
3020
+ "percent-encoding",
3021
+ "serde",
3022
+ ]
3023
+
3024
+ [[package]]
3025
+ name = "utf16_iter"
3026
+ version = "1.0.5"
3027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3028
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3029
+
3030
+ [[package]]
3031
+ name = "utf8_iter"
3032
+ version = "1.0.4"
3033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3034
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3035
+
3036
+ [[package]]
3037
+ name = "utf8parse"
3038
+ version = "0.2.1"
3039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3040
+ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
3041
+
3042
+ [[package]]
3043
+ name = "valuable"
3044
+ version = "0.1.0"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
3047
+
3048
+ [[package]]
3049
+ name = "vec1"
3050
+ version = "1.10.1"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "2bda7c41ca331fe9a1c278a9e7ee055f4be7f5eb1c2b72f079b4ff8b5fce9d5c"
3053
+ dependencies = [
3054
+ "serde",
3055
+ ]
3056
+
3057
+ [[package]]
3058
+ name = "version_check"
3059
+ version = "0.9.5"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3062
+
3063
+ [[package]]
3064
+ name = "walkdir"
3065
+ version = "2.5.0"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3068
+ dependencies = [
3069
+ "same-file",
3070
+ "winapi-util",
3071
+ ]
3072
+
3073
+ [[package]]
3074
+ name = "wasi"
3075
+ version = "0.11.0+wasi-snapshot-preview1"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3078
+
3079
+ [[package]]
3080
+ name = "wasi"
3081
+ version = "0.14.2+wasi-0.2.4"
3082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3083
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3084
+ dependencies = [
3085
+ "wit-bindgen-rt",
3086
+ ]
3087
+
3088
+ [[package]]
3089
+ name = "wasm-bindgen"
3090
+ version = "0.2.100"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3093
+ dependencies = [
3094
+ "cfg-if",
3095
+ "once_cell",
3096
+ "rustversion",
3097
+ "wasm-bindgen-macro",
3098
+ ]
3099
+
3100
+ [[package]]
3101
+ name = "wasm-bindgen-backend"
3102
+ version = "0.2.100"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3105
+ dependencies = [
3106
+ "bumpalo",
3107
+ "log",
3108
+ "proc-macro2",
3109
+ "quote",
3110
+ "syn 2.0.101",
3111
+ "wasm-bindgen-shared",
3112
+ ]
3113
+
3114
+ [[package]]
3115
+ name = "wasm-bindgen-macro"
3116
+ version = "0.2.100"
3117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3118
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3119
+ dependencies = [
3120
+ "quote",
3121
+ "wasm-bindgen-macro-support",
3122
+ ]
3123
+
3124
+ [[package]]
3125
+ name = "wasm-bindgen-macro-support"
3126
+ version = "0.2.100"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3129
+ dependencies = [
3130
+ "proc-macro2",
3131
+ "quote",
3132
+ "syn 2.0.101",
3133
+ "wasm-bindgen-backend",
3134
+ "wasm-bindgen-shared",
3135
+ ]
3136
+
3137
+ [[package]]
3138
+ name = "wasm-bindgen-shared"
3139
+ version = "0.2.100"
3140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3141
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3142
+ dependencies = [
3143
+ "unicode-ident",
3144
+ ]
3145
+
3146
+ [[package]]
3147
+ name = "watchman_client"
3148
+ version = "0.9.0"
3149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3150
+ checksum = "88bc4c9bb443a7aae10d4fa7807bffc397805315e2305288c90c80e2f66cfb52"
3151
+ dependencies = [
3152
+ "anyhow",
3153
+ "bytes",
3154
+ "futures 0.3.31",
3155
+ "maplit",
3156
+ "serde",
3157
+ "serde_bser",
3158
+ "thiserror 1.0.69",
3159
+ "tokio",
3160
+ "tokio-util",
3161
+ "winapi",
3162
+ ]
3163
+
3164
+ [[package]]
3165
+ name = "web-time"
3166
+ version = "1.1.0"
3167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3168
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3169
+ dependencies = [
3170
+ "js-sys",
3171
+ "wasm-bindgen",
3172
+ ]
3173
+
3174
+ [[package]]
3175
+ name = "which"
3176
+ version = "4.2.4"
3177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3178
+ checksum = "2a5a7e487e921cf220206864a94a89b6c6905bfc19f1057fa26a4cb360e5c1d2"
3179
+ dependencies = [
3180
+ "either",
3181
+ "lazy_static",
3182
+ "libc",
3183
+ ]
3184
+
3185
+ [[package]]
3186
+ name = "winapi"
3187
+ version = "0.3.9"
3188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3189
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3190
+ dependencies = [
3191
+ "winapi-i686-pc-windows-gnu",
3192
+ "winapi-x86_64-pc-windows-gnu",
3193
+ ]
3194
+
3195
+ [[package]]
3196
+ name = "winapi-i686-pc-windows-gnu"
3197
+ version = "0.4.0"
3198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3199
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3200
+
3201
+ [[package]]
3202
+ name = "winapi-util"
3203
+ version = "0.1.5"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
3206
+ dependencies = [
3207
+ "winapi",
3208
+ ]
3209
+
3210
+ [[package]]
3211
+ name = "winapi-x86_64-pc-windows-gnu"
3212
+ version = "0.4.0"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3215
+
3216
+ [[package]]
3217
+ name = "windows-link"
3218
+ version = "0.1.1"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
3221
+
3222
+ [[package]]
3223
+ name = "windows-sys"
3224
+ version = "0.45.0"
3225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3226
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3227
+ dependencies = [
3228
+ "windows-targets 0.42.1",
3229
+ ]
3230
+
3231
+ [[package]]
3232
+ name = "windows-sys"
3233
+ version = "0.48.0"
3234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3235
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3236
+ dependencies = [
3237
+ "windows-targets 0.48.5",
3238
+ ]
3239
+
3240
+ [[package]]
3241
+ name = "windows-sys"
3242
+ version = "0.52.0"
3243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3244
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3245
+ dependencies = [
3246
+ "windows-targets 0.52.6",
3247
+ ]
3248
+
3249
+ [[package]]
3250
+ name = "windows-sys"
3251
+ version = "0.59.0"
3252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3253
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3254
+ dependencies = [
3255
+ "windows-targets 0.52.6",
3256
+ ]
3257
+
3258
+ [[package]]
3259
+ name = "windows-targets"
3260
+ version = "0.42.1"
3261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3262
+ checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
3263
+ dependencies = [
3264
+ "windows_aarch64_gnullvm 0.42.1",
3265
+ "windows_aarch64_msvc 0.42.1",
3266
+ "windows_i686_gnu 0.42.1",
3267
+ "windows_i686_msvc 0.42.1",
3268
+ "windows_x86_64_gnu 0.42.1",
3269
+ "windows_x86_64_gnullvm 0.42.1",
3270
+ "windows_x86_64_msvc 0.42.1",
3271
+ ]
3272
+
3273
+ [[package]]
3274
+ name = "windows-targets"
3275
+ version = "0.48.5"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3278
+ dependencies = [
3279
+ "windows_aarch64_gnullvm 0.48.5",
3280
+ "windows_aarch64_msvc 0.48.5",
3281
+ "windows_i686_gnu 0.48.5",
3282
+ "windows_i686_msvc 0.48.5",
3283
+ "windows_x86_64_gnu 0.48.5",
3284
+ "windows_x86_64_gnullvm 0.48.5",
3285
+ "windows_x86_64_msvc 0.48.5",
3286
+ ]
3287
+
3288
+ [[package]]
3289
+ name = "windows-targets"
3290
+ version = "0.52.6"
3291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3292
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3293
+ dependencies = [
3294
+ "windows_aarch64_gnullvm 0.52.6",
3295
+ "windows_aarch64_msvc 0.52.6",
3296
+ "windows_i686_gnu 0.52.6",
3297
+ "windows_i686_gnullvm",
3298
+ "windows_i686_msvc 0.52.6",
3299
+ "windows_x86_64_gnu 0.52.6",
3300
+ "windows_x86_64_gnullvm 0.52.6",
3301
+ "windows_x86_64_msvc 0.52.6",
3302
+ ]
3303
+
3304
+ [[package]]
3305
+ name = "windows_aarch64_gnullvm"
3306
+ version = "0.42.1"
3307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3308
+ checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
3309
+
3310
+ [[package]]
3311
+ name = "windows_aarch64_gnullvm"
3312
+ version = "0.48.5"
3313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3314
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3315
+
3316
+ [[package]]
3317
+ name = "windows_aarch64_gnullvm"
3318
+ version = "0.52.6"
3319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3320
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3321
+
3322
+ [[package]]
3323
+ name = "windows_aarch64_msvc"
3324
+ version = "0.42.1"
3325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3326
+ checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
3327
+
3328
+ [[package]]
3329
+ name = "windows_aarch64_msvc"
3330
+ version = "0.48.5"
3331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3332
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3333
+
3334
+ [[package]]
3335
+ name = "windows_aarch64_msvc"
3336
+ version = "0.52.6"
3337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3338
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3339
+
3340
+ [[package]]
3341
+ name = "windows_i686_gnu"
3342
+ version = "0.42.1"
3343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3344
+ checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
3345
+
3346
+ [[package]]
3347
+ name = "windows_i686_gnu"
3348
+ version = "0.48.5"
3349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3350
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3351
+
3352
+ [[package]]
3353
+ name = "windows_i686_gnu"
3354
+ version = "0.52.6"
3355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3356
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3357
+
3358
+ [[package]]
3359
+ name = "windows_i686_gnullvm"
3360
+ version = "0.52.6"
3361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3362
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3363
+
3364
+ [[package]]
3365
+ name = "windows_i686_msvc"
3366
+ version = "0.42.1"
3367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3368
+ checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
3369
+
3370
+ [[package]]
3371
+ name = "windows_i686_msvc"
3372
+ version = "0.48.5"
3373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3374
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3375
+
3376
+ [[package]]
3377
+ name = "windows_i686_msvc"
3378
+ version = "0.52.6"
3379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3380
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3381
+
3382
+ [[package]]
3383
+ name = "windows_x86_64_gnu"
3384
+ version = "0.42.1"
3385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3386
+ checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
3387
+
3388
+ [[package]]
3389
+ name = "windows_x86_64_gnu"
3390
+ version = "0.48.5"
3391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3392
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3393
+
3394
+ [[package]]
3395
+ name = "windows_x86_64_gnu"
3396
+ version = "0.52.6"
3397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3398
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3399
+
3400
+ [[package]]
3401
+ name = "windows_x86_64_gnullvm"
3402
+ version = "0.42.1"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
3405
+
3406
+ [[package]]
3407
+ name = "windows_x86_64_gnullvm"
3408
+ version = "0.48.5"
3409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3410
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3411
+
3412
+ [[package]]
3413
+ name = "windows_x86_64_gnullvm"
3414
+ version = "0.52.6"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3417
+
3418
+ [[package]]
3419
+ name = "windows_x86_64_msvc"
3420
+ version = "0.42.1"
3421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3422
+ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
3423
+
3424
+ [[package]]
3425
+ name = "windows_x86_64_msvc"
3426
+ version = "0.48.5"
3427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3428
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3429
+
3430
+ [[package]]
3431
+ name = "windows_x86_64_msvc"
3432
+ version = "0.52.6"
3433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3434
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3435
+
3436
+ [[package]]
3437
+ name = "winnow"
3438
+ version = "0.7.10"
3439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3440
+ checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
3441
+ dependencies = [
3442
+ "memchr",
3443
+ ]
3444
+
3445
+ [[package]]
3446
+ name = "wit-bindgen-rt"
3447
+ version = "0.39.0"
3448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3449
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3450
+ dependencies = [
3451
+ "bitflags 2.9.0",
3452
+ ]
3453
+
3454
+ [[package]]
3455
+ name = "write16"
3456
+ version = "1.0.0"
3457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
3459
+
3460
+ [[package]]
3461
+ name = "writeable"
3462
+ version = "0.5.5"
3463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3464
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
3465
+
3466
+ [[package]]
3467
+ name = "xattr"
3468
+ version = "1.5.0"
3469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3470
+ checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
3471
+ dependencies = [
3472
+ "libc",
3473
+ "rustix",
3474
+ ]
3475
+
3476
+ [[package]]
3477
+ name = "yansi"
3478
+ version = "0.5.1"
3479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3480
+ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
3481
+
3482
+ [[package]]
3483
+ name = "yansi"
3484
+ version = "1.0.1"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
3487
+
3488
+ [[package]]
3489
+ name = "yoke"
3490
+ version = "0.7.4"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5"
3493
+ dependencies = [
3494
+ "serde",
3495
+ "stable_deref_trait",
3496
+ "yoke-derive",
3497
+ "zerofrom",
3498
+ ]
3499
+
3500
+ [[package]]
3501
+ name = "yoke-derive"
3502
+ version = "0.7.4"
3503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3504
+ checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95"
3505
+ dependencies = [
3506
+ "proc-macro2",
3507
+ "quote",
3508
+ "syn 2.0.101",
3509
+ "synstructure",
3510
+ ]
3511
+
3512
+ [[package]]
3513
+ name = "zerocopy"
3514
+ version = "0.7.35"
3515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3516
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
3517
+ dependencies = [
3518
+ "zerocopy-derive 0.7.35",
3519
+ ]
3520
+
3521
+ [[package]]
3522
+ name = "zerocopy"
3523
+ version = "0.8.25"
3524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3525
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
3526
+ dependencies = [
3527
+ "zerocopy-derive 0.8.25",
3528
+ ]
3529
+
3530
+ [[package]]
3531
+ name = "zerocopy-derive"
3532
+ version = "0.7.35"
3533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3534
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
3535
+ dependencies = [
3536
+ "proc-macro2",
3537
+ "quote",
3538
+ "syn 2.0.101",
3539
+ ]
3540
+
3541
+ [[package]]
3542
+ name = "zerocopy-derive"
3543
+ version = "0.8.25"
3544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3545
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
3546
+ dependencies = [
3547
+ "proc-macro2",
3548
+ "quote",
3549
+ "syn 2.0.101",
3550
+ ]
3551
+
3552
+ [[package]]
3553
+ name = "zerofrom"
3554
+ version = "0.1.4"
3555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3556
+ checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55"
3557
+ dependencies = [
3558
+ "zerofrom-derive",
3559
+ ]
3560
+
3561
+ [[package]]
3562
+ name = "zerofrom-derive"
3563
+ version = "0.1.4"
3564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3565
+ checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5"
3566
+ dependencies = [
3567
+ "proc-macro2",
3568
+ "quote",
3569
+ "syn 2.0.101",
3570
+ "synstructure",
3571
+ ]
3572
+
3573
+ [[package]]
3574
+ name = "zerovec"
3575
+ version = "0.10.4"
3576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3577
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
3578
+ dependencies = [
3579
+ "yoke",
3580
+ "zerofrom",
3581
+ "zerovec-derive",
3582
+ ]
3583
+
3584
+ [[package]]
3585
+ name = "zerovec-derive"
3586
+ version = "0.10.3"
3587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3588
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
3589
+ dependencies = [
3590
+ "proc-macro2",
3591
+ "quote",
3592
+ "syn 2.0.101",
3593
+ ]
3594
+
3595
+ [[package]]
3596
+ name = "zstd"
3597
+ version = "0.13.2"
3598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3599
+ checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
3600
+ dependencies = [
3601
+ "zstd-safe",
3602
+ ]
3603
+
3604
+ [[package]]
3605
+ name = "zstd-safe"
3606
+ version = "7.2.1"
3607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3608
+ checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
3609
+ dependencies = [
3610
+ "zstd-sys",
3611
+ ]
3612
+
3613
+ [[package]]
3614
+ name = "zstd-sys"
3615
+ version = "2.0.12+zstd.1.5.6"
3616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3617
+ checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13"
3618
+ dependencies = [
3619
+ "cc",
3620
+ "pkg-config",
3621
+ ]