pyrefly 0.36.2__tar.gz → 0.37.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.

Potentially problematic release.


This version of pyrefly might be problematic. Click here for more details.

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