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