pyrefly 0.19.1__tar.gz → 0.19.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1019) hide show
  1. {pyrefly-0.19.1 → pyrefly-0.19.2}/Cargo.lock +591 -500
  2. pyrefly-0.19.2/Cargo.toml +17 -0
  3. {pyrefly-0.19.1 → pyrefly-0.19.2}/PKG-INFO +1 -1
  4. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/Cargo.toml +2 -1
  5. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/class/variance_inference.rs +118 -47
  6. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/function.rs +2 -11
  7. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/solve.rs +0 -17
  8. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/binding/binding.rs +7 -3
  9. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/binding/bindings.rs +20 -8
  10. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/binding/class.rs +0 -8
  11. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/binding/scope.rs +18 -8
  12. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/commands/check.rs +30 -11
  13. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/common/symbol_kind.rs +21 -14
  14. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/error/context.rs +4 -12
  15. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/error/display.rs +0 -3
  16. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/error/error.rs +5 -25
  17. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/error/kind.rs +93 -12
  18. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/export/definitions.rs +32 -11
  19. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/export/exports.rs +10 -8
  20. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/lib.rs +1 -0
  21. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/module/module_info.rs +16 -0
  22. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/solver/solver.rs +4 -1
  23. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/ide.rs +15 -18
  24. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/lsp.rs +21 -29
  25. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/semantic_tokens.rs +33 -4
  26. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/state.rs +9 -3
  27. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/attributes.rs +1 -1
  28. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/contextual.rs +19 -0
  29. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/flow.rs +1 -1
  30. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/generic_basic.rs +1 -1
  31. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/lsp_interaction.rs +2 -2
  32. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/semantic_tokens.rs +41 -7
  33. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/narrow.rs +1 -1
  34. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/simple.rs +13 -0
  35. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/type_alias.rs +1 -1
  36. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/variance_inference.rs +32 -1
  37. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/callable.rs +0 -7
  38. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/display.rs +8 -28
  39. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_derive/Cargo.toml +1 -1
  40. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/Cargo.toml +1 -1
  41. pyrefly-0.19.1/Cargo.toml +0 -11
  42. {pyrefly-0.19.1 → pyrefly-0.19.2}/README.md +0 -0
  43. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyproject.toml +0 -0
  44. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/.gitignore +0 -0
  45. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/README.md +0 -0
  46. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/bin/main.rs +0 -0
  47. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/build.rs +0 -0
  48. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/answers.rs +0 -0
  49. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/attr.rs +0 -0
  50. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/call.rs +0 -0
  51. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/callable.rs +0 -0
  52. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/class/class_field.rs +0 -0
  53. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/class/class_metadata.rs +0 -0
  54. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/class/classdef.rs +0 -0
  55. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/class/dataclass.rs +0 -0
  56. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/class/enums.rs +0 -0
  57. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/class/mod.rs +0 -0
  58. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/class/named_tuple.rs +0 -0
  59. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/class/new_type.rs +0 -0
  60. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/class/targs.rs +0 -0
  61. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/class/typed_dict.rs +0 -0
  62. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/debugging.rs +0 -0
  63. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/expr.rs +0 -0
  64. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/mod.rs +0 -0
  65. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/narrow.rs +0 -0
  66. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/operators.rs +0 -0
  67. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/special_calls.rs +0 -0
  68. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/specials.rs +0 -0
  69. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/traits.rs +0 -0
  70. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/types/class_metadata.rs +0 -0
  71. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/types/decorated_function.rs +0 -0
  72. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/types/legacy_lookup.rs +0 -0
  73. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/types/mod.rs +0 -0
  74. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/types/yields.rs +0 -0
  75. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/alt/unwrap.rs +0 -0
  76. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/binding/expr.rs +0 -0
  77. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/binding/function.rs +0 -0
  78. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/binding/mod.rs +0 -0
  79. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/binding/narrow.rs +0 -0
  80. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/binding/pattern.rs +0 -0
  81. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/binding/stmt.rs +0 -0
  82. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/binding/table.rs +0 -0
  83. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/binding/target.rs +0 -0
  84. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/commands/autotype.rs +0 -0
  85. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/commands/buck_check.rs +0 -0
  86. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/commands/config_finder.rs +0 -0
  87. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/commands/config_migration.rs +0 -0
  88. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/commands/init.rs +0 -0
  89. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/commands/lsp.rs +0 -0
  90. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/commands/mod.rs +0 -0
  91. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/commands/run.rs +0 -0
  92. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/commands/suppress.rs +0 -0
  93. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/commands/util.rs +0 -0
  94. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/common/files.rs +0 -0
  95. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/common/mod.rs +0 -0
  96. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/base.rs +0 -0
  97. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/config.rs +0 -0
  98. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/environment/environment.rs +0 -0
  99. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/environment/finder.rs +0 -0
  100. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/environment/mod.rs +0 -0
  101. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/environment/venv.rs +0 -0
  102. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/error.rs +0 -0
  103. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/finder.rs +0 -0
  104. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/mod.rs +0 -0
  105. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/mypy/ini.rs +0 -0
  106. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/mypy/mod.rs +0 -0
  107. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/mypy/pyproject.rs +0 -0
  108. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/mypy/regex_converter.rs +0 -0
  109. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/pyright.rs +0 -0
  110. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/config/util.rs +0 -0
  111. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/dunder.rs +0 -0
  112. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/error/collector.rs +0 -0
  113. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/error/expectation.rs +0 -0
  114. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/error/legacy.rs +0 -0
  115. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/error/mod.rs +0 -0
  116. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/error/style.rs +0 -0
  117. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/error/summarise.rs +0 -0
  118. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/export/mod.rs +0 -0
  119. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/export/special.rs +0 -0
  120. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/graph/calculation.rs +0 -0
  121. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/graph/index.rs +0 -0
  122. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/graph/index_map.rs +0 -0
  123. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/graph/mod.rs +0 -0
  124. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/module/bundled.rs +0 -0
  125. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/module/display.rs +0 -0
  126. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/module/finder.rs +0 -0
  127. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/module/ignore.rs +0 -0
  128. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/module/mod.rs +0 -0
  129. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/module/module_name.rs +0 -0
  130. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/module/module_path.rs +0 -0
  131. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/module/short_identifier.rs +0 -0
  132. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/module/source_db.rs +0 -0
  133. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/module/wildcard.rs +0 -0
  134. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/playground.rs +0 -0
  135. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/report/binding_memory.rs +0 -0
  136. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/report/debug_info.rs +0 -0
  137. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/report/glean/convert.rs +0 -0
  138. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/report/glean/facts.rs +0 -0
  139. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/report/glean/mod.rs +0 -0
  140. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/report/glean/schema/builtin.rs +0 -0
  141. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/report/glean/schema/digest.rs +0 -0
  142. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/report/glean/schema/mod.rs +0 -0
  143. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/report/glean/schema/python.rs +0 -0
  144. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/report/glean/schema/src.rs +0 -0
  145. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/report/mod.rs +0 -0
  146. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/report/trace.rs +0 -0
  147. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/ruff/ast.rs +0 -0
  148. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/ruff/mod.rs +0 -0
  149. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/solver/mod.rs +0 -0
  150. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/solver/subset.rs +0 -0
  151. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/solver/type_order.rs +0 -0
  152. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/dirty.rs +0 -0
  153. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/epoch.rs +0 -0
  154. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/errors.rs +0 -0
  155. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/handle.rs +0 -0
  156. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/load.rs +0 -0
  157. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/loader.rs +0 -0
  158. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/memory.rs +0 -0
  159. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/mod.rs +0 -0
  160. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/require.rs +0 -0
  161. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/steps.rs +0 -0
  162. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/state/subscriber.rs +0 -0
  163. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/sys_info.rs +0 -0
  164. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/assign.rs +0 -0
  165. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/attribute_narrow.rs +0 -0
  166. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/callable.rs +0 -0
  167. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/calls.rs +0 -0
  168. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/class_keywords.rs +0 -0
  169. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/class_overrides.rs +0 -0
  170. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/class_subtyping.rs +0 -0
  171. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/class_super.rs +0 -0
  172. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/constructors.rs +0 -0
  173. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/cycles.rs +0 -0
  174. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/dataclasses.rs +0 -0
  175. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/decorators.rs +0 -0
  176. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/delayed_inference.rs +0 -0
  177. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/descriptors.rs +0 -0
  178. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/enums.rs +0 -0
  179. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/generic_restrictions.rs +0 -0
  180. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/imports.rs +0 -0
  181. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/literal.rs +0 -0
  182. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/code_actions.rs +0 -0
  183. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/completion.rs +0 -0
  184. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/definition.rs +0 -0
  185. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/document_symbols.rs +0 -0
  186. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/hover_docstring.rs +0 -0
  187. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/hover_type.rs +0 -0
  188. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/inlay_hint.rs +0 -0
  189. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/local_find_refs.rs +0 -0
  190. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/lsp_interaction_util.rs +0 -0
  191. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/mod.rs +0 -0
  192. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/signature_help.rs +0 -0
  193. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/bar.py +0 -0
  194. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/foo.py +0 -0
  195. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/foo_relative.py +0 -0
  196. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/imports_builtins.py +0 -0
  197. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/bar.py +0 -0
  198. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/foo.py +0 -0
  199. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/pyrefly.toml +0 -0
  200. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/with_synthetic_bindings.py +0 -0
  201. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/type_errors.py +0 -0
  202. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/metadata.rs +0 -0
  203. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/mod.rs +0 -0
  204. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/mro.rs +0 -0
  205. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/named_tuple.rs +0 -0
  206. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/new_type.rs +0 -0
  207. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/operators.rs +0 -0
  208. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/overload.rs +0 -0
  209. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/paramspec.rs +0 -0
  210. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/pattern_match.rs +0 -0
  211. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/perf.rs +0 -0
  212. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/protocol.rs +0 -0
  213. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/returns.rs +0 -0
  214. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/scope.rs +0 -0
  215. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/state.rs +0 -0
  216. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/subscript_narrow.rs +0 -0
  217. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/suppression.rs +0 -0
  218. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/tuple.rs +0 -0
  219. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/type_var_tuple.rs +0 -0
  220. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/typed_dict.rs +0 -0
  221. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/typing_self.rs +0 -0
  222. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/untyped_def_behaviors.rs +0 -0
  223. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/util.rs +0 -0
  224. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/var_resolution.rs +0 -0
  225. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/with.rs +0 -0
  226. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/test/yields.rs +0 -0
  227. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/alias.rs +0 -0
  228. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/annotation.rs +0 -0
  229. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/class.rs +0 -0
  230. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/equality.rs +0 -0
  231. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/lit_int.rs +0 -0
  232. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/literal.rs +0 -0
  233. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/lsp.rs +0 -0
  234. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/mod.rs +0 -0
  235. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/module.rs +0 -0
  236. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/param_spec.rs +0 -0
  237. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/qname.rs +0 -0
  238. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/quantified.rs +0 -0
  239. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/simplify.rs +0 -0
  240. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/special_form.rs +0 -0
  241. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/stdlib.rs +0 -0
  242. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/tuple.rs +0 -0
  243. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/type_info.rs +0 -0
  244. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/type_var.rs +0 -0
  245. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/type_var_tuple.rs +0 -0
  246. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/typed_dict.rs +0 -0
  247. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/lib/types/types.rs +0 -0
  248. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/pyrefly.dotslash.py +0 -0
  249. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/rust-toolchain +0 -0
  250. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/__future__.pyi +0 -0
  251. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/__main__.pyi +0 -0
  252. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_ast.pyi +0 -0
  253. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_asyncio.pyi +0 -0
  254. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_bisect.pyi +0 -0
  255. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_blake2.pyi +0 -0
  256. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_bootlocale.pyi +0 -0
  257. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_bz2.pyi +0 -0
  258. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_codecs.pyi +0 -0
  259. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_collections_abc.pyi +0 -0
  260. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_compat_pickle.pyi +0 -0
  261. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_compression.pyi +0 -0
  262. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_contextvars.pyi +0 -0
  263. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_csv.pyi +0 -0
  264. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_ctypes.pyi +0 -0
  265. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_curses.pyi +0 -0
  266. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_curses_panel.pyi +0 -0
  267. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_dbm.pyi +0 -0
  268. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_decimal.pyi +0 -0
  269. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_frozen_importlib.pyi +0 -0
  270. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_frozen_importlib_external.pyi +0 -0
  271. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_gdbm.pyi +0 -0
  272. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_hashlib.pyi +0 -0
  273. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_heapq.pyi +0 -0
  274. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_imp.pyi +0 -0
  275. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_interpchannels.pyi +0 -0
  276. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_interpqueues.pyi +0 -0
  277. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_interpreters.pyi +0 -0
  278. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_io.pyi +0 -0
  279. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_json.pyi +0 -0
  280. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_locale.pyi +0 -0
  281. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_lsprof.pyi +0 -0
  282. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_lzma.pyi +0 -0
  283. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_markupbase.pyi +0 -0
  284. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_msi.pyi +0 -0
  285. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_multibytecodec.pyi +0 -0
  286. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_operator.pyi +0 -0
  287. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_osx_support.pyi +0 -0
  288. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_pickle.pyi +0 -0
  289. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_posixsubprocess.pyi +0 -0
  290. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_py_abc.pyi +0 -0
  291. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_pydecimal.pyi +0 -0
  292. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_queue.pyi +0 -0
  293. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_random.pyi +0 -0
  294. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_sitebuiltins.pyi +0 -0
  295. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_socket.pyi +0 -0
  296. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_sqlite3.pyi +0 -0
  297. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_ssl.pyi +0 -0
  298. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_stat.pyi +0 -0
  299. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_struct.pyi +0 -0
  300. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_thread.pyi +0 -0
  301. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_threading_local.pyi +0 -0
  302. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_tkinter.pyi +0 -0
  303. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_tracemalloc.pyi +0 -0
  304. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_typeshed/__init__.pyi +0 -0
  305. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_typeshed/_type_checker_internals.pyi +0 -0
  306. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_typeshed/dbapi.pyi +0 -0
  307. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_typeshed/importlib.pyi +0 -0
  308. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_typeshed/wsgi.pyi +0 -0
  309. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_typeshed/xml.pyi +0 -0
  310. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_warnings.pyi +0 -0
  311. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_weakref.pyi +0 -0
  312. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_weakrefset.pyi +0 -0
  313. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_winapi.pyi +0 -0
  314. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/abc.pyi +0 -0
  315. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/aifc.pyi +0 -0
  316. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/annotationlib.pyi +0 -0
  317. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/antigravity.pyi +0 -0
  318. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/argparse.pyi +0 -0
  319. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/array.pyi +0 -0
  320. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ast.pyi +0 -0
  321. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asynchat.pyi +0 -0
  322. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/__init__.pyi +0 -0
  323. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/base_events.pyi +0 -0
  324. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/base_futures.pyi +0 -0
  325. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/base_subprocess.pyi +0 -0
  326. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/base_tasks.pyi +0 -0
  327. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/constants.pyi +0 -0
  328. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/coroutines.pyi +0 -0
  329. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/events.pyi +0 -0
  330. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/exceptions.pyi +0 -0
  331. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/format_helpers.pyi +0 -0
  332. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/futures.pyi +0 -0
  333. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/graph.pyi +0 -0
  334. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/locks.pyi +0 -0
  335. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/log.pyi +0 -0
  336. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/mixins.pyi +0 -0
  337. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/proactor_events.pyi +0 -0
  338. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/protocols.pyi +0 -0
  339. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/queues.pyi +0 -0
  340. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/runners.pyi +0 -0
  341. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/selector_events.pyi +0 -0
  342. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/sslproto.pyi +0 -0
  343. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/staggered.pyi +0 -0
  344. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/streams.pyi +0 -0
  345. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/subprocess.pyi +0 -0
  346. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/taskgroups.pyi +0 -0
  347. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/tasks.pyi +0 -0
  348. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/threads.pyi +0 -0
  349. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/timeouts.pyi +0 -0
  350. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/transports.pyi +0 -0
  351. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/trsock.pyi +0 -0
  352. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/unix_events.pyi +0 -0
  353. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/windows_events.pyi +0 -0
  354. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/windows_utils.pyi +0 -0
  355. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncore.pyi +0 -0
  356. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/atexit.pyi +0 -0
  357. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/audioop.pyi +0 -0
  358. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/base64.pyi +0 -0
  359. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/bdb.pyi +0 -0
  360. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/binascii.pyi +0 -0
  361. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/binhex.pyi +0 -0
  362. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/bisect.pyi +0 -0
  363. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/builtins.pyi +0 -0
  364. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/bz2.pyi +0 -0
  365. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/cProfile.pyi +0 -0
  366. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/calendar.pyi +0 -0
  367. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/cgi.pyi +0 -0
  368. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/cgitb.pyi +0 -0
  369. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/chunk.pyi +0 -0
  370. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/cmath.pyi +0 -0
  371. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/cmd.pyi +0 -0
  372. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/code.pyi +0 -0
  373. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/codecs.pyi +0 -0
  374. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/codeop.pyi +0 -0
  375. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/collections/__init__.pyi +0 -0
  376. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/collections/abc.pyi +0 -0
  377. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/colorsys.pyi +0 -0
  378. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compileall.pyi +0 -0
  379. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/__init__.pyi +0 -0
  380. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/_common/__init__.pyi +0 -0
  381. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/_common/_streams.pyi +0 -0
  382. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/bz2/__init__.pyi +0 -0
  383. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/gzip/__init__.pyi +0 -0
  384. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/lzma/__init__.pyi +0 -0
  385. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/zlib/__init__.pyi +0 -0
  386. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/concurrent/__init__.pyi +0 -0
  387. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/__init__.pyi +0 -0
  388. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/_base.pyi +0 -0
  389. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/interpreter.pyi +0 -0
  390. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/process.pyi +0 -0
  391. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/thread.pyi +0 -0
  392. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/configparser.pyi +0 -0
  393. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/contextlib.pyi +0 -0
  394. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/contextvars.pyi +0 -0
  395. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/copy.pyi +0 -0
  396. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/copyreg.pyi +0 -0
  397. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/crypt.pyi +0 -0
  398. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/csv.pyi +0 -0
  399. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/__init__.pyi +0 -0
  400. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/_endian.pyi +0 -0
  401. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/__init__.pyi +0 -0
  402. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/dyld.pyi +0 -0
  403. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/dylib.pyi +0 -0
  404. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/framework.pyi +0 -0
  405. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/util.pyi +0 -0
  406. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/wintypes.pyi +0 -0
  407. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/curses/__init__.pyi +0 -0
  408. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/curses/ascii.pyi +0 -0
  409. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/curses/has_key.pyi +0 -0
  410. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/curses/panel.pyi +0 -0
  411. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/curses/textpad.pyi +0 -0
  412. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dataclasses.pyi +0 -0
  413. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/datetime.pyi +0 -0
  414. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dbm/__init__.pyi +0 -0
  415. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dbm/dumb.pyi +0 -0
  416. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dbm/gnu.pyi +0 -0
  417. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dbm/ndbm.pyi +0 -0
  418. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dbm/sqlite3.pyi +0 -0
  419. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/decimal.pyi +0 -0
  420. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/difflib.pyi +0 -0
  421. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dis.pyi +0 -0
  422. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/__init__.pyi +0 -0
  423. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/_msvccompiler.pyi +0 -0
  424. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/archive_util.pyi +0 -0
  425. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/bcppcompiler.pyi +0 -0
  426. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/ccompiler.pyi +0 -0
  427. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/cmd.pyi +0 -0
  428. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/__init__.pyi +0 -0
  429. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist.pyi +0 -0
  430. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_dumb.pyi +0 -0
  431. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_msi.pyi +0 -0
  432. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_packager.pyi +0 -0
  433. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_rpm.pyi +0 -0
  434. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_wininst.pyi +0 -0
  435. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/build.pyi +0 -0
  436. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_clib.pyi +0 -0
  437. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_ext.pyi +0 -0
  438. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_py.pyi +0 -0
  439. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_scripts.pyi +0 -0
  440. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/check.pyi +0 -0
  441. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/clean.pyi +0 -0
  442. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/config.pyi +0 -0
  443. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/install.pyi +0 -0
  444. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_data.pyi +0 -0
  445. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_egg_info.pyi +0 -0
  446. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_headers.pyi +0 -0
  447. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_lib.pyi +0 -0
  448. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_scripts.pyi +0 -0
  449. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/register.pyi +0 -0
  450. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/sdist.pyi +0 -0
  451. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/upload.pyi +0 -0
  452. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/config.pyi +0 -0
  453. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/core.pyi +0 -0
  454. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/cygwinccompiler.pyi +0 -0
  455. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/debug.pyi +0 -0
  456. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/dep_util.pyi +0 -0
  457. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/dir_util.pyi +0 -0
  458. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/dist.pyi +0 -0
  459. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/errors.pyi +0 -0
  460. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/extension.pyi +0 -0
  461. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/fancy_getopt.pyi +0 -0
  462. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/file_util.pyi +0 -0
  463. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/filelist.pyi +0 -0
  464. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/log.pyi +0 -0
  465. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/msvccompiler.pyi +0 -0
  466. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/spawn.pyi +0 -0
  467. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/sysconfig.pyi +0 -0
  468. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/text_file.pyi +0 -0
  469. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/unixccompiler.pyi +0 -0
  470. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/util.pyi +0 -0
  471. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/version.pyi +0 -0
  472. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/doctest.pyi +0 -0
  473. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/__init__.pyi +0 -0
  474. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/_header_value_parser.pyi +0 -0
  475. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/_policybase.pyi +0 -0
  476. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/base64mime.pyi +0 -0
  477. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/charset.pyi +0 -0
  478. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/contentmanager.pyi +0 -0
  479. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/encoders.pyi +0 -0
  480. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/errors.pyi +0 -0
  481. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/feedparser.pyi +0 -0
  482. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/generator.pyi +0 -0
  483. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/header.pyi +0 -0
  484. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/headerregistry.pyi +0 -0
  485. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/iterators.pyi +0 -0
  486. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/message.pyi +0 -0
  487. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/__init__.pyi +0 -0
  488. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/application.pyi +0 -0
  489. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/audio.pyi +0 -0
  490. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/base.pyi +0 -0
  491. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/image.pyi +0 -0
  492. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/message.pyi +0 -0
  493. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/multipart.pyi +0 -0
  494. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/nonmultipart.pyi +0 -0
  495. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/text.pyi +0 -0
  496. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/parser.pyi +0 -0
  497. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/policy.pyi +0 -0
  498. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/quoprimime.pyi +0 -0
  499. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/utils.pyi +0 -0
  500. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/__init__.pyi +0 -0
  501. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/aliases.pyi +0 -0
  502. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/ascii.pyi +0 -0
  503. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/base64_codec.pyi +0 -0
  504. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/big5.pyi +0 -0
  505. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/big5hkscs.pyi +0 -0
  506. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/bz2_codec.pyi +0 -0
  507. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/charmap.pyi +0 -0
  508. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp037.pyi +0 -0
  509. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1006.pyi +0 -0
  510. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1026.pyi +0 -0
  511. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1125.pyi +0 -0
  512. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1140.pyi +0 -0
  513. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1250.pyi +0 -0
  514. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1251.pyi +0 -0
  515. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1252.pyi +0 -0
  516. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1253.pyi +0 -0
  517. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1254.pyi +0 -0
  518. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1255.pyi +0 -0
  519. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1256.pyi +0 -0
  520. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1257.pyi +0 -0
  521. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1258.pyi +0 -0
  522. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp273.pyi +0 -0
  523. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp424.pyi +0 -0
  524. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp437.pyi +0 -0
  525. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp500.pyi +0 -0
  526. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp720.pyi +0 -0
  527. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp737.pyi +0 -0
  528. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp775.pyi +0 -0
  529. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp850.pyi +0 -0
  530. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp852.pyi +0 -0
  531. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp855.pyi +0 -0
  532. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp856.pyi +0 -0
  533. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp857.pyi +0 -0
  534. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp858.pyi +0 -0
  535. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp860.pyi +0 -0
  536. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp861.pyi +0 -0
  537. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp862.pyi +0 -0
  538. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp863.pyi +0 -0
  539. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp864.pyi +0 -0
  540. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp865.pyi +0 -0
  541. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp866.pyi +0 -0
  542. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp869.pyi +0 -0
  543. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp874.pyi +0 -0
  544. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp875.pyi +0 -0
  545. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp932.pyi +0 -0
  546. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp949.pyi +0 -0
  547. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp950.pyi +0 -0
  548. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jis_2004.pyi +0 -0
  549. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jisx0213.pyi +0 -0
  550. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jp.pyi +0 -0
  551. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/euc_kr.pyi +0 -0
  552. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/gb18030.pyi +0 -0
  553. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/gb2312.pyi +0 -0
  554. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/gbk.pyi +0 -0
  555. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/hex_codec.pyi +0 -0
  556. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/hp_roman8.pyi +0 -0
  557. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/hz.pyi +0 -0
  558. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/idna.pyi +0 -0
  559. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp.pyi +0 -0
  560. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_1.pyi +0 -0
  561. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_2.pyi +0 -0
  562. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
  563. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_3.pyi +0 -0
  564. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
  565. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_kr.pyi +0 -0
  566. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_1.pyi +0 -0
  567. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_10.pyi +0 -0
  568. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_11.pyi +0 -0
  569. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_13.pyi +0 -0
  570. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_14.pyi +0 -0
  571. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_15.pyi +0 -0
  572. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_16.pyi +0 -0
  573. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_2.pyi +0 -0
  574. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_3.pyi +0 -0
  575. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_4.pyi +0 -0
  576. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_5.pyi +0 -0
  577. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_6.pyi +0 -0
  578. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_7.pyi +0 -0
  579. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_8.pyi +0 -0
  580. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_9.pyi +0 -0
  581. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/johab.pyi +0 -0
  582. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_r.pyi +0 -0
  583. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_t.pyi +0 -0
  584. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_u.pyi +0 -0
  585. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/kz1048.pyi +0 -0
  586. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/latin_1.pyi +0 -0
  587. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_arabic.pyi +0 -0
  588. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_croatian.pyi +0 -0
  589. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_cyrillic.pyi +0 -0
  590. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_farsi.pyi +0 -0
  591. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_greek.pyi +0 -0
  592. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_iceland.pyi +0 -0
  593. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_latin2.pyi +0 -0
  594. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_roman.pyi +0 -0
  595. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_romanian.pyi +0 -0
  596. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_turkish.pyi +0 -0
  597. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mbcs.pyi +0 -0
  598. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/oem.pyi +0 -0
  599. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/palmos.pyi +0 -0
  600. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/ptcp154.pyi +0 -0
  601. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/punycode.pyi +0 -0
  602. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/quopri_codec.pyi +0 -0
  603. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/raw_unicode_escape.pyi +0 -0
  604. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/rot_13.pyi +0 -0
  605. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jis.pyi +0 -0
  606. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jis_2004.pyi +0 -0
  607. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jisx0213.pyi +0 -0
  608. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/tis_620.pyi +0 -0
  609. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/undefined.pyi +0 -0
  610. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/unicode_escape.pyi +0 -0
  611. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16.pyi +0 -0
  612. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16_be.pyi +0 -0
  613. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16_le.pyi +0 -0
  614. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32.pyi +0 -0
  615. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32_be.pyi +0 -0
  616. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32_le.pyi +0 -0
  617. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_7.pyi +0 -0
  618. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_8.pyi +0 -0
  619. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_8_sig.pyi +0 -0
  620. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/uu_codec.pyi +0 -0
  621. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/zlib_codec.pyi +0 -0
  622. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ensurepip/__init__.pyi +0 -0
  623. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/enum.pyi +0 -0
  624. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/errno.pyi +0 -0
  625. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/faulthandler.pyi +0 -0
  626. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/fcntl.pyi +0 -0
  627. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/filecmp.pyi +0 -0
  628. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/fileinput.pyi +0 -0
  629. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/fnmatch.pyi +0 -0
  630. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/formatter.pyi +0 -0
  631. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/fractions.pyi +0 -0
  632. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ftplib.pyi +0 -0
  633. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/functools.pyi +0 -0
  634. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/gc.pyi +0 -0
  635. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/genericpath.pyi +0 -0
  636. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/getopt.pyi +0 -0
  637. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/getpass.pyi +0 -0
  638. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/gettext.pyi +0 -0
  639. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/glob.pyi +0 -0
  640. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/graphlib.pyi +0 -0
  641. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/grp.pyi +0 -0
  642. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/gzip.pyi +0 -0
  643. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/hashlib.pyi +0 -0
  644. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/heapq.pyi +0 -0
  645. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/hmac.pyi +0 -0
  646. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/html/__init__.pyi +0 -0
  647. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/html/entities.pyi +0 -0
  648. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/html/parser.pyi +0 -0
  649. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/http/__init__.pyi +0 -0
  650. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/http/client.pyi +0 -0
  651. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/http/cookiejar.pyi +0 -0
  652. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/http/cookies.pyi +0 -0
  653. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/http/server.pyi +0 -0
  654. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/imaplib.pyi +0 -0
  655. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/imghdr.pyi +0 -0
  656. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/imp.pyi +0 -0
  657. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/__init__.pyi +0 -0
  658. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/_abc.pyi +0 -0
  659. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/_bootstrap.pyi +0 -0
  660. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/_bootstrap_external.pyi +0 -0
  661. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/abc.pyi +0 -0
  662. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/machinery.pyi +0 -0
  663. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/__init__.pyi +0 -0
  664. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/_meta.pyi +0 -0
  665. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/diagnose.pyi +0 -0
  666. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/readers.pyi +0 -0
  667. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/resources/__init__.pyi +0 -0
  668. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/resources/_common.pyi +0 -0
  669. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/resources/_functional.pyi +0 -0
  670. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/resources/abc.pyi +0 -0
  671. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/resources/readers.pyi +0 -0
  672. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/resources/simple.pyi +0 -0
  673. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/simple.pyi +0 -0
  674. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/util.pyi +0 -0
  675. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/inspect.pyi +0 -0
  676. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/io.pyi +0 -0
  677. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ipaddress.pyi +0 -0
  678. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/itertools.pyi +0 -0
  679. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/json/__init__.pyi +0 -0
  680. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/json/decoder.pyi +0 -0
  681. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/json/encoder.pyi +0 -0
  682. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/json/scanner.pyi +0 -0
  683. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/json/tool.pyi +0 -0
  684. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/keyword.pyi +0 -0
  685. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/__init__.pyi +0 -0
  686. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/btm_matcher.pyi +0 -0
  687. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixer_base.pyi +0 -0
  688. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/__init__.pyi +0 -0
  689. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
  690. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
  691. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
  692. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
  693. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
  694. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
  695. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
  696. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
  697. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
  698. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
  699. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
  700. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
  701. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
  702. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
  703. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
  704. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
  705. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
  706. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
  707. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
  708. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
  709. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
  710. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
  711. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
  712. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
  713. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
  714. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
  715. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
  716. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
  717. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
  718. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
  719. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
  720. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
  721. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
  722. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
  723. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
  724. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
  725. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
  726. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
  727. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
  728. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
  729. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
  730. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
  731. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
  732. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
  733. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
  734. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
  735. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
  736. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
  737. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
  738. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
  739. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
  740. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
  741. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/main.pyi +0 -0
  742. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
  743. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/driver.pyi +0 -0
  744. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
  745. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/literals.pyi +0 -0
  746. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/parse.pyi +0 -0
  747. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
  748. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/token.pyi +0 -0
  749. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
  750. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pygram.pyi +0 -0
  751. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pytree.pyi +0 -0
  752. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/refactor.pyi +0 -0
  753. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/linecache.pyi +0 -0
  754. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/locale.pyi +0 -0
  755. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/logging/__init__.pyi +0 -0
  756. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/logging/config.pyi +0 -0
  757. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/logging/handlers.pyi +0 -0
  758. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lzma.pyi +0 -0
  759. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/mailbox.pyi +0 -0
  760. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/mailcap.pyi +0 -0
  761. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/marshal.pyi +0 -0
  762. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/math.pyi +0 -0
  763. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/mimetypes.pyi +0 -0
  764. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/mmap.pyi +0 -0
  765. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/modulefinder.pyi +0 -0
  766. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/msilib/__init__.pyi +0 -0
  767. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/msilib/schema.pyi +0 -0
  768. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/msilib/sequence.pyi +0 -0
  769. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/msilib/text.pyi +0 -0
  770. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/msvcrt.pyi +0 -0
  771. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/__init__.pyi +0 -0
  772. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/connection.pyi +0 -0
  773. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/context.pyi +0 -0
  774. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
  775. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/dummy/connection.pyi +0 -0
  776. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/forkserver.pyi +0 -0
  777. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/heap.pyi +0 -0
  778. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/managers.pyi +0 -0
  779. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/pool.pyi +0 -0
  780. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_fork.pyi +0 -0
  781. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
  782. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
  783. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
  784. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/process.pyi +0 -0
  785. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/queues.pyi +0 -0
  786. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/reduction.pyi +0 -0
  787. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/resource_sharer.pyi +0 -0
  788. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/resource_tracker.pyi +0 -0
  789. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/shared_memory.pyi +0 -0
  790. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/sharedctypes.pyi +0 -0
  791. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/spawn.pyi +0 -0
  792. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/synchronize.pyi +0 -0
  793. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/util.pyi +0 -0
  794. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/netrc.pyi +0 -0
  795. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/nis.pyi +0 -0
  796. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/nntplib.pyi +0 -0
  797. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/nt.pyi +0 -0
  798. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ntpath.pyi +0 -0
  799. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/nturl2path.pyi +0 -0
  800. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/numbers.pyi +0 -0
  801. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/opcode.pyi +0 -0
  802. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/operator.pyi +0 -0
  803. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/optparse.pyi +0 -0
  804. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/os/__init__.pyi +0 -0
  805. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/os/path.pyi +0 -0
  806. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ossaudiodev.pyi +0 -0
  807. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/parser.pyi +0 -0
  808. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pathlib/__init__.pyi +0 -0
  809. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pathlib/types.pyi +0 -0
  810. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pdb.pyi +0 -0
  811. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pickle.pyi +0 -0
  812. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pickletools.pyi +0 -0
  813. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pipes.pyi +0 -0
  814. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pkgutil.pyi +0 -0
  815. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/platform.pyi +0 -0
  816. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/plistlib.pyi +0 -0
  817. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/poplib.pyi +0 -0
  818. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/posix.pyi +0 -0
  819. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/posixpath.pyi +0 -0
  820. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pprint.pyi +0 -0
  821. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/profile.pyi +0 -0
  822. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pstats.pyi +0 -0
  823. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pty.pyi +0 -0
  824. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pwd.pyi +0 -0
  825. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/py_compile.pyi +0 -0
  826. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pyclbr.pyi +0 -0
  827. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pydoc.pyi +0 -0
  828. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pydoc_data/__init__.pyi +0 -0
  829. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pydoc_data/topics.pyi +0 -0
  830. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pyexpat/__init__.pyi +0 -0
  831. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pyexpat/errors.pyi +0 -0
  832. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pyexpat/model.pyi +0 -0
  833. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/queue.pyi +0 -0
  834. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/quopri.pyi +0 -0
  835. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/random.pyi +0 -0
  836. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/re.pyi +0 -0
  837. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/readline.pyi +0 -0
  838. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/reprlib.pyi +0 -0
  839. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/resource.pyi +0 -0
  840. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/rlcompleter.pyi +0 -0
  841. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/runpy.pyi +0 -0
  842. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sched.pyi +0 -0
  843. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/secrets.pyi +0 -0
  844. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/select.pyi +0 -0
  845. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/selectors.pyi +0 -0
  846. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/shelve.pyi +0 -0
  847. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/shlex.pyi +0 -0
  848. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/shutil.pyi +0 -0
  849. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/signal.pyi +0 -0
  850. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/site.pyi +0 -0
  851. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/smtpd.pyi +0 -0
  852. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/smtplib.pyi +0 -0
  853. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sndhdr.pyi +0 -0
  854. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/socket.pyi +0 -0
  855. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/socketserver.pyi +0 -0
  856. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/spwd.pyi +0 -0
  857. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sqlite3/__init__.pyi +0 -0
  858. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sqlite3/dbapi2.pyi +0 -0
  859. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sqlite3/dump.pyi +0 -0
  860. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sre_compile.pyi +0 -0
  861. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sre_constants.pyi +0 -0
  862. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sre_parse.pyi +0 -0
  863. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ssl.pyi +0 -0
  864. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/stat.pyi +0 -0
  865. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/statistics.pyi +0 -0
  866. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/string/__init__.pyi +0 -0
  867. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/string/templatelib.pyi +0 -0
  868. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/stringprep.pyi +0 -0
  869. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/struct.pyi +0 -0
  870. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/subprocess.pyi +0 -0
  871. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sunau.pyi +0 -0
  872. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/symbol.pyi +0 -0
  873. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/symtable.pyi +0 -0
  874. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sys/__init__.pyi +0 -0
  875. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sys/_monitoring.pyi +0 -0
  876. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sysconfig.pyi +0 -0
  877. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/syslog.pyi +0 -0
  878. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tabnanny.pyi +0 -0
  879. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tarfile.pyi +0 -0
  880. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/telnetlib.pyi +0 -0
  881. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tempfile.pyi +0 -0
  882. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/termios.pyi +0 -0
  883. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/textwrap.pyi +0 -0
  884. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/this.pyi +0 -0
  885. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/threading.pyi +0 -0
  886. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/time.pyi +0 -0
  887. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/timeit.pyi +0 -0
  888. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/__init__.pyi +0 -0
  889. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/colorchooser.pyi +0 -0
  890. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/commondialog.pyi +0 -0
  891. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/constants.pyi +0 -0
  892. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/dialog.pyi +0 -0
  893. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/dnd.pyi +0 -0
  894. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/filedialog.pyi +0 -0
  895. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/font.pyi +0 -0
  896. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/messagebox.pyi +0 -0
  897. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/scrolledtext.pyi +0 -0
  898. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/simpledialog.pyi +0 -0
  899. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/tix.pyi +0 -0
  900. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/ttk.pyi +0 -0
  901. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/token.pyi +0 -0
  902. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tokenize.pyi +0 -0
  903. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tomllib.pyi +0 -0
  904. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/trace.pyi +0 -0
  905. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/traceback.pyi +0 -0
  906. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tracemalloc.pyi +0 -0
  907. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tty.pyi +0 -0
  908. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/turtle.pyi +0 -0
  909. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/types.pyi +0 -0
  910. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/typing.pyi +0 -0
  911. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/typing_extensions.pyi +0 -0
  912. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unicodedata.pyi +0 -0
  913. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/__init__.pyi +0 -0
  914. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/_log.pyi +0 -0
  915. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/async_case.pyi +0 -0
  916. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/case.pyi +0 -0
  917. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/loader.pyi +0 -0
  918. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/main.pyi +0 -0
  919. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/mock.pyi +0 -0
  920. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/result.pyi +0 -0
  921. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/runner.pyi +0 -0
  922. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/signals.pyi +0 -0
  923. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/suite.pyi +0 -0
  924. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/util.pyi +0 -0
  925. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/urllib/__init__.pyi +0 -0
  926. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/urllib/error.pyi +0 -0
  927. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/urllib/parse.pyi +0 -0
  928. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/urllib/request.pyi +0 -0
  929. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/urllib/response.pyi +0 -0
  930. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/urllib/robotparser.pyi +0 -0
  931. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/uu.pyi +0 -0
  932. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/uuid.pyi +0 -0
  933. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/venv/__init__.pyi +0 -0
  934. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/warnings.pyi +0 -0
  935. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wave.pyi +0 -0
  936. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/weakref.pyi +0 -0
  937. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/webbrowser.pyi +0 -0
  938. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/winreg.pyi +0 -0
  939. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/winsound.pyi +0 -0
  940. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/__init__.pyi +0 -0
  941. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/handlers.pyi +0 -0
  942. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/headers.pyi +0 -0
  943. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/simple_server.pyi +0 -0
  944. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/types.pyi +0 -0
  945. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/util.pyi +0 -0
  946. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/validate.pyi +0 -0
  947. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xdrlib.pyi +0 -0
  948. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/__init__.pyi +0 -0
  949. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/NodeFilter.pyi +0 -0
  950. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/__init__.pyi +0 -0
  951. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/domreg.pyi +0 -0
  952. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/expatbuilder.pyi +0 -0
  953. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/minicompat.pyi +0 -0
  954. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/minidom.pyi +0 -0
  955. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/pulldom.pyi +0 -0
  956. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/xmlbuilder.pyi +0 -0
  957. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementInclude.pyi +0 -0
  958. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementPath.pyi +0 -0
  959. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementTree.pyi +0 -0
  960. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/etree/__init__.pyi +0 -0
  961. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/etree/cElementTree.pyi +0 -0
  962. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/parsers/__init__.pyi +0 -0
  963. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/__init__.pyi +0 -0
  964. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/errors.pyi +0 -0
  965. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/model.pyi +0 -0
  966. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/sax/__init__.pyi +0 -0
  967. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/sax/_exceptions.pyi +0 -0
  968. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/sax/expatreader.pyi +0 -0
  969. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/sax/handler.pyi +0 -0
  970. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/sax/saxutils.pyi +0 -0
  971. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/sax/xmlreader.pyi +0 -0
  972. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xmlrpc/__init__.pyi +0 -0
  973. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xmlrpc/client.pyi +0 -0
  974. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xmlrpc/server.pyi +0 -0
  975. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xxlimited.pyi +0 -0
  976. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zipapp.pyi +0 -0
  977. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zipfile/__init__.pyi +0 -0
  978. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zipfile/_path/__init__.pyi +0 -0
  979. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zipfile/_path/glob.pyi +0 -0
  980. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zipimport.pyi +0 -0
  981. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zlib.pyi +0 -0
  982. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zoneinfo/__init__.pyi +0 -0
  983. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zoneinfo/_common.pyi +0 -0
  984. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zoneinfo/_tzpath.pyi +0 -0
  985. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly/third_party/typeshed_metadata.json +0 -0
  986. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_derive/.gitignore +0 -0
  987. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_derive/src/lib.rs +0 -0
  988. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_derive/src/type_eq.rs +0 -0
  989. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_derive/src/visit.rs +0 -0
  990. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/arc_id.rs +0 -0
  991. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/args.rs +0 -0
  992. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/assert_size.rs +0 -0
  993. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/display.rs +0 -0
  994. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/events.rs +0 -0
  995. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/exclusive_lock.rs +0 -0
  996. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/forgetter.rs +0 -0
  997. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/fs_anyhow.rs +0 -0
  998. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/gas.rs +0 -0
  999. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/globs.rs +0 -0
  1000. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/lib.rs +0 -0
  1001. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/lock.rs +0 -0
  1002. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/locked_map.rs +0 -0
  1003. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/memory.rs +0 -0
  1004. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/no_hash.rs +0 -0
  1005. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/prelude.rs +0 -0
  1006. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/recurser.rs +0 -0
  1007. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/ruff_visitors.rs +0 -0
  1008. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/small_set1.rs +0 -0
  1009. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/task_heap.rs +0 -0
  1010. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/test_path.rs +0 -0
  1011. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/thread_pool.rs +0 -0
  1012. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/trace.rs +0 -0
  1013. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/uniques.rs +0 -0
  1014. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/upgrade_lock.rs +0 -0
  1015. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/upward_search.rs +0 -0
  1016. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/visit.rs +0 -0
  1017. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/watcher.rs +0 -0
  1018. {pyrefly-0.19.1 → pyrefly-0.19.2}/pyrefly_util/src/with_hash.rs +0 -0
  1019. {pyrefly-0.19.1 → pyrefly-0.19.2}/rust-toolchain +0 -0
@@ -2,31 +2,37 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 4
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
+
5
11
  [[package]]
6
12
  name = "addr2line"
7
- version = "0.24.2"
13
+ version = "0.19.0"
8
14
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
15
+ checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
10
16
  dependencies = [
11
17
  "gimli",
12
18
  ]
13
19
 
14
20
  [[package]]
15
- name = "adler2"
16
- version = "2.0.1"
21
+ name = "adler"
22
+ version = "1.0.2"
17
23
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
24
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19
25
 
20
26
  [[package]]
21
27
  name = "ahash"
22
- version = "0.8.12"
28
+ version = "0.8.11"
23
29
  source = "registry+https://github.com/rust-lang/crates.io-index"
24
- checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
30
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
25
31
  dependencies = [
26
32
  "cfg-if",
27
33
  "once_cell",
28
34
  "version_check",
29
- "zerocopy",
35
+ "zerocopy 0.7.35",
30
36
  ]
31
37
 
32
38
  [[package]]
@@ -47,7 +53,7 @@ dependencies = [
47
53
  "allocative_derive",
48
54
  "anyhow",
49
55
  "bumpalo",
50
- "compact_str 0.8.1",
56
+ "compact_str 0.8.0",
51
57
  "ctor",
52
58
  "dashmap",
53
59
  "either",
@@ -75,7 +81,7 @@ checksum = "fe233a377643e0fc1a56421d7c90acdec45c291b30345eb9f08e8d0ddce5a4ab"
75
81
  dependencies = [
76
82
  "proc-macro2",
77
83
  "quote",
78
- "syn 2.0.102",
84
+ "syn 2.0.101",
79
85
  ]
80
86
 
81
87
  [[package]]
@@ -101,9 +107,9 @@ dependencies = [
101
107
 
102
108
  [[package]]
103
109
  name = "anstream"
104
- version = "0.6.19"
110
+ version = "0.6.18"
105
111
  source = "registry+https://github.com/rust-lang/crates.io-index"
106
- checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
112
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
107
113
  dependencies = [
108
114
  "anstyle",
109
115
  "anstyle-parse",
@@ -116,50 +122,50 @@ dependencies = [
116
122
 
117
123
  [[package]]
118
124
  name = "anstyle"
119
- version = "1.0.11"
125
+ version = "1.0.10"
120
126
  source = "registry+https://github.com/rust-lang/crates.io-index"
121
- checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
127
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
122
128
 
123
129
  [[package]]
124
130
  name = "anstyle-parse"
125
- version = "0.2.7"
131
+ version = "0.2.0"
126
132
  source = "registry+https://github.com/rust-lang/crates.io-index"
127
- checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
133
+ checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
128
134
  dependencies = [
129
135
  "utf8parse",
130
136
  ]
131
137
 
132
138
  [[package]]
133
139
  name = "anstyle-query"
134
- version = "1.1.3"
140
+ version = "1.0.0"
135
141
  source = "registry+https://github.com/rust-lang/crates.io-index"
136
- checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
142
+ checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
137
143
  dependencies = [
138
- "windows-sys 0.59.0",
144
+ "windows-sys 0.48.0",
139
145
  ]
140
146
 
141
147
  [[package]]
142
148
  name = "anstyle-wincon"
143
- version = "3.0.9"
149
+ version = "3.0.7"
144
150
  source = "registry+https://github.com/rust-lang/crates.io-index"
145
- checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
151
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
146
152
  dependencies = [
147
153
  "anstyle",
148
- "once_cell_polyfill",
154
+ "once_cell",
149
155
  "windows-sys 0.59.0",
150
156
  ]
151
157
 
152
158
  [[package]]
153
159
  name = "anyhow"
154
- version = "1.0.98"
160
+ version = "1.0.95"
155
161
  source = "registry+https://github.com/rust-lang/crates.io-index"
156
- checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
162
+ checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
157
163
 
158
164
  [[package]]
159
165
  name = "append-only-vec"
160
- version = "0.1.7"
166
+ version = "0.1.2"
161
167
  source = "registry+https://github.com/rust-lang/crates.io-index"
162
- checksum = "7992085ec035cfe96992dd31bfd495a2ebd31969bb95f624471cb6c0b349e571"
168
+ checksum = "5608767d94038891df4c7bb82f6b1beb55fe3d204735985e20de329bc35d5fee"
163
169
 
164
170
  [[package]]
165
171
  name = "argfile"
@@ -173,41 +179,44 @@ dependencies = [
173
179
 
174
180
  [[package]]
175
181
  name = "arrayref"
176
- version = "0.3.9"
182
+ version = "0.3.6"
177
183
  source = "registry+https://github.com/rust-lang/crates.io-index"
178
- checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
184
+ checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
179
185
 
180
186
  [[package]]
181
187
  name = "arrayvec"
182
- version = "0.7.6"
188
+ version = "0.7.4"
183
189
  source = "registry+https://github.com/rust-lang/crates.io-index"
184
- checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
190
+ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
185
191
 
186
192
  [[package]]
187
193
  name = "atomic"
188
- version = "0.5.3"
194
+ version = "0.5.1"
189
195
  source = "registry+https://github.com/rust-lang/crates.io-index"
190
- checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
196
+ checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
197
+ dependencies = [
198
+ "autocfg",
199
+ ]
191
200
 
192
201
  [[package]]
193
202
  name = "autocfg"
194
- version = "1.4.0"
203
+ version = "1.1.0"
195
204
  source = "registry+https://github.com/rust-lang/crates.io-index"
196
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
205
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
197
206
 
198
207
  [[package]]
199
208
  name = "backtrace"
200
- version = "0.3.75"
209
+ version = "0.3.67"
201
210
  source = "registry+https://github.com/rust-lang/crates.io-index"
202
- checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
211
+ checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
203
212
  dependencies = [
204
213
  "addr2line",
214
+ "cc",
205
215
  "cfg-if",
206
216
  "libc",
207
217
  "miniz_oxide",
208
218
  "object",
209
219
  "rustc-demangle",
210
- "windows-targets 0.52.6",
211
220
  ]
212
221
 
213
222
  [[package]]
@@ -224,9 +233,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
224
233
 
225
234
  [[package]]
226
235
  name = "bitflags"
227
- version = "2.9.1"
236
+ version = "2.9.0"
228
237
  source = "registry+https://github.com/rust-lang/crates.io-index"
229
- checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
238
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
230
239
 
231
240
  [[package]]
232
241
  name = "blake3"
@@ -246,9 +255,9 @@ dependencies = [
246
255
 
247
256
  [[package]]
248
257
  name = "block-buffer"
249
- version = "0.10.4"
258
+ version = "0.10.2"
250
259
  source = "registry+https://github.com/rust-lang/crates.io-index"
251
- checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
260
+ checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
252
261
  dependencies = [
253
262
  "generic-array",
254
263
  ]
@@ -266,9 +275,9 @@ dependencies = [
266
275
 
267
276
  [[package]]
268
277
  name = "bumpalo"
269
- version = "3.18.1"
278
+ version = "3.16.0"
270
279
  source = "registry+https://github.com/rust-lang/crates.io-index"
271
- checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
280
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
272
281
 
273
282
  [[package]]
274
283
  name = "byteorder"
@@ -296,9 +305,9 @@ dependencies = [
296
305
 
297
306
  [[package]]
298
307
  name = "cc"
299
- version = "1.2.26"
308
+ version = "1.2.10"
300
309
  source = "registry+https://github.com/rust-lang/crates.io-index"
301
- checksum = "956a5e21988b87f372569b66183b78babf23ebc2e744b733e4350a752c4dafac"
310
+ checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
302
311
  dependencies = [
303
312
  "jobserver",
304
313
  "libc",
@@ -307,27 +316,27 @@ dependencies = [
307
316
 
308
317
  [[package]]
309
318
  name = "cfg-if"
310
- version = "1.0.1"
319
+ version = "1.0.0"
311
320
  source = "registry+https://github.com/rust-lang/crates.io-index"
312
- checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
321
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
313
322
 
314
323
  [[package]]
315
324
  name = "chrono"
316
- version = "0.4.41"
325
+ version = "0.4.39"
317
326
  source = "registry+https://github.com/rust-lang/crates.io-index"
318
- checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
327
+ checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
319
328
  dependencies = [
320
329
  "android-tzdata",
321
330
  "iana-time-zone",
322
331
  "num-traits",
323
- "windows-link",
332
+ "windows-targets 0.52.6",
324
333
  ]
325
334
 
326
335
  [[package]]
327
336
  name = "clap"
328
- version = "4.5.40"
337
+ version = "4.5.38"
329
338
  source = "registry+https://github.com/rust-lang/crates.io-index"
330
- checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
339
+ checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000"
331
340
  dependencies = [
332
341
  "clap_builder",
333
342
  "clap_derive",
@@ -335,9 +344,9 @@ dependencies = [
335
344
 
336
345
  [[package]]
337
346
  name = "clap_builder"
338
- version = "4.5.40"
347
+ version = "4.5.38"
339
348
  source = "registry+https://github.com/rust-lang/crates.io-index"
340
- checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
349
+ checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120"
341
350
  dependencies = [
342
351
  "anstream",
343
352
  "anstyle",
@@ -345,44 +354,55 @@ dependencies = [
345
354
  "strsim 0.11.1",
346
355
  "terminal_size",
347
356
  "unicase",
348
- "unicode-width",
357
+ "unicode-width 0.2.0",
349
358
  ]
350
359
 
351
360
  [[package]]
352
361
  name = "clap_derive"
353
- version = "4.5.40"
362
+ version = "4.5.32"
354
363
  source = "registry+https://github.com/rust-lang/crates.io-index"
355
- checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce"
364
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
356
365
  dependencies = [
357
366
  "heck",
358
367
  "proc-macro2",
359
368
  "quote",
360
- "syn 2.0.102",
369
+ "syn 2.0.101",
361
370
  ]
362
371
 
363
372
  [[package]]
364
373
  name = "clap_lex"
365
- version = "0.7.5"
374
+ version = "0.7.4"
366
375
  source = "registry+https://github.com/rust-lang/crates.io-index"
367
- checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
376
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
377
+
378
+ [[package]]
379
+ name = "codespan-reporting"
380
+ version = "0.12.0"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
383
+ dependencies = [
384
+ "serde",
385
+ "termcolor",
386
+ "unicode-width 0.2.0",
387
+ ]
368
388
 
369
389
  [[package]]
370
390
  name = "colorchoice"
371
- version = "1.0.4"
391
+ version = "1.0.0"
372
392
  source = "registry+https://github.com/rust-lang/crates.io-index"
373
- checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
393
+ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
374
394
 
375
395
  [[package]]
376
396
  name = "compact_str"
377
- version = "0.8.1"
397
+ version = "0.8.0"
378
398
  source = "registry+https://github.com/rust-lang/crates.io-index"
379
- checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
399
+ checksum = "6050c3a16ddab2e412160b31f2c871015704239bca62f72f6e5f0be631d3f644"
380
400
  dependencies = [
381
401
  "castaway",
382
402
  "cfg-if",
383
- "itoa 1.0.15",
403
+ "itoa 1.0.14",
384
404
  "rustversion",
385
- "ryu 1.0.20",
405
+ "ryu 1.0.17",
386
406
  "static_assertions",
387
407
  ]
388
408
 
@@ -394,9 +414,9 @@ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
394
414
  dependencies = [
395
415
  "castaway",
396
416
  "cfg-if",
397
- "itoa 1.0.15",
417
+ "itoa 1.0.14",
398
418
  "rustversion",
399
- "ryu 1.0.20",
419
+ "ryu 1.0.17",
400
420
  "static_assertions",
401
421
  ]
402
422
 
@@ -411,15 +431,15 @@ dependencies = [
411
431
 
412
432
  [[package]]
413
433
  name = "console"
414
- version = "0.15.11"
434
+ version = "0.15.7"
415
435
  source = "registry+https://github.com/rust-lang/crates.io-index"
416
- checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
436
+ checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
417
437
  dependencies = [
418
438
  "encode_unicode",
439
+ "lazy_static",
419
440
  "libc",
420
- "once_cell",
421
- "unicode-width",
422
- "windows-sys 0.59.0",
441
+ "unicode-width 0.1.12",
442
+ "windows-sys 0.45.0",
423
443
  ]
424
444
 
425
445
  [[package]]
@@ -503,6 +523,60 @@ dependencies = [
503
523
  "syn 1.0.109",
504
524
  ]
505
525
 
526
+ [[package]]
527
+ name = "cxx"
528
+ version = "1.0.150"
529
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
530
+ dependencies = [
531
+ "cc",
532
+ "cxxbridge-cmd",
533
+ "cxxbridge-flags",
534
+ "cxxbridge-macro",
535
+ "foldhash",
536
+ "link-cplusplus",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "cxx-build"
541
+ version = "1.0.150"
542
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
543
+ dependencies = [
544
+ "cc",
545
+ "codespan-reporting",
546
+ "proc-macro2",
547
+ "quote",
548
+ "scratch",
549
+ "syn 2.0.101",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "cxxbridge-cmd"
554
+ version = "1.0.150"
555
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
556
+ dependencies = [
557
+ "clap",
558
+ "codespan-reporting",
559
+ "proc-macro2",
560
+ "quote",
561
+ "syn 2.0.101",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "cxxbridge-flags"
566
+ version = "1.0.150"
567
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
568
+
569
+ [[package]]
570
+ name = "cxxbridge-macro"
571
+ version = "1.0.150"
572
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
573
+ dependencies = [
574
+ "proc-macro2",
575
+ "quote",
576
+ "rustversion",
577
+ "syn 2.0.101",
578
+ ]
579
+
506
580
  [[package]]
507
581
  name = "darling"
508
582
  version = "0.13.4"
@@ -548,23 +622,23 @@ dependencies = [
548
622
  "hashbrown 0.14.5",
549
623
  "lock_api",
550
624
  "once_cell",
551
- "parking_lot_core 0.9.11",
625
+ "parking_lot_core 0.9.9",
552
626
  ]
553
627
 
554
628
  [[package]]
555
629
  name = "deranged"
556
- version = "0.4.0"
630
+ version = "0.4.1"
557
631
  source = "registry+https://github.com/rust-lang/crates.io-index"
558
- checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
632
+ checksum = "28cfac68e08048ae1883171632c2aef3ebc555621ae56fbccce1cbf22dd7f058"
559
633
  dependencies = [
560
634
  "powerfmt",
561
635
  ]
562
636
 
563
637
  [[package]]
564
638
  name = "diff"
565
- version = "0.1.13"
639
+ version = "0.1.12"
566
640
  source = "registry+https://github.com/rust-lang/crates.io-index"
567
- checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
641
+ checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
568
642
 
569
643
  [[package]]
570
644
  name = "digest"
@@ -580,12 +654,11 @@ dependencies = [
580
654
  [[package]]
581
655
  name = "displaydoc"
582
656
  version = "0.2.5"
583
- source = "registry+https://github.com/rust-lang/crates.io-index"
584
- checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
657
+ source = "git+https://github.com/yaahc/displaydoc?rev=7dc6e324b1788a6b7fb9f3a1953c512923a3e9f0#7dc6e324b1788a6b7fb9f3a1953c512923a3e9f0"
585
658
  dependencies = [
586
659
  "proc-macro2",
587
660
  "quote",
588
- "syn 2.0.102",
661
+ "syn 2.0.101",
589
662
  ]
590
663
 
591
664
  [[package]]
@@ -605,7 +678,7 @@ checksum = "83e195b4945e88836d826124af44fdcb262ec01ef94d44f14f4fb5103f19892a"
605
678
  dependencies = [
606
679
  "proc-macro2",
607
680
  "quote",
608
- "syn 2.0.102",
681
+ "syn 2.0.101",
609
682
  ]
610
683
 
611
684
  [[package]]
@@ -616,28 +689,28 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
616
689
 
617
690
  [[package]]
618
691
  name = "encode_unicode"
619
- version = "1.0.0"
692
+ version = "0.3.6"
620
693
  source = "registry+https://github.com/rust-lang/crates.io-index"
621
- checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
694
+ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
622
695
 
623
696
  [[package]]
624
697
  name = "enum-iterator"
625
- version = "1.5.0"
698
+ version = "1.4.1"
626
699
  source = "registry+https://github.com/rust-lang/crates.io-index"
627
- checksum = "9fd242f399be1da0a5354aa462d57b4ab2b4ee0683cc552f7c007d2d12d36e94"
700
+ checksum = "7add3873b5dd076766ee79c8e406ad1a472c385476b9e38849f8eec24f1be689"
628
701
  dependencies = [
629
702
  "enum-iterator-derive",
630
703
  ]
631
704
 
632
705
  [[package]]
633
706
  name = "enum-iterator-derive"
634
- version = "1.4.0"
707
+ version = "1.2.1"
635
708
  source = "registry+https://github.com/rust-lang/crates.io-index"
636
- checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
709
+ checksum = "eecf8589574ce9b895052fa12d69af7a233f99e6107f5cb8dd1044f2a17bfdcb"
637
710
  dependencies = [
638
711
  "proc-macro2",
639
712
  "quote",
640
- "syn 2.0.102",
713
+ "syn 2.0.101",
641
714
  ]
642
715
 
643
716
  [[package]]
@@ -652,15 +725,15 @@ dependencies = [
652
725
 
653
726
  [[package]]
654
727
  name = "equivalent"
655
- version = "1.0.2"
728
+ version = "1.0.0"
656
729
  source = "registry+https://github.com/rust-lang/crates.io-index"
657
- checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
730
+ checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1"
658
731
 
659
732
  [[package]]
660
733
  name = "errno"
661
- version = "0.3.12"
734
+ version = "0.3.10"
662
735
  source = "registry+https://github.com/rust-lang/crates.io-index"
663
- checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
736
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
664
737
  dependencies = [
665
738
  "libc",
666
739
  "windows-sys 0.59.0",
@@ -690,6 +763,12 @@ version = "1.0.7"
690
763
  source = "registry+https://github.com/rust-lang/crates.io-index"
691
764
  checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
692
765
 
766
+ [[package]]
767
+ name = "foldhash"
768
+ version = "0.1.4"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
771
+
693
772
  [[package]]
694
773
  name = "form_urlencoded"
695
774
  version = "1.2.1"
@@ -710,9 +789,9 @@ dependencies = [
710
789
 
711
790
  [[package]]
712
791
  name = "fsevent-sys"
713
- version = "4.1.0"
792
+ version = "4.0.0"
714
793
  source = "registry+https://github.com/rust-lang/crates.io-index"
715
- checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
794
+ checksum = "5c0e564d24da983c053beff1bb7178e237501206840a3e6bf4e267b9e8ae734a"
716
795
  dependencies = [
717
796
  "libc",
718
797
  ]
@@ -779,7 +858,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
779
858
  dependencies = [
780
859
  "proc-macro2",
781
860
  "quote",
782
- "syn 2.0.102",
861
+ "syn 2.0.101",
783
862
  ]
784
863
 
785
864
  [[package]]
@@ -834,11 +913,11 @@ dependencies = [
834
913
 
835
914
  [[package]]
836
915
  name = "getopts"
837
- version = "0.2.23"
916
+ version = "0.2.21"
838
917
  source = "registry+https://github.com/rust-lang/crates.io-index"
839
- checksum = "cba6ae63eb948698e300f645f87c70f76630d505f23b8907cf1e193ee85048c1"
918
+ checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
840
919
  dependencies = [
841
- "unicode-width",
920
+ "unicode-width 0.1.12",
842
921
  ]
843
922
 
844
923
  [[package]]
@@ -850,7 +929,7 @@ dependencies = [
850
929
  "cfg-if",
851
930
  "js-sys",
852
931
  "libc",
853
- "wasi 0.11.1+wasi-snapshot-preview1",
932
+ "wasi 0.11.0+wasi-snapshot-preview1",
854
933
  "wasm-bindgen",
855
934
  ]
856
935
 
@@ -868,9 +947,9 @@ dependencies = [
868
947
 
869
948
  [[package]]
870
949
  name = "gimli"
871
- version = "0.31.1"
950
+ version = "0.27.2"
872
951
  source = "registry+https://github.com/rust-lang/crates.io-index"
873
- checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
952
+ checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
874
953
 
875
954
  [[package]]
876
955
  name = "glob"
@@ -890,9 +969,9 @@ dependencies = [
890
969
 
891
970
  [[package]]
892
971
  name = "hashbrown"
893
- version = "0.15.4"
972
+ version = "0.15.2"
894
973
  source = "registry+https://github.com/rust-lang/crates.io-index"
895
- checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
974
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
896
975
 
897
976
  [[package]]
898
977
  name = "heck"
@@ -901,19 +980,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
901
980
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
902
981
 
903
982
  [[package]]
904
- name = "hex"
905
- version = "0.4.3"
983
+ name = "hermit-abi"
984
+ version = "0.3.9"
906
985
  source = "registry+https://github.com/rust-lang/crates.io-index"
907
- checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
986
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
908
987
 
909
988
  [[package]]
910
- name = "home"
911
- version = "0.5.11"
989
+ name = "hex"
990
+ version = "0.4.3"
912
991
  source = "registry+https://github.com/rust-lang/crates.io-index"
913
- checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
914
- dependencies = [
915
- "windows-sys 0.59.0",
916
- ]
992
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
917
993
 
918
994
  [[package]]
919
995
  name = "human_bytes"
@@ -923,46 +999,45 @@ checksum = "91f255a4535024abf7640cb288260811fc14794f62b063652ed349f9a6c2348e"
923
999
 
924
1000
  [[package]]
925
1001
  name = "iana-time-zone"
926
- version = "0.1.63"
1002
+ version = "0.1.53"
927
1003
  source = "registry+https://github.com/rust-lang/crates.io-index"
928
- checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
1004
+ checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
929
1005
  dependencies = [
930
1006
  "android_system_properties",
931
1007
  "core-foundation-sys",
932
1008
  "iana-time-zone-haiku",
933
1009
  "js-sys",
934
- "log",
935
1010
  "wasm-bindgen",
936
- "windows-core",
1011
+ "winapi",
937
1012
  ]
938
1013
 
939
1014
  [[package]]
940
1015
  name = "iana-time-zone-haiku"
941
- version = "0.1.2"
1016
+ version = "0.1.1"
942
1017
  source = "registry+https://github.com/rust-lang/crates.io-index"
943
- checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1018
+ checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
944
1019
  dependencies = [
945
- "cc",
1020
+ "cxx",
1021
+ "cxx-build",
946
1022
  ]
947
1023
 
948
1024
  [[package]]
949
1025
  name = "icu_collections"
950
- version = "2.0.0"
1026
+ version = "1.5.0"
951
1027
  source = "registry+https://github.com/rust-lang/crates.io-index"
952
- checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1028
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
953
1029
  dependencies = [
954
1030
  "displaydoc",
955
- "potential_utf",
956
1031
  "yoke",
957
1032
  "zerofrom",
958
1033
  "zerovec",
959
1034
  ]
960
1035
 
961
1036
  [[package]]
962
- name = "icu_locale_core"
963
- version = "2.0.0"
1037
+ name = "icu_locid"
1038
+ version = "1.5.0"
964
1039
  source = "registry+https://github.com/rust-lang/crates.io-index"
965
- checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1040
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
966
1041
  dependencies = [
967
1042
  "displaydoc",
968
1043
  "litemap",
@@ -971,11 +1046,31 @@ dependencies = [
971
1046
  "zerovec",
972
1047
  ]
973
1048
 
1049
+ [[package]]
1050
+ name = "icu_locid_transform"
1051
+ version = "1.5.0"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1054
+ dependencies = [
1055
+ "displaydoc",
1056
+ "icu_locid",
1057
+ "icu_locid_transform_data",
1058
+ "icu_provider",
1059
+ "tinystr",
1060
+ "zerovec",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "icu_locid_transform_data"
1065
+ version = "1.5.0"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1068
+
974
1069
  [[package]]
975
1070
  name = "icu_normalizer"
976
- version = "2.0.0"
1071
+ version = "1.5.0"
977
1072
  source = "registry+https://github.com/rust-lang/crates.io-index"
978
- checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1073
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
979
1074
  dependencies = [
980
1075
  "displaydoc",
981
1076
  "icu_collections",
@@ -983,54 +1078,67 @@ dependencies = [
983
1078
  "icu_properties",
984
1079
  "icu_provider",
985
1080
  "smallvec",
1081
+ "utf16_iter",
1082
+ "utf8_iter",
1083
+ "write16",
986
1084
  "zerovec",
987
1085
  ]
988
1086
 
989
1087
  [[package]]
990
1088
  name = "icu_normalizer_data"
991
- version = "2.0.0"
1089
+ version = "1.5.0"
992
1090
  source = "registry+https://github.com/rust-lang/crates.io-index"
993
- checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1091
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
994
1092
 
995
1093
  [[package]]
996
1094
  name = "icu_properties"
997
- version = "2.0.1"
1095
+ version = "1.5.1"
998
1096
  source = "registry+https://github.com/rust-lang/crates.io-index"
999
- checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1097
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1000
1098
  dependencies = [
1001
1099
  "displaydoc",
1002
1100
  "icu_collections",
1003
- "icu_locale_core",
1101
+ "icu_locid_transform",
1004
1102
  "icu_properties_data",
1005
1103
  "icu_provider",
1006
- "potential_utf",
1007
- "zerotrie",
1104
+ "tinystr",
1008
1105
  "zerovec",
1009
1106
  ]
1010
1107
 
1011
1108
  [[package]]
1012
1109
  name = "icu_properties_data"
1013
- version = "2.0.1"
1110
+ version = "1.5.0"
1014
1111
  source = "registry+https://github.com/rust-lang/crates.io-index"
1015
- checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1112
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1016
1113
 
1017
1114
  [[package]]
1018
1115
  name = "icu_provider"
1019
- version = "2.0.0"
1116
+ version = "1.5.0"
1020
1117
  source = "registry+https://github.com/rust-lang/crates.io-index"
1021
- checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1118
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1022
1119
  dependencies = [
1023
1120
  "displaydoc",
1024
- "icu_locale_core",
1121
+ "icu_locid",
1122
+ "icu_provider_macros",
1025
1123
  "stable_deref_trait",
1026
1124
  "tinystr",
1027
1125
  "writeable",
1028
1126
  "yoke",
1029
1127
  "zerofrom",
1030
- "zerotrie",
1031
1128
  "zerovec",
1032
1129
  ]
1033
1130
 
1131
+ [[package]]
1132
+ name = "icu_provider_macros"
1133
+ version = "1.5.0"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1136
+ dependencies = [
1137
+ "proc-macro2",
1138
+ "quote",
1139
+ "syn 2.0.101",
1140
+ ]
1141
+
1034
1142
  [[package]]
1035
1143
  name = "ident_case"
1036
1144
  version = "1.0.1"
@@ -1050,9 +1158,9 @@ dependencies = [
1050
1158
 
1051
1159
  [[package]]
1052
1160
  name = "idna_adapter"
1053
- version = "1.2.1"
1161
+ version = "1.2.0"
1054
1162
  source = "registry+https://github.com/rust-lang/crates.io-index"
1055
- checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1163
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1056
1164
  dependencies = [
1057
1165
  "icu_normalizer",
1058
1166
  "icu_properties",
@@ -1065,14 +1173,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
1173
  checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1066
1174
  dependencies = [
1067
1175
  "equivalent",
1068
- "hashbrown 0.15.4",
1176
+ "hashbrown 0.15.2",
1069
1177
  ]
1070
1178
 
1071
1179
  [[package]]
1072
1180
  name = "indicatif"
1073
- version = "0.17.11"
1181
+ version = "0.17.9"
1074
1182
  source = "registry+https://github.com/rust-lang/crates.io-index"
1075
- checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1183
+ checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281"
1076
1184
  dependencies = [
1077
1185
  "console",
1078
1186
  "futures-core",
@@ -1081,15 +1189,15 @@ dependencies = [
1081
1189
  "rayon",
1082
1190
  "tokio",
1083
1191
  "unicode-segmentation",
1084
- "unicode-width",
1192
+ "unicode-width 0.2.0",
1085
1193
  "web-time",
1086
1194
  ]
1087
1195
 
1088
1196
  [[package]]
1089
1197
  name = "inotify"
1090
- version = "0.9.6"
1198
+ version = "0.9.2"
1091
1199
  source = "registry+https://github.com/rust-lang/crates.io-index"
1092
- checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
1200
+ checksum = "d19f57db1baad9d09e43a3cd76dcf82ebdafd37d75c9498b87762dba77c93f15"
1093
1201
  dependencies = [
1094
1202
  "bitflags 1.3.2",
1095
1203
  "inotify-sys",
@@ -1098,32 +1206,32 @@ dependencies = [
1098
1206
 
1099
1207
  [[package]]
1100
1208
  name = "inotify-sys"
1101
- version = "0.1.5"
1209
+ version = "0.1.3"
1102
1210
  source = "registry+https://github.com/rust-lang/crates.io-index"
1103
- checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1211
+ checksum = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0"
1104
1212
  dependencies = [
1105
1213
  "libc",
1106
1214
  ]
1107
1215
 
1108
1216
  [[package]]
1109
1217
  name = "instant"
1110
- version = "0.1.13"
1218
+ version = "0.1.12"
1111
1219
  source = "registry+https://github.com/rust-lang/crates.io-index"
1112
- checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1220
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1113
1221
  dependencies = [
1114
1222
  "cfg-if",
1115
1223
  ]
1116
1224
 
1117
1225
  [[package]]
1118
1226
  name = "is-macro"
1119
- version = "0.3.7"
1227
+ version = "0.3.6"
1120
1228
  source = "registry+https://github.com/rust-lang/crates.io-index"
1121
- checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
1229
+ checksum = "2069faacbe981460232f880d26bf3c7634e322d49053aa48c27e3ae642f728f1"
1122
1230
  dependencies = [
1123
- "heck",
1231
+ "Inflector",
1124
1232
  "proc-macro2",
1125
1233
  "quote",
1126
- "syn 2.0.102",
1234
+ "syn 2.0.101",
1127
1235
  ]
1128
1236
 
1129
1237
  [[package]]
@@ -1167,17 +1275,16 @@ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1167
1275
 
1168
1276
  [[package]]
1169
1277
  name = "itoa"
1170
- version = "1.0.15"
1278
+ version = "1.0.14"
1171
1279
  source = "registry+https://github.com/rust-lang/crates.io-index"
1172
- checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1280
+ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1173
1281
 
1174
1282
  [[package]]
1175
1283
  name = "jobserver"
1176
- version = "0.1.33"
1284
+ version = "0.1.32"
1177
1285
  source = "registry+https://github.com/rust-lang/crates.io-index"
1178
- checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1286
+ checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1179
1287
  dependencies = [
1180
- "getrandom 0.3.3",
1181
1288
  "libc",
1182
1289
  ]
1183
1290
 
@@ -1193,9 +1300,9 @@ dependencies = [
1193
1300
 
1194
1301
  [[package]]
1195
1302
  name = "kqueue"
1196
- version = "1.1.1"
1303
+ version = "1.0.4"
1197
1304
  source = "registry+https://github.com/rust-lang/crates.io-index"
1198
- checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
1305
+ checksum = "058a107a784f8be94c7d35c1300f4facced2e93d2fbe5b1452b44e905ddca4a9"
1199
1306
  dependencies = [
1200
1307
  "kqueue-sys",
1201
1308
  "libc",
@@ -1203,9 +1310,9 @@ dependencies = [
1203
1310
 
1204
1311
  [[package]]
1205
1312
  name = "kqueue-sys"
1206
- version = "1.0.4"
1313
+ version = "1.0.3"
1207
1314
  source = "registry+https://github.com/rust-lang/crates.io-index"
1208
- checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
1315
+ checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587"
1209
1316
  dependencies = [
1210
1317
  "bitflags 1.3.2",
1211
1318
  "libc",
@@ -1229,16 +1336,19 @@ version = "0.1.3"
1229
1336
  source = "registry+https://github.com/rust-lang/crates.io-index"
1230
1337
  checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1231
1338
  dependencies = [
1232
- "bitflags 2.9.1",
1339
+ "bitflags 2.9.0",
1233
1340
  "libc",
1234
- "redox_syscall 0.5.13",
1341
+ "redox_syscall 0.5.6",
1235
1342
  ]
1236
1343
 
1237
1344
  [[package]]
1238
- name = "linux-raw-sys"
1239
- version = "0.4.15"
1345
+ name = "link-cplusplus"
1346
+ version = "1.0.9"
1240
1347
  source = "registry+https://github.com/rust-lang/crates.io-index"
1241
- checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1348
+ checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9"
1349
+ dependencies = [
1350
+ "cc",
1351
+ ]
1242
1352
 
1243
1353
  [[package]]
1244
1354
  name = "linux-raw-sys"
@@ -1248,15 +1358,15 @@ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1248
1358
 
1249
1359
  [[package]]
1250
1360
  name = "litemap"
1251
- version = "0.8.0"
1361
+ version = "0.7.3"
1252
1362
  source = "registry+https://github.com/rust-lang/crates.io-index"
1253
- checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1363
+ checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704"
1254
1364
 
1255
1365
  [[package]]
1256
1366
  name = "lock_api"
1257
- version = "0.4.13"
1367
+ version = "0.4.12"
1258
1368
  source = "registry+https://github.com/rust-lang/crates.io-index"
1259
- checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1369
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1260
1370
  dependencies = [
1261
1371
  "autocfg",
1262
1372
  "scopeguard",
@@ -1270,7 +1380,7 @@ checksum = "fc989b5e3e04411250b5d1ce0d880e5de77b36703f3012d56acb43e6ff07f31b"
1270
1380
  dependencies = [
1271
1381
  "allocative",
1272
1382
  "atomic",
1273
- "parking_lot 0.12.4",
1383
+ "parking_lot 0.12.3",
1274
1384
  ]
1275
1385
 
1276
1386
  [[package]]
@@ -1281,14 +1391,13 @@ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1281
1391
 
1282
1392
  [[package]]
1283
1393
  name = "lsp-server"
1284
- version = "0.7.8"
1394
+ version = "0.7.2"
1285
1395
  source = "registry+https://github.com/rust-lang/crates.io-index"
1286
- checksum = "9462c4dc73e17f971ec1f171d44bfffb72e65a130117233388a0ebc7ec5656f9"
1396
+ checksum = "37ea9ae5a5082ca3b6ae824fc7666cd206b99168a4d4c769ad8fe9cc740df6a6"
1287
1397
  dependencies = [
1288
1398
  "crossbeam-channel",
1289
1399
  "log",
1290
1400
  "serde",
1291
- "serde_derive",
1292
1401
  "serde_json",
1293
1402
  ]
1294
1403
 
@@ -1317,14 +1426,14 @@ version = "0.1.0"
1317
1426
  source = "registry+https://github.com/rust-lang/crates.io-index"
1318
1427
  checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1319
1428
  dependencies = [
1320
- "regex-automata 0.1.10",
1429
+ "regex-automata 0.1.9",
1321
1430
  ]
1322
1431
 
1323
1432
  [[package]]
1324
1433
  name = "memchr"
1325
- version = "2.7.5"
1434
+ version = "2.7.4"
1326
1435
  source = "registry+https://github.com/rust-lang/crates.io-index"
1327
- checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1436
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1328
1437
 
1329
1438
  [[package]]
1330
1439
  name = "memmap2"
@@ -1347,11 +1456,11 @@ dependencies = [
1347
1456
 
1348
1457
  [[package]]
1349
1458
  name = "miniz_oxide"
1350
- version = "0.8.9"
1459
+ version = "0.6.2"
1351
1460
  source = "registry+https://github.com/rust-lang/crates.io-index"
1352
- checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1461
+ checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
1353
1462
  dependencies = [
1354
- "adler2",
1463
+ "adler",
1355
1464
  ]
1356
1465
 
1357
1466
  [[package]]
@@ -1362,26 +1471,27 @@ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1362
1471
  dependencies = [
1363
1472
  "libc",
1364
1473
  "log",
1365
- "wasi 0.11.1+wasi-snapshot-preview1",
1474
+ "wasi 0.11.0+wasi-snapshot-preview1",
1366
1475
  "windows-sys 0.48.0",
1367
1476
  ]
1368
1477
 
1369
1478
  [[package]]
1370
1479
  name = "mio"
1371
- version = "1.0.4"
1480
+ version = "1.0.2"
1372
1481
  source = "registry+https://github.com/rust-lang/crates.io-index"
1373
- checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1482
+ checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
1374
1483
  dependencies = [
1484
+ "hermit-abi",
1375
1485
  "libc",
1376
- "wasi 0.11.1+wasi-snapshot-preview1",
1377
- "windows-sys 0.59.0",
1486
+ "wasi 0.11.0+wasi-snapshot-preview1",
1487
+ "windows-sys 0.52.0",
1378
1488
  ]
1379
1489
 
1380
1490
  [[package]]
1381
1491
  name = "notify"
1382
- version = "5.2.0"
1492
+ version = "5.0.0"
1383
1493
  source = "registry+https://github.com/rust-lang/crates.io-index"
1384
- checksum = "729f63e1ca555a43fe3efa4f3efdf4801c479da85b432242a7b726f353c88486"
1494
+ checksum = "ed2c66da08abae1c024c01d635253e402341b4060a12e99b31c7594063bf490a"
1385
1495
  dependencies = [
1386
1496
  "bitflags 1.3.2",
1387
1497
  "crossbeam-channel",
@@ -1392,7 +1502,7 @@ dependencies = [
1392
1502
  "libc",
1393
1503
  "mio 0.8.11",
1394
1504
  "walkdir",
1395
- "windows-sys 0.45.0",
1505
+ "winapi",
1396
1506
  ]
1397
1507
 
1398
1508
  [[package]]
@@ -1442,9 +1552,9 @@ dependencies = [
1442
1552
 
1443
1553
  [[package]]
1444
1554
  name = "num_threads"
1445
- version = "0.1.7"
1555
+ version = "0.1.3"
1446
1556
  source = "registry+https://github.com/rust-lang/crates.io-index"
1447
- checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
1557
+ checksum = "97ba99ba6393e2c3734791401b66902d981cb03bf190af674ca69949b6d5fb15"
1448
1558
  dependencies = [
1449
1559
  "libc",
1450
1560
  ]
@@ -1457,9 +1567,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1457
1567
 
1458
1568
  [[package]]
1459
1569
  name = "object"
1460
- version = "0.36.7"
1570
+ version = "0.30.4"
1461
1571
  source = "registry+https://github.com/rust-lang/crates.io-index"
1462
- checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1572
+ checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385"
1463
1573
  dependencies = [
1464
1574
  "memchr",
1465
1575
  ]
@@ -1470,17 +1580,11 @@ version = "1.21.3"
1470
1580
  source = "registry+https://github.com/rust-lang/crates.io-index"
1471
1581
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1472
1582
 
1473
- [[package]]
1474
- name = "once_cell_polyfill"
1475
- version = "1.70.1"
1476
- source = "registry+https://github.com/rust-lang/crates.io-index"
1477
- checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1478
-
1479
1583
  [[package]]
1480
1584
  name = "os_str_bytes"
1481
- version = "6.6.1"
1585
+ version = "6.6.0"
1482
1586
  source = "registry+https://github.com/rust-lang/crates.io-index"
1483
- checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1"
1587
+ checksum = "5b7ebac344522a099ad6b4ec72b21e428bdcd5ee390b277bd858a464fbca5ac8"
1484
1588
  dependencies = [
1485
1589
  "memchr",
1486
1590
  ]
@@ -1499,44 +1603,44 @@ checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
1499
1603
  dependencies = [
1500
1604
  "instant",
1501
1605
  "lock_api",
1502
- "parking_lot_core 0.8.6",
1606
+ "parking_lot_core 0.8.5",
1503
1607
  ]
1504
1608
 
1505
1609
  [[package]]
1506
1610
  name = "parking_lot"
1507
- version = "0.12.4"
1611
+ version = "0.12.3"
1508
1612
  source = "registry+https://github.com/rust-lang/crates.io-index"
1509
- checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1613
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1510
1614
  dependencies = [
1511
1615
  "lock_api",
1512
- "parking_lot_core 0.9.11",
1616
+ "parking_lot_core 0.9.9",
1513
1617
  ]
1514
1618
 
1515
1619
  [[package]]
1516
1620
  name = "parking_lot_core"
1517
- version = "0.8.6"
1621
+ version = "0.8.5"
1518
1622
  source = "registry+https://github.com/rust-lang/crates.io-index"
1519
- checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
1623
+ checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
1520
1624
  dependencies = [
1521
1625
  "cfg-if",
1522
1626
  "instant",
1523
1627
  "libc",
1524
- "redox_syscall 0.2.16",
1628
+ "redox_syscall 0.2.10",
1525
1629
  "smallvec",
1526
1630
  "winapi",
1527
1631
  ]
1528
1632
 
1529
1633
  [[package]]
1530
1634
  name = "parking_lot_core"
1531
- version = "0.9.11"
1635
+ version = "0.9.9"
1532
1636
  source = "registry+https://github.com/rust-lang/crates.io-index"
1533
- checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1637
+ checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
1534
1638
  dependencies = [
1535
1639
  "cfg-if",
1536
1640
  "libc",
1537
- "redox_syscall 0.5.13",
1641
+ "redox_syscall 0.4.1",
1538
1642
  "smallvec",
1539
- "windows-targets 0.52.6",
1643
+ "windows-targets 0.48.5",
1540
1644
  ]
1541
1645
 
1542
1646
  [[package]]
@@ -1562,7 +1666,7 @@ dependencies = [
1562
1666
  "regex",
1563
1667
  "regex-syntax 0.7.5",
1564
1668
  "structmeta",
1565
- "syn 2.0.102",
1669
+ "syn 2.0.101",
1566
1670
  ]
1567
1671
 
1568
1672
  [[package]]
@@ -1573,18 +1677,18 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1573
1677
 
1574
1678
  [[package]]
1575
1679
  name = "path-absolutize"
1576
- version = "3.1.1"
1680
+ version = "3.1.0"
1577
1681
  source = "registry+https://github.com/rust-lang/crates.io-index"
1578
- checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5"
1682
+ checksum = "43eb3595c63a214e1b37b44f44b0a84900ef7ae0b4c5efce59e123d246d7a0de"
1579
1683
  dependencies = [
1580
1684
  "path-dedot",
1581
1685
  ]
1582
1686
 
1583
1687
  [[package]]
1584
1688
  name = "path-dedot"
1585
- version = "3.1.1"
1689
+ version = "3.1.0"
1586
1690
  source = "registry+https://github.com/rust-lang/crates.io-index"
1587
- checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397"
1691
+ checksum = "9d55e486337acb9973cdea3ec5638c1b3bcb22e573b2b7b41969e0c744d5a15e"
1588
1692
  dependencies = [
1589
1693
  "once_cell",
1590
1694
  ]
@@ -1606,9 +1710,9 @@ dependencies = [
1606
1710
 
1607
1711
  [[package]]
1608
1712
  name = "phf_codegen"
1609
- version = "0.11.3"
1713
+ version = "0.11.2"
1610
1714
  source = "registry+https://github.com/rust-lang/crates.io-index"
1611
- checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1715
+ checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
1612
1716
  dependencies = [
1613
1717
  "phf_generator",
1614
1718
  "phf_shared",
@@ -1616,9 +1720,9 @@ dependencies = [
1616
1720
 
1617
1721
  [[package]]
1618
1722
  name = "phf_generator"
1619
- version = "0.11.3"
1723
+ version = "0.11.1"
1620
1724
  source = "registry+https://github.com/rust-lang/crates.io-index"
1621
- checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1725
+ checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
1622
1726
  dependencies = [
1623
1727
  "phf_shared",
1624
1728
  "rand",
@@ -1635,9 +1739,9 @@ dependencies = [
1635
1739
 
1636
1740
  [[package]]
1637
1741
  name = "pin-project-lite"
1638
- version = "0.2.16"
1742
+ version = "0.2.15"
1639
1743
  source = "registry+https://github.com/rust-lang/crates.io-index"
1640
- checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1744
+ checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
1641
1745
 
1642
1746
  [[package]]
1643
1747
  name = "pin-utils"
@@ -1647,24 +1751,15 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1647
1751
 
1648
1752
  [[package]]
1649
1753
  name = "pkg-config"
1650
- version = "0.3.32"
1754
+ version = "0.3.30"
1651
1755
  source = "registry+https://github.com/rust-lang/crates.io-index"
1652
- checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1756
+ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
1653
1757
 
1654
1758
  [[package]]
1655
1759
  name = "portable-atomic"
1656
- version = "1.11.1"
1760
+ version = "1.11.0"
1657
1761
  source = "registry+https://github.com/rust-lang/crates.io-index"
1658
- checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1659
-
1660
- [[package]]
1661
- name = "potential_utf"
1662
- version = "0.1.2"
1663
- source = "registry+https://github.com/rust-lang/crates.io-index"
1664
- checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
1665
- dependencies = [
1666
- "zerovec",
1667
- ]
1762
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
1668
1763
 
1669
1764
  [[package]]
1670
1765
  name = "powerfmt"
@@ -1678,17 +1773,17 @@ version = "0.2.21"
1678
1773
  source = "registry+https://github.com/rust-lang/crates.io-index"
1679
1774
  checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1680
1775
  dependencies = [
1681
- "zerocopy",
1776
+ "zerocopy 0.8.25",
1682
1777
  ]
1683
1778
 
1684
1779
  [[package]]
1685
1780
  name = "pretty_assertions"
1686
- version = "1.4.1"
1781
+ version = "1.4.0"
1687
1782
  source = "registry+https://github.com/rust-lang/crates.io-index"
1688
- checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
1783
+ checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
1689
1784
  dependencies = [
1690
1785
  "diff",
1691
- "yansi",
1786
+ "yansi 0.5.1",
1692
1787
  ]
1693
1788
 
1694
1789
  [[package]]
@@ -1732,9 +1827,21 @@ dependencies = [
1732
1827
  "prost",
1733
1828
  ]
1734
1829
 
1830
+ [[package]]
1831
+ name = "pulldown-cmark"
1832
+ version = "0.9.1"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "34f197a544b0c9ab3ae46c359a7ec9cbbb5c7bf97054266fecb7ead794a181d6"
1835
+ dependencies = [
1836
+ "bitflags 1.3.2",
1837
+ "getopts",
1838
+ "memchr",
1839
+ "unicase",
1840
+ ]
1841
+
1735
1842
  [[package]]
1736
1843
  name = "pyrefly"
1737
- version = "0.19.1"
1844
+ version = "0.19.2"
1738
1845
  dependencies = [
1739
1846
  "anstream",
1740
1847
  "anyhow",
@@ -1758,6 +1865,7 @@ dependencies = [
1758
1865
  "paste",
1759
1866
  "path-absolutize",
1760
1867
  "pretty_assertions",
1868
+ "pulldown-cmark",
1761
1869
  "pyrefly_derive",
1762
1870
  "pyrefly_util",
1763
1871
  "regex",
@@ -1785,22 +1893,22 @@ dependencies = [
1785
1893
  "vec1",
1786
1894
  "walkdir",
1787
1895
  "which",
1788
- "yansi",
1896
+ "yansi 1.0.1",
1789
1897
  "zstd",
1790
1898
  ]
1791
1899
 
1792
1900
  [[package]]
1793
1901
  name = "pyrefly_derive"
1794
- version = "0.0.0"
1902
+ version = "0.19.2"
1795
1903
  dependencies = [
1796
1904
  "proc-macro2",
1797
1905
  "quote",
1798
- "syn 2.0.102",
1906
+ "syn 2.0.101",
1799
1907
  ]
1800
1908
 
1801
1909
  [[package]]
1802
1910
  name = "pyrefly_util"
1803
- version = "0.19.1"
1911
+ version = "0.19.2"
1804
1912
  dependencies = [
1805
1913
  "anstream",
1806
1914
  "anyhow",
@@ -1849,8 +1957,7 @@ dependencies = [
1849
1957
  [[package]]
1850
1958
  name = "quickcheck"
1851
1959
  version = "1.0.3"
1852
- source = "registry+https://github.com/rust-lang/crates.io-index"
1853
- checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
1960
+ source = "git+https://github.com/jakoschiko/quickcheck?rev=6ecdf5bb4b0132ce66670b4d46453aa022ea892c#6ecdf5bb4b0132ce66670b4d46453aa022ea892c"
1854
1961
  dependencies = [
1855
1962
  "env_logger",
1856
1963
  "log",
@@ -1924,20 +2031,29 @@ dependencies = [
1924
2031
 
1925
2032
  [[package]]
1926
2033
  name = "redox_syscall"
1927
- version = "0.2.16"
2034
+ version = "0.2.10"
1928
2035
  source = "registry+https://github.com/rust-lang/crates.io-index"
1929
- checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2036
+ checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
1930
2037
  dependencies = [
1931
2038
  "bitflags 1.3.2",
1932
2039
  ]
1933
2040
 
1934
2041
  [[package]]
1935
2042
  name = "redox_syscall"
1936
- version = "0.5.13"
2043
+ version = "0.4.1"
1937
2044
  source = "registry+https://github.com/rust-lang/crates.io-index"
1938
- checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
2045
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
1939
2046
  dependencies = [
1940
- "bitflags 2.9.1",
2047
+ "bitflags 1.3.2",
2048
+ ]
2049
+
2050
+ [[package]]
2051
+ name = "redox_syscall"
2052
+ version = "0.5.6"
2053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2054
+ checksum = "355ae415ccd3a04315d3f8246e86d67689ea74d88d915576e1589a351062a13b"
2055
+ dependencies = [
2056
+ "bitflags 2.9.0",
1941
2057
  ]
1942
2058
 
1943
2059
  [[package]]
@@ -1954,11 +2070,12 @@ dependencies = [
1954
2070
 
1955
2071
  [[package]]
1956
2072
  name = "regex-automata"
1957
- version = "0.1.10"
2073
+ version = "0.1.9"
1958
2074
  source = "registry+https://github.com/rust-lang/crates.io-index"
1959
- checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2075
+ checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4"
1960
2076
  dependencies = [
1961
- "regex-syntax 0.6.29",
2077
+ "byteorder",
2078
+ "regex-syntax 0.6.27",
1962
2079
  ]
1963
2080
 
1964
2081
  [[package]]
@@ -1974,9 +2091,9 @@ dependencies = [
1974
2091
 
1975
2092
  [[package]]
1976
2093
  name = "regex-syntax"
1977
- version = "0.6.29"
2094
+ version = "0.6.27"
1978
2095
  source = "registry+https://github.com/rust-lang/crates.io-index"
1979
- checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2096
+ checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
1980
2097
 
1981
2098
  [[package]]
1982
2099
  name = "regex-syntax"
@@ -2003,7 +2120,7 @@ source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c37
2003
2120
  dependencies = [
2004
2121
  "anstyle",
2005
2122
  "memchr",
2006
- "unicode-width",
2123
+ "unicode-width 0.2.0",
2007
2124
  ]
2008
2125
 
2009
2126
  [[package]]
@@ -2012,7 +2129,7 @@ version = "0.0.0"
2012
2129
  source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c372b3effba90032#6e785867c3a97691972e8a49c372b3effba90032"
2013
2130
  dependencies = [
2014
2131
  "aho-corasick",
2015
- "bitflags 2.9.1",
2132
+ "bitflags 2.9.0",
2016
2133
  "compact_str 0.9.0",
2017
2134
  "is-macro",
2018
2135
  "itertools 0.14.0",
@@ -2028,7 +2145,7 @@ name = "ruff_python_parser"
2028
2145
  version = "0.0.0"
2029
2146
  source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c372b3effba90032#6e785867c3a97691972e8a49c372b3effba90032"
2030
2147
  dependencies = [
2031
- "bitflags 2.9.1",
2148
+ "bitflags 2.9.0",
2032
2149
  "bstr",
2033
2150
  "compact_str 0.9.0",
2034
2151
  "memchr",
@@ -2069,9 +2186,9 @@ source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c37
2069
2186
 
2070
2187
  [[package]]
2071
2188
  name = "rustc-demangle"
2072
- version = "0.1.25"
2189
+ version = "0.1.21"
2073
2190
  source = "registry+https://github.com/rust-lang/crates.io-index"
2074
- checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
2191
+ checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2075
2192
 
2076
2193
  [[package]]
2077
2194
  name = "rustc-hash"
@@ -2079,37 +2196,24 @@ version = "2.1.1"
2079
2196
  source = "registry+https://github.com/rust-lang/crates.io-index"
2080
2197
  checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2081
2198
 
2082
- [[package]]
2083
- name = "rustix"
2084
- version = "0.38.44"
2085
- source = "registry+https://github.com/rust-lang/crates.io-index"
2086
- checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2087
- dependencies = [
2088
- "bitflags 2.9.1",
2089
- "errno",
2090
- "libc",
2091
- "linux-raw-sys 0.4.15",
2092
- "windows-sys 0.59.0",
2093
- ]
2094
-
2095
2199
  [[package]]
2096
2200
  name = "rustix"
2097
2201
  version = "1.0.7"
2098
2202
  source = "registry+https://github.com/rust-lang/crates.io-index"
2099
2203
  checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
2100
2204
  dependencies = [
2101
- "bitflags 2.9.1",
2205
+ "bitflags 2.9.0",
2102
2206
  "errno",
2103
2207
  "libc",
2104
- "linux-raw-sys 0.9.4",
2208
+ "linux-raw-sys",
2105
2209
  "windows-sys 0.59.0",
2106
2210
  ]
2107
2211
 
2108
2212
  [[package]]
2109
2213
  name = "rustversion"
2110
- version = "1.0.21"
2214
+ version = "1.0.14"
2111
2215
  source = "registry+https://github.com/rust-lang/crates.io-index"
2112
- checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
2216
+ checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2113
2217
 
2114
2218
  [[package]]
2115
2219
  name = "ryu"
@@ -2119,9 +2223,9 @@ checksum = "b96a9549dc8d48f2c283938303c4b5a77aa29bfbc5b54b084fb1630408899a8f"
2119
2223
 
2120
2224
  [[package]]
2121
2225
  name = "ryu"
2122
- version = "1.0.20"
2226
+ version = "1.0.17"
2123
2227
  source = "registry+https://github.com/rust-lang/crates.io-index"
2124
- checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2228
+ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
2125
2229
 
2126
2230
  [[package]]
2127
2231
  name = "same-file"
@@ -2138,11 +2242,17 @@ version = "1.2.0"
2138
2242
  source = "registry+https://github.com/rust-lang/crates.io-index"
2139
2243
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2140
2244
 
2245
+ [[package]]
2246
+ name = "scratch"
2247
+ version = "1.0.6"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "764cad9e7e1ca5fe15b552859ff5d96a314e6ed2934f2260168cd5dfa5891409"
2250
+
2141
2251
  [[package]]
2142
2252
  name = "serde"
2143
- version = "1.0.219"
2253
+ version = "1.0.217"
2144
2254
  source = "registry+https://github.com/rust-lang/crates.io-index"
2145
- checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2255
+ checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
2146
2256
  dependencies = [
2147
2257
  "serde_derive",
2148
2258
  ]
@@ -2183,13 +2293,13 @@ dependencies = [
2183
2293
 
2184
2294
  [[package]]
2185
2295
  name = "serde_derive"
2186
- version = "1.0.219"
2296
+ version = "1.0.217"
2187
2297
  source = "registry+https://github.com/rust-lang/crates.io-index"
2188
- checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2298
+ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
2189
2299
  dependencies = [
2190
2300
  "proc-macro2",
2191
2301
  "quote",
2192
- "syn 2.0.102",
2302
+ "syn 2.0.101",
2193
2303
  ]
2194
2304
 
2195
2305
  [[package]]
@@ -2198,9 +2308,9 @@ version = "1.0.140"
2198
2308
  source = "registry+https://github.com/rust-lang/crates.io-index"
2199
2309
  checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
2200
2310
  dependencies = [
2201
- "itoa 1.0.15",
2311
+ "itoa 1.0.14",
2202
2312
  "memchr",
2203
- "ryu 1.0.20",
2313
+ "ryu 1.0.17",
2204
2314
  "serde",
2205
2315
  ]
2206
2316
 
@@ -2217,20 +2327,20 @@ dependencies = [
2217
2327
 
2218
2328
  [[package]]
2219
2329
  name = "serde_repr"
2220
- version = "0.1.20"
2330
+ version = "0.1.19"
2221
2331
  source = "registry+https://github.com/rust-lang/crates.io-index"
2222
- checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
2332
+ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
2223
2333
  dependencies = [
2224
2334
  "proc-macro2",
2225
2335
  "quote",
2226
- "syn 2.0.102",
2336
+ "syn 2.0.101",
2227
2337
  ]
2228
2338
 
2229
2339
  [[package]]
2230
2340
  name = "serde_spanned"
2231
- version = "0.6.9"
2341
+ version = "0.6.8"
2232
2342
  source = "registry+https://github.com/rust-lang/crates.io-index"
2233
- checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2343
+ checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
2234
2344
  dependencies = [
2235
2345
  "serde",
2236
2346
  ]
@@ -2261,9 +2371,9 @@ dependencies = [
2261
2371
 
2262
2372
  [[package]]
2263
2373
  name = "sharded-slab"
2264
- version = "0.1.7"
2374
+ version = "0.1.4"
2265
2375
  source = "registry+https://github.com/rust-lang/crates.io-index"
2266
- checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2376
+ checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
2267
2377
  dependencies = [
2268
2378
  "lazy_static",
2269
2379
  ]
@@ -2300,15 +2410,15 @@ dependencies = [
2300
2410
 
2301
2411
  [[package]]
2302
2412
  name = "smallvec"
2303
- version = "1.15.1"
2413
+ version = "1.15.0"
2304
2414
  source = "registry+https://github.com/rust-lang/crates.io-index"
2305
- checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2415
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2306
2416
 
2307
2417
  [[package]]
2308
2418
  name = "socket2"
2309
- version = "0.5.10"
2419
+ version = "0.5.8"
2310
2420
  source = "registry+https://github.com/rust-lang/crates.io-index"
2311
- checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2421
+ checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
2312
2422
  dependencies = [
2313
2423
  "libc",
2314
2424
  "windows-sys 0.52.0",
@@ -2383,7 +2493,7 @@ dependencies = [
2383
2493
  "proc-macro2",
2384
2494
  "quote",
2385
2495
  "structmeta-derive",
2386
- "syn 2.0.102",
2496
+ "syn 2.0.101",
2387
2497
  ]
2388
2498
 
2389
2499
  [[package]]
@@ -2394,7 +2504,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
2394
2504
  dependencies = [
2395
2505
  "proc-macro2",
2396
2506
  "quote",
2397
- "syn 2.0.102",
2507
+ "syn 2.0.101",
2398
2508
  ]
2399
2509
 
2400
2510
  [[package]]
@@ -2416,9 +2526,9 @@ dependencies = [
2416
2526
 
2417
2527
  [[package]]
2418
2528
  name = "syn"
2419
- version = "2.0.102"
2529
+ version = "2.0.101"
2420
2530
  source = "registry+https://github.com/rust-lang/crates.io-index"
2421
- checksum = "f6397daf94fa90f058bd0fd88429dd9e5738999cca8d701813c80723add80462"
2531
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
2422
2532
  dependencies = [
2423
2533
  "proc-macro2",
2424
2534
  "quote",
@@ -2427,13 +2537,13 @@ dependencies = [
2427
2537
 
2428
2538
  [[package]]
2429
2539
  name = "synstructure"
2430
- version = "0.13.2"
2540
+ version = "0.13.1"
2431
2541
  source = "registry+https://github.com/rust-lang/crates.io-index"
2432
- checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2542
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
2433
2543
  dependencies = [
2434
2544
  "proc-macro2",
2435
2545
  "quote",
2436
- "syn 2.0.102",
2546
+ "syn 2.0.101",
2437
2547
  ]
2438
2548
 
2439
2549
  [[package]]
@@ -2449,24 +2559,33 @@ dependencies = [
2449
2559
 
2450
2560
  [[package]]
2451
2561
  name = "tempfile"
2452
- version = "3.20.0"
2562
+ version = "3.19.1"
2453
2563
  source = "registry+https://github.com/rust-lang/crates.io-index"
2454
- checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
2564
+ checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
2455
2565
  dependencies = [
2456
2566
  "fastrand",
2457
2567
  "getrandom 0.3.3",
2458
2568
  "once_cell",
2459
- "rustix 1.0.7",
2569
+ "rustix",
2460
2570
  "windows-sys 0.59.0",
2461
2571
  ]
2462
2572
 
2573
+ [[package]]
2574
+ name = "termcolor"
2575
+ version = "1.4.1"
2576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2577
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2578
+ dependencies = [
2579
+ "winapi-util",
2580
+ ]
2581
+
2463
2582
  [[package]]
2464
2583
  name = "terminal_size"
2465
2584
  version = "0.4.2"
2466
2585
  source = "registry+https://github.com/rust-lang/crates.io-index"
2467
2586
  checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed"
2468
2587
  dependencies = [
2469
- "rustix 1.0.7",
2588
+ "rustix",
2470
2589
  "windows-sys 0.59.0",
2471
2590
  ]
2472
2591
 
@@ -2496,7 +2615,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2496
2615
  dependencies = [
2497
2616
  "proc-macro2",
2498
2617
  "quote",
2499
- "syn 2.0.102",
2618
+ "syn 2.0.101",
2500
2619
  ]
2501
2620
 
2502
2621
  [[package]]
@@ -2507,16 +2626,15 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2507
2626
  dependencies = [
2508
2627
  "proc-macro2",
2509
2628
  "quote",
2510
- "syn 2.0.102",
2629
+ "syn 2.0.101",
2511
2630
  ]
2512
2631
 
2513
2632
  [[package]]
2514
2633
  name = "thread_local"
2515
- version = "1.1.8"
2634
+ version = "1.1.4"
2516
2635
  source = "registry+https://github.com/rust-lang/crates.io-index"
2517
- checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
2636
+ checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2518
2637
  dependencies = [
2519
- "cfg-if",
2520
2638
  "once_cell",
2521
2639
  ]
2522
2640
 
@@ -2547,7 +2665,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2547
2665
  checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2548
2666
  dependencies = [
2549
2667
  "deranged",
2550
- "itoa 1.0.15",
2668
+ "itoa 1.0.14",
2551
2669
  "libc",
2552
2670
  "num-conv",
2553
2671
  "num_threads",
@@ -2575,9 +2693,9 @@ dependencies = [
2575
2693
 
2576
2694
  [[package]]
2577
2695
  name = "tinystr"
2578
- version = "0.8.1"
2696
+ version = "0.7.6"
2579
2697
  source = "registry+https://github.com/rust-lang/crates.io-index"
2580
- checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
2698
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
2581
2699
  dependencies = [
2582
2700
  "displaydoc",
2583
2701
  "zerovec",
@@ -2585,30 +2703,30 @@ dependencies = [
2585
2703
 
2586
2704
  [[package]]
2587
2705
  name = "tinyvec"
2588
- version = "1.9.0"
2706
+ version = "1.8.0"
2589
2707
  source = "registry+https://github.com/rust-lang/crates.io-index"
2590
- checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
2708
+ checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
2591
2709
  dependencies = [
2592
2710
  "tinyvec_macros",
2593
2711
  ]
2594
2712
 
2595
2713
  [[package]]
2596
2714
  name = "tinyvec_macros"
2597
- version = "0.1.1"
2715
+ version = "0.1.0"
2598
2716
  source = "registry+https://github.com/rust-lang/crates.io-index"
2599
- checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2717
+ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2600
2718
 
2601
2719
  [[package]]
2602
2720
  name = "tokio"
2603
- version = "1.45.1"
2721
+ version = "1.45.0"
2604
2722
  source = "registry+https://github.com/rust-lang/crates.io-index"
2605
- checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
2723
+ checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
2606
2724
  dependencies = [
2607
2725
  "backtrace",
2608
2726
  "bytes",
2609
2727
  "libc",
2610
- "mio 1.0.4",
2611
- "parking_lot 0.12.4",
2728
+ "mio 1.0.2",
2729
+ "parking_lot 0.12.3",
2612
2730
  "pin-project-lite",
2613
2731
  "signal-hook-registry",
2614
2732
  "socket2",
@@ -2624,7 +2742,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2624
2742
  dependencies = [
2625
2743
  "proc-macro2",
2626
2744
  "quote",
2627
- "syn 2.0.102",
2745
+ "syn 2.0.101",
2628
2746
  ]
2629
2747
 
2630
2748
  [[package]]
@@ -2645,9 +2763,9 @@ dependencies = [
2645
2763
 
2646
2764
  [[package]]
2647
2765
  name = "toml"
2648
- version = "0.8.23"
2766
+ version = "0.8.22"
2649
2767
  source = "registry+https://github.com/rust-lang/crates.io-index"
2650
- checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2768
+ checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
2651
2769
  dependencies = [
2652
2770
  "serde",
2653
2771
  "serde_spanned",
@@ -2657,18 +2775,18 @@ dependencies = [
2657
2775
 
2658
2776
  [[package]]
2659
2777
  name = "toml_datetime"
2660
- version = "0.6.11"
2778
+ version = "0.6.9"
2661
2779
  source = "registry+https://github.com/rust-lang/crates.io-index"
2662
- checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2780
+ checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
2663
2781
  dependencies = [
2664
2782
  "serde",
2665
2783
  ]
2666
2784
 
2667
2785
  [[package]]
2668
2786
  name = "toml_edit"
2669
- version = "0.22.27"
2787
+ version = "0.22.26"
2670
2788
  source = "registry+https://github.com/rust-lang/crates.io-index"
2671
- checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2789
+ checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
2672
2790
  dependencies = [
2673
2791
  "indexmap",
2674
2792
  "serde",
@@ -2680,9 +2798,9 @@ dependencies = [
2680
2798
 
2681
2799
  [[package]]
2682
2800
  name = "toml_write"
2683
- version = "0.1.2"
2801
+ version = "0.1.1"
2684
2802
  source = "registry+https://github.com/rust-lang/crates.io-index"
2685
- checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2803
+ checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
2686
2804
 
2687
2805
  [[package]]
2688
2806
  name = "tracing"
@@ -2697,20 +2815,20 @@ dependencies = [
2697
2815
 
2698
2816
  [[package]]
2699
2817
  name = "tracing-attributes"
2700
- version = "0.1.29"
2818
+ version = "0.1.28"
2701
2819
  source = "registry+https://github.com/rust-lang/crates.io-index"
2702
- checksum = "1b1ffbcf9c6f6b99d386e7444eb608ba646ae452a36b39737deb9663b610f662"
2820
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
2703
2821
  dependencies = [
2704
2822
  "proc-macro2",
2705
2823
  "quote",
2706
- "syn 2.0.102",
2824
+ "syn 2.0.101",
2707
2825
  ]
2708
2826
 
2709
2827
  [[package]]
2710
2828
  name = "tracing-core"
2711
- version = "0.1.34"
2829
+ version = "0.1.33"
2712
2830
  source = "registry+https://github.com/rust-lang/crates.io-index"
2713
- checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
2831
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
2714
2832
  dependencies = [
2715
2833
  "once_cell",
2716
2834
  "valuable",
@@ -2747,7 +2865,7 @@ dependencies = [
2747
2865
  "matchers",
2748
2866
  "nu-ansi-term",
2749
2867
  "once_cell",
2750
- "parking_lot 0.12.4",
2868
+ "parking_lot 0.12.3",
2751
2869
  "regex",
2752
2870
  "serde",
2753
2871
  "serde_json",
@@ -2763,9 +2881,9 @@ dependencies = [
2763
2881
 
2764
2882
  [[package]]
2765
2883
  name = "triomphe"
2766
- version = "0.1.14"
2884
+ version = "0.1.11"
2767
2885
  source = "registry+https://github.com/rust-lang/crates.io-index"
2768
- checksum = "ef8f7726da4807b58ea5c96fdc122f80702030edc33b35aff9190a51148ccc85"
2886
+ checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3"
2769
2887
  dependencies = [
2770
2888
  "serde",
2771
2889
  "stable_deref_trait",
@@ -2773,9 +2891,9 @@ dependencies = [
2773
2891
 
2774
2892
  [[package]]
2775
2893
  name = "typenum"
2776
- version = "1.18.0"
2894
+ version = "1.17.0"
2777
2895
  source = "registry+https://github.com/rust-lang/crates.io-index"
2778
- checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
2896
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2779
2897
 
2780
2898
  [[package]]
2781
2899
  name = "unicase"
@@ -2785,15 +2903,15 @@ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
2785
2903
 
2786
2904
  [[package]]
2787
2905
  name = "unicode-ident"
2788
- version = "1.0.18"
2906
+ version = "1.0.16"
2789
2907
  source = "registry+https://github.com/rust-lang/crates.io-index"
2790
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2908
+ checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
2791
2909
 
2792
2910
  [[package]]
2793
2911
  name = "unicode-normalization"
2794
- version = "0.1.24"
2912
+ version = "0.1.23"
2795
2913
  source = "registry+https://github.com/rust-lang/crates.io-index"
2796
- checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
2914
+ checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
2797
2915
  dependencies = [
2798
2916
  "tinyvec",
2799
2917
  ]
@@ -2806,15 +2924,21 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2806
2924
 
2807
2925
  [[package]]
2808
2926
  name = "unicode-width"
2809
- version = "0.2.1"
2927
+ version = "0.1.12"
2928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2929
+ checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6"
2930
+
2931
+ [[package]]
2932
+ name = "unicode-width"
2933
+ version = "0.2.0"
2810
2934
  source = "registry+https://github.com/rust-lang/crates.io-index"
2811
- checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
2935
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
2812
2936
 
2813
2937
  [[package]]
2814
2938
  name = "unicode_names2"
2815
- version = "1.3.0"
2939
+ version = "1.2.2"
2816
2940
  source = "registry+https://github.com/rust-lang/crates.io-index"
2817
- checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
2941
+ checksum = "addeebf294df7922a1164f729fb27ebbbcea99cc32b3bf08afab62757f707677"
2818
2942
  dependencies = [
2819
2943
  "phf",
2820
2944
  "unicode_names2_generator",
@@ -2822,9 +2946,9 @@ dependencies = [
2822
2946
 
2823
2947
  [[package]]
2824
2948
  name = "unicode_names2_generator"
2825
- version = "1.3.0"
2949
+ version = "1.2.2"
2826
2950
  source = "registry+https://github.com/rust-lang/crates.io-index"
2827
- checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
2951
+ checksum = "f444b8bba042fe3c1251ffaca35c603f2dc2ccc08d595c65a8c4f76f3e8426c0"
2828
2952
  dependencies = [
2829
2953
  "getopts",
2830
2954
  "log",
@@ -2844,6 +2968,12 @@ dependencies = [
2844
2968
  "serde",
2845
2969
  ]
2846
2970
 
2971
+ [[package]]
2972
+ name = "utf16_iter"
2973
+ version = "1.0.5"
2974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2975
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
2976
+
2847
2977
  [[package]]
2848
2978
  name = "utf8_iter"
2849
2979
  version = "1.0.4"
@@ -2852,21 +2982,21 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2852
2982
 
2853
2983
  [[package]]
2854
2984
  name = "utf8parse"
2855
- version = "0.2.2"
2985
+ version = "0.2.1"
2856
2986
  source = "registry+https://github.com/rust-lang/crates.io-index"
2857
- checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2987
+ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2858
2988
 
2859
2989
  [[package]]
2860
2990
  name = "valuable"
2861
- version = "0.1.1"
2991
+ version = "0.1.0"
2862
2992
  source = "registry+https://github.com/rust-lang/crates.io-index"
2863
- checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2993
+ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2864
2994
 
2865
2995
  [[package]]
2866
2996
  name = "vec1"
2867
- version = "1.12.1"
2997
+ version = "1.10.1"
2868
2998
  source = "registry+https://github.com/rust-lang/crates.io-index"
2869
- checksum = "eab68b56840f69efb0fefbe3ab6661499217ffdc58e2eef7c3f6f69835386322"
2999
+ checksum = "2bda7c41ca331fe9a1c278a9e7ee055f4be7f5eb1c2b72f079b4ff8b5fce9d5c"
2870
3000
  dependencies = [
2871
3001
  "serde",
2872
3002
  ]
@@ -2889,9 +3019,9 @@ dependencies = [
2889
3019
 
2890
3020
  [[package]]
2891
3021
  name = "wasi"
2892
- version = "0.11.1+wasi-snapshot-preview1"
3022
+ version = "0.11.0+wasi-snapshot-preview1"
2893
3023
  source = "registry+https://github.com/rust-lang/crates.io-index"
2894
- checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3024
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2895
3025
 
2896
3026
  [[package]]
2897
3027
  name = "wasi"
@@ -2924,7 +3054,7 @@ dependencies = [
2924
3054
  "log",
2925
3055
  "proc-macro2",
2926
3056
  "quote",
2927
- "syn 2.0.102",
3057
+ "syn 2.0.101",
2928
3058
  "wasm-bindgen-shared",
2929
3059
  ]
2930
3060
 
@@ -2946,7 +3076,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2946
3076
  dependencies = [
2947
3077
  "proc-macro2",
2948
3078
  "quote",
2949
- "syn 2.0.102",
3079
+ "syn 2.0.101",
2950
3080
  "wasm-bindgen-backend",
2951
3081
  "wasm-bindgen-shared",
2952
3082
  ]
@@ -2990,14 +3120,13 @@ dependencies = [
2990
3120
 
2991
3121
  [[package]]
2992
3122
  name = "which"
2993
- version = "4.4.2"
3123
+ version = "4.2.4"
2994
3124
  source = "registry+https://github.com/rust-lang/crates.io-index"
2995
- checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
3125
+ checksum = "2a5a7e487e921cf220206864a94a89b6c6905bfc19f1057fa26a4cb360e5c1d2"
2996
3126
  dependencies = [
2997
3127
  "either",
2998
- "home",
2999
- "once_cell",
3000
- "rustix 0.38.44",
3128
+ "lazy_static",
3129
+ "libc",
3001
3130
  ]
3002
3131
 
3003
3132
  [[package]]
@@ -3018,11 +3147,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3018
3147
 
3019
3148
  [[package]]
3020
3149
  name = "winapi-util"
3021
- version = "0.1.9"
3150
+ version = "0.1.5"
3022
3151
  source = "registry+https://github.com/rust-lang/crates.io-index"
3023
- checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
3152
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
3024
3153
  dependencies = [
3025
- "windows-sys 0.59.0",
3154
+ "winapi",
3026
3155
  ]
3027
3156
 
3028
3157
  [[package]]
@@ -3031,72 +3160,13 @@ version = "0.4.0"
3031
3160
  source = "registry+https://github.com/rust-lang/crates.io-index"
3032
3161
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3033
3162
 
3034
- [[package]]
3035
- name = "windows-core"
3036
- version = "0.61.2"
3037
- source = "registry+https://github.com/rust-lang/crates.io-index"
3038
- checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
3039
- dependencies = [
3040
- "windows-implement",
3041
- "windows-interface",
3042
- "windows-link",
3043
- "windows-result",
3044
- "windows-strings",
3045
- ]
3046
-
3047
- [[package]]
3048
- name = "windows-implement"
3049
- version = "0.60.0"
3050
- source = "registry+https://github.com/rust-lang/crates.io-index"
3051
- checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
3052
- dependencies = [
3053
- "proc-macro2",
3054
- "quote",
3055
- "syn 2.0.102",
3056
- ]
3057
-
3058
- [[package]]
3059
- name = "windows-interface"
3060
- version = "0.59.1"
3061
- source = "registry+https://github.com/rust-lang/crates.io-index"
3062
- checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
3063
- dependencies = [
3064
- "proc-macro2",
3065
- "quote",
3066
- "syn 2.0.102",
3067
- ]
3068
-
3069
- [[package]]
3070
- name = "windows-link"
3071
- version = "0.1.3"
3072
- source = "registry+https://github.com/rust-lang/crates.io-index"
3073
- checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
3074
-
3075
- [[package]]
3076
- name = "windows-result"
3077
- version = "0.3.4"
3078
- source = "registry+https://github.com/rust-lang/crates.io-index"
3079
- checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
3080
- dependencies = [
3081
- "windows-link",
3082
- ]
3083
-
3084
- [[package]]
3085
- name = "windows-strings"
3086
- version = "0.4.2"
3087
- source = "registry+https://github.com/rust-lang/crates.io-index"
3088
- checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
3089
- dependencies = [
3090
- "windows-link",
3091
- ]
3092
-
3093
3163
  [[package]]
3094
3164
  name = "windows-sys"
3095
3165
  version = "0.45.0"
3096
3166
  source = "registry+https://github.com/rust-lang/crates.io-index"
3097
3167
  checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3098
3168
  dependencies = [
3099
- "windows-targets 0.42.2",
3169
+ "windows-targets 0.42.1",
3100
3170
  ]
3101
3171
 
3102
3172
  [[package]]
@@ -3128,17 +3198,17 @@ dependencies = [
3128
3198
 
3129
3199
  [[package]]
3130
3200
  name = "windows-targets"
3131
- version = "0.42.2"
3201
+ version = "0.42.1"
3132
3202
  source = "registry+https://github.com/rust-lang/crates.io-index"
3133
- checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
3203
+ checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
3134
3204
  dependencies = [
3135
- "windows_aarch64_gnullvm 0.42.2",
3136
- "windows_aarch64_msvc 0.42.2",
3137
- "windows_i686_gnu 0.42.2",
3138
- "windows_i686_msvc 0.42.2",
3139
- "windows_x86_64_gnu 0.42.2",
3140
- "windows_x86_64_gnullvm 0.42.2",
3141
- "windows_x86_64_msvc 0.42.2",
3205
+ "windows_aarch64_gnullvm 0.42.1",
3206
+ "windows_aarch64_msvc 0.42.1",
3207
+ "windows_i686_gnu 0.42.1",
3208
+ "windows_i686_msvc 0.42.1",
3209
+ "windows_x86_64_gnu 0.42.1",
3210
+ "windows_x86_64_gnullvm 0.42.1",
3211
+ "windows_x86_64_msvc 0.42.1",
3142
3212
  ]
3143
3213
 
3144
3214
  [[package]]
@@ -3174,9 +3244,9 @@ dependencies = [
3174
3244
 
3175
3245
  [[package]]
3176
3246
  name = "windows_aarch64_gnullvm"
3177
- version = "0.42.2"
3247
+ version = "0.42.1"
3178
3248
  source = "registry+https://github.com/rust-lang/crates.io-index"
3179
- checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
3249
+ checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
3180
3250
 
3181
3251
  [[package]]
3182
3252
  name = "windows_aarch64_gnullvm"
@@ -3192,9 +3262,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3192
3262
 
3193
3263
  [[package]]
3194
3264
  name = "windows_aarch64_msvc"
3195
- version = "0.42.2"
3265
+ version = "0.42.1"
3196
3266
  source = "registry+https://github.com/rust-lang/crates.io-index"
3197
- checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
3267
+ checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
3198
3268
 
3199
3269
  [[package]]
3200
3270
  name = "windows_aarch64_msvc"
@@ -3210,9 +3280,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3210
3280
 
3211
3281
  [[package]]
3212
3282
  name = "windows_i686_gnu"
3213
- version = "0.42.2"
3283
+ version = "0.42.1"
3214
3284
  source = "registry+https://github.com/rust-lang/crates.io-index"
3215
- checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
3285
+ checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
3216
3286
 
3217
3287
  [[package]]
3218
3288
  name = "windows_i686_gnu"
@@ -3234,9 +3304,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3234
3304
 
3235
3305
  [[package]]
3236
3306
  name = "windows_i686_msvc"
3237
- version = "0.42.2"
3307
+ version = "0.42.1"
3238
3308
  source = "registry+https://github.com/rust-lang/crates.io-index"
3239
- checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
3309
+ checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
3240
3310
 
3241
3311
  [[package]]
3242
3312
  name = "windows_i686_msvc"
@@ -3252,9 +3322,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3252
3322
 
3253
3323
  [[package]]
3254
3324
  name = "windows_x86_64_gnu"
3255
- version = "0.42.2"
3325
+ version = "0.42.1"
3256
3326
  source = "registry+https://github.com/rust-lang/crates.io-index"
3257
- checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
3327
+ checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
3258
3328
 
3259
3329
  [[package]]
3260
3330
  name = "windows_x86_64_gnu"
@@ -3270,9 +3340,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3270
3340
 
3271
3341
  [[package]]
3272
3342
  name = "windows_x86_64_gnullvm"
3273
- version = "0.42.2"
3343
+ version = "0.42.1"
3274
3344
  source = "registry+https://github.com/rust-lang/crates.io-index"
3275
- checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
3345
+ checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
3276
3346
 
3277
3347
  [[package]]
3278
3348
  name = "windows_x86_64_gnullvm"
@@ -3288,9 +3358,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3288
3358
 
3289
3359
  [[package]]
3290
3360
  name = "windows_x86_64_msvc"
3291
- version = "0.42.2"
3361
+ version = "0.42.1"
3292
3362
  source = "registry+https://github.com/rust-lang/crates.io-index"
3293
- checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
3363
+ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
3294
3364
 
3295
3365
  [[package]]
3296
3366
  name = "windows_x86_64_msvc"
@@ -3306,9 +3376,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3306
3376
 
3307
3377
  [[package]]
3308
3378
  name = "winnow"
3309
- version = "0.7.11"
3379
+ version = "0.7.10"
3310
3380
  source = "registry+https://github.com/rust-lang/crates.io-index"
3311
- checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
3381
+ checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
3312
3382
  dependencies = [
3313
3383
  "memchr",
3314
3384
  ]
@@ -3319,14 +3389,20 @@ version = "0.39.0"
3319
3389
  source = "registry+https://github.com/rust-lang/crates.io-index"
3320
3390
  checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3321
3391
  dependencies = [
3322
- "bitflags 2.9.1",
3392
+ "bitflags 2.9.0",
3323
3393
  ]
3324
3394
 
3395
+ [[package]]
3396
+ name = "write16"
3397
+ version = "1.0.0"
3398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3399
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
3400
+
3325
3401
  [[package]]
3326
3402
  name = "writeable"
3327
- version = "0.6.1"
3403
+ version = "0.5.5"
3328
3404
  source = "registry+https://github.com/rust-lang/crates.io-index"
3329
- checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
3405
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
3330
3406
 
3331
3407
  [[package]]
3332
3408
  name = "xattr"
@@ -3335,9 +3411,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3335
3411
  checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
3336
3412
  dependencies = [
3337
3413
  "libc",
3338
- "rustix 1.0.7",
3414
+ "rustix",
3339
3415
  ]
3340
3416
 
3417
+ [[package]]
3418
+ name = "yansi"
3419
+ version = "0.5.1"
3420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3421
+ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
3422
+
3341
3423
  [[package]]
3342
3424
  name = "yansi"
3343
3425
  version = "1.0.1"
@@ -3346,9 +3428,9 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
3346
3428
 
3347
3429
  [[package]]
3348
3430
  name = "yoke"
3349
- version = "0.8.0"
3431
+ version = "0.7.4"
3350
3432
  source = "registry+https://github.com/rust-lang/crates.io-index"
3351
- checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
3433
+ checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5"
3352
3434
  dependencies = [
3353
3435
  "serde",
3354
3436
  "stable_deref_trait",
@@ -3358,23 +3440,43 @@ dependencies = [
3358
3440
 
3359
3441
  [[package]]
3360
3442
  name = "yoke-derive"
3361
- version = "0.8.0"
3443
+ version = "0.7.4"
3362
3444
  source = "registry+https://github.com/rust-lang/crates.io-index"
3363
- checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
3445
+ checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95"
3364
3446
  dependencies = [
3365
3447
  "proc-macro2",
3366
3448
  "quote",
3367
- "syn 2.0.102",
3449
+ "syn 2.0.101",
3368
3450
  "synstructure",
3369
3451
  ]
3370
3452
 
3453
+ [[package]]
3454
+ name = "zerocopy"
3455
+ version = "0.7.35"
3456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3457
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
3458
+ dependencies = [
3459
+ "zerocopy-derive 0.7.35",
3460
+ ]
3461
+
3371
3462
  [[package]]
3372
3463
  name = "zerocopy"
3373
3464
  version = "0.8.25"
3374
3465
  source = "registry+https://github.com/rust-lang/crates.io-index"
3375
3466
  checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
3376
3467
  dependencies = [
3377
- "zerocopy-derive",
3468
+ "zerocopy-derive 0.8.25",
3469
+ ]
3470
+
3471
+ [[package]]
3472
+ name = "zerocopy-derive"
3473
+ version = "0.7.35"
3474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3475
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
3476
+ dependencies = [
3477
+ "proc-macro2",
3478
+ "quote",
3479
+ "syn 2.0.101",
3378
3480
  ]
3379
3481
 
3380
3482
  [[package]]
@@ -3385,46 +3487,35 @@ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
3385
3487
  dependencies = [
3386
3488
  "proc-macro2",
3387
3489
  "quote",
3388
- "syn 2.0.102",
3490
+ "syn 2.0.101",
3389
3491
  ]
3390
3492
 
3391
3493
  [[package]]
3392
3494
  name = "zerofrom"
3393
- version = "0.1.6"
3495
+ version = "0.1.4"
3394
3496
  source = "registry+https://github.com/rust-lang/crates.io-index"
3395
- checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3497
+ checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55"
3396
3498
  dependencies = [
3397
3499
  "zerofrom-derive",
3398
3500
  ]
3399
3501
 
3400
3502
  [[package]]
3401
3503
  name = "zerofrom-derive"
3402
- version = "0.1.6"
3504
+ version = "0.1.4"
3403
3505
  source = "registry+https://github.com/rust-lang/crates.io-index"
3404
- checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3506
+ checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5"
3405
3507
  dependencies = [
3406
3508
  "proc-macro2",
3407
3509
  "quote",
3408
- "syn 2.0.102",
3510
+ "syn 2.0.101",
3409
3511
  "synstructure",
3410
3512
  ]
3411
3513
 
3412
- [[package]]
3413
- name = "zerotrie"
3414
- version = "0.2.2"
3415
- source = "registry+https://github.com/rust-lang/crates.io-index"
3416
- checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
3417
- dependencies = [
3418
- "displaydoc",
3419
- "yoke",
3420
- "zerofrom",
3421
- ]
3422
-
3423
3514
  [[package]]
3424
3515
  name = "zerovec"
3425
- version = "0.11.2"
3516
+ version = "0.10.4"
3426
3517
  source = "registry+https://github.com/rust-lang/crates.io-index"
3427
- checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
3518
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
3428
3519
  dependencies = [
3429
3520
  "yoke",
3430
3521
  "zerofrom",
@@ -3433,38 +3524,38 @@ dependencies = [
3433
3524
 
3434
3525
  [[package]]
3435
3526
  name = "zerovec-derive"
3436
- version = "0.11.1"
3527
+ version = "0.10.3"
3437
3528
  source = "registry+https://github.com/rust-lang/crates.io-index"
3438
- checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
3529
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
3439
3530
  dependencies = [
3440
3531
  "proc-macro2",
3441
3532
  "quote",
3442
- "syn 2.0.102",
3533
+ "syn 2.0.101",
3443
3534
  ]
3444
3535
 
3445
3536
  [[package]]
3446
3537
  name = "zstd"
3447
- version = "0.13.3"
3538
+ version = "0.13.2"
3448
3539
  source = "registry+https://github.com/rust-lang/crates.io-index"
3449
- checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3540
+ checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
3450
3541
  dependencies = [
3451
3542
  "zstd-safe",
3452
3543
  ]
3453
3544
 
3454
3545
  [[package]]
3455
3546
  name = "zstd-safe"
3456
- version = "7.2.4"
3547
+ version = "7.2.1"
3457
3548
  source = "registry+https://github.com/rust-lang/crates.io-index"
3458
- checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3549
+ checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
3459
3550
  dependencies = [
3460
3551
  "zstd-sys",
3461
3552
  ]
3462
3553
 
3463
3554
  [[package]]
3464
3555
  name = "zstd-sys"
3465
- version = "2.0.15+zstd.1.5.7"
3556
+ version = "2.0.12+zstd.1.5.6"
3466
3557
  source = "registry+https://github.com/rust-lang/crates.io-index"
3467
- checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
3558
+ checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13"
3468
3559
  dependencies = [
3469
3560
  "cc",
3470
3561
  "pkg-config",