ruff 0.9.2__tar.gz → 0.9.3__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 (4492) hide show
  1. ruff-0.9.3/Cargo.lock +4771 -0
  2. ruff-0.9.3/Cargo.toml +314 -0
  3. ruff-0.9.3/PKG-INFO +579 -0
  4. ruff-0.9.3/README.md +545 -0
  5. ruff-0.9.3/crates/red_knot_python_semantic/mdtest.py +220 -0
  6. ruff-0.9.3/crates/red_knot_python_semantic/mdtest.py.lock +141 -0
  7. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/annotations/deferred.md +44 -0
  8. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/annotations/literal_string.md +150 -0
  9. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/attributes.md +570 -0
  10. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/binary/booleans.md +93 -0
  11. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/comprehensions/basic.md +149 -0
  12. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/comprehensions/invalid_syntax.md +43 -0
  13. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/directives/assert_type.md +138 -0
  14. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/generics.md +81 -0
  15. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/import/builtins.md +70 -0
  16. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/import/conflicts.md +75 -0
  17. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/import/invalid_syntax.md +31 -0
  18. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/import/relative.md +164 -0
  19. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/literal/f_string.md +32 -0
  20. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/mdtest_custom_typeshed.md +95 -0
  21. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/mro.md +408 -0
  22. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/narrow/isinstance.md +218 -0
  23. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/narrow/issubclass.md +276 -0
  24. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/pep695_type_aliases.md +95 -0
  25. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/scopes/builtin.md +32 -0
  26. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/scopes/moduletype_attrs.md +136 -0
  27. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/scopes/nonlocal.md +56 -0
  28. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/statically_known_branches.md +1530 -0
  29. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/subscript/bytes.md +53 -0
  30. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/subscript/string.md +95 -0
  31. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/subscript/tuple.md +123 -0
  32. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/sys_version_info.md +143 -0
  33. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/type_of/dynamic.md +101 -0
  34. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_assignable_to.md +349 -0
  35. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_disjoint_from.md +310 -0
  36. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_equivalent_to.md +87 -0
  37. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_fully_static.md +54 -0
  38. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_gradual_equivalent_to.md +64 -0
  39. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_single_valued.md +25 -0
  40. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_singleton.md +56 -0
  41. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/type_properties/str_repr.md +27 -0
  42. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/type_properties/truthiness.md +47 -0
  43. ruff-0.9.3/crates/red_knot_python_semantic/resources/mdtest/type_qualifiers/classvar.md +93 -0
  44. ruff-0.9.3/crates/red_knot_python_semantic/src/db.rs +193 -0
  45. ruff-0.9.3/crates/red_knot_python_semantic/src/lib.rs +54 -0
  46. ruff-0.9.3/crates/red_knot_python_semantic/src/lint.rs +483 -0
  47. ruff-0.9.3/crates/red_knot_python_semantic/src/module_resolver/resolver.rs +1844 -0
  48. ruff-0.9.3/crates/red_knot_python_semantic/src/module_resolver/testing.rs +312 -0
  49. ruff-0.9.3/crates/red_knot_python_semantic/src/program.rs +136 -0
  50. ruff-0.9.3/crates/red_knot_python_semantic/src/semantic_index/ast_ids.rs +198 -0
  51. ruff-0.9.3/crates/red_knot_python_semantic/src/semantic_index/builder.rs +1663 -0
  52. ruff-0.9.3/crates/red_knot_python_semantic/src/semantic_model.rs +231 -0
  53. ruff-0.9.3/crates/red_knot_python_semantic/src/types/call/bind.rs +412 -0
  54. ruff-0.9.3/crates/red_knot_python_semantic/src/types/call.rs +423 -0
  55. ruff-0.9.3/crates/red_knot_python_semantic/src/types/class_base.rs +192 -0
  56. ruff-0.9.3/crates/red_knot_python_semantic/src/types/context.rs +202 -0
  57. ruff-0.9.3/crates/red_knot_python_semantic/src/types/diagnostic.rs +1126 -0
  58. ruff-0.9.3/crates/red_knot_python_semantic/src/types/infer.rs +6340 -0
  59. ruff-0.9.3/crates/red_knot_python_semantic/src/types/mro.rs +330 -0
  60. ruff-0.9.3/crates/red_knot_python_semantic/src/types/narrow.rs +565 -0
  61. ruff-0.9.3/crates/red_knot_python_semantic/src/types/property_tests.rs +560 -0
  62. ruff-0.9.3/crates/red_knot_python_semantic/src/types/signatures.rs +628 -0
  63. ruff-0.9.3/crates/red_knot_python_semantic/src/types/type_ordering.rs +266 -0
  64. ruff-0.9.3/crates/red_knot_python_semantic/src/types/unpacker.rs +277 -0
  65. ruff-0.9.3/crates/red_knot_python_semantic/src/types.rs +4775 -0
  66. ruff-0.9.3/crates/red_knot_python_semantic/src/visibility_constraints.rs +338 -0
  67. ruff-0.9.3/crates/red_knot_test/README.md +437 -0
  68. ruff-0.9.3/crates/red_knot_test/src/config.rs +65 -0
  69. ruff-0.9.3/crates/red_knot_test/src/db.rs +109 -0
  70. ruff-0.9.3/crates/red_knot_test/src/diagnostic.rs +213 -0
  71. ruff-0.9.3/crates/red_knot_test/src/lib.rs +260 -0
  72. ruff-0.9.3/crates/red_knot_test/src/matcher.rs +1061 -0
  73. ruff-0.9.3/crates/red_knot_test/src/parser.rs +820 -0
  74. ruff-0.9.3/crates/red_knot_vendored/knot_extensions/knot_extensions.pyi +27 -0
  75. ruff-0.9.3/crates/ruff/Cargo.toml +86 -0
  76. ruff-0.9.3/crates/ruff/README.md +545 -0
  77. ruff-0.9.3/crates/ruff/src/commands/analyze_graph.rs +260 -0
  78. ruff-0.9.3/crates/ruff/tests/lint.rs +2176 -0
  79. ruff-0.9.3/crates/ruff/tests/show_settings.rs +57 -0
  80. ruff-0.9.3/crates/ruff/tests/snapshots/lint__flake8_import_convention_unused_aliased_import.snap +31 -0
  81. ruff-0.9.3/crates/ruff/tests/snapshots/show_settings__display_default_settings.snap +394 -0
  82. ruff-0.9.3/crates/ruff_db/src/diagnostic.rs +339 -0
  83. ruff-0.9.3/crates/ruff_graph/src/db.rs +94 -0
  84. ruff-0.9.3/crates/ruff_linter/Cargo.toml +88 -0
  85. ruff-0.9.3/crates/ruff_linter/src/checkers/ast/analyze/bindings.rs +113 -0
  86. ruff-0.9.3/crates/ruff_linter/src/checkers/ast/analyze/deferred_scopes.rs +477 -0
  87. ruff-0.9.3/crates/ruff_linter/src/checkers/ast/analyze/expression.rs +1748 -0
  88. ruff-0.9.3/crates/ruff_linter/src/checkers/ast/analyze/statement.rs +1788 -0
  89. ruff-0.9.3/crates/ruff_linter/src/checkers/ast/mod.rs +2664 -0
  90. ruff-0.9.3/crates/ruff_linter/src/codes.rs +1134 -0
  91. ruff-0.9.3/crates/ruff_linter/src/fix/codemods.rs +232 -0
  92. ruff-0.9.3/crates/ruff_linter/src/fix/mod.rs +381 -0
  93. ruff-0.9.3/crates/ruff_linter/src/rules/airflow/rules/moved_to_provider_in_3.rs +1028 -0
  94. ruff-0.9.3/crates/ruff_linter/src/rules/airflow/rules/removal_in_3.rs +862 -0
  95. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_bandit/mod.rs +145 -0
  96. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_sql_expression.rs +205 -0
  97. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_bandit/rules/suspicious_function_call.rs +1189 -0
  98. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_bugbear/mod.rs +177 -0
  99. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_bugbear/rules/class_as_data_structure.rs +129 -0
  100. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_generator_set.rs +159 -0
  101. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_pytest_style/mod.rs +409 -0
  102. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_pytest_style/rules/assertion.rs +856 -0
  103. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_pytest_style/rules/parametrize.rs +885 -0
  104. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_pytest_style/rules/raises.rs +270 -0
  105. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_pytest_style/rules/warns.rs +266 -0
  106. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_simplify/mod.rs +79 -0
  107. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_bool_op.rs +870 -0
  108. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_unary_op.rs +305 -0
  109. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_simplify/rules/needless_bool.rs +339 -0
  110. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_type_checking/rules/runtime_cast_value.rs +78 -0
  111. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_type_checking/rules/type_alias_quotes.rs +377 -0
  112. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_unused_arguments/rules/unused_arguments.rs +557 -0
  113. ruff-0.9.3/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/path_constructor_current_directory.rs +139 -0
  114. ruff-0.9.3/crates/ruff_linter/src/rules/isort/rules/organize_imports.rs +147 -0
  115. ruff-0.9.3/crates/ruff_linter/src/rules/pycodestyle/rules/lambda_assignment.rs +282 -0
  116. ruff-0.9.3/crates/ruff_linter/src/rules/pydoclint/mod.rs +101 -0
  117. ruff-0.9.3/crates/ruff_linter/src/rules/pydoclint/rules/check_docstring.rs +1049 -0
  118. ruff-0.9.3/crates/ruff_linter/src/rules/pydoclint/settings.rs +21 -0
  119. ruff-0.9.3/crates/ruff_linter/src/rules/pyflakes/mod.rs +4260 -0
  120. ruff-0.9.3/crates/ruff_linter/src/rules/pyflakes/rules/unused_import.rs +580 -0
  121. ruff-0.9.3/crates/ruff_linter/src/rules/pylint/mod.rs +436 -0
  122. ruff-0.9.3/crates/ruff_linter/src/rules/pylint/rules/mod.rs +217 -0
  123. ruff-0.9.3/crates/ruff_linter/src/rules/pylint/rules/no_self_use.rs +147 -0
  124. ruff-0.9.3/crates/ruff_linter/src/rules/pylint/rules/non_augmented_assignment.rs +231 -0
  125. ruff-0.9.3/crates/ruff_linter/src/rules/pylint/rules/redefined_slots_in_subclass.rs +212 -0
  126. ruff-0.9.3/crates/ruff_linter/src/rules/pyupgrade/mod.rs +274 -0
  127. ruff-0.9.3/crates/ruff_linter/src/rules/pyupgrade/rules/mod.rs +85 -0
  128. ruff-0.9.3/crates/ruff_linter/src/rules/pyupgrade/rules/pep695/mod.rs +346 -0
  129. ruff-0.9.3/crates/ruff_linter/src/rules/pyupgrade/rules/pep695/non_pep695_generic_class.rs +220 -0
  130. ruff-0.9.3/crates/ruff_linter/src/rules/pyupgrade/rules/pep695/non_pep695_generic_function.rs +171 -0
  131. ruff-0.9.3/crates/ruff_linter/src/rules/pyupgrade/rules/pep695/non_pep695_type_alias.rs +271 -0
  132. ruff-0.9.3/crates/ruff_linter/src/rules/pyupgrade/rules/yield_in_for_loop.rs +166 -0
  133. ruff-0.9.3/crates/ruff_linter/src/rules/refurb/mod.rs +73 -0
  134. ruff-0.9.3/crates/ruff_linter/src/rules/refurb/rules/for_loop_writes.rs +128 -0
  135. ruff-0.9.3/crates/ruff_linter/src/rules/refurb/rules/mod.rs +71 -0
  136. ruff-0.9.3/crates/ruff_linter/src/rules/refurb/rules/reimplemented_starmap.rs +365 -0
  137. ruff-0.9.3/crates/ruff_linter/src/rules/ruff/mod.rs +521 -0
  138. ruff-0.9.3/crates/ruff_linter/src/rules/ruff/rules/function_call_in_dataclass_default.rs +203 -0
  139. ruff-0.9.3/crates/ruff_linter/src/rules/ruff/rules/mod.rs +116 -0
  140. ruff-0.9.3/crates/ruff_linter/src/rules/ruff/rules/needless_else.rs +304 -0
  141. ruff-0.9.3/crates/ruff_linter/src/rules/ruff/rules/quadratic_list_summation.rs +141 -0
  142. ruff-0.9.3/crates/ruff_linter/src/rules/ruff/rules/starmap_zip.rs +146 -0
  143. ruff-0.9.3/crates/ruff_linter/src/rules/ruff/rules/unnecessary_regular_expression.rs +304 -0
  144. ruff-0.9.3/crates/ruff_linter/src/rules/tryceratops/rules/try_consider_else.rs +82 -0
  145. ruff-0.9.3/crates/ruff_linter/src/settings/mod.rs +452 -0
  146. ruff-0.9.3/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__import_sorting.snap +83 -0
  147. ruff-0.9.3/crates/ruff_macros/src/combine.rs +43 -0
  148. ruff-0.9.3/crates/ruff_macros/src/lib.rs +136 -0
  149. ruff-0.9.3/crates/ruff_python_ast/ast.toml +167 -0
  150. ruff-0.9.3/crates/ruff_python_ast/generate.py +499 -0
  151. ruff-0.9.3/crates/ruff_python_ast/src/expression.rs +351 -0
  152. ruff-0.9.3/crates/ruff_python_ast/src/generated.rs +3786 -0
  153. ruff-0.9.3/crates/ruff_python_ast/src/lib.rs +132 -0
  154. ruff-0.9.3/crates/ruff_python_ast/src/node.rs +1648 -0
  155. ruff-0.9.3/crates/ruff_python_ast/src/nodes.rs +3499 -0
  156. ruff-0.9.3/crates/ruff_python_ast/src/parenthesize.rs +67 -0
  157. ruff-0.9.3/crates/ruff_python_ast/src/str.rs +282 -0
  158. ruff-0.9.3/crates/ruff_python_ast/src/visitor/source_order.rs +582 -0
  159. ruff-0.9.3/crates/ruff_python_codegen/src/generator.rs +1904 -0
  160. ruff-0.9.3/crates/ruff_python_formatter/generate.py +176 -0
  161. ruff-0.9.3/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/fstring.py +733 -0
  162. ruff-0.9.3/crates/ruff_python_formatter/src/builders.rs +246 -0
  163. ruff-0.9.3/crates/ruff_python_formatter/src/comments/debug.rs +244 -0
  164. ruff-0.9.3/crates/ruff_python_formatter/src/comments/format.rs +637 -0
  165. ruff-0.9.3/crates/ruff_python_formatter/src/context.rs +439 -0
  166. ruff-0.9.3/crates/ruff_python_formatter/src/expression/expr_slice.rs +283 -0
  167. ruff-0.9.3/crates/ruff_python_formatter/src/expression/expr_subscript.rs +132 -0
  168. ruff-0.9.3/crates/ruff_python_formatter/src/expression/mod.rs +1313 -0
  169. ruff-0.9.3/crates/ruff_python_formatter/src/expression/parentheses.rs +468 -0
  170. ruff-0.9.3/crates/ruff_python_formatter/src/generated.rs +3036 -0
  171. ruff-0.9.3/crates/ruff_python_formatter/src/lib.rs +350 -0
  172. ruff-0.9.3/crates/ruff_python_formatter/src/other/f_string_element.rs +303 -0
  173. ruff-0.9.3/crates/ruff_python_formatter/src/other/parameters.rs +684 -0
  174. ruff-0.9.3/crates/ruff_python_formatter/src/pattern/pattern_arguments.rs +100 -0
  175. ruff-0.9.3/crates/ruff_python_formatter/src/statement/stmt_global.rs +58 -0
  176. ruff-0.9.3/crates/ruff_python_formatter/src/statement/stmt_import_from.rs +82 -0
  177. ruff-0.9.3/crates/ruff_python_formatter/src/statement/stmt_nonlocal.rs +58 -0
  178. ruff-0.9.3/crates/ruff_python_formatter/src/statement/stmt_while.rs +76 -0
  179. ruff-0.9.3/crates/ruff_python_formatter/src/statement/stmt_with.rs +366 -0
  180. ruff-0.9.3/crates/ruff_python_formatter/src/type_param/type_params.rs +35 -0
  181. ruff-0.9.3/crates/ruff_python_formatter/tests/snapshots/format@expression__fstring.py.snap +2340 -0
  182. ruff-0.9.3/crates/ruff_python_semantic/src/analyze/class.rs +408 -0
  183. ruff-0.9.3/crates/ruff_python_semantic/src/imports.rs +283 -0
  184. ruff-0.9.3/crates/ruff_python_semantic/src/nodes.rs +136 -0
  185. ruff-0.9.3/crates/ruff_server/src/fix.rs +158 -0
  186. ruff-0.9.3/crates/ruff_server/src/session/index/ruff_settings.rs +440 -0
  187. ruff-0.9.3/crates/ruff_text_size/src/range.rs +545 -0
  188. ruff-0.9.3/crates/ruff_workspace/src/configuration.rs +2102 -0
  189. ruff-0.9.3/crates/ruff_workspace/src/options.rs +3876 -0
  190. ruff-0.9.3/pyproject.toml +142 -0
  191. ruff-0.9.2/Cargo.lock +0 -4777
  192. ruff-0.9.2/Cargo.toml +0 -314
  193. ruff-0.9.2/PKG-INFO +0 -579
  194. ruff-0.9.2/README.md +0 -545
  195. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/annotations/literal_string.md +0 -150
  196. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/attributes.md +0 -503
  197. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/binary/booleans.md +0 -95
  198. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/directives/assert_type.md +0 -142
  199. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/generics.md +0 -79
  200. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/import/builtins.md +0 -8
  201. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/import/conflicts.md +0 -75
  202. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/import/invalid_syntax.md +0 -31
  203. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/import/relative.md +0 -164
  204. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/literal/f_string.md +0 -33
  205. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/mro.md +0 -409
  206. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/narrow/isinstance.md +0 -222
  207. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/narrow/issubclass.md +0 -248
  208. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/pep695_type_aliases.md +0 -78
  209. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/scopes/builtin.md +0 -32
  210. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/scopes/moduletype_attrs.md +0 -136
  211. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/scopes/nonlocal.md +0 -45
  212. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/statically_known_branches.md +0 -1530
  213. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/subscript/bytes.md +0 -53
  214. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/subscript/string.md +0 -95
  215. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/subscript/tuple.md +0 -123
  216. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/sys_version_info.md +0 -143
  217. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/type_of/dynamic.md +0 -101
  218. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_assignable_to.md +0 -352
  219. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_equivalent_to.md +0 -35
  220. ruff-0.9.2/crates/red_knot_python_semantic/src/db.rs +0 -198
  221. ruff-0.9.2/crates/red_knot_python_semantic/src/lib.rs +0 -54
  222. ruff-0.9.2/crates/red_knot_python_semantic/src/lint.rs +0 -470
  223. ruff-0.9.2/crates/red_knot_python_semantic/src/module_resolver/resolver.rs +0 -1836
  224. ruff-0.9.2/crates/red_knot_python_semantic/src/module_resolver/testing.rs +0 -312
  225. ruff-0.9.2/crates/red_knot_python_semantic/src/program.rs +0 -136
  226. ruff-0.9.2/crates/red_knot_python_semantic/src/semantic_index/ast_ids.rs +0 -198
  227. ruff-0.9.2/crates/red_knot_python_semantic/src/semantic_index/builder.rs +0 -1663
  228. ruff-0.9.2/crates/red_knot_python_semantic/src/semantic_model.rs +0 -231
  229. ruff-0.9.2/crates/red_knot_python_semantic/src/types/call/bind.rs +0 -411
  230. ruff-0.9.2/crates/red_knot_python_semantic/src/types/call.rs +0 -423
  231. ruff-0.9.2/crates/red_knot_python_semantic/src/types/class_base.rs +0 -192
  232. ruff-0.9.2/crates/red_knot_python_semantic/src/types/context.rs +0 -202
  233. ruff-0.9.2/crates/red_knot_python_semantic/src/types/diagnostic.rs +0 -1062
  234. ruff-0.9.2/crates/red_knot_python_semantic/src/types/infer.rs +0 -6760
  235. ruff-0.9.2/crates/red_knot_python_semantic/src/types/mro.rs +0 -330
  236. ruff-0.9.2/crates/red_knot_python_semantic/src/types/narrow.rs +0 -565
  237. ruff-0.9.2/crates/red_knot_python_semantic/src/types/property_tests.rs +0 -407
  238. ruff-0.9.2/crates/red_knot_python_semantic/src/types/signatures.rs +0 -628
  239. ruff-0.9.2/crates/red_knot_python_semantic/src/types/unpacker.rs +0 -277
  240. ruff-0.9.2/crates/red_knot_python_semantic/src/types.rs +0 -4928
  241. ruff-0.9.2/crates/red_knot_python_semantic/src/visibility_constraints.rs +0 -338
  242. ruff-0.9.2/crates/red_knot_test/README.md +0 -467
  243. ruff-0.9.2/crates/red_knot_test/src/config.rs +0 -56
  244. ruff-0.9.2/crates/red_knot_test/src/db.rs +0 -109
  245. ruff-0.9.2/crates/red_knot_test/src/diagnostic.rs +0 -213
  246. ruff-0.9.2/crates/red_knot_test/src/lib.rs +0 -205
  247. ruff-0.9.2/crates/red_knot_test/src/matcher.rs +0 -1061
  248. ruff-0.9.2/crates/red_knot_test/src/parser.rs +0 -815
  249. ruff-0.9.2/crates/red_knot_vendored/knot_extensions/knot_extensions.pyi +0 -26
  250. ruff-0.9.2/crates/ruff/Cargo.toml +0 -86
  251. ruff-0.9.2/crates/ruff/README.md +0 -545
  252. ruff-0.9.2/crates/ruff/src/commands/analyze_graph.rs +0 -257
  253. ruff-0.9.2/crates/ruff/tests/lint.rs +0 -2162
  254. ruff-0.9.2/crates/ruff/tests/show_settings.rs +0 -33
  255. ruff-0.9.2/crates/ruff/tests/snapshots/show_settings__display_default_settings.snap +0 -401
  256. ruff-0.9.2/crates/ruff_db/src/diagnostic.rs +0 -324
  257. ruff-0.9.2/crates/ruff_graph/src/db.rs +0 -106
  258. ruff-0.9.2/crates/ruff_linter/Cargo.toml +0 -88
  259. ruff-0.9.2/crates/ruff_linter/src/checkers/ast/analyze/bindings.rs +0 -104
  260. ruff-0.9.2/crates/ruff_linter/src/checkers/ast/analyze/deferred_scopes.rs +0 -442
  261. ruff-0.9.2/crates/ruff_linter/src/checkers/ast/analyze/expression.rs +0 -1700
  262. ruff-0.9.2/crates/ruff_linter/src/checkers/ast/analyze/statement.rs +0 -1762
  263. ruff-0.9.2/crates/ruff_linter/src/checkers/ast/mod.rs +0 -2664
  264. ruff-0.9.2/crates/ruff_linter/src/codes.rs +0 -1128
  265. ruff-0.9.2/crates/ruff_linter/src/fix/codemods.rs +0 -224
  266. ruff-0.9.2/crates/ruff_linter/src/fix/mod.rs +0 -380
  267. ruff-0.9.2/crates/ruff_linter/src/rules/airflow/rules/moved_to_provider_in_3.rs +0 -933
  268. ruff-0.9.2/crates/ruff_linter/src/rules/airflow/rules/removal_in_3.rs +0 -857
  269. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_bandit/mod.rs +0 -121
  270. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_sql_expression.rs +0 -196
  271. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_bandit/rules/suspicious_function_call.rs +0 -1002
  272. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_bugbear/mod.rs +0 -147
  273. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_bugbear/rules/class_as_data_structure.rs +0 -127
  274. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_generator_set.rs +0 -132
  275. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_pytest_style/mod.rs +0 -379
  276. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_pytest_style/rules/assertion.rs +0 -760
  277. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_pytest_style/rules/parametrize.rs +0 -886
  278. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_pytest_style/rules/raises.rs +0 -256
  279. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_pytest_style/rules/warns.rs +0 -252
  280. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_simplify/mod.rs +0 -78
  281. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_bool_op.rs +0 -862
  282. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_unary_op.rs +0 -295
  283. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_simplify/rules/needless_bool.rs +0 -308
  284. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_type_checking/rules/runtime_cast_value.rs +0 -81
  285. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_type_checking/rules/type_alias_quotes.rs +0 -380
  286. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_unused_arguments/rules/unused_arguments.rs +0 -557
  287. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/path_constructor_current_directory.rs +0 -145
  288. ruff-0.9.2/crates/ruff_linter/src/rules/isort/rules/organize_imports.rs +0 -148
  289. ruff-0.9.2/crates/ruff_linter/src/rules/pycodestyle/rules/lambda_assignment.rs +0 -282
  290. ruff-0.9.2/crates/ruff_linter/src/rules/pydoclint/mod.rs +0 -72
  291. ruff-0.9.2/crates/ruff_linter/src/rules/pydoclint/rules/check_docstring.rs +0 -1031
  292. ruff-0.9.2/crates/ruff_linter/src/rules/pyflakes/mod.rs +0 -4229
  293. ruff-0.9.2/crates/ruff_linter/src/rules/pyflakes/rules/unused_import.rs +0 -573
  294. ruff-0.9.2/crates/ruff_linter/src/rules/pylint/mod.rs +0 -432
  295. ruff-0.9.2/crates/ruff_linter/src/rules/pylint/rules/mod.rs +0 -215
  296. ruff-0.9.2/crates/ruff_linter/src/rules/pylint/rules/no_self_use.rs +0 -145
  297. ruff-0.9.2/crates/ruff_linter/src/rules/pylint/rules/non_augmented_assignment.rs +0 -231
  298. ruff-0.9.2/crates/ruff_linter/src/rules/pyupgrade/mod.rs +0 -271
  299. ruff-0.9.2/crates/ruff_linter/src/rules/pyupgrade/rules/mod.rs +0 -85
  300. ruff-0.9.2/crates/ruff_linter/src/rules/pyupgrade/rules/use_pep695_type_alias.rs +0 -370
  301. ruff-0.9.2/crates/ruff_linter/src/rules/pyupgrade/rules/yield_in_for_loop.rs +0 -160
  302. ruff-0.9.2/crates/ruff_linter/src/rules/refurb/mod.rs +0 -72
  303. ruff-0.9.2/crates/ruff_linter/src/rules/refurb/rules/mod.rs +0 -69
  304. ruff-0.9.2/crates/ruff_linter/src/rules/refurb/rules/reimplemented_starmap.rs +0 -384
  305. ruff-0.9.2/crates/ruff_linter/src/rules/ruff/mod.rs +0 -516
  306. ruff-0.9.2/crates/ruff_linter/src/rules/ruff/rules/function_call_in_dataclass_default.rs +0 -158
  307. ruff-0.9.2/crates/ruff_linter/src/rules/ruff/rules/mod.rs +0 -112
  308. ruff-0.9.2/crates/ruff_linter/src/rules/ruff/rules/quadratic_list_summation.rs +0 -142
  309. ruff-0.9.2/crates/ruff_linter/src/rules/ruff/rules/unnecessary_regular_expression.rs +0 -299
  310. ruff-0.9.2/crates/ruff_linter/src/rules/tryceratops/rules/try_consider_else.rs +0 -80
  311. ruff-0.9.2/crates/ruff_linter/src/settings/mod.rs +0 -450
  312. ruff-0.9.2/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__import_sorting.snap +0 -88
  313. ruff-0.9.2/crates/ruff_macros/src/lib.rs +0 -122
  314. ruff-0.9.2/crates/ruff_python_ast/src/expression.rs +0 -670
  315. ruff-0.9.2/crates/ruff_python_ast/src/lib.rs +0 -131
  316. ruff-0.9.2/crates/ruff_python_ast/src/node.rs +0 -8304
  317. ruff-0.9.2/crates/ruff_python_ast/src/nodes.rs +0 -4672
  318. ruff-0.9.2/crates/ruff_python_ast/src/parenthesize.rs +0 -67
  319. ruff-0.9.2/crates/ruff_python_ast/src/str.rs +0 -274
  320. ruff-0.9.2/crates/ruff_python_ast/src/visitor/source_order.rs +0 -612
  321. ruff-0.9.2/crates/ruff_python_codegen/src/generator.rs +0 -1889
  322. ruff-0.9.2/crates/ruff_python_formatter/generate.py +0 -175
  323. ruff-0.9.2/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/fstring.py +0 -720
  324. ruff-0.9.2/crates/ruff_python_formatter/src/builders.rs +0 -232
  325. ruff-0.9.2/crates/ruff_python_formatter/src/comments/debug.rs +0 -244
  326. ruff-0.9.2/crates/ruff_python_formatter/src/comments/format.rs +0 -637
  327. ruff-0.9.2/crates/ruff_python_formatter/src/context.rs +0 -428
  328. ruff-0.9.2/crates/ruff_python_formatter/src/expression/expr_slice.rs +0 -283
  329. ruff-0.9.2/crates/ruff_python_formatter/src/expression/expr_subscript.rs +0 -132
  330. ruff-0.9.2/crates/ruff_python_formatter/src/expression/mod.rs +0 -1313
  331. ruff-0.9.2/crates/ruff_python_formatter/src/expression/parentheses.rs +0 -468
  332. ruff-0.9.2/crates/ruff_python_formatter/src/generated.rs +0 -3036
  333. ruff-0.9.2/crates/ruff_python_formatter/src/lib.rs +0 -350
  334. ruff-0.9.2/crates/ruff_python_formatter/src/other/f_string_element.rs +0 -292
  335. ruff-0.9.2/crates/ruff_python_formatter/src/other/parameters.rs +0 -685
  336. ruff-0.9.2/crates/ruff_python_formatter/src/pattern/pattern_arguments.rs +0 -101
  337. ruff-0.9.2/crates/ruff_python_formatter/src/statement/stmt_global.rs +0 -59
  338. ruff-0.9.2/crates/ruff_python_formatter/src/statement/stmt_import_from.rs +0 -83
  339. ruff-0.9.2/crates/ruff_python_formatter/src/statement/stmt_nonlocal.rs +0 -59
  340. ruff-0.9.2/crates/ruff_python_formatter/src/statement/stmt_while.rs +0 -77
  341. ruff-0.9.2/crates/ruff_python_formatter/src/statement/stmt_with.rs +0 -367
  342. ruff-0.9.2/crates/ruff_python_formatter/src/type_param/type_params.rs +0 -36
  343. ruff-0.9.2/crates/ruff_python_formatter/tests/snapshots/format@expression__fstring.py.snap +0 -2291
  344. ruff-0.9.2/crates/ruff_python_semantic/src/analyze/class.rs +0 -390
  345. ruff-0.9.2/crates/ruff_python_semantic/src/imports.rs +0 -283
  346. ruff-0.9.2/crates/ruff_python_semantic/src/nodes.rs +0 -136
  347. ruff-0.9.2/crates/ruff_server/src/fix.rs +0 -158
  348. ruff-0.9.2/crates/ruff_server/src/session/index/ruff_settings.rs +0 -429
  349. ruff-0.9.2/crates/ruff_text_size/src/range.rs +0 -544
  350. ruff-0.9.2/crates/ruff_workspace/src/configuration.rs +0 -2059
  351. ruff-0.9.2/crates/ruff_workspace/src/options.rs +0 -3840
  352. ruff-0.9.2/pyproject.toml +0 -114
  353. {ruff-0.9.2 → ruff-0.9.3}/LICENSE +0 -0
  354. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/Cargo.toml +0 -0
  355. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/build.rs +0 -0
  356. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/README.md +0 -0
  357. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/.mdformat.toml +0 -0
  358. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/annotations/annotated.md +0 -0
  359. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/annotations/any.md +0 -0
  360. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/annotations/literal.md +0 -0
  361. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/annotations/never.md +0 -0
  362. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/annotations/optional.md +0 -0
  363. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/annotations/starred.md +0 -0
  364. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/annotations/stdlib_typing_aliases.md +0 -0
  365. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/annotations/string.md +0 -0
  366. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/annotations/union.md +0 -0
  367. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/annotations/unsupported_special_forms.md +0 -0
  368. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/annotations/unsupported_type_qualifiers.md +0 -0
  369. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/assignment/annotations.md +0 -0
  370. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/assignment/augmented.md +0 -0
  371. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/assignment/multi_target.md +0 -0
  372. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/assignment/unbound.md +0 -0
  373. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/assignment/walrus.md +0 -0
  374. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/binary/classes.md +0 -0
  375. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/binary/custom.md +0 -0
  376. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/binary/instances.md +0 -0
  377. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/binary/integers.md +0 -0
  378. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/boolean/short_circuit.md +0 -0
  379. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/boundness_declaredness/public.md +0 -0
  380. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/call/callable_instance.md +0 -0
  381. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/call/constructor.md +0 -0
  382. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/call/function.md +0 -0
  383. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/call/invalid_syntax.md +0 -0
  384. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/call/union.md +0 -0
  385. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/comparison/byte_literals.md +0 -0
  386. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/comparison/identity.md +0 -0
  387. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/comparison/instances/membership_test.md +0 -0
  388. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/comparison/instances/rich_comparison.md +0 -0
  389. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/comparison/integers.md +0 -0
  390. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/comparison/intersections.md +0 -0
  391. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/comparison/non_bool_returns.md +0 -0
  392. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/comparison/strings.md +0 -0
  393. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/comparison/tuples.md +0 -0
  394. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/comparison/unions.md +0 -0
  395. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/comparison/unsupported.md +0 -0
  396. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/conditional/if_expression.md +0 -0
  397. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/conditional/if_statement.md +0 -0
  398. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/conditional/match.md +0 -0
  399. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/declaration/error.md +0 -0
  400. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/directives/cast.md +0 -0
  401. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/exception/basic.md +0 -0
  402. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/exception/control_flow.md +0 -0
  403. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/exception/except_star.md +0 -0
  404. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/exception/invalid_syntax.md +0 -0
  405. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/expression/attribute.md +0 -0
  406. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/expression/boolean.md +0 -0
  407. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/expression/if.md +0 -0
  408. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/expression/len.md +0 -0
  409. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/final.md +0 -0
  410. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/function/parameters.md +0 -0
  411. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/import/basic.md +0 -0
  412. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/import/conditional.md +0 -0
  413. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/import/errors.md +0 -0
  414. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/import/stubs.md +0 -0
  415. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/import/tracking.md +0 -0
  416. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/intersection_types.md +0 -0
  417. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/invalid_syntax.md +0 -0
  418. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/known_constants.md +0 -0
  419. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/literal/boolean.md +0 -0
  420. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/literal/bytes.md +0 -0
  421. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/literal/collections/dictionary.md +0 -0
  422. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/literal/collections/list.md +0 -0
  423. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/literal/collections/set.md +0 -0
  424. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/literal/collections/tuple.md +0 -0
  425. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/literal/complex.md +0 -0
  426. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/literal/ellipsis.md +0 -0
  427. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/literal/float.md +0 -0
  428. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/literal/integer.md +0 -0
  429. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/literal/string.md +0 -0
  430. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/loops/async_for.md +0 -0
  431. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/loops/for.md +0 -0
  432. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/loops/iterators.md +0 -0
  433. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/loops/while_loop.md +0 -0
  434. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/mdtest_config.md +0 -0
  435. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/metaclass.md +0 -0
  436. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/bool-call.md +0 -0
  437. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/boolean.md +0 -0
  438. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/boolean.md +0 -0
  439. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/elif_else.md +0 -0
  440. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/is.md +0 -0
  441. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/is_not.md +0 -0
  442. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/nested.md +0 -0
  443. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/not.md +0 -0
  444. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/not_eq.md +0 -0
  445. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/match.md +0 -0
  446. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/post_if_statement.md +0 -0
  447. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/truthiness.md +0 -0
  448. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/type.md +0 -0
  449. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/narrow/while.md +0 -0
  450. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/regression/14334_diagnostics_in_wrong_file.md +0 -0
  451. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/scopes/unbound.md +0 -0
  452. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/shadowing/class.md +0 -0
  453. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/shadowing/function.md +0 -0
  454. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/shadowing/variable_declaration.md +0 -0
  455. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/slots.md +0 -0
  456. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/stubs/class.md +0 -0
  457. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/stubs/ellipsis.md +0 -0
  458. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/subscript/class.md +0 -0
  459. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/subscript/instance.md +0 -0
  460. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/subscript/lists.md +0 -0
  461. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/subscript/stepsize_zero.md +0 -0
  462. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/suppressions/knot_ignore.md +0 -0
  463. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/suppressions/no_type_check.md +0 -0
  464. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/suppressions/type_ignore.md +0 -0
  465. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/sys_platform.md +0 -0
  466. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/type_api.md +0 -0
  467. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/type_of/basic.md +0 -0
  468. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/type_of/typing_dot_Type.md +0 -0
  469. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_subtype_of.md +0 -0
  470. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/type_properties/tuples_containing_never.md +0 -0
  471. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/unary/custom.md +0 -0
  472. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/unary/integers.md +0 -0
  473. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/unary/invert_add_usub.md +0 -0
  474. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/unary/not.md +0 -0
  475. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/union_types.md +0 -0
  476. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/unpacking.md +0 -0
  477. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/with/async.md +0 -0
  478. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/resources/mdtest/with/sync.md +0 -0
  479. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/ast_node_ref.rs +0 -0
  480. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/module_name.rs +0 -0
  481. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/module_resolver/mod.rs +0 -0
  482. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/module_resolver/module.rs +0 -0
  483. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/module_resolver/path.rs +0 -0
  484. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/module_resolver/typeshed.rs +0 -0
  485. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/node_key.rs +0 -0
  486. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/python_platform.rs +0 -0
  487. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/python_version.rs +0 -0
  488. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/semantic_index/builder/except_handlers.rs +0 -0
  489. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/semantic_index/constraint.rs +0 -0
  490. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/semantic_index/definition.rs +0 -0
  491. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/semantic_index/expression.rs +0 -0
  492. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/semantic_index/symbol.rs +0 -0
  493. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/semantic_index/use_def/bitset.rs +0 -0
  494. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/semantic_index/use_def/symbol_state.rs +0 -0
  495. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/semantic_index/use_def.rs +0 -0
  496. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/semantic_index.rs +0 -0
  497. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/site_packages.rs +0 -0
  498. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/stdlib.rs +0 -0
  499. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/suppression.rs +0 -0
  500. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/symbol.rs +0 -0
  501. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/types/builder.rs +0 -0
  502. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/types/call/arguments.rs +0 -0
  503. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/types/display.rs +0 -0
  504. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/types/slots.rs +0 -0
  505. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/types/string_annotation.rs +0 -0
  506. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/types/subclass_of.rs +0 -0
  507. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/unpack.rs +0 -0
  508. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/util/mod.rs +0 -0
  509. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/src/util/subscript.rs +0 -0
  510. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_python_semantic/tests/mdtest.rs +0 -0
  511. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_test/Cargo.toml +0 -0
  512. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_test/src/assertion.rs +0 -0
  513. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/Cargo.toml +0 -0
  514. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/README.md +0 -0
  515. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/build.rs +0 -0
  516. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/knot_extensions/README.md +0 -0
  517. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/src/lib.rs +0 -0
  518. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/LICENSE +0 -0
  519. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/README.md +0 -0
  520. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/source_commit.txt +0 -0
  521. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/VERSIONS +0 -0
  522. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/__future__.pyi +0 -0
  523. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/__main__.pyi +0 -0
  524. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_ast.pyi +0 -0
  525. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_asyncio.pyi +0 -0
  526. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_bisect.pyi +0 -0
  527. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_blake2.pyi +0 -0
  528. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_bootlocale.pyi +0 -0
  529. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_bz2.pyi +0 -0
  530. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_codecs.pyi +0 -0
  531. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_collections_abc.pyi +0 -0
  532. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_compat_pickle.pyi +0 -0
  533. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_compression.pyi +0 -0
  534. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_contextvars.pyi +0 -0
  535. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_csv.pyi +0 -0
  536. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_ctypes.pyi +0 -0
  537. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_curses.pyi +0 -0
  538. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_curses_panel.pyi +0 -0
  539. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_dbm.pyi +0 -0
  540. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_decimal.pyi +0 -0
  541. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_dummy_thread.pyi +0 -0
  542. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_dummy_threading.pyi +0 -0
  543. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_frozen_importlib.pyi +0 -0
  544. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_frozen_importlib_external.pyi +0 -0
  545. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_gdbm.pyi +0 -0
  546. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_hashlib.pyi +0 -0
  547. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_heapq.pyi +0 -0
  548. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_imp.pyi +0 -0
  549. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_interpchannels.pyi +0 -0
  550. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_interpqueues.pyi +0 -0
  551. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_interpreters.pyi +0 -0
  552. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_io.pyi +0 -0
  553. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_json.pyi +0 -0
  554. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_locale.pyi +0 -0
  555. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_lsprof.pyi +0 -0
  556. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_lzma.pyi +0 -0
  557. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_markupbase.pyi +0 -0
  558. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_msi.pyi +0 -0
  559. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_multibytecodec.pyi +0 -0
  560. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_operator.pyi +0 -0
  561. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_osx_support.pyi +0 -0
  562. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_pickle.pyi +0 -0
  563. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_posixsubprocess.pyi +0 -0
  564. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_py_abc.pyi +0 -0
  565. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_pydecimal.pyi +0 -0
  566. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_queue.pyi +0 -0
  567. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_random.pyi +0 -0
  568. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_sitebuiltins.pyi +0 -0
  569. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_socket.pyi +0 -0
  570. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_sqlite3.pyi +0 -0
  571. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_ssl.pyi +0 -0
  572. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_stat.pyi +0 -0
  573. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_struct.pyi +0 -0
  574. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_thread.pyi +0 -0
  575. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_threading_local.pyi +0 -0
  576. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_tkinter.pyi +0 -0
  577. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_tracemalloc.pyi +0 -0
  578. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_typeshed/README.md +0 -0
  579. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_typeshed/__init__.pyi +0 -0
  580. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_typeshed/dbapi.pyi +0 -0
  581. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_typeshed/importlib.pyi +0 -0
  582. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_typeshed/wsgi.pyi +0 -0
  583. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_typeshed/xml.pyi +0 -0
  584. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_warnings.pyi +0 -0
  585. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_weakref.pyi +0 -0
  586. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_weakrefset.pyi +0 -0
  587. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/_winapi.pyi +0 -0
  588. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/abc.pyi +0 -0
  589. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/aifc.pyi +0 -0
  590. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/antigravity.pyi +0 -0
  591. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/argparse.pyi +0 -0
  592. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/array.pyi +0 -0
  593. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ast.pyi +0 -0
  594. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asynchat.pyi +0 -0
  595. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/__init__.pyi +0 -0
  596. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/base_events.pyi +0 -0
  597. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/base_futures.pyi +0 -0
  598. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/base_subprocess.pyi +0 -0
  599. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/base_tasks.pyi +0 -0
  600. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/constants.pyi +0 -0
  601. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/coroutines.pyi +0 -0
  602. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/events.pyi +0 -0
  603. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/exceptions.pyi +0 -0
  604. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/format_helpers.pyi +0 -0
  605. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/futures.pyi +0 -0
  606. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/locks.pyi +0 -0
  607. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/log.pyi +0 -0
  608. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/mixins.pyi +0 -0
  609. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/proactor_events.pyi +0 -0
  610. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/protocols.pyi +0 -0
  611. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/queues.pyi +0 -0
  612. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/runners.pyi +0 -0
  613. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/selector_events.pyi +0 -0
  614. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/sslproto.pyi +0 -0
  615. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/staggered.pyi +0 -0
  616. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/streams.pyi +0 -0
  617. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/subprocess.pyi +0 -0
  618. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/taskgroups.pyi +0 -0
  619. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/tasks.pyi +0 -0
  620. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/threads.pyi +0 -0
  621. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/timeouts.pyi +0 -0
  622. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/transports.pyi +0 -0
  623. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/trsock.pyi +0 -0
  624. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/unix_events.pyi +0 -0
  625. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/windows_events.pyi +0 -0
  626. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/windows_utils.pyi +0 -0
  627. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncore.pyi +0 -0
  628. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/atexit.pyi +0 -0
  629. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/audioop.pyi +0 -0
  630. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/base64.pyi +0 -0
  631. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/bdb.pyi +0 -0
  632. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/binascii.pyi +0 -0
  633. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/binhex.pyi +0 -0
  634. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/bisect.pyi +0 -0
  635. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/builtins.pyi +0 -0
  636. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/bz2.pyi +0 -0
  637. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/cProfile.pyi +0 -0
  638. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/calendar.pyi +0 -0
  639. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/cgi.pyi +0 -0
  640. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/cgitb.pyi +0 -0
  641. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/chunk.pyi +0 -0
  642. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/cmath.pyi +0 -0
  643. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/cmd.pyi +0 -0
  644. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/code.pyi +0 -0
  645. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/codecs.pyi +0 -0
  646. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/codeop.pyi +0 -0
  647. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/collections/__init__.pyi +0 -0
  648. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/collections/abc.pyi +0 -0
  649. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/colorsys.pyi +0 -0
  650. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/compileall.pyi +0 -0
  651. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/concurrent/__init__.pyi +0 -0
  652. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/concurrent/futures/__init__.pyi +0 -0
  653. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/concurrent/futures/_base.pyi +0 -0
  654. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/concurrent/futures/process.pyi +0 -0
  655. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/concurrent/futures/thread.pyi +0 -0
  656. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/configparser.pyi +0 -0
  657. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/contextlib.pyi +0 -0
  658. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/contextvars.pyi +0 -0
  659. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/copy.pyi +0 -0
  660. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/copyreg.pyi +0 -0
  661. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/crypt.pyi +0 -0
  662. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/csv.pyi +0 -0
  663. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/__init__.pyi +0 -0
  664. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/_endian.pyi +0 -0
  665. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/macholib/__init__.pyi +0 -0
  666. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/macholib/dyld.pyi +0 -0
  667. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/macholib/dylib.pyi +0 -0
  668. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/macholib/framework.pyi +0 -0
  669. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/util.pyi +0 -0
  670. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/wintypes.pyi +0 -0
  671. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/curses/__init__.pyi +0 -0
  672. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/curses/ascii.pyi +0 -0
  673. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/curses/has_key.pyi +0 -0
  674. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/curses/panel.pyi +0 -0
  675. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/curses/textpad.pyi +0 -0
  676. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/dataclasses.pyi +0 -0
  677. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/datetime.pyi +0 -0
  678. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/dbm/__init__.pyi +0 -0
  679. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/dbm/dumb.pyi +0 -0
  680. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/dbm/gnu.pyi +0 -0
  681. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/dbm/ndbm.pyi +0 -0
  682. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/dbm/sqlite3.pyi +0 -0
  683. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/decimal.pyi +0 -0
  684. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/difflib.pyi +0 -0
  685. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/dis.pyi +0 -0
  686. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/__init__.pyi +0 -0
  687. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/_msvccompiler.pyi +0 -0
  688. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/archive_util.pyi +0 -0
  689. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/bcppcompiler.pyi +0 -0
  690. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/ccompiler.pyi +0 -0
  691. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/cmd.pyi +0 -0
  692. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/__init__.pyi +0 -0
  693. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/bdist.pyi +0 -0
  694. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/bdist_dumb.pyi +0 -0
  695. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/bdist_msi.pyi +0 -0
  696. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/bdist_packager.pyi +0 -0
  697. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/bdist_rpm.pyi +0 -0
  698. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/bdist_wininst.pyi +0 -0
  699. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/build.pyi +0 -0
  700. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/build_clib.pyi +0 -0
  701. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/build_ext.pyi +0 -0
  702. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/build_py.pyi +0 -0
  703. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/build_scripts.pyi +0 -0
  704. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/check.pyi +0 -0
  705. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/clean.pyi +0 -0
  706. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/config.pyi +0 -0
  707. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/install.pyi +0 -0
  708. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/install_data.pyi +0 -0
  709. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/install_egg_info.pyi +0 -0
  710. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/install_headers.pyi +0 -0
  711. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/install_lib.pyi +0 -0
  712. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/install_scripts.pyi +0 -0
  713. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/register.pyi +0 -0
  714. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/sdist.pyi +0 -0
  715. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/upload.pyi +0 -0
  716. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/config.pyi +0 -0
  717. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/core.pyi +0 -0
  718. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/cygwinccompiler.pyi +0 -0
  719. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/debug.pyi +0 -0
  720. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/dep_util.pyi +0 -0
  721. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/dir_util.pyi +0 -0
  722. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/dist.pyi +0 -0
  723. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/errors.pyi +0 -0
  724. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/extension.pyi +0 -0
  725. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/fancy_getopt.pyi +0 -0
  726. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/file_util.pyi +0 -0
  727. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/filelist.pyi +0 -0
  728. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/log.pyi +0 -0
  729. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/msvccompiler.pyi +0 -0
  730. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/spawn.pyi +0 -0
  731. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/sysconfig.pyi +0 -0
  732. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/text_file.pyi +0 -0
  733. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/unixccompiler.pyi +0 -0
  734. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/util.pyi +0 -0
  735. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/version.pyi +0 -0
  736. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/doctest.pyi +0 -0
  737. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/dummy_threading.pyi +0 -0
  738. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/__init__.pyi +0 -0
  739. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/_header_value_parser.pyi +0 -0
  740. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/_policybase.pyi +0 -0
  741. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/base64mime.pyi +0 -0
  742. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/charset.pyi +0 -0
  743. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/contentmanager.pyi +0 -0
  744. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/encoders.pyi +0 -0
  745. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/errors.pyi +0 -0
  746. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/feedparser.pyi +0 -0
  747. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/generator.pyi +0 -0
  748. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/header.pyi +0 -0
  749. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/headerregistry.pyi +0 -0
  750. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/iterators.pyi +0 -0
  751. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/message.pyi +0 -0
  752. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/__init__.pyi +0 -0
  753. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/application.pyi +0 -0
  754. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/audio.pyi +0 -0
  755. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/base.pyi +0 -0
  756. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/image.pyi +0 -0
  757. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/message.pyi +0 -0
  758. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/multipart.pyi +0 -0
  759. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/nonmultipart.pyi +0 -0
  760. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/text.pyi +0 -0
  761. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/parser.pyi +0 -0
  762. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/policy.pyi +0 -0
  763. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/quoprimime.pyi +0 -0
  764. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/utils.pyi +0 -0
  765. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/__init__.pyi +0 -0
  766. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/aliases.pyi +0 -0
  767. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/ascii.pyi +0 -0
  768. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/base64_codec.pyi +0 -0
  769. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/big5.pyi +0 -0
  770. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/big5hkscs.pyi +0 -0
  771. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/bz2_codec.pyi +0 -0
  772. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/charmap.pyi +0 -0
  773. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp037.pyi +0 -0
  774. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1006.pyi +0 -0
  775. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1026.pyi +0 -0
  776. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1125.pyi +0 -0
  777. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1140.pyi +0 -0
  778. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1250.pyi +0 -0
  779. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1251.pyi +0 -0
  780. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1252.pyi +0 -0
  781. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1253.pyi +0 -0
  782. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1254.pyi +0 -0
  783. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1255.pyi +0 -0
  784. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1256.pyi +0 -0
  785. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1257.pyi +0 -0
  786. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1258.pyi +0 -0
  787. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp273.pyi +0 -0
  788. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp424.pyi +0 -0
  789. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp437.pyi +0 -0
  790. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp500.pyi +0 -0
  791. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp720.pyi +0 -0
  792. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp737.pyi +0 -0
  793. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp775.pyi +0 -0
  794. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp850.pyi +0 -0
  795. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp852.pyi +0 -0
  796. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp855.pyi +0 -0
  797. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp856.pyi +0 -0
  798. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp857.pyi +0 -0
  799. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp858.pyi +0 -0
  800. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp860.pyi +0 -0
  801. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp861.pyi +0 -0
  802. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp862.pyi +0 -0
  803. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp863.pyi +0 -0
  804. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp864.pyi +0 -0
  805. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp865.pyi +0 -0
  806. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp866.pyi +0 -0
  807. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp869.pyi +0 -0
  808. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp874.pyi +0 -0
  809. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp875.pyi +0 -0
  810. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp932.pyi +0 -0
  811. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp949.pyi +0 -0
  812. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp950.pyi +0 -0
  813. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/euc_jis_2004.pyi +0 -0
  814. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/euc_jisx0213.pyi +0 -0
  815. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/euc_jp.pyi +0 -0
  816. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/euc_kr.pyi +0 -0
  817. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/gb18030.pyi +0 -0
  818. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/gb2312.pyi +0 -0
  819. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/gbk.pyi +0 -0
  820. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/hex_codec.pyi +0 -0
  821. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/hp_roman8.pyi +0 -0
  822. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/hz.pyi +0 -0
  823. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/idna.pyi +0 -0
  824. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_jp.pyi +0 -0
  825. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_jp_1.pyi +0 -0
  826. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_jp_2.pyi +0 -0
  827. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
  828. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_jp_3.pyi +0 -0
  829. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
  830. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_kr.pyi +0 -0
  831. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_1.pyi +0 -0
  832. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_10.pyi +0 -0
  833. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_11.pyi +0 -0
  834. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_13.pyi +0 -0
  835. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_14.pyi +0 -0
  836. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_15.pyi +0 -0
  837. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_16.pyi +0 -0
  838. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_2.pyi +0 -0
  839. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_3.pyi +0 -0
  840. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_4.pyi +0 -0
  841. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_5.pyi +0 -0
  842. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_6.pyi +0 -0
  843. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_7.pyi +0 -0
  844. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_8.pyi +0 -0
  845. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_9.pyi +0 -0
  846. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/johab.pyi +0 -0
  847. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/koi8_r.pyi +0 -0
  848. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/koi8_t.pyi +0 -0
  849. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/koi8_u.pyi +0 -0
  850. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/kz1048.pyi +0 -0
  851. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/latin_1.pyi +0 -0
  852. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_arabic.pyi +0 -0
  853. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_centeuro.pyi +0 -0
  854. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_croatian.pyi +0 -0
  855. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_cyrillic.pyi +0 -0
  856. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_farsi.pyi +0 -0
  857. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_greek.pyi +0 -0
  858. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_iceland.pyi +0 -0
  859. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_latin2.pyi +0 -0
  860. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_roman.pyi +0 -0
  861. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_romanian.pyi +0 -0
  862. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_turkish.pyi +0 -0
  863. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mbcs.pyi +0 -0
  864. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/oem.pyi +0 -0
  865. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/palmos.pyi +0 -0
  866. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/ptcp154.pyi +0 -0
  867. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/punycode.pyi +0 -0
  868. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/quopri_codec.pyi +0 -0
  869. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/raw_unicode_escape.pyi +0 -0
  870. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/rot_13.pyi +0 -0
  871. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/shift_jis.pyi +0 -0
  872. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/shift_jis_2004.pyi +0 -0
  873. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/shift_jisx0213.pyi +0 -0
  874. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/tis_620.pyi +0 -0
  875. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/undefined.pyi +0 -0
  876. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/unicode_escape.pyi +0 -0
  877. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_16.pyi +0 -0
  878. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_16_be.pyi +0 -0
  879. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_16_le.pyi +0 -0
  880. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_32.pyi +0 -0
  881. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_32_be.pyi +0 -0
  882. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_32_le.pyi +0 -0
  883. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_7.pyi +0 -0
  884. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_8.pyi +0 -0
  885. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_8_sig.pyi +0 -0
  886. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/uu_codec.pyi +0 -0
  887. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/zlib_codec.pyi +0 -0
  888. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ensurepip/__init__.pyi +0 -0
  889. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/enum.pyi +0 -0
  890. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/errno.pyi +0 -0
  891. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/faulthandler.pyi +0 -0
  892. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/fcntl.pyi +0 -0
  893. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/filecmp.pyi +0 -0
  894. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/fileinput.pyi +0 -0
  895. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/fnmatch.pyi +0 -0
  896. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/formatter.pyi +0 -0
  897. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/fractions.pyi +0 -0
  898. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ftplib.pyi +0 -0
  899. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/functools.pyi +0 -0
  900. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/gc.pyi +0 -0
  901. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/genericpath.pyi +0 -0
  902. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/getopt.pyi +0 -0
  903. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/getpass.pyi +0 -0
  904. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/gettext.pyi +0 -0
  905. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/glob.pyi +0 -0
  906. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/graphlib.pyi +0 -0
  907. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/grp.pyi +0 -0
  908. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/gzip.pyi +0 -0
  909. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/hashlib.pyi +0 -0
  910. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/heapq.pyi +0 -0
  911. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/hmac.pyi +0 -0
  912. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/html/__init__.pyi +0 -0
  913. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/html/entities.pyi +0 -0
  914. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/html/parser.pyi +0 -0
  915. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/http/__init__.pyi +0 -0
  916. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/http/client.pyi +0 -0
  917. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/http/cookiejar.pyi +0 -0
  918. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/http/cookies.pyi +0 -0
  919. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/http/server.pyi +0 -0
  920. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/imaplib.pyi +0 -0
  921. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/imghdr.pyi +0 -0
  922. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/imp.pyi +0 -0
  923. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/__init__.pyi +0 -0
  924. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/_abc.pyi +0 -0
  925. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/_bootstrap.pyi +0 -0
  926. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/_bootstrap_external.pyi +0 -0
  927. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/abc.pyi +0 -0
  928. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/machinery.pyi +0 -0
  929. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/metadata/__init__.pyi +0 -0
  930. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/metadata/_meta.pyi +0 -0
  931. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/metadata/diagnose.pyi +0 -0
  932. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/readers.pyi +0 -0
  933. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/resources/__init__.pyi +0 -0
  934. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/resources/_common.pyi +0 -0
  935. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/resources/_functional.pyi +0 -0
  936. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/resources/abc.pyi +0 -0
  937. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/resources/readers.pyi +0 -0
  938. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/resources/simple.pyi +0 -0
  939. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/simple.pyi +0 -0
  940. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/util.pyi +0 -0
  941. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/inspect.pyi +0 -0
  942. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/io.pyi +0 -0
  943. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ipaddress.pyi +0 -0
  944. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/itertools.pyi +0 -0
  945. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/json/__init__.pyi +0 -0
  946. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/json/decoder.pyi +0 -0
  947. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/json/encoder.pyi +0 -0
  948. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/json/scanner.pyi +0 -0
  949. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/json/tool.pyi +0 -0
  950. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/keyword.pyi +0 -0
  951. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/__init__.pyi +0 -0
  952. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/btm_matcher.pyi +0 -0
  953. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixer_base.pyi +0 -0
  954. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/__init__.pyi +0 -0
  955. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
  956. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
  957. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
  958. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
  959. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
  960. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
  961. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
  962. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
  963. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
  964. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
  965. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
  966. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
  967. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
  968. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
  969. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
  970. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
  971. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
  972. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
  973. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
  974. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
  975. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
  976. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
  977. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
  978. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
  979. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
  980. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
  981. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
  982. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
  983. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
  984. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
  985. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
  986. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
  987. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
  988. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
  989. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
  990. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
  991. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
  992. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
  993. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
  994. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
  995. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
  996. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
  997. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
  998. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
  999. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
  1000. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
  1001. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
  1002. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
  1003. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
  1004. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
  1005. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
  1006. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
  1007. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/main.pyi +0 -0
  1008. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
  1009. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/driver.pyi +0 -0
  1010. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
  1011. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/literals.pyi +0 -0
  1012. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/parse.pyi +0 -0
  1013. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
  1014. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/token.pyi +0 -0
  1015. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
  1016. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pygram.pyi +0 -0
  1017. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pytree.pyi +0 -0
  1018. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/refactor.pyi +0 -0
  1019. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/linecache.pyi +0 -0
  1020. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/locale.pyi +0 -0
  1021. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/logging/__init__.pyi +0 -0
  1022. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/logging/config.pyi +0 -0
  1023. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/logging/handlers.pyi +0 -0
  1024. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/lzma.pyi +0 -0
  1025. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/mailbox.pyi +0 -0
  1026. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/mailcap.pyi +0 -0
  1027. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/marshal.pyi +0 -0
  1028. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/math.pyi +0 -0
  1029. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/mimetypes.pyi +0 -0
  1030. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/mmap.pyi +0 -0
  1031. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/modulefinder.pyi +0 -0
  1032. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/msilib/__init__.pyi +0 -0
  1033. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/msilib/schema.pyi +0 -0
  1034. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/msilib/sequence.pyi +0 -0
  1035. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/msilib/text.pyi +0 -0
  1036. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/msvcrt.pyi +0 -0
  1037. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/__init__.pyi +0 -0
  1038. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/connection.pyi +0 -0
  1039. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/context.pyi +0 -0
  1040. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
  1041. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/dummy/connection.pyi +0 -0
  1042. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/forkserver.pyi +0 -0
  1043. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/heap.pyi +0 -0
  1044. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/managers.pyi +0 -0
  1045. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/pool.pyi +0 -0
  1046. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/popen_fork.pyi +0 -0
  1047. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
  1048. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
  1049. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
  1050. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/process.pyi +0 -0
  1051. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/queues.pyi +0 -0
  1052. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/reduction.pyi +0 -0
  1053. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/resource_sharer.pyi +0 -0
  1054. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/resource_tracker.pyi +0 -0
  1055. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/shared_memory.pyi +0 -0
  1056. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/sharedctypes.pyi +0 -0
  1057. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/spawn.pyi +0 -0
  1058. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/synchronize.pyi +0 -0
  1059. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/util.pyi +0 -0
  1060. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/netrc.pyi +0 -0
  1061. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/nis.pyi +0 -0
  1062. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/nntplib.pyi +0 -0
  1063. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/nt.pyi +0 -0
  1064. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ntpath.pyi +0 -0
  1065. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/nturl2path.pyi +0 -0
  1066. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/numbers.pyi +0 -0
  1067. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/opcode.pyi +0 -0
  1068. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/operator.pyi +0 -0
  1069. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/optparse.pyi +0 -0
  1070. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/os/__init__.pyi +0 -0
  1071. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/os/path.pyi +0 -0
  1072. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ossaudiodev.pyi +0 -0
  1073. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/parser.pyi +0 -0
  1074. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pathlib.pyi +0 -0
  1075. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pdb.pyi +0 -0
  1076. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pickle.pyi +0 -0
  1077. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pickletools.pyi +0 -0
  1078. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pipes.pyi +0 -0
  1079. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pkgutil.pyi +0 -0
  1080. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/platform.pyi +0 -0
  1081. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/plistlib.pyi +0 -0
  1082. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/poplib.pyi +0 -0
  1083. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/posix.pyi +0 -0
  1084. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/posixpath.pyi +0 -0
  1085. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pprint.pyi +0 -0
  1086. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/profile.pyi +0 -0
  1087. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pstats.pyi +0 -0
  1088. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pty.pyi +0 -0
  1089. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pwd.pyi +0 -0
  1090. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/py_compile.pyi +0 -0
  1091. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pyclbr.pyi +0 -0
  1092. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pydoc.pyi +0 -0
  1093. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pydoc_data/__init__.pyi +0 -0
  1094. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pydoc_data/topics.pyi +0 -0
  1095. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pyexpat/__init__.pyi +0 -0
  1096. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pyexpat/errors.pyi +0 -0
  1097. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/pyexpat/model.pyi +0 -0
  1098. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/queue.pyi +0 -0
  1099. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/quopri.pyi +0 -0
  1100. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/random.pyi +0 -0
  1101. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/re.pyi +0 -0
  1102. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/readline.pyi +0 -0
  1103. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/reprlib.pyi +0 -0
  1104. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/resource.pyi +0 -0
  1105. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/rlcompleter.pyi +0 -0
  1106. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/runpy.pyi +0 -0
  1107. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/sched.pyi +0 -0
  1108. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/secrets.pyi +0 -0
  1109. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/select.pyi +0 -0
  1110. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/selectors.pyi +0 -0
  1111. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/shelve.pyi +0 -0
  1112. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/shlex.pyi +0 -0
  1113. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/shutil.pyi +0 -0
  1114. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/signal.pyi +0 -0
  1115. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/site.pyi +0 -0
  1116. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/smtpd.pyi +0 -0
  1117. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/smtplib.pyi +0 -0
  1118. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/sndhdr.pyi +0 -0
  1119. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/socket.pyi +0 -0
  1120. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/socketserver.pyi +0 -0
  1121. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/spwd.pyi +0 -0
  1122. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/sqlite3/__init__.pyi +0 -0
  1123. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/sqlite3/dbapi2.pyi +0 -0
  1124. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/sqlite3/dump.pyi +0 -0
  1125. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/sre_compile.pyi +0 -0
  1126. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/sre_constants.pyi +0 -0
  1127. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/sre_parse.pyi +0 -0
  1128. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/ssl.pyi +0 -0
  1129. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/stat.pyi +0 -0
  1130. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/statistics.pyi +0 -0
  1131. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/string.pyi +0 -0
  1132. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/stringprep.pyi +0 -0
  1133. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/struct.pyi +0 -0
  1134. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/subprocess.pyi +0 -0
  1135. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/sunau.pyi +0 -0
  1136. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/symbol.pyi +0 -0
  1137. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/symtable.pyi +0 -0
  1138. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/sys/__init__.pyi +0 -0
  1139. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/sys/_monitoring.pyi +0 -0
  1140. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/sysconfig.pyi +0 -0
  1141. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/syslog.pyi +0 -0
  1142. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tabnanny.pyi +0 -0
  1143. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tarfile.pyi +0 -0
  1144. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/telnetlib.pyi +0 -0
  1145. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tempfile.pyi +0 -0
  1146. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/termios.pyi +0 -0
  1147. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/textwrap.pyi +0 -0
  1148. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/this.pyi +0 -0
  1149. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/threading.pyi +0 -0
  1150. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/time.pyi +0 -0
  1151. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/timeit.pyi +0 -0
  1152. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/__init__.pyi +0 -0
  1153. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/colorchooser.pyi +0 -0
  1154. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/commondialog.pyi +0 -0
  1155. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/constants.pyi +0 -0
  1156. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/dialog.pyi +0 -0
  1157. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/dnd.pyi +0 -0
  1158. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/filedialog.pyi +0 -0
  1159. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/font.pyi +0 -0
  1160. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/messagebox.pyi +0 -0
  1161. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/scrolledtext.pyi +0 -0
  1162. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/simpledialog.pyi +0 -0
  1163. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/tix.pyi +0 -0
  1164. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/ttk.pyi +0 -0
  1165. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/token.pyi +0 -0
  1166. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tokenize.pyi +0 -0
  1167. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tomllib.pyi +0 -0
  1168. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/trace.pyi +0 -0
  1169. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/traceback.pyi +0 -0
  1170. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tracemalloc.pyi +0 -0
  1171. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/tty.pyi +0 -0
  1172. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/turtle.pyi +0 -0
  1173. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/types.pyi +0 -0
  1174. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/typing.pyi +0 -0
  1175. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/typing_extensions.pyi +0 -0
  1176. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unicodedata.pyi +0 -0
  1177. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/__init__.pyi +0 -0
  1178. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/_log.pyi +0 -0
  1179. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/async_case.pyi +0 -0
  1180. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/case.pyi +0 -0
  1181. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/loader.pyi +0 -0
  1182. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/main.pyi +0 -0
  1183. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/mock.pyi +0 -0
  1184. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/result.pyi +0 -0
  1185. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/runner.pyi +0 -0
  1186. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/signals.pyi +0 -0
  1187. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/suite.pyi +0 -0
  1188. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/util.pyi +0 -0
  1189. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/urllib/__init__.pyi +0 -0
  1190. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/urllib/error.pyi +0 -0
  1191. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/urllib/parse.pyi +0 -0
  1192. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/urllib/request.pyi +0 -0
  1193. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/urllib/response.pyi +0 -0
  1194. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/urllib/robotparser.pyi +0 -0
  1195. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/uu.pyi +0 -0
  1196. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/uuid.pyi +0 -0
  1197. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/warnings.pyi +0 -0
  1198. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/wave.pyi +0 -0
  1199. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/weakref.pyi +0 -0
  1200. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/webbrowser.pyi +0 -0
  1201. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/winreg.pyi +0 -0
  1202. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/winsound.pyi +0 -0
  1203. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/__init__.pyi +0 -0
  1204. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/handlers.pyi +0 -0
  1205. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/headers.pyi +0 -0
  1206. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/simple_server.pyi +0 -0
  1207. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/types.pyi +0 -0
  1208. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/util.pyi +0 -0
  1209. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/validate.pyi +0 -0
  1210. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xdrlib.pyi +0 -0
  1211. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/__init__.pyi +0 -0
  1212. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/NodeFilter.pyi +0 -0
  1213. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/__init__.pyi +0 -0
  1214. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/domreg.pyi +0 -0
  1215. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/expatbuilder.pyi +0 -0
  1216. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/minicompat.pyi +0 -0
  1217. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/minidom.pyi +0 -0
  1218. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/pulldom.pyi +0 -0
  1219. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/xmlbuilder.pyi +0 -0
  1220. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/etree/ElementInclude.pyi +0 -0
  1221. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/etree/ElementPath.pyi +0 -0
  1222. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/etree/ElementTree.pyi +0 -0
  1223. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/etree/__init__.pyi +0 -0
  1224. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/etree/cElementTree.pyi +0 -0
  1225. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/parsers/__init__.pyi +0 -0
  1226. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/parsers/expat/__init__.pyi +0 -0
  1227. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/parsers/expat/errors.pyi +0 -0
  1228. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/parsers/expat/model.pyi +0 -0
  1229. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/sax/__init__.pyi +0 -0
  1230. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/sax/_exceptions.pyi +0 -0
  1231. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/sax/expatreader.pyi +0 -0
  1232. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/sax/handler.pyi +0 -0
  1233. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/sax/saxutils.pyi +0 -0
  1234. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/sax/xmlreader.pyi +0 -0
  1235. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xmlrpc/__init__.pyi +0 -0
  1236. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xmlrpc/client.pyi +0 -0
  1237. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xmlrpc/server.pyi +0 -0
  1238. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/xxlimited.pyi +0 -0
  1239. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/zipapp.pyi +0 -0
  1240. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/zipfile/__init__.pyi +0 -0
  1241. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/zipfile/_path/__init__.pyi +0 -0
  1242. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/zipfile/_path/glob.pyi +0 -0
  1243. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/zipimport.pyi +0 -0
  1244. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/zlib.pyi +0 -0
  1245. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/zoneinfo/__init__.pyi +0 -0
  1246. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/zoneinfo/_common.pyi +0 -0
  1247. {ruff-0.9.2 → ruff-0.9.3}/crates/red_knot_vendored/vendor/typeshed/stdlib/zoneinfo/_tzpath.pyi +0 -0
  1248. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/build.rs +0 -0
  1249. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/cache_mutable/.gitignore +0 -0
  1250. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/cache_remove_old_files/source.py +0 -0
  1251. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/formatted.py +0 -0
  1252. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/include-test/a.py +0 -0
  1253. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/include-test/b.py +0 -0
  1254. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/include-test/nested-project/e.py +0 -0
  1255. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/include-test/nested-project/pyproject.toml +0 -0
  1256. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/include-test/pyproject.toml +0 -0
  1257. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/include-test/subdirectory/c.py +0 -0
  1258. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/include-test/subdirectory/d.py +0 -0
  1259. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/trailing_semicolon.ipynb +0 -0
  1260. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/unformatted.ipynb +0 -0
  1261. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/resources/test/fixtures/unformatted.py +0 -0
  1262. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/args.rs +0 -0
  1263. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/cache.rs +0 -0
  1264. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/add_noqa.rs +0 -0
  1265. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/check.rs +0 -0
  1266. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/check_stdin.rs +0 -0
  1267. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/clean.rs +0 -0
  1268. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/config.rs +0 -0
  1269. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/format.rs +0 -0
  1270. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/format_stdin.rs +0 -0
  1271. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/linter.rs +0 -0
  1272. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/mod.rs +0 -0
  1273. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/rule.rs +0 -0
  1274. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/server.rs +0 -0
  1275. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/show_files.rs +0 -0
  1276. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/show_settings.rs +0 -0
  1277. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/snapshots/ruff__commands__check__test__E902_E902.py.snap +0 -0
  1278. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/commands/version.rs +0 -0
  1279. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/diagnostics.rs +0 -0
  1280. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/lib.rs +0 -0
  1281. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/main.rs +0 -0
  1282. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/printer.rs +0 -0
  1283. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/resolve.rs +0 -0
  1284. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/snapshots/ruff__version__tests__version_formatting.snap +0 -0
  1285. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/snapshots/ruff__version__tests__version_formatting_with_commit_info.snap +0 -0
  1286. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/snapshots/ruff__version__tests__version_formatting_with_commits_since_last_tag.snap +0 -0
  1287. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/snapshots/ruff__version__tests__version_serializable.snap +0 -0
  1288. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/stdin.rs +0 -0
  1289. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/src/version.rs +0 -0
  1290. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/tests/analyze_graph.rs +0 -0
  1291. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/tests/config.rs +0 -0
  1292. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/tests/format.rs +0 -0
  1293. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/tests/integration_test.rs +0 -0
  1294. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/tests/resolve_files.rs +0 -0
  1295. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/tests/snapshots/integration_test__rule_f401.snap +0 -0
  1296. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/tests/snapshots/integration_test__stdin_json.snap +0 -0
  1297. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff/tests/version.rs +0 -0
  1298. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/Cargo.toml +0 -0
  1299. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/LICENSE-APACHE +0 -0
  1300. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/LICENSE-MIT +0 -0
  1301. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/README.md +0 -0
  1302. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/examples/expected_type.rs +0 -0
  1303. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/examples/expected_type.svg +0 -0
  1304. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/examples/footer.rs +0 -0
  1305. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/examples/footer.svg +0 -0
  1306. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/examples/format.rs +0 -0
  1307. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/examples/format.svg +0 -0
  1308. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/examples/multislice.rs +0 -0
  1309. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/examples/multislice.svg +0 -0
  1310. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/src/lib.rs +0 -0
  1311. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/src/renderer/display_list.rs +0 -0
  1312. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/src/renderer/margin.rs +0 -0
  1313. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/src/renderer/mod.rs +0 -0
  1314. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/src/renderer/styled_buffer.rs +0 -0
  1315. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/src/renderer/stylesheet.rs +0 -0
  1316. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/src/snippet.rs +0 -0
  1317. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/examples.rs +0 -0
  1318. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_eof.svg +0 -0
  1319. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_eof.toml +0 -0
  1320. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_insertion.svg +0 -0
  1321. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_insertion.toml +0 -0
  1322. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_multiline.svg +0 -0
  1323. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_multiline.toml +0 -0
  1324. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_multiline2.svg +0 -0
  1325. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_multiline2.toml +0 -0
  1326. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_removed_nl.svg +0 -0
  1327. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_removed_nl.toml +0 -0
  1328. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/ensure-emoji-highlight-width.svg +0 -0
  1329. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/ensure-emoji-highlight-width.toml +0 -0
  1330. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_ann_multiline.svg +0 -0
  1331. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_ann_multiline.toml +0 -0
  1332. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_bad_origin_line.svg +0 -0
  1333. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_bad_origin_line.toml +0 -0
  1334. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_leading.svg +0 -0
  1335. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_leading.toml +0 -0
  1336. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_trailing.svg +0 -0
  1337. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_trailing.toml +0 -0
  1338. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/issue_9.svg +0 -0
  1339. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/issue_9.toml +0 -0
  1340. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/multiple_annotations.svg +0 -0
  1341. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/multiple_annotations.toml +0 -0
  1342. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/simple.svg +0 -0
  1343. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/simple.toml +0 -0
  1344. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line.svg +0 -0
  1345. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line.toml +0 -0
  1346. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line_char.svg +0 -0
  1347. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line_char.toml +0 -0
  1348. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line_non_ws.svg +0 -0
  1349. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line_non_ws.toml +0 -0
  1350. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/deserialize.rs +0 -0
  1351. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/fixtures/main.rs +0 -0
  1352. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/formatter.rs +0 -0
  1353. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_annotate_snippets/tests/rustc_tests.rs +0 -0
  1354. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_cache/Cargo.toml +0 -0
  1355. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_cache/src/cache_key.rs +0 -0
  1356. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_cache/src/filetime.rs +0 -0
  1357. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_cache/src/globset.rs +0 -0
  1358. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_cache/src/lib.rs +0 -0
  1359. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_cache/tests/cache_key.rs +0 -0
  1360. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/Cargo.toml +0 -0
  1361. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/display.rs +0 -0
  1362. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/file_revision.rs +0 -0
  1363. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/files/file_root.rs +0 -0
  1364. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/files/path.rs +0 -0
  1365. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/files.rs +0 -0
  1366. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/lib.rs +0 -0
  1367. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/panic.rs +0 -0
  1368. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/parsed.rs +0 -0
  1369. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/source.rs +0 -0
  1370. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/system/memory_fs.rs +0 -0
  1371. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/system/os.rs +0 -0
  1372. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/system/path.rs +0 -0
  1373. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/system/test.rs +0 -0
  1374. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/system/walk_directory.rs +0 -0
  1375. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/system.rs +0 -0
  1376. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/testing.rs +0 -0
  1377. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/vendored/path.rs +0 -0
  1378. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_db/src/vendored.rs +0 -0
  1379. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_diagnostics/Cargo.toml +0 -0
  1380. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_diagnostics/src/diagnostic.rs +0 -0
  1381. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_diagnostics/src/edit.rs +0 -0
  1382. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_diagnostics/src/fix.rs +0 -0
  1383. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_diagnostics/src/lib.rs +0 -0
  1384. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_diagnostics/src/source_map.rs +0 -0
  1385. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_diagnostics/src/violation.rs +0 -0
  1386. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/Cargo.toml +0 -0
  1387. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/shared_traits.rs +0 -0
  1388. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/arguments.rs +0 -0
  1389. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/buffer.rs +0 -0
  1390. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/builders.rs +0 -0
  1391. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/diagnostics.rs +0 -0
  1392. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/format_element/document.rs +0 -0
  1393. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/format_element/tag.rs +0 -0
  1394. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/format_element.rs +0 -0
  1395. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/format_extensions.rs +0 -0
  1396. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/formatter.rs +0 -0
  1397. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/group_id.rs +0 -0
  1398. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/lib.rs +0 -0
  1399. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/macros.rs +0 -0
  1400. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/prelude.rs +0 -0
  1401. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/printer/call_stack.rs +0 -0
  1402. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/printer/line_suffixes.rs +0 -0
  1403. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/printer/mod.rs +0 -0
  1404. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/printer/printer_options/mod.rs +0 -0
  1405. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/printer/queue.rs +0 -0
  1406. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/printer/stack.rs +0 -0
  1407. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_formatter/src/source_code.rs +0 -0
  1408. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_graph/Cargo.toml +0 -0
  1409. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_graph/src/collector.rs +0 -0
  1410. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_graph/src/lib.rs +0 -0
  1411. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_graph/src/resolver.rs +0 -0
  1412. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_graph/src/settings.rs +0 -0
  1413. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_index/Cargo.toml +0 -0
  1414. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_index/src/idx.rs +0 -0
  1415. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_index/src/lib.rs +0 -0
  1416. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_index/src/slice.rs +0 -0
  1417. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_index/src/vec.rs +0 -0
  1418. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/__init__.py +0 -0
  1419. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/__init__.py +0 -0
  1420. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/disallowed_rule_names.txt +0 -0
  1421. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/package/pyproject.toml +0 -0
  1422. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/package/resources/ignored.py +0 -0
  1423. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/package/src/package/__init__.py +0 -0
  1424. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/package/src/package/app.py +0 -0
  1425. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/package/src/package/core.py +0 -0
  1426. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/.gitignore +0 -0
  1427. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/README.md +0 -0
  1428. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/examples/.dotfiles/pyproject.toml +0 -0
  1429. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/examples/.dotfiles/script.py +0 -0
  1430. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/examples/docs/docs/__init__.py +0 -0
  1431. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/examples/docs/docs/concepts/__init__.py +0 -0
  1432. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/examples/docs/docs/concepts/file.py +0 -0
  1433. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/examples/docs/docs/file.py +0 -0
  1434. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/examples/docs/ruff.toml +0 -0
  1435. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/examples/excluded/script.py +0 -0
  1436. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/project/__init__.py +0 -0
  1437. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/project/file.py +0 -0
  1438. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/project/import_file.py +0 -0
  1439. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/pyproject.toml +0 -0
  1440. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/python_modules/app/app/__init__.py +0 -0
  1441. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/python_modules/app/app/app_file.py +0 -0
  1442. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/python_modules/core/core/__init__.py +0 -0
  1443. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/resources/test/project/python_modules/core/core/core_file.py +0 -0
  1444. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/analyze/comprehension.rs +0 -0
  1445. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/analyze/deferred_for_loops.rs +0 -0
  1446. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/analyze/deferred_lambdas.rs +0 -0
  1447. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/analyze/definitions.rs +0 -0
  1448. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/analyze/except_handler.rs +0 -0
  1449. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/analyze/mod.rs +0 -0
  1450. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/analyze/module.rs +0 -0
  1451. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/analyze/parameter.rs +0 -0
  1452. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/analyze/parameters.rs +0 -0
  1453. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/analyze/string_like.rs +0 -0
  1454. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/analyze/suite.rs +0 -0
  1455. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/analyze/unresolved_references.rs +0 -0
  1456. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/annotation.rs +0 -0
  1457. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/ast/deferred.rs +0 -0
  1458. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/filesystem.rs +0 -0
  1459. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/imports.rs +0 -0
  1460. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/logical_lines.rs +0 -0
  1461. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/mod.rs +0 -0
  1462. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/noqa.rs +0 -0
  1463. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/physical_lines.rs +0 -0
  1464. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/checkers/tokens.rs +0 -0
  1465. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/comments/mod.rs +0 -0
  1466. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/comments/shebang.rs +0 -0
  1467. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/comments/snapshots/ruff_linter__comments__shebang__tests__shebang_end_of_line.snap +0 -0
  1468. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/comments/snapshots/ruff_linter__comments__shebang__tests__shebang_leading_space.snap +0 -0
  1469. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/comments/snapshots/ruff_linter__comments__shebang__tests__shebang_match.snap +0 -0
  1470. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/comments/snapshots/ruff_linter__comments__shebang__tests__shebang_match_trailing_comment.snap +0 -0
  1471. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/comments/snapshots/ruff_linter__comments__shebang__tests__shebang_non_match.snap +0 -0
  1472. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/cst/helpers.rs +0 -0
  1473. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/cst/matchers.rs +0 -0
  1474. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/cst/mod.rs +0 -0
  1475. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/directives.rs +0 -0
  1476. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/doc_lines.rs +0 -0
  1477. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/docstrings/extraction.rs +0 -0
  1478. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/docstrings/google.rs +0 -0
  1479. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/docstrings/mod.rs +0 -0
  1480. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/docstrings/numpy.rs +0 -0
  1481. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/docstrings/sections.rs +0 -0
  1482. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/docstrings/styles.rs +0 -0
  1483. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/fix/edits.rs +0 -0
  1484. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/fix/snippet.rs +0 -0
  1485. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/fs.rs +0 -0
  1486. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/importer/insertion.rs +0 -0
  1487. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/importer/mod.rs +0 -0
  1488. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/lib.rs +0 -0
  1489. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/line_width.rs +0 -0
  1490. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/linter.rs +0 -0
  1491. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/locator.rs +0 -0
  1492. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/logging.rs +0 -0
  1493. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/azure.rs +0 -0
  1494. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/diff.rs +0 -0
  1495. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/github.rs +0 -0
  1496. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/gitlab.rs +0 -0
  1497. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/grouped.rs +0 -0
  1498. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/json.rs +0 -0
  1499. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/json_lines.rs +0 -0
  1500. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/junit.rs +0 -0
  1501. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/mod.rs +0 -0
  1502. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/pylint.rs +0 -0
  1503. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/rdjson.rs +0 -0
  1504. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/sarif.rs +0 -0
  1505. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__azure__tests__output.snap +0 -0
  1506. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__azure__tests__syntax_errors.snap +0 -0
  1507. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__github__tests__output.snap +0 -0
  1508. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__github__tests__syntax_errors.snap +0 -0
  1509. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__gitlab__tests__output.snap +0 -0
  1510. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__gitlab__tests__syntax_errors.snap +0 -0
  1511. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__grouped__tests__default.snap +0 -0
  1512. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__grouped__tests__fix_status.snap +0 -0
  1513. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__grouped__tests__fix_status_unsafe.snap +0 -0
  1514. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__grouped__tests__show_source.snap +0 -0
  1515. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__grouped__tests__syntax_errors.snap +0 -0
  1516. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__json__tests__notebook_output.snap +0 -0
  1517. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__json__tests__output.snap +0 -0
  1518. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__json__tests__syntax_errors.snap +0 -0
  1519. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__json_lines__tests__notebook_output.snap +0 -0
  1520. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__json_lines__tests__output.snap +0 -0
  1521. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__json_lines__tests__syntax_errors.snap +0 -0
  1522. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__junit__tests__output.snap +0 -0
  1523. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__junit__tests__syntax_errors.snap +0 -0
  1524. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__pylint__tests__output.snap +0 -0
  1525. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__pylint__tests__syntax_errors.snap +0 -0
  1526. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__rdjson__tests__output.snap +0 -0
  1527. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__rdjson__tests__syntax_errors.snap +0 -0
  1528. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__sarif__tests__results.snap +0 -0
  1529. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__text__tests__default.snap +0 -0
  1530. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__text__tests__fix_status.snap +0 -0
  1531. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__text__tests__fix_status_unsafe.snap +0 -0
  1532. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__text__tests__notebook_output.snap +0 -0
  1533. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__text__tests__syntax_errors.snap +0 -0
  1534. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/message/text.rs +0 -0
  1535. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/noqa.rs +0 -0
  1536. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/package.rs +0 -0
  1537. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/packaging.rs +0 -0
  1538. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/pyproject_toml.rs +0 -0
  1539. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/registry/rule_set.rs +0 -0
  1540. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/registry.rs +0 -0
  1541. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/renamer.rs +0 -0
  1542. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rule_redirects.rs +0 -0
  1543. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rule_selector.rs +0 -0
  1544. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/airflow/mod.rs +0 -0
  1545. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/airflow/rules/dag_schedule_argument.rs +0 -0
  1546. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/airflow/rules/mod.rs +0 -0
  1547. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/airflow/rules/task_variable_name.rs +0 -0
  1548. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/eradicate/detection.rs +0 -0
  1549. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/eradicate/mod.rs +0 -0
  1550. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/eradicate/rules/commented_out_code.rs +0 -0
  1551. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/eradicate/rules/mod.rs +0 -0
  1552. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/fastapi/mod.rs +0 -0
  1553. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/fastapi/rules/fastapi_non_annotated_dependency.rs +0 -0
  1554. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/fastapi/rules/fastapi_redundant_response_model.rs +0 -0
  1555. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/fastapi/rules/fastapi_unused_path_parameter.rs +0 -0
  1556. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/fastapi/rules/mod.rs +0 -0
  1557. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_2020/helpers.rs +0 -0
  1558. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_2020/mod.rs +0 -0
  1559. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_2020/rules/compare.rs +0 -0
  1560. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_2020/rules/mod.rs +0 -0
  1561. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_2020/rules/name_or_attribute.rs +0 -0
  1562. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_2020/rules/subscript.rs +0 -0
  1563. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_annotations/helpers.rs +0 -0
  1564. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_annotations/mod.rs +0 -0
  1565. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_annotations/rules/definition.rs +0 -0
  1566. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_annotations/rules/mod.rs +0 -0
  1567. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_annotations/settings.rs +0 -0
  1568. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/helpers.rs +0 -0
  1569. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/mod.rs +0 -0
  1570. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/rules/async_busy_wait.rs +0 -0
  1571. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/rules/async_function_with_timeout.rs +0 -0
  1572. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/rules/async_zero_sleep.rs +0 -0
  1573. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/rules/blocking_http_call.rs +0 -0
  1574. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/rules/blocking_open_call.rs +0 -0
  1575. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/rules/blocking_process_invocation.rs +0 -0
  1576. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/rules/blocking_sleep.rs +0 -0
  1577. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/rules/cancel_scope_no_checkpoint.rs +0 -0
  1578. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/rules/long_sleep_not_forever.rs +0 -0
  1579. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/rules/mod.rs +0 -0
  1580. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_async/rules/sync_call.rs +0 -0
  1581. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/helpers.rs +0 -0
  1582. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/assert_used.rs +0 -0
  1583. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/bad_file_permissions.rs +0 -0
  1584. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/django_extra.rs +0 -0
  1585. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/django_raw_sql.rs +0 -0
  1586. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/exec_used.rs +0 -0
  1587. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/flask_debug_true.rs +0 -0
  1588. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_bind_all_interfaces.rs +0 -0
  1589. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_password_default.rs +0 -0
  1590. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_password_func_arg.rs +0 -0
  1591. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_password_string.rs +0 -0
  1592. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_tmp_directory.rs +0 -0
  1593. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/hashlib_insecure_hash_functions.rs +0 -0
  1594. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/jinja2_autoescape_false.rs +0 -0
  1595. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/logging_config_insecure_listen.rs +0 -0
  1596. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/mako_templates.rs +0 -0
  1597. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/mod.rs +0 -0
  1598. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/paramiko_calls.rs +0 -0
  1599. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/request_with_no_cert_validation.rs +0 -0
  1600. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/request_without_timeout.rs +0 -0
  1601. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/shell_injection.rs +0 -0
  1602. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/snmp_insecure_version.rs +0 -0
  1603. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/snmp_weak_cryptography.rs +0 -0
  1604. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/ssh_no_host_key_verification.rs +0 -0
  1605. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/ssl_insecure_version.rs +0 -0
  1606. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/ssl_with_bad_defaults.rs +0 -0
  1607. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/ssl_with_no_version.rs +0 -0
  1608. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/suspicious_imports.rs +0 -0
  1609. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/tarfile_unsafe_members.rs +0 -0
  1610. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/try_except_continue.rs +0 -0
  1611. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/try_except_pass.rs +0 -0
  1612. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/unsafe_yaml_load.rs +0 -0
  1613. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/rules/weak_cryptographic_key.rs +0 -0
  1614. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bandit/settings.rs +0 -0
  1615. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_blind_except/mod.rs +0 -0
  1616. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_blind_except/rules/blind_except.rs +0 -0
  1617. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_blind_except/rules/mod.rs +0 -0
  1618. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_boolean_trap/helpers.rs +0 -0
  1619. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_boolean_trap/mod.rs +0 -0
  1620. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_boolean_trap/rules/boolean_default_value_positional_argument.rs +0 -0
  1621. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_boolean_trap/rules/boolean_positional_value_in_call.rs +0 -0
  1622. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_boolean_trap/rules/boolean_type_hint_positional_argument.rs +0 -0
  1623. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_boolean_trap/rules/mod.rs +0 -0
  1624. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_boolean_trap/settings.rs +0 -0
  1625. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/helpers.rs +0 -0
  1626. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/abstract_base_class.rs +0 -0
  1627. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/assert_false.rs +0 -0
  1628. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/assert_raises_exception.rs +0 -0
  1629. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/assignment_to_os_environ.rs +0 -0
  1630. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/batched_without_explicit_strict.rs +0 -0
  1631. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/cached_instance_method.rs +0 -0
  1632. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/duplicate_exceptions.rs +0 -0
  1633. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/duplicate_value.rs +0 -0
  1634. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/except_with_empty_tuple.rs +0 -0
  1635. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/except_with_non_exception_classes.rs +0 -0
  1636. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/f_string_docstring.rs +0 -0
  1637. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/function_call_in_argument_default.rs +0 -0
  1638. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/function_uses_loop_variable.rs +0 -0
  1639. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/getattr_with_constant.rs +0 -0
  1640. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/jump_statement_in_finally.rs +0 -0
  1641. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/loop_iterator_mutation.rs +0 -0
  1642. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/loop_variable_overrides_iterator.rs +0 -0
  1643. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/mod.rs +0 -0
  1644. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/mutable_argument_default.rs +0 -0
  1645. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/mutable_contextvar_default.rs +0 -0
  1646. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/no_explicit_stacklevel.rs +0 -0
  1647. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/raise_literal.rs +0 -0
  1648. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/raise_without_from_inside_except.rs +0 -0
  1649. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/re_sub_positional_args.rs +0 -0
  1650. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/redundant_tuple_in_exception_handler.rs +0 -0
  1651. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/return_in_generator.rs +0 -0
  1652. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/reuse_of_groupby_generator.rs +0 -0
  1653. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/setattr_with_constant.rs +0 -0
  1654. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/star_arg_unpacking_after_keyword_arg.rs +0 -0
  1655. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/static_key_dict_comprehension.rs +0 -0
  1656. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/strip_with_multi_characters.rs +0 -0
  1657. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/unary_prefix_increment_decrement.rs +0 -0
  1658. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/unintentional_type_annotation.rs +0 -0
  1659. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/unreliable_callable_check.rs +0 -0
  1660. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/unused_loop_control_variable.rs +0 -0
  1661. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/useless_comparison.rs +0 -0
  1662. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/useless_contextlib_suppress.rs +0 -0
  1663. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/useless_expression.rs +0 -0
  1664. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/rules/zip_without_explicit_strict.rs +0 -0
  1665. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_bugbear/settings.rs +0 -0
  1666. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_builtins/helpers.rs +0 -0
  1667. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_builtins/mod.rs +0 -0
  1668. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_builtins/rules/builtin_argument_shadowing.rs +0 -0
  1669. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_builtins/rules/builtin_attribute_shadowing.rs +0 -0
  1670. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_builtins/rules/builtin_import_shadowing.rs +0 -0
  1671. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_builtins/rules/builtin_lambda_argument_shadowing.rs +0 -0
  1672. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_builtins/rules/builtin_variable_shadowing.rs +0 -0
  1673. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_builtins/rules/mod.rs +0 -0
  1674. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_builtins/rules/stdlib_module_shadowing.rs +0 -0
  1675. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_builtins/settings.rs +0 -0
  1676. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_commas/mod.rs +0 -0
  1677. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_commas/rules/mod.rs +0 -0
  1678. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_commas/rules/trailing_commas.rs +0 -0
  1679. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/fixes.rs +0 -0
  1680. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/mod.rs +0 -0
  1681. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/helpers.rs +0 -0
  1682. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/mod.rs +0 -0
  1683. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_call_around_sorted.rs +0 -0
  1684. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_collection_call.rs +0 -0
  1685. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_comprehension.rs +0 -0
  1686. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_comprehension_in_call.rs +0 -0
  1687. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_dict_comprehension_for_iterable.rs +0 -0
  1688. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_double_cast_or_process.rs +0 -0
  1689. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_generator_dict.rs +0 -0
  1690. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_generator_list.rs +0 -0
  1691. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_list_call.rs +0 -0
  1692. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_list_comprehension_dict.rs +0 -0
  1693. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_list_comprehension_set.rs +0 -0
  1694. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_literal_dict.rs +0 -0
  1695. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_literal_set.rs +0 -0
  1696. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_literal_within_dict_call.rs +0 -0
  1697. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_literal_within_list_call.rs +0 -0
  1698. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_literal_within_tuple_call.rs +0 -0
  1699. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_map.rs +0 -0
  1700. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_subscript_reversal.rs +0 -0
  1701. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_comprehensions/settings.rs +0 -0
  1702. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_copyright/mod.rs +0 -0
  1703. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_copyright/rules/missing_copyright_notice.rs +0 -0
  1704. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_copyright/rules/mod.rs +0 -0
  1705. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_copyright/settings.rs +0 -0
  1706. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/mod.rs +0 -0
  1707. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_date_fromtimestamp.rs +0 -0
  1708. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_date_today.rs +0 -0
  1709. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_fromtimestamp.rs +0 -0
  1710. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_now_without_tzinfo.rs +0 -0
  1711. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_strptime_without_zone.rs +0 -0
  1712. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_today.rs +0 -0
  1713. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_utcfromtimestamp.rs +0 -0
  1714. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_utcnow.rs +0 -0
  1715. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_without_tzinfo.rs +0 -0
  1716. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/rules/datetime_min_max.rs +0 -0
  1717. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/rules/helpers.rs +0 -0
  1718. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_datetimez/rules/mod.rs +0 -0
  1719. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_debugger/mod.rs +0 -0
  1720. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_debugger/rules/debugger.rs +0 -0
  1721. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_debugger/rules/mod.rs +0 -0
  1722. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_debugger/types.rs +0 -0
  1723. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_django/mod.rs +0 -0
  1724. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_django/rules/all_with_model_form.rs +0 -0
  1725. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_django/rules/exclude_with_model_form.rs +0 -0
  1726. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_django/rules/helpers.rs +0 -0
  1727. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_django/rules/locals_in_render_function.rs +0 -0
  1728. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_django/rules/mod.rs +0 -0
  1729. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_django/rules/model_without_dunder_str.rs +0 -0
  1730. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_django/rules/non_leading_receiver_decorator.rs +0 -0
  1731. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_django/rules/nullable_model_string_field.rs +0 -0
  1732. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_django/rules/unordered_body_content_in_model.rs +0 -0
  1733. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_errmsg/mod.rs +0 -0
  1734. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_errmsg/rules/mod.rs +0 -0
  1735. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_errmsg/rules/string_in_exception.rs +0 -0
  1736. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_errmsg/settings.rs +0 -0
  1737. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_executable/helpers.rs +0 -0
  1738. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_executable/mod.rs +0 -0
  1739. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_executable/rules/mod.rs +0 -0
  1740. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_leading_whitespace.rs +0 -0
  1741. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_missing_executable_file.rs +0 -0
  1742. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_missing_python.rs +0 -0
  1743. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_not_executable.rs +0 -0
  1744. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_not_first_line.rs +0 -0
  1745. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_fixme/mod.rs +0 -0
  1746. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_fixme/rules/mod.rs +0 -0
  1747. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_fixme/rules/todos.rs +0 -0
  1748. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_future_annotations/mod.rs +0 -0
  1749. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_future_annotations/rules/future_required_type_annotation.rs +0 -0
  1750. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_future_annotations/rules/future_rewritable_type_annotation.rs +0 -0
  1751. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_future_annotations/rules/mod.rs +0 -0
  1752. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_gettext/mod.rs +0 -0
  1753. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_gettext/rules/f_string_in_gettext_func_call.rs +0 -0
  1754. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_gettext/rules/format_in_gettext_func_call.rs +0 -0
  1755. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_gettext/rules/mod.rs +0 -0
  1756. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_gettext/rules/printf_in_gettext_func_call.rs +0 -0
  1757. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_gettext/settings.rs +0 -0
  1758. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_implicit_str_concat/mod.rs +0 -0
  1759. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_implicit_str_concat/rules/explicit.rs +0 -0
  1760. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_implicit_str_concat/rules/implicit.rs +0 -0
  1761. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_implicit_str_concat/rules/mod.rs +0 -0
  1762. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_implicit_str_concat/settings.rs +0 -0
  1763. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_import_conventions/mod.rs +0 -0
  1764. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_import_conventions/rules/banned_import_alias.rs +0 -0
  1765. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_import_conventions/rules/banned_import_from.rs +0 -0
  1766. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_import_conventions/rules/mod.rs +0 -0
  1767. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_import_conventions/rules/unconventional_import_alias.rs +0 -0
  1768. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_import_conventions/settings.rs +0 -0
  1769. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_logging/mod.rs +0 -0
  1770. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_logging/rules/direct_logger_instantiation.rs +0 -0
  1771. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_logging/rules/exception_without_exc_info.rs +0 -0
  1772. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_logging/rules/invalid_get_logger_argument.rs +0 -0
  1773. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_logging/rules/mod.rs +0 -0
  1774. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_logging/rules/root_logger_call.rs +0 -0
  1775. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_logging/rules/undocumented_warn.rs +0 -0
  1776. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_logging_format/mod.rs +0 -0
  1777. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_logging_format/rules/logging_call.rs +0 -0
  1778. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_logging_format/rules/mod.rs +0 -0
  1779. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_logging_format/violations.rs +0 -0
  1780. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_no_pep420/mod.rs +0 -0
  1781. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_no_pep420/rules/implicit_namespace_package.rs +0 -0
  1782. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_no_pep420/rules/mod.rs +0 -0
  1783. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pie/mod.rs +0 -0
  1784. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pie/rules/duplicate_class_field_definition.rs +0 -0
  1785. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pie/rules/mod.rs +0 -0
  1786. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pie/rules/multiple_starts_ends_with.rs +0 -0
  1787. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pie/rules/non_unique_enums.rs +0 -0
  1788. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pie/rules/reimplemented_container_builtin.rs +0 -0
  1789. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pie/rules/unnecessary_dict_kwargs.rs +0 -0
  1790. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pie/rules/unnecessary_placeholder.rs +0 -0
  1791. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pie/rules/unnecessary_range_start.rs +0 -0
  1792. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pie/rules/unnecessary_spread.rs +0 -0
  1793. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_print/mod.rs +0 -0
  1794. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_print/rules/mod.rs +0 -0
  1795. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_print/rules/print_call.rs +0 -0
  1796. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/mod.rs +0 -0
  1797. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/any_eq_ne_annotation.rs +0 -0
  1798. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/bad_generator_return_type.rs +0 -0
  1799. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/bad_version_info_comparison.rs +0 -0
  1800. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/bytestring_usage.rs +0 -0
  1801. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/collections_named_tuple.rs +0 -0
  1802. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/complex_assignment_in_stub.rs +0 -0
  1803. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/complex_if_statement_in_stub.rs +0 -0
  1804. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/custom_type_var_return_type.rs +0 -0
  1805. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/docstring_in_stubs.rs +0 -0
  1806. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/duplicate_literal_member.rs +0 -0
  1807. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/duplicate_union_member.rs +0 -0
  1808. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/ellipsis_in_non_empty_class_body.rs +0 -0
  1809. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/exit_annotations.rs +0 -0
  1810. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/future_annotations_in_stub.rs +0 -0
  1811. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/generic_not_last_base_class.rs +0 -0
  1812. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/iter_method_return_iterable.rs +0 -0
  1813. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/mod.rs +0 -0
  1814. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/no_return_argument_annotation.rs +0 -0
  1815. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/non_empty_stub_body.rs +0 -0
  1816. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/non_self_return_type.rs +0 -0
  1817. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/numeric_literal_too_long.rs +0 -0
  1818. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/pass_in_class_body.rs +0 -0
  1819. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/pass_statement_stub_body.rs +0 -0
  1820. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/pre_pep570_positional_argument.rs +0 -0
  1821. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/prefix_type_params.rs +0 -0
  1822. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/quoted_annotation_in_stub.rs +0 -0
  1823. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_final_literal.rs +0 -0
  1824. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_literal_union.rs +0 -0
  1825. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_none_literal.rs +0 -0
  1826. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_numeric_union.rs +0 -0
  1827. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/simple_defaults.rs +0 -0
  1828. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/str_or_repr_defined_in_stub.rs +0 -0
  1829. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/string_or_bytes_too_long.rs +0 -0
  1830. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/stub_body_multiple_statements.rs +0 -0
  1831. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/type_alias_naming.rs +0 -0
  1832. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/type_comment_in_stub.rs +0 -0
  1833. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/unaliased_collections_abc_set_import.rs +0 -0
  1834. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/unnecessary_literal_union.rs +0 -0
  1835. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/unnecessary_type_union.rs +0 -0
  1836. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/unrecognized_platform.rs +0 -0
  1837. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/unrecognized_version_info.rs +0 -0
  1838. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/unsupported_method_call_on_all.rs +0 -0
  1839. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pyi/rules/unused_private_type_definition.rs +0 -0
  1840. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/fail.rs +0 -0
  1841. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/fixture.rs +0 -0
  1842. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/helpers.rs +0 -0
  1843. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/imports.rs +0 -0
  1844. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/marks.rs +0 -0
  1845. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/mod.rs +0 -0
  1846. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/patch.rs +0 -0
  1847. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/test_functions.rs +0 -0
  1848. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/unittest_assert.rs +0 -0
  1849. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pytest_style/settings.rs +0 -0
  1850. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_pytest_style/types.rs +0 -0
  1851. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_quotes/helpers.rs +0 -0
  1852. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_quotes/mod.rs +0 -0
  1853. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_quotes/rules/avoidable_escaped_quote.rs +0 -0
  1854. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_quotes/rules/check_string_quotes.rs +0 -0
  1855. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_quotes/rules/mod.rs +0 -0
  1856. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_quotes/rules/unnecessary_escaped_quote.rs +0 -0
  1857. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_quotes/settings.rs +0 -0
  1858. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_raise/mod.rs +0 -0
  1859. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_raise/rules/mod.rs +0 -0
  1860. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_raise/rules/unnecessary_paren_on_raise_exception.rs +0 -0
  1861. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_return/branch.rs +0 -0
  1862. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_return/helpers.rs +0 -0
  1863. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_return/mod.rs +0 -0
  1864. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_return/rules/function.rs +0 -0
  1865. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_return/rules/mod.rs +0 -0
  1866. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_return/visitor.rs +0 -0
  1867. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_self/mod.rs +0 -0
  1868. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_self/rules/mod.rs +0 -0
  1869. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_self/rules/private_member_access.rs +0 -0
  1870. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_self/settings.rs +0 -0
  1871. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_expr.rs +0 -0
  1872. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_ifexp.rs +0 -0
  1873. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_with.rs +0 -0
  1874. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/collapsible_if.rs +0 -0
  1875. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/enumerate_for_loop.rs +0 -0
  1876. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/fix_with.rs +0 -0
  1877. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/if_else_block_instead_of_dict_get.rs +0 -0
  1878. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/if_else_block_instead_of_dict_lookup.rs +0 -0
  1879. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/if_else_block_instead_of_if_exp.rs +0 -0
  1880. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/if_with_same_arms.rs +0 -0
  1881. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/key_in_dict.rs +0 -0
  1882. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/mod.rs +0 -0
  1883. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/open_file_with_context_handler.rs +0 -0
  1884. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/reimplemented_builtin.rs +0 -0
  1885. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/return_in_try_except_finally.rs +0 -0
  1886. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/split_static_string.rs +0 -0
  1887. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/suppressible_exception.rs +0 -0
  1888. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/yoda_conditions.rs +0 -0
  1889. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_simplify/rules/zip_dict_keys_and_values.rs +0 -0
  1890. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_slots/mod.rs +0 -0
  1891. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_slots/rules/helpers.rs +0 -0
  1892. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_slots/rules/mod.rs +0 -0
  1893. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_slots/rules/no_slots_in_namedtuple_subclass.rs +0 -0
  1894. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_slots/rules/no_slots_in_str_subclass.rs +0 -0
  1895. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_slots/rules/no_slots_in_tuple_subclass.rs +0 -0
  1896. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_tidy_imports/matchers.rs +0 -0
  1897. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_tidy_imports/mod.rs +0 -0
  1898. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_tidy_imports/rules/banned_api.rs +0 -0
  1899. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_tidy_imports/rules/banned_module_level_imports.rs +0 -0
  1900. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_tidy_imports/rules/mod.rs +0 -0
  1901. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_tidy_imports/rules/relative_imports.rs +0 -0
  1902. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_tidy_imports/settings.rs +0 -0
  1903. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_todos/mod.rs +0 -0
  1904. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_todos/rules/mod.rs +0 -0
  1905. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_todos/rules/todos.rs +0 -0
  1906. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_type_checking/helpers.rs +0 -0
  1907. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_type_checking/imports.rs +0 -0
  1908. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_type_checking/mod.rs +0 -0
  1909. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_type_checking/rules/empty_type_checking_block.rs +0 -0
  1910. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_type_checking/rules/mod.rs +0 -0
  1911. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_type_checking/rules/runtime_import_in_type_checking_block.rs +0 -0
  1912. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_type_checking/rules/runtime_string_union.rs +0 -0
  1913. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_type_checking/rules/typing_only_runtime_import.rs +0 -0
  1914. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_type_checking/settings.rs +0 -0
  1915. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_unused_arguments/mod.rs +0 -0
  1916. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_unused_arguments/rules/mod.rs +0 -0
  1917. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_unused_arguments/settings.rs +0 -0
  1918. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_use_pathlib/mod.rs +0 -0
  1919. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/glob_rule.rs +0 -0
  1920. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/invalid_pathlib_with_suffix.rs +0 -0
  1921. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/mod.rs +0 -0
  1922. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/os_path_getatime.rs +0 -0
  1923. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/os_path_getctime.rs +0 -0
  1924. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/os_path_getmtime.rs +0 -0
  1925. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/os_path_getsize.rs +0 -0
  1926. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/os_sep_split.rs +0 -0
  1927. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/replaceable_by_pathlib.rs +0 -0
  1928. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flake8_use_pathlib/violations.rs +0 -0
  1929. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flynt/helpers.rs +0 -0
  1930. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flynt/mod.rs +0 -0
  1931. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flynt/rules/mod.rs +0 -0
  1932. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/flynt/rules/static_join_to_fstring.rs +0 -0
  1933. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/annotate.rs +0 -0
  1934. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/block.rs +0 -0
  1935. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/categorize.rs +0 -0
  1936. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/comments.rs +0 -0
  1937. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/format.rs +0 -0
  1938. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/helpers.rs +0 -0
  1939. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/mod.rs +0 -0
  1940. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/normalize.rs +0 -0
  1941. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/order.rs +0 -0
  1942. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/rules/add_required_imports.rs +0 -0
  1943. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/rules/mod.rs +0 -0
  1944. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/settings.rs +0 -0
  1945. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/sorting.rs +0 -0
  1946. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/split.rs +0 -0
  1947. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/isort/types.rs +0 -0
  1948. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/mccabe/mod.rs +0 -0
  1949. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/mccabe/rules/function_is_too_complex.rs +0 -0
  1950. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/mccabe/rules/mod.rs +0 -0
  1951. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/mccabe/settings.rs +0 -0
  1952. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/mod.rs +0 -0
  1953. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/numpy/mod.rs +0 -0
  1954. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/numpy/rules/deprecated_function.rs +0 -0
  1955. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/numpy/rules/deprecated_type_alias.rs +0 -0
  1956. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/numpy/rules/legacy_random.rs +0 -0
  1957. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/numpy/rules/mod.rs +0 -0
  1958. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/numpy/rules/numpy_2_0_deprecation.rs +0 -0
  1959. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pandas_vet/helpers.rs +0 -0
  1960. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pandas_vet/mod.rs +0 -0
  1961. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pandas_vet/rules/assignment_to_df.rs +0 -0
  1962. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pandas_vet/rules/attr.rs +0 -0
  1963. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pandas_vet/rules/call.rs +0 -0
  1964. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pandas_vet/rules/inplace_argument.rs +0 -0
  1965. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pandas_vet/rules/mod.rs +0 -0
  1966. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pandas_vet/rules/nunique_constant_series_check.rs +0 -0
  1967. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pandas_vet/rules/pd_merge.rs +0 -0
  1968. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pandas_vet/rules/read_table.rs +0 -0
  1969. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pandas_vet/rules/subscript.rs +0 -0
  1970. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/helpers.rs +0 -0
  1971. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/mod.rs +0 -0
  1972. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/camelcase_imported_as_acronym.rs +0 -0
  1973. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/camelcase_imported_as_constant.rs +0 -0
  1974. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/camelcase_imported_as_lowercase.rs +0 -0
  1975. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/constant_imported_as_non_constant.rs +0 -0
  1976. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/dunder_function_name.rs +0 -0
  1977. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/error_suffix_on_exception_name.rs +0 -0
  1978. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/invalid_argument_name.rs +0 -0
  1979. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/invalid_class_name.rs +0 -0
  1980. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/invalid_first_argument_name.rs +0 -0
  1981. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/invalid_function_name.rs +0 -0
  1982. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/invalid_module_name.rs +0 -0
  1983. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/lowercase_imported_as_non_lowercase.rs +0 -0
  1984. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/mixed_case_variable_in_class_scope.rs +0 -0
  1985. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/mixed_case_variable_in_global_scope.rs +0 -0
  1986. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/mod.rs +0 -0
  1987. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/rules/non_lowercase_variable_in_function.rs +0 -0
  1988. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pep8_naming/settings.rs +0 -0
  1989. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/perflint/mod.rs +0 -0
  1990. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/perflint/rules/incorrect_dict_iterator.rs +0 -0
  1991. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/perflint/rules/manual_dict_comprehension.rs +0 -0
  1992. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/perflint/rules/manual_list_comprehension.rs +0 -0
  1993. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/perflint/rules/manual_list_copy.rs +0 -0
  1994. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/perflint/rules/mod.rs +0 -0
  1995. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/perflint/rules/try_except_in_loop.rs +0 -0
  1996. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/perflint/rules/unnecessary_list_cast.rs +0 -0
  1997. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/helpers.rs +0 -0
  1998. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/mod.rs +0 -0
  1999. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/overlong.rs +0 -0
  2000. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/ambiguous_class_name.rs +0 -0
  2001. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/ambiguous_function_name.rs +0 -0
  2002. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/ambiguous_variable_name.rs +0 -0
  2003. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/bare_except.rs +0 -0
  2004. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/blank_lines.rs +0 -0
  2005. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/compound_statements.rs +0 -0
  2006. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/doc_line_too_long.rs +0 -0
  2007. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/errors.rs +0 -0
  2008. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/invalid_escape_sequence.rs +0 -0
  2009. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/line_too_long.rs +0 -0
  2010. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/literal_comparisons.rs +0 -0
  2011. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/extraneous_whitespace.rs +0 -0
  2012. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/indentation.rs +0 -0
  2013. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/missing_whitespace.rs +0 -0
  2014. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/missing_whitespace_after_keyword.rs +0 -0
  2015. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/missing_whitespace_around_operator.rs +0 -0
  2016. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/mod.rs +0 -0
  2017. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/redundant_backslash.rs +0 -0
  2018. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/space_around_operator.rs +0 -0
  2019. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/whitespace_around_keywords.rs +0 -0
  2020. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/whitespace_around_named_parameter_equals.rs +0 -0
  2021. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/whitespace_before_comment.rs +0 -0
  2022. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/whitespace_before_parameters.rs +0 -0
  2023. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/missing_newline_at_end_of_file.rs +0 -0
  2024. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/mixed_spaces_and_tabs.rs +0 -0
  2025. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/mod.rs +0 -0
  2026. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/module_import_not_at_top_of_file.rs +0 -0
  2027. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/multiple_imports_on_one_line.rs +0 -0
  2028. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/not_tests.rs +0 -0
  2029. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/tab_indentation.rs +0 -0
  2030. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/too_many_newlines_at_end_of_file.rs +0 -0
  2031. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/trailing_whitespace.rs +0 -0
  2032. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/type_comparison.rs +0 -0
  2033. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/rules/whitespace_after_decorator.rs +0 -0
  2034. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pycodestyle/settings.rs +0 -0
  2035. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydoclint/rules/mod.rs +0 -0
  2036. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/helpers.rs +0 -0
  2037. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/mod.rs +0 -0
  2038. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/backslashes.rs +0 -0
  2039. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/blank_after_summary.rs +0 -0
  2040. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/blank_before_after_class.rs +0 -0
  2041. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/blank_before_after_function.rs +0 -0
  2042. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/capitalized.rs +0 -0
  2043. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/ends_with_period.rs +0 -0
  2044. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/ends_with_punctuation.rs +0 -0
  2045. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/if_needed.rs +0 -0
  2046. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/indent.rs +0 -0
  2047. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/mod.rs +0 -0
  2048. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/multi_line_summary_start.rs +0 -0
  2049. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/newline_after_last_paragraph.rs +0 -0
  2050. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/no_signature.rs +0 -0
  2051. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/no_surrounding_whitespace.rs +0 -0
  2052. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/non_imperative_mood.rs +0 -0
  2053. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/not_empty.rs +0 -0
  2054. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/not_missing.rs +0 -0
  2055. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/one_liner.rs +0 -0
  2056. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/sections.rs +0 -0
  2057. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/starts_with_this.rs +0 -0
  2058. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/rules/triple_quotes.rs +0 -0
  2059. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pydocstyle/settings.rs +0 -0
  2060. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/cformat.rs +0 -0
  2061. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/fixes.rs +0 -0
  2062. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/format.rs +0 -0
  2063. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/assert_tuple.rs +0 -0
  2064. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/break_outside_loop.rs +0 -0
  2065. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/continue_outside_loop.rs +0 -0
  2066. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/default_except_not_last.rs +0 -0
  2067. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/f_string_missing_placeholders.rs +0 -0
  2068. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/forward_annotation_syntax_error.rs +0 -0
  2069. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/future_feature_not_defined.rs +0 -0
  2070. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/if_tuple.rs +0 -0
  2071. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/imports.rs +0 -0
  2072. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/invalid_literal_comparisons.rs +0 -0
  2073. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/invalid_print_syntax.rs +0 -0
  2074. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/mod.rs +0 -0
  2075. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/raise_not_implemented.rs +0 -0
  2076. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/redefined_while_unused.rs +0 -0
  2077. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/repeated_keys.rs +0 -0
  2078. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/return_outside_function.rs +0 -0
  2079. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/starred_expressions.rs +0 -0
  2080. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/strings.rs +0 -0
  2081. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/undefined_export.rs +0 -0
  2082. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/undefined_local.rs +0 -0
  2083. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/undefined_name.rs +0 -0
  2084. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/unused_annotation.rs +0 -0
  2085. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/unused_variable.rs +0 -0
  2086. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/rules/yield_outside_function.rs +0 -0
  2087. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyflakes/settings.rs +0 -0
  2088. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pygrep_hooks/mod.rs +0 -0
  2089. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pygrep_hooks/rules/blanket_noqa.rs +0 -0
  2090. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pygrep_hooks/rules/blanket_type_ignore.rs +0 -0
  2091. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pygrep_hooks/rules/deprecated_log_warn.rs +0 -0
  2092. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pygrep_hooks/rules/invalid_mock_access.rs +0 -0
  2093. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pygrep_hooks/rules/mod.rs +0 -0
  2094. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pygrep_hooks/rules/no_eval.rs +0 -0
  2095. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/helpers.rs +0 -0
  2096. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/and_or_ternary.rs +0 -0
  2097. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/assert_on_string_literal.rs +0 -0
  2098. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/await_outside_async.rs +0 -0
  2099. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/bad_dunder_method_name.rs +0 -0
  2100. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/bad_open_mode.rs +0 -0
  2101. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/bad_staticmethod_argument.rs +0 -0
  2102. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/bad_str_strip_call.rs +0 -0
  2103. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/bad_string_format_character.rs +0 -0
  2104. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/bad_string_format_type.rs +0 -0
  2105. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/bidirectional_unicode.rs +0 -0
  2106. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/binary_op_exception.rs +0 -0
  2107. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/boolean_chained_comparison.rs +0 -0
  2108. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/collapsible_else_if.rs +0 -0
  2109. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/compare_to_empty_string.rs +0 -0
  2110. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/comparison_of_constant.rs +0 -0
  2111. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/comparison_with_itself.rs +0 -0
  2112. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/continue_in_finally.rs +0 -0
  2113. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/dict_index_missing_items.rs +0 -0
  2114. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/dict_iter_missing_items.rs +0 -0
  2115. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/duplicate_bases.rs +0 -0
  2116. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/empty_comment.rs +0 -0
  2117. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/eq_without_hash.rs +0 -0
  2118. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/global_at_module_level.rs +0 -0
  2119. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/global_statement.rs +0 -0
  2120. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/global_variable_not_assigned.rs +0 -0
  2121. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/if_stmt_min_max.rs +0 -0
  2122. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/import_outside_top_level.rs +0 -0
  2123. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/import_private_name.rs +0 -0
  2124. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/import_self.rs +0 -0
  2125. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/invalid_all_format.rs +0 -0
  2126. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/invalid_all_object.rs +0 -0
  2127. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/invalid_bool_return.rs +0 -0
  2128. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/invalid_bytes_return.rs +0 -0
  2129. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/invalid_envvar_default.rs +0 -0
  2130. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/invalid_envvar_value.rs +0 -0
  2131. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/invalid_hash_return.rs +0 -0
  2132. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/invalid_index_return.rs +0 -0
  2133. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/invalid_length_return.rs +0 -0
  2134. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/invalid_str_return.rs +0 -0
  2135. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/invalid_string_characters.rs +0 -0
  2136. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/iteration_over_set.rs +0 -0
  2137. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/len_test.rs +0 -0
  2138. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/literal_membership.rs +0 -0
  2139. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/load_before_global_declaration.rs +0 -0
  2140. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/logging.rs +0 -0
  2141. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/magic_value_comparison.rs +0 -0
  2142. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/manual_import_from.rs +0 -0
  2143. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/misplaced_bare_raise.rs +0 -0
  2144. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/modified_iterating_set.rs +0 -0
  2145. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/named_expr_without_context.rs +0 -0
  2146. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/nan_comparison.rs +0 -0
  2147. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/nested_min_max.rs +0 -0
  2148. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/no_method_decorator.rs +0 -0
  2149. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/non_ascii_module_import.rs +0 -0
  2150. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/non_ascii_name.rs +0 -0
  2151. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/non_slot_assignment.rs +0 -0
  2152. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/nonlocal_and_global.rs +0 -0
  2153. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/nonlocal_without_binding.rs +0 -0
  2154. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/potential_index_error.rs +0 -0
  2155. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/property_with_parameters.rs +0 -0
  2156. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/redeclared_assigned_name.rs +0 -0
  2157. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/redefined_argument_from_local.rs +0 -0
  2158. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/redefined_loop_name.rs +0 -0
  2159. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/repeated_equality_comparison.rs +0 -0
  2160. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/repeated_isinstance_calls.rs +0 -0
  2161. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/repeated_keyword_argument.rs +0 -0
  2162. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/return_in_init.rs +0 -0
  2163. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/self_assigning_variable.rs +0 -0
  2164. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/self_or_cls_assignment.rs +0 -0
  2165. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/shallow_copy_environ.rs +0 -0
  2166. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/single_string_slots.rs +0 -0
  2167. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/singledispatch_method.rs +0 -0
  2168. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/singledispatchmethod_function.rs +0 -0
  2169. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__assert.py.md.snap +0 -0
  2170. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__async-for.py.md.snap +0 -0
  2171. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__for.py.md.snap +0 -0
  2172. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__if.py.md.snap +0 -0
  2173. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__match.py.md.snap +0 -0
  2174. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__raise.py.md.snap +0 -0
  2175. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__simple.py.md.snap +0 -0
  2176. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__try-finally-nested-if-while.py.md.snap +0 -0
  2177. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__try.py.md.snap +0 -0
  2178. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__while.py.md.snap +0 -0
  2179. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/subprocess_popen_preexec_fn.rs +0 -0
  2180. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/subprocess_run_without_check.rs +0 -0
  2181. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/super_without_brackets.rs +0 -0
  2182. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/sys_exit_alias.rs +0 -0
  2183. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/too_many_arguments.rs +0 -0
  2184. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/too_many_boolean_expressions.rs +0 -0
  2185. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/too_many_branches.rs +0 -0
  2186. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/too_many_locals.rs +0 -0
  2187. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/too_many_nested_blocks.rs +0 -0
  2188. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/too_many_positional_arguments.rs +0 -0
  2189. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/too_many_public_methods.rs +0 -0
  2190. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/too_many_return_statements.rs +0 -0
  2191. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/too_many_statements.rs +0 -0
  2192. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/type_bivariance.rs +0 -0
  2193. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/type_name_incorrect_variance.rs +0 -0
  2194. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/type_param_name_mismatch.rs +0 -0
  2195. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/unexpected_special_method_signature.rs +0 -0
  2196. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/unnecessary_dict_index_lookup.rs +0 -0
  2197. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/unnecessary_direct_lambda_call.rs +0 -0
  2198. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/unnecessary_dunder_call.rs +0 -0
  2199. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/unnecessary_lambda.rs +0 -0
  2200. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/unnecessary_list_index_lookup.rs +0 -0
  2201. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/unreachable.rs +0 -0
  2202. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/unspecified_encoding.rs +0 -0
  2203. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/useless_else_on_loop.rs +0 -0
  2204. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/useless_exception_statement.rs +0 -0
  2205. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/useless_import_alias.rs +0 -0
  2206. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/useless_return.rs +0 -0
  2207. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/useless_with_lock.rs +0 -0
  2208. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/yield_from_in_async_function.rs +0 -0
  2209. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/rules/yield_in_init.rs +0 -0
  2210. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pylint/settings.rs +0 -0
  2211. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/fixes.rs +0 -0
  2212. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/helpers.rs +0 -0
  2213. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/convert_named_tuple_functional_to_class.rs +0 -0
  2214. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/convert_typed_dict_functional_to_class.rs +0 -0
  2215. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/datetime_utc_alias.rs +0 -0
  2216. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_c_element_tree.rs +0 -0
  2217. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_import.rs +0 -0
  2218. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_mock_import.rs +0 -0
  2219. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_unittest_alias.rs +0 -0
  2220. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/extraneous_parentheses.rs +0 -0
  2221. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/f_strings.rs +0 -0
  2222. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/format_literals.rs +0 -0
  2223. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/lru_cache_with_maxsize_none.rs +0 -0
  2224. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/lru_cache_without_parameters.rs +0 -0
  2225. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/native_literals.rs +0 -0
  2226. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/open_alias.rs +0 -0
  2227. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/os_error_alias.rs +0 -0
  2228. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/outdated_version_block.rs +0 -0
  2229. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/printf_string_formatting.rs +0 -0
  2230. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/quoted_annotation.rs +0 -0
  2231. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/redundant_open_modes.rs +0 -0
  2232. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/replace_stdout_stderr.rs +0 -0
  2233. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/replace_str_enum.rs +0 -0
  2234. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/replace_universal_newlines.rs +0 -0
  2235. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/super_call_with_parameters.rs +0 -0
  2236. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/timeout_error_alias.rs +0 -0
  2237. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/type_of_primitive.rs +0 -0
  2238. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/typing_text_str_alias.rs +0 -0
  2239. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/unicode_kind_prefix.rs +0 -0
  2240. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_builtin_import.rs +0 -0
  2241. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_class_parentheses.rs +0 -0
  2242. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_coding_comment.rs +0 -0
  2243. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_default_type_args.rs +0 -0
  2244. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_encode_utf8.rs +0 -0
  2245. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_future_import.rs +0 -0
  2246. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/unpacked_list_comprehension.rs +0 -0
  2247. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/use_pep585_annotation.rs +0 -0
  2248. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/use_pep604_annotation.rs +0 -0
  2249. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/use_pep604_isinstance.rs +0 -0
  2250. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/use_pep646_unpack.rs +0 -0
  2251. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/useless_metaclass_type.rs +0 -0
  2252. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/rules/useless_object_inheritance.rs +0 -0
  2253. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/settings.rs +0 -0
  2254. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/pyupgrade/types.rs +0 -0
  2255. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/helpers.rs +0 -0
  2256. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/bit_count.rs +0 -0
  2257. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/check_and_remove_from_set.rs +0 -0
  2258. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/delete_full_slice.rs +0 -0
  2259. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/for_loop_set_mutations.rs +0 -0
  2260. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/fstring_number_format.rs +0 -0
  2261. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/hardcoded_string_charset.rs +0 -0
  2262. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/hashlib_digest_hex.rs +0 -0
  2263. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/if_exp_instead_of_or_operator.rs +0 -0
  2264. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/if_expr_min_max.rs +0 -0
  2265. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/implicit_cwd.rs +0 -0
  2266. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/int_on_sliced_str.rs +0 -0
  2267. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/isinstance_type_none.rs +0 -0
  2268. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/list_reverse_copy.rs +0 -0
  2269. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/math_constant.rs +0 -0
  2270. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/metaclass_abcmeta.rs +0 -0
  2271. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/print_empty_string.rs +0 -0
  2272. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/read_whole_file.rs +0 -0
  2273. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/readlines_in_for.rs +0 -0
  2274. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/redundant_log_base.rs +0 -0
  2275. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/regex_flag_alias.rs +0 -0
  2276. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/reimplemented_operator.rs +0 -0
  2277. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/repeated_append.rs +0 -0
  2278. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/repeated_global.rs +0 -0
  2279. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/single_item_membership_test.rs +0 -0
  2280. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/slice_copy.rs +0 -0
  2281. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/slice_to_remove_prefix_or_suffix.rs +0 -0
  2282. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/sorted_min_max.rs +0 -0
  2283. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/subclass_builtin.rs +0 -0
  2284. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/type_none_comparison.rs +0 -0
  2285. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/unnecessary_enumerate.rs +0 -0
  2286. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/unnecessary_from_float.rs +0 -0
  2287. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/verbose_decimal_constructor.rs +0 -0
  2288. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/refurb/rules/write_whole_file.rs +0 -0
  2289. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/ambiguous_unicode_character.rs +0 -0
  2290. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/assert_with_print_message.rs +0 -0
  2291. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/assignment_in_assert.rs +0 -0
  2292. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/asyncio_dangling_task.rs +0 -0
  2293. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/collection_literal_concatenation.rs +0 -0
  2294. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/confusables.rs +0 -0
  2295. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/dataclass_enum.rs +0 -0
  2296. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/decimal_from_float_literal.rs +0 -0
  2297. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/default_factory_kwarg.rs +0 -0
  2298. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/explicit_f_string_type_conversion.rs +0 -0
  2299. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/falsy_dict_get_fallback.rs +0 -0
  2300. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/helpers.rs +0 -0
  2301. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/if_key_in_dict_del.rs +0 -0
  2302. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/implicit_optional.rs +0 -0
  2303. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/incorrectly_parenthesized_tuple_in_subscript.rs +0 -0
  2304. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/invalid_assert_message_literal_argument.rs +0 -0
  2305. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/invalid_formatter_suppression_comment.rs +0 -0
  2306. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/invalid_index_type.rs +0 -0
  2307. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/invalid_pyproject_toml.rs +0 -0
  2308. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/map_int_version_parsing.rs +0 -0
  2309. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/missing_fstring_syntax.rs +0 -0
  2310. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/mutable_class_default.rs +0 -0
  2311. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/mutable_dataclass_default.rs +0 -0
  2312. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/mutable_fromkeys_value.rs +0 -0
  2313. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/never_union.rs +0 -0
  2314. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/none_not_at_end_of_union.rs +0 -0
  2315. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/parenthesize_chained_operators.rs +0 -0
  2316. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/post_init_default.rs +0 -0
  2317. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/pytest_raises_ambiguous_pattern.rs +0 -0
  2318. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/redirected_noqa.rs +0 -0
  2319. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/redundant_bool_literal.rs +0 -0
  2320. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/sequence_sorting.rs +0 -0
  2321. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/sort_dunder_all.rs +0 -0
  2322. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/sort_dunder_slots.rs +0 -0
  2323. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/static_key_dict_comprehension.rs +0 -0
  2324. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/suppression_comment_visitor.rs +0 -0
  2325. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/test_rules.rs +0 -0
  2326. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/unnecessary_cast_to_int.rs +0 -0
  2327. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/unnecessary_iterable_allocation_for_first_element.rs +0 -0
  2328. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/unnecessary_key_check.rs +0 -0
  2329. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/unnecessary_literal_within_deque_call.rs +0 -0
  2330. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/unnecessary_nested_literal.rs +0 -0
  2331. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/unnecessary_round.rs +0 -0
  2332. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/unraw_re_pattern.rs +0 -0
  2333. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/unsafe_markup_use.rs +0 -0
  2334. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/unused_async.rs +0 -0
  2335. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/unused_noqa.rs +0 -0
  2336. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/used_dummy_variable.rs +0 -0
  2337. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/useless_if_else.rs +0 -0
  2338. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/rules/zip_instead_of_pairwise.rs +0 -0
  2339. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/settings.rs +0 -0
  2340. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/ruff/typing.rs +0 -0
  2341. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/tryceratops/helpers.rs +0 -0
  2342. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/tryceratops/mod.rs +0 -0
  2343. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/tryceratops/rules/error_instead_of_exception.rs +0 -0
  2344. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/tryceratops/rules/mod.rs +0 -0
  2345. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/tryceratops/rules/raise_vanilla_args.rs +0 -0
  2346. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/tryceratops/rules/raise_vanilla_class.rs +0 -0
  2347. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/tryceratops/rules/raise_within_try.rs +0 -0
  2348. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/tryceratops/rules/reraise_no_cause.rs +0 -0
  2349. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/tryceratops/rules/type_check_without_type_error.rs +0 -0
  2350. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/tryceratops/rules/useless_try_except.rs +0 -0
  2351. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/tryceratops/rules/verbose_log_message.rs +0 -0
  2352. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/rules/tryceratops/rules/verbose_raise.rs +0 -0
  2353. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/settings/fix_safety_table.rs +0 -0
  2354. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/settings/flags.rs +0 -0
  2355. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/settings/rule_table.rs +0 -0
  2356. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/settings/types.rs +0 -0
  2357. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__ipy_escape_command.snap +0 -0
  2358. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__undefined_name.snap +0 -0
  2359. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__unused_variable.snap +0 -0
  2360. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__vscode_language_id.snap +0 -0
  2361. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__flake8_exemption_all.snap +0 -0
  2362. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__flake8_exemption_all_case_insensitive.snap +0 -0
  2363. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__flake8_exemption_all_no_space.snap +0 -0
  2364. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__flake8_exemption_codes.snap +0 -0
  2365. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_all.snap +0 -0
  2366. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_all_case_insensitive.snap +0 -0
  2367. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_all_leading_comment.snap +0 -0
  2368. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_all_multi_space.snap +0 -0
  2369. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_all_no_space.snap +0 -0
  2370. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_all_trailing_comment.snap +0 -0
  2371. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_code.snap +0 -0
  2372. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_code_case_insensitive.snap +0 -0
  2373. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_code_leading_comment.snap +0 -0
  2374. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_code_multi_space.snap +0 -0
  2375. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_code_no_space.snap +0 -0
  2376. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_code_trailing_comment.snap +0 -0
  2377. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_codes.snap +0 -0
  2378. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_codes_case_insensitive.snap +0 -0
  2379. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_codes_leading_comment.snap +0 -0
  2380. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_codes_multi_space.snap +0 -0
  2381. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_codes_no_space.snap +0 -0
  2382. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_codes_trailing_comment.snap +0 -0
  2383. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_empty_comma.snap +0 -0
  2384. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_empty_comma_space.snap +0 -0
  2385. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_invalid_codes.snap +0 -0
  2386. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_invalid_suffix.snap +0 -0
  2387. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_leading_space.snap +0 -0
  2388. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_non_code.snap +0 -0
  2389. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_squashed_codes.snap +0 -0
  2390. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_trailing_space.snap +0 -0
  2391. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__ruff_exemption_all.snap +0 -0
  2392. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__ruff_exemption_all_case_insensitive.snap +0 -0
  2393. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__ruff_exemption_all_no_space.snap +0 -0
  2394. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__ruff_exemption_codes.snap +0 -0
  2395. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/source_kind.rs +0 -0
  2396. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/test.rs +0 -0
  2397. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/text_helpers.rs +0 -0
  2398. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_linter/src/upstream_categories.rs +0 -0
  2399. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_macros/Cargo.toml +0 -0
  2400. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_macros/src/cache_key.rs +0 -0
  2401. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_macros/src/combine_options.rs +0 -0
  2402. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_macros/src/config.rs +0 -0
  2403. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_macros/src/derive_message_formats.rs +0 -0
  2404. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_macros/src/kebab_case.rs +0 -0
  2405. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_macros/src/map_codes.rs +0 -0
  2406. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_macros/src/newtype_index.rs +0 -0
  2407. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_macros/src/rule_code_prefix.rs +0 -0
  2408. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_macros/src/rule_namespace.rs +0 -0
  2409. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_macros/src/violation_metadata.rs +0 -0
  2410. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/Cargo.toml +0 -0
  2411. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/R.ipynb +0 -0
  2412. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/add_missing_cell_id.ipynb +0 -0
  2413. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/after_fix.ipynb +0 -0
  2414. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/before_fix.ipynb +0 -0
  2415. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/automagic.json +0 -0
  2416. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/automagic_after_code.json +0 -0
  2417. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/automagic_assignment.json +0 -0
  2418. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/automagic_before_code.json +0 -0
  2419. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/automagics.json +0 -0
  2420. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/cell_magic.json +0 -0
  2421. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/code_and_magic.json +0 -0
  2422. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/markdown.json +0 -0
  2423. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/only_code.json +0 -0
  2424. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/only_magic.json +0 -0
  2425. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/unicode_magic_gh9145.json +0 -0
  2426. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/valid_cell_magic.json +0 -0
  2427. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/vscode_language_id_javascript.json +0 -0
  2428. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/vscode_language_id_python.json +0 -0
  2429. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/invalid_extension.ipynb +0 -0
  2430. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/ipy_escape_command.ipynb +0 -0
  2431. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/ipy_escape_command_expected.ipynb +0 -0
  2432. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/isort.ipynb +0 -0
  2433. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/isort_expected.ipynb +0 -0
  2434. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/kernelspec_language.ipynb +0 -0
  2435. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/no_cell_id.ipynb +0 -0
  2436. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/no_trailing_newline.ipynb +0 -0
  2437. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/not_json.ipynb +0 -0
  2438. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/undefined_name.ipynb +0 -0
  2439. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/unused_variable.ipynb +0 -0
  2440. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/unused_variable_expected.ipynb +0 -0
  2441. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/valid.ipynb +0 -0
  2442. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/vscode_language_id.ipynb +0 -0
  2443. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/vscode_language_id_expected.ipynb +0 -0
  2444. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/resources/test/fixtures/jupyter/wrong_schema.ipynb +0 -0
  2445. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/src/cell.rs +0 -0
  2446. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/src/index.rs +0 -0
  2447. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/src/lib.rs +0 -0
  2448. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/src/notebook.rs +0 -0
  2449. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_notebook/src/schema.rs +0 -0
  2450. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/Cargo.toml +0 -0
  2451. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/comparable.rs +0 -0
  2452. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/docstrings.rs +0 -0
  2453. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/helpers.rs +0 -0
  2454. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/identifier.rs +0 -0
  2455. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/int.rs +0 -0
  2456. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/name.rs +0 -0
  2457. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/relocate.rs +0 -0
  2458. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/script.rs +0 -0
  2459. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/statement_visitor.rs +0 -0
  2460. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/stmt_if.rs +0 -0
  2461. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/str_prefix.rs +0 -0
  2462. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/traversal.rs +0 -0
  2463. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/types.rs +0 -0
  2464. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/visitor/transformer.rs +0 -0
  2465. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/visitor.rs +0 -0
  2466. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_ast/src/whitespace.rs +0 -0
  2467. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_codegen/Cargo.toml +0 -0
  2468. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_codegen/src/lib.rs +0 -0
  2469. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_codegen/src/stylist.rs +0 -0
  2470. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/CONTRIBUTING.md +0 -0
  2471. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/Cargo.toml +0 -0
  2472. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/README.md +0 -0
  2473. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/orphan_rules_in_the_formatter.svg +0 -0
  2474. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/.editorconfig +0 -0
  2475. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/allow_empty_first_line.py +0 -0
  2476. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/allow_empty_first_line.py.expect +0 -0
  2477. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/async_stmts.py +0 -0
  2478. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/async_stmts.py.expect +0 -0
  2479. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/attribute_access_on_number_literals.py +0 -0
  2480. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/attribute_access_on_number_literals.py.expect +0 -0
  2481. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/backslash_before_indent.options.json +0 -0
  2482. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/backslash_before_indent.py +0 -0
  2483. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/backslash_before_indent.py.expect +0 -0
  2484. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/beginning_backslash.py +0 -0
  2485. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/beginning_backslash.py.expect +0 -0
  2486. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/bracketmatch.py +0 -0
  2487. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/bracketmatch.py.expect +0 -0
  2488. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/bytes_docstring.py +0 -0
  2489. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/bytes_docstring.py.expect +0 -0
  2490. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/class_blank_parentheses.py +0 -0
  2491. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/class_blank_parentheses.py.expect +0 -0
  2492. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/class_methods_new_line.py +0 -0
  2493. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/class_methods_new_line.py.expect +0 -0
  2494. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/collections.py +0 -0
  2495. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/collections.py.expect +0 -0
  2496. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comment_after_escaped_newline.py +0 -0
  2497. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comment_after_escaped_newline.py.expect +0 -0
  2498. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comment_type_hint.py +0 -0
  2499. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comment_type_hint.py.expect +0 -0
  2500. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments.py +0 -0
  2501. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments.py.expect +0 -0
  2502. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments2.py +0 -0
  2503. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments2.py.expect +0 -0
  2504. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments3.py +0 -0
  2505. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments3.py.expect +0 -0
  2506. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments4.py +0 -0
  2507. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments4.py.expect +0 -0
  2508. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments5.py +0 -0
  2509. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments5.py.expect +0 -0
  2510. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments6.py +0 -0
  2511. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments6.py.expect +0 -0
  2512. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments8.py +0 -0
  2513. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments8.py.expect +0 -0
  2514. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments9.py +0 -0
  2515. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments9.py.expect +0 -0
  2516. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments_in_blocks.py +0 -0
  2517. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments_in_blocks.py.expect +0 -0
  2518. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments_in_double_parens.py +0 -0
  2519. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments_in_double_parens.py.expect +0 -0
  2520. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments_non_breaking_space.py +0 -0
  2521. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments_non_breaking_space.py.expect +0 -0
  2522. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/composition.py +0 -0
  2523. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/composition.py.expect +0 -0
  2524. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/composition_no_trailing_comma.py +0 -0
  2525. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/composition_no_trailing_comma.py.expect +0 -0
  2526. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/conditional_expression.py +0 -0
  2527. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/conditional_expression.py.expect +0 -0
  2528. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_38.options.json +0 -0
  2529. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_38.py +0 -0
  2530. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_38.py.expect +0 -0
  2531. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_39.py +0 -0
  2532. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_39.py.expect +0 -0
  2533. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_310.options.json +0 -0
  2534. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_310.py +0 -0
  2535. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_310.py.expect +0 -0
  2536. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_311.options.json +0 -0
  2537. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_311.py +0 -0
  2538. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_311.py.expect +0 -0
  2539. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_38.options.json +0 -0
  2540. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_38.py +0 -0
  2541. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_38.py.expect +0 -0
  2542. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_39.py +0 -0
  2543. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_39.py.expect +0 -0
  2544. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring.py +0 -0
  2545. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring.py.expect +0 -0
  2546. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_newline_preview.options.json +0 -0
  2547. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_newline_preview.py +0 -0
  2548. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_newline_preview.py.expect +0 -0
  2549. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_no_extra_empty_line_before_eof.py +0 -0
  2550. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_no_extra_empty_line_before_eof.py.expect +0 -0
  2551. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_no_string_normalization.py +0 -0
  2552. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_no_string_normalization.py.expect +0 -0
  2553. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_preview.py +0 -0
  2554. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_preview.py.expect +0 -0
  2555. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/dummy_implementations.py +0 -0
  2556. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/dummy_implementations.py.expect +0 -0
  2557. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/empty_lines.py +0 -0
  2558. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/empty_lines.py.expect +0 -0
  2559. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/expression.py +0 -0
  2560. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/expression.py.expect +0 -0
  2561. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/f_docstring.py +0 -0
  2562. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/f_docstring.py.expect +0 -0
  2563. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff.py +0 -0
  2564. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff.py.expect +0 -0
  2565. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff2.py +0 -0
  2566. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff2.py.expect +0 -0
  2567. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff3.py +0 -0
  2568. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff3.py.expect +0 -0
  2569. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff4.py +0 -0
  2570. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff4.py.expect +0 -0
  2571. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff5.py +0 -0
  2572. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff5.py.expect +0 -0
  2573. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff6.py +0 -0
  2574. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff6.py.expect +0 -0
  2575. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtpass_imports.py +0 -0
  2576. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtpass_imports.py.expect +0 -0
  2577. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip.py +0 -0
  2578. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip.py.expect +0 -0
  2579. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip2.py +0 -0
  2580. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip2.py.expect +0 -0
  2581. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip3.py +0 -0
  2582. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip3.py.expect +0 -0
  2583. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip4.py +0 -0
  2584. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip4.py.expect +0 -0
  2585. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip5.py +0 -0
  2586. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip5.py.expect +0 -0
  2587. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip6.py +0 -0
  2588. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip6.py.expect +0 -0
  2589. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip7.py +0 -0
  2590. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip7.py.expect +0 -0
  2591. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip8.py +0 -0
  2592. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip8.py.expect +0 -0
  2593. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip9.options.json +0 -0
  2594. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip9.py +0 -0
  2595. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip9.py.expect +0 -0
  2596. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/form_feeds.py +0 -0
  2597. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/form_feeds.py.expect +0 -0
  2598. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fstring.py +0 -0
  2599. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fstring.py.expect +0 -0
  2600. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/funcdef_return_type_trailing_comma.options.json +0 -0
  2601. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/funcdef_return_type_trailing_comma.py +0 -0
  2602. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/funcdef_return_type_trailing_comma.py.expect +0 -0
  2603. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/function.py +0 -0
  2604. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/function.py.expect +0 -0
  2605. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/function2.py +0 -0
  2606. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/function2.py.expect +0 -0
  2607. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/function_trailing_comma.py +0 -0
  2608. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/function_trailing_comma.py.expect +0 -0
  2609. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/ignore_pyi.pyi +0 -0
  2610. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/ignore_pyi.pyi.expect +0 -0
  2611. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/import_spacing.py +0 -0
  2612. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/import_spacing.py.expect +0 -0
  2613. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/is_simple_lookup_for_doublestar_expression.options.json +0 -0
  2614. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/is_simple_lookup_for_doublestar_expression.py +0 -0
  2615. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/is_simple_lookup_for_doublestar_expression.py.expect +0 -0
  2616. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/keep_newline_after_match.options.json +0 -0
  2617. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/keep_newline_after_match.py +0 -0
  2618. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/keep_newline_after_match.py.expect +0 -0
  2619. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_basic.py +0 -0
  2620. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_basic.py.expect +0 -0
  2621. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_diff_edge_case.py +0 -0
  2622. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_diff_edge_case.py.expect +0 -0
  2623. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_exceeding_end.py +0 -0
  2624. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_exceeding_end.py.expect +0 -0
  2625. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_fmt_off.py +0 -0
  2626. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_fmt_off.py.expect +0 -0
  2627. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_fmt_off_decorator.py +0 -0
  2628. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_fmt_off_decorator.py.expect +0 -0
  2629. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_fmt_off_overlap.py +0 -0
  2630. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_fmt_off_overlap.py.expect +0 -0
  2631. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_imports.py +0 -0
  2632. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_imports.py.expect +0 -0
  2633. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_indentation.py +0 -0
  2634. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_indentation.py.expect +0 -0
  2635. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_two_passes.py +0 -0
  2636. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_two_passes.py.expect +0 -0
  2637. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_unwrapping.py +0 -0
  2638. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_unwrapping.py.expect +0 -0
  2639. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/linelength6.options.json +0 -0
  2640. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/linelength6.py +0 -0
  2641. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/linelength6.py.expect +0 -0
  2642. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/long_strings_flag_disabled.py +0 -0
  2643. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/long_strings_flag_disabled.py.expect +0 -0
  2644. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_1.py +0 -0
  2645. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_1.py.expect +0 -0
  2646. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_2.options.json +0 -0
  2647. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_2.py +0 -0
  2648. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_2.py.expect +0 -0
  2649. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_3.py +0 -0
  2650. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_3.py.expect +0 -0
  2651. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_4.py +0 -0
  2652. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_4.py.expect +0 -0
  2653. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_followed_by_class.py +0 -0
  2654. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_followed_by_class.py.expect +0 -0
  2655. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_followed_by_function.py +0 -0
  2656. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_followed_by_function.py.expect +0 -0
  2657. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/multiline_consecutive_open_parentheses_ignore.py +0 -0
  2658. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/multiline_consecutive_open_parentheses_ignore.py.expect +0 -0
  2659. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/nested_stub.pyi +0 -0
  2660. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/nested_stub.pyi.expect +0 -0
  2661. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/no_blank_line_before_docstring.py +0 -0
  2662. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/no_blank_line_before_docstring.py.expect +0 -0
  2663. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/numeric_literals.py +0 -0
  2664. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/numeric_literals.py.expect +0 -0
  2665. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/numeric_literals_skip_underscores.py +0 -0
  2666. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/numeric_literals_skip_underscores.py.expect +0 -0
  2667. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/one_element_subscript.py +0 -0
  2668. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/one_element_subscript.py.expect +0 -0
  2669. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/parenthesized_context_managers.options.json +0 -0
  2670. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/parenthesized_context_managers.py +0 -0
  2671. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/parenthesized_context_managers.py.expect +0 -0
  2672. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_complex.options.json +0 -0
  2673. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_complex.py +0 -0
  2674. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_complex.py.expect +0 -0
  2675. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_extras.options.json +0 -0
  2676. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_extras.py +0 -0
  2677. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_extras.py.expect +0 -0
  2678. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_generic.options.json +0 -0
  2679. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_generic.py +0 -0
  2680. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_generic.py.expect +0 -0
  2681. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_long.options.json +0 -0
  2682. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_long.py +0 -0
  2683. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_long.py.expect +0 -0
  2684. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_simple.options.json +0 -0
  2685. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_simple.py +0 -0
  2686. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_simple.py.expect +0 -0
  2687. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_style.options.json +0 -0
  2688. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_style.py +0 -0
  2689. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_style.py.expect +0 -0
  2690. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_trailing_comma.options.json +0 -0
  2691. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_trailing_comma.py +0 -0
  2692. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_trailing_comma.py.expect +0 -0
  2693. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_with_if_stmt.options.json +0 -0
  2694. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_with_if_stmt.py +0 -0
  2695. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_with_if_stmt.py.expect +0 -0
  2696. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep604_union_types_line_breaks.options.json +0 -0
  2697. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep604_union_types_line_breaks.py +0 -0
  2698. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep604_union_types_line_breaks.py.expect +0 -0
  2699. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_570.py +0 -0
  2700. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_570.py.expect +0 -0
  2701. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572.py +0 -0
  2702. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572.py.expect +0 -0
  2703. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_py310.options.json +0 -0
  2704. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_py310.py +0 -0
  2705. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_py310.py.expect +0 -0
  2706. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_py39.py +0 -0
  2707. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_py39.py.expect +0 -0
  2708. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_remove_parens.py +0 -0
  2709. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_remove_parens.py.expect +0 -0
  2710. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_slices.py +0 -0
  2711. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_slices.py.expect +0 -0
  2712. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_604.py +0 -0
  2713. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_604.py.expect +0 -0
  2714. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_646.options.json +0 -0
  2715. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_646.py +0 -0
  2716. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_646.py.expect +0 -0
  2717. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_654.options.json +0 -0
  2718. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_654.py +0 -0
  2719. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_654.py.expect +0 -0
  2720. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_654_style.options.json +0 -0
  2721. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_654_style.py +0 -0
  2722. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_654_style.py.expect +0 -0
  2723. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_701.options.json +0 -0
  2724. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_701.py +0 -0
  2725. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_701.py.expect +0 -0
  2726. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/percent_precedence.py +0 -0
  2727. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/percent_precedence.py.expect +0 -0
  2728. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_newline.options.json +0 -0
  2729. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_newline.py +0 -0
  2730. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_newline.py.expect +0 -0
  2731. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_spacing.py +0 -0
  2732. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_spacing.py.expect +0 -0
  2733. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_spacing_long.py +0 -0
  2734. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_spacing_long.py.expect +0 -0
  2735. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/prefer_rhs_split.py +0 -0
  2736. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/prefer_rhs_split.py.expect +0 -0
  2737. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/prefer_rhs_split_reformatted.py +0 -0
  2738. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/prefer_rhs_split_reformatted.py.expect +0 -0
  2739. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_cantfit.options.json +0 -0
  2740. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_cantfit.py +0 -0
  2741. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_cantfit.py.expect +0 -0
  2742. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_cantfit_string.options.json +0 -0
  2743. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_cantfit_string.py +0 -0
  2744. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_cantfit_string.py.expect +0 -0
  2745. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_comments7.options.json +0 -0
  2746. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_comments7.py +0 -0
  2747. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_comments7.py.expect +0 -0
  2748. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_format_unicode_escape_seq.options.json +0 -0
  2749. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_format_unicode_escape_seq.py +0 -0
  2750. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_format_unicode_escape_seq.py.expect +0 -0
  2751. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_hug_parens_with_braces_and_square_brackets.options.json +0 -0
  2752. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_hug_parens_with_braces_and_square_brackets.py +0 -0
  2753. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_hug_parens_with_braces_and_square_brackets.py.expect +0 -0
  2754. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_hug_parens_with_braces_and_square_brackets_no_ll1.options.json +0 -0
  2755. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_hug_parens_with_braces_and_square_brackets_no_ll1.py +0 -0
  2756. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_hug_parens_with_braces_and_square_brackets_no_ll1.py.expect +0 -0
  2757. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_dict_values.options.json +0 -0
  2758. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_dict_values.py +0 -0
  2759. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_dict_values.py.expect +0 -0
  2760. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings.options.json +0 -0
  2761. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings.py +0 -0
  2762. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings.py.expect +0 -0
  2763. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__east_asian_width.options.json +0 -0
  2764. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__east_asian_width.py +0 -0
  2765. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__east_asian_width.py.expect +0 -0
  2766. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__edge_case.options.json +0 -0
  2767. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__edge_case.py +0 -0
  2768. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__edge_case.py.expect +0 -0
  2769. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__regression.options.json +0 -0
  2770. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__regression.py +0 -0
  2771. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__regression.py.expect +0 -0
  2772. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__type_annotations.options.json +0 -0
  2773. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__type_annotations.py +0 -0
  2774. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__type_annotations.py.expect +0 -0
  2775. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_multiline_strings.options.json +0 -0
  2776. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_multiline_strings.py +0 -0
  2777. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_multiline_strings.py.expect +0 -0
  2778. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_pep646_typed_star_arg_type_var_tuple.options.json +0 -0
  2779. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_pep646_typed_star_arg_type_var_tuple.py +0 -0
  2780. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_pep646_typed_star_arg_type_var_tuple.py.expect +0 -0
  2781. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_return_annotation_brackets_string.options.json +0 -0
  2782. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_return_annotation_brackets_string.py +0 -0
  2783. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_return_annotation_brackets_string.py.expect +0 -0
  2784. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/py310_pep572.options.json +0 -0
  2785. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/py310_pep572.py +0 -0
  2786. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/py310_pep572.py.expect +0 -0
  2787. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/python37.py +0 -0
  2788. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/python37.py.expect +0 -0
  2789. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/python38.py +0 -0
  2790. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/python38.py.expect +0 -0
  2791. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/python39.py +0 -0
  2792. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/python39.py.expect +0 -0
  2793. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/raw_docstring.py +0 -0
  2794. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/raw_docstring.py.expect +0 -0
  2795. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/raw_docstring_no_string_normalization.py +0 -0
  2796. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/raw_docstring_no_string_normalization.py.expect +0 -0
  2797. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_await_parens.py +0 -0
  2798. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_await_parens.py.expect +0 -0
  2799. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_except_parens.py +0 -0
  2800. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_except_parens.py.expect +0 -0
  2801. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_for_brackets.py +0 -0
  2802. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_for_brackets.py.expect +0 -0
  2803. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_newline_after_code_block_open.py +0 -0
  2804. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_newline_after_code_block_open.py.expect +0 -0
  2805. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_parens.py +0 -0
  2806. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_parens.py.expect +0 -0
  2807. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_redundant_parens_in_case_guard.options.json +0 -0
  2808. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_redundant_parens_in_case_guard.py +0 -0
  2809. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_redundant_parens_in_case_guard.py.expect +0 -0
  2810. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_with_brackets.py +0 -0
  2811. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_with_brackets.py.expect +0 -0
  2812. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/return_annotation_brackets.py +0 -0
  2813. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/return_annotation_brackets.py.expect +0 -0
  2814. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/single_line_format_skip_with_multiple_comments.py +0 -0
  2815. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/single_line_format_skip_with_multiple_comments.py.expect +0 -0
  2816. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/skip_magic_trailing_comma.options.json +0 -0
  2817. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/skip_magic_trailing_comma.py +0 -0
  2818. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/skip_magic_trailing_comma.py.expect +0 -0
  2819. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/slices.py +0 -0
  2820. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/slices.py.expect +0 -0
  2821. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/split_delimiter_comments.py +0 -0
  2822. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/split_delimiter_comments.py.expect +0 -0
  2823. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/starred_for_target.options.json +0 -0
  2824. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/starred_for_target.py +0 -0
  2825. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/starred_for_target.py.expect +0 -0
  2826. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/string_prefixes.py +0 -0
  2827. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/string_prefixes.py.expect +0 -0
  2828. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/stub.pyi +0 -0
  2829. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/stub.pyi.expect +0 -0
  2830. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/torture.py +0 -0
  2831. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/torture.py.expect +0 -0
  2832. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma.py +0 -0
  2833. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma.py.expect +0 -0
  2834. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma_optional_parens1.py +0 -0
  2835. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma_optional_parens1.py.expect +0 -0
  2836. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma_optional_parens2.py +0 -0
  2837. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma_optional_parens2.py.expect +0 -0
  2838. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma_optional_parens3.py +0 -0
  2839. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma_optional_parens3.py.expect +0 -0
  2840. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_commas_in_leading_parts.py +0 -0
  2841. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_commas_in_leading_parts.py.expect +0 -0
  2842. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/tricky_unicode_symbols.py +0 -0
  2843. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/tricky_unicode_symbols.py.expect +0 -0
  2844. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/tupleassign.py +0 -0
  2845. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/tupleassign.py.expect +0 -0
  2846. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_aliases.options.json +0 -0
  2847. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_aliases.py +0 -0
  2848. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_aliases.py.expect +0 -0
  2849. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_comment_syntax_error.py +0 -0
  2850. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_comment_syntax_error.py.expect +0 -0
  2851. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_param_defaults.options.json +0 -0
  2852. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_param_defaults.py +0 -0
  2853. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_param_defaults.py.expect +0 -0
  2854. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_params.options.json +0 -0
  2855. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_params.py +0 -0
  2856. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_params.py.expect +0 -0
  2857. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/typed_params_trailing_comma.options.json +0 -0
  2858. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/typed_params_trailing_comma.py +0 -0
  2859. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/typed_params_trailing_comma.py.expect +0 -0
  2860. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/walrus_in_dict.options.json +0 -0
  2861. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/walrus_in_dict.py +0 -0
  2862. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/walrus_in_dict.py.expect +0 -0
  2863. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/whitespace.py +0 -0
  2864. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/whitespace.py.expect +0 -0
  2865. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/blackd_diff.py +0 -0
  2866. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/blackd_diff.py.expect +0 -0
  2867. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/debug_visitor.py +0 -0
  2868. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/debug_visitor.py.expect +0 -0
  2869. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/force_py36.py +0 -0
  2870. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/force_py36.py.expect +0 -0
  2871. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/force_pyi.pyi +0 -0
  2872. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/force_pyi.pyi.expect +0 -0
  2873. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/missing_final_newline.py +0 -0
  2874. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/missing_final_newline.py.expect +0 -0
  2875. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/string_quotes.py +0 -0
  2876. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/string_quotes.py.expect +0 -0
  2877. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/import_black_tests.py +0 -0
  2878. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/.editorconfig +0 -0
  2879. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/blank_line_before_class_docstring.options.json +0 -0
  2880. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/blank_line_before_class_docstring.py +0 -0
  2881. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/carriage_return/.editorconfig +0 -0
  2882. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/carriage_return/.gitattributes +0 -0
  2883. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/carriage_return/string.py +0 -0
  2884. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring.options.json +0 -0
  2885. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring.py +0 -0
  2886. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_code_examples.options.json +0 -0
  2887. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_code_examples.py +0 -0
  2888. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_code_examples_crlf.options.json +0 -0
  2889. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_code_examples_crlf.py +0 -0
  2890. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_code_examples_dynamic_line_width.options.json +0 -0
  2891. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_code_examples_dynamic_line_width.py +0 -0
  2892. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_newlines.py +0 -0
  2893. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_non_visible_characters.py +0 -0
  2894. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_tab_indentation.options.json +0 -0
  2895. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_tab_indentation.py +0 -0
  2896. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/empty_multiple_trailing_newlines.py +0 -0
  2897. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/empty_now_newline.py +0 -0
  2898. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/empty_trailing_newline.py +0 -0
  2899. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/empty_whitespace.py +0 -0
  2900. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/annotated_assign.py +0 -0
  2901. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/attribute.py +0 -0
  2902. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/await.py +0 -0
  2903. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/binary.py +0 -0
  2904. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/binary_implicit_string.py +0 -0
  2905. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/binary_pow_spacing.py +0 -0
  2906. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/boolean_operation.py +0 -0
  2907. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/bytes.options.json +0 -0
  2908. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/bytes.py +0 -0
  2909. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/call.py +0 -0
  2910. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/compare.py +0 -0
  2911. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/dict.py +0 -0
  2912. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/dict_comp.py +0 -0
  2913. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/fstring.options.json +0 -0
  2914. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/fstring_preview.options.json +0 -0
  2915. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/fstring_preview.py +0 -0
  2916. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/generator_exp.py +0 -0
  2917. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/hug.py +0 -0
  2918. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/if.py +0 -0
  2919. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/join_implicit_concatenated_string.py +0 -0
  2920. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/join_implicit_concatenated_string_assignment.py +0 -0
  2921. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/join_implicit_concatenated_string_preserve.options.json +0 -0
  2922. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/join_implicit_concatenated_string_preserve.py +0 -0
  2923. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/lambda.py +0 -0
  2924. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/list.py +0 -0
  2925. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/list_comp.py +0 -0
  2926. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/named_expr.py +0 -0
  2927. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/number.py +0 -0
  2928. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/optional_parentheses_comments.py +0 -0
  2929. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/set_comp.py +0 -0
  2930. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/slice.py +0 -0
  2931. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/split_empty_brackets.py +0 -0
  2932. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/starred.py +0 -0
  2933. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/string.options.json +0 -0
  2934. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/string.py +0 -0
  2935. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/subscript.py +0 -0
  2936. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/tuple.py +0 -0
  2937. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/unary.py +0 -0
  2938. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/unsplittable.py +0 -0
  2939. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/yield.py +0 -0
  2940. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/yield_from.py +0 -0
  2941. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/comments.py +0 -0
  2942. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/empty_file.py +0 -0
  2943. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/fmt_off_docstring.options.json +0 -0
  2944. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/fmt_off_docstring.py +0 -0
  2945. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/fmt_off_unclosed_deep_nested_trailing_comment.py +0 -0
  2946. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/fmt_off_unclosed_trailing_comment.py +0 -0
  2947. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/form_feed.py +0 -0
  2948. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/indent.options.json +0 -0
  2949. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/indent.py +0 -0
  2950. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/last_statement.py +0 -0
  2951. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/mixed_space_and_tab.options.json +0 -0
  2952. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/mixed_space_and_tab.py +0 -0
  2953. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/newlines.py +0 -0
  2954. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/no_fmt_on.py +0 -0
  2955. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/off_on_off_on.py +0 -0
  2956. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/simple.py +0 -0
  2957. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/trailing_comments.py +0 -0
  2958. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/trailing_semicolon.py +0 -0
  2959. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/yapf.py +0 -0
  2960. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/decorators.py +0 -0
  2961. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/docstrings.py +0 -0
  2962. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/match.py +0 -0
  2963. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/or_else.py +0 -0
  2964. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/parentheses.py +0 -0
  2965. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/reason.py +0 -0
  2966. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/trailing_semi.py +0 -0
  2967. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/type_params.py +0 -0
  2968. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/form_feed.py +0 -0
  2969. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/module_dangling_comment1.py +0 -0
  2970. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/module_dangling_comment2.py +0 -0
  2971. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/multiline_string_deviations.py +0 -0
  2972. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/newlines.py +0 -0
  2973. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/newlines.pyi +0 -0
  2974. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/notebook_docstring.options.json +0 -0
  2975. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/notebook_docstring.py +0 -0
  2976. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/parentheses/call_chains.py +0 -0
  2977. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/parentheses/expression_parentheses_comments.py +0 -0
  2978. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/parentheses/nested.py +0 -0
  2979. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/parentheses/opening_parentheses_comment_empty.py +0 -0
  2980. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/parentheses/opening_parentheses_comment_value.py +0 -0
  2981. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/pattern/pattern_maybe_parenthesize.py +0 -0
  2982. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/preview.options.json +0 -0
  2983. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/preview.py +0 -0
  2984. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/quote_style.options.json +0 -0
  2985. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/quote_style.py +0 -0
  2986. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/ancestory.py +0 -0
  2987. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/clause_header.py +0 -0
  2988. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/comment_only_range.py +0 -0
  2989. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/decorators.py +0 -0
  2990. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/docstring_code_examples.options.json +0 -0
  2991. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/docstring_code_examples.py +0 -0
  2992. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/empty_file.py +0 -0
  2993. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/empty_range.py +0 -0
  2994. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/end_of_file.py +0 -0
  2995. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/fmt_on_off.py +0 -0
  2996. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/indent.options.json +0 -0
  2997. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/indent.py +0 -0
  2998. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/leading_comments.py +0 -0
  2999. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/leading_trailing_comments.py +0 -0
  3000. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/module.py +0 -0
  3001. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/parentheses.py +0 -0
  3002. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/range_narrowing.py +0 -0
  3003. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/regressions.py +0 -0
  3004. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/same_line_body.py +0 -0
  3005. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/stub.options.json +0 -0
  3006. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/stub.pyi +0 -0
  3007. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/trailing_comments.py +0 -0
  3008. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/whitespace_only_range.py +0 -0
  3009. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/skip_magic_trailing_comma.options.json +0 -0
  3010. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/skip_magic_trailing_comma.py +0 -0
  3011. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/ann_assign.py +0 -0
  3012. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/assert.py +0 -0
  3013. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/assign.py +0 -0
  3014. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/assignment_split_value_first.py +0 -0
  3015. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/aug_assign.py +0 -0
  3016. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/break.py +0 -0
  3017. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/class_definition.py +0 -0
  3018. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/delete.py +0 -0
  3019. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/ellipsis.pyi +0 -0
  3020. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/for.py +0 -0
  3021. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/function.py +0 -0
  3022. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/global.py +0 -0
  3023. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/if.py +0 -0
  3024. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/import.py +0 -0
  3025. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/import_from.py +0 -0
  3026. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/long_type_annotations.py +0 -0
  3027. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/match.py +0 -0
  3028. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/module_comment.py +0 -0
  3029. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/nonlocal.py +0 -0
  3030. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/raise.py +0 -0
  3031. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/return.py +0 -0
  3032. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/return_annotation.py +0 -0
  3033. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/return_type_no_parameters.py +0 -0
  3034. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/return_type_parameters.py +0 -0
  3035. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/stub_functions_trailing_comments.py +0 -0
  3036. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/top_level.py +0 -0
  3037. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/top_level.pyi +0 -0
  3038. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/try.py +0 -0
  3039. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/type_alias.py +0 -0
  3040. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/while.py +0 -0
  3041. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/with.options.json +0 -0
  3042. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/with.py +0 -0
  3043. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/with_39.options.json +0 -0
  3044. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/with_39.py +0 -0
  3045. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/blank_line_after_nested_stub_class.options.json +0 -0
  3046. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/blank_line_after_nested_stub_class.pyi +0 -0
  3047. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/blank_line_after_nested_stub_class_eof.options.json +0 -0
  3048. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/blank_line_after_nested_stub_class_eof.pyi +0 -0
  3049. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/comments.pyi +0 -0
  3050. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/nesting.pyi +0 -0
  3051. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/suite.pyi +0 -0
  3052. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/top_level.pyi +0 -0
  3053. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/tab_width.options.json +0 -0
  3054. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/tab_width.py +0 -0
  3055. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/trailing_comments.py +0 -0
  3056. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/resources/test/fixtures/ruff/trivia.py +0 -0
  3057. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/cli.rs +0 -0
  3058. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/map.rs +0 -0
  3059. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/mod.rs +0 -0
  3060. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/node_key.rs +0 -0
  3061. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/placement.rs +0 -0
  3062. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__debug__tests__debug.snap +0 -0
  3063. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__base_test.snap +0 -0
  3064. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__binary_expression_left_operand_comment.snap +0 -0
  3065. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__binary_expression_left_operand_trailing_end_of_line_comment.snap +0 -0
  3066. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__dangling_comment.snap +0 -0
  3067. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__empty_file.snap +0 -0
  3068. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__if_elif_else_comments.snap +0 -0
  3069. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__if_elif_if_else_comments.snap +0 -0
  3070. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__leading_most_outer.snap +0 -0
  3071. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__match_cases.snap +0 -0
  3072. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__nested_binary_expression.snap +0 -0
  3073. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__non_positional_arguments_slash_on_same_line.snap +0 -0
  3074. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__non_positional_arguments_with_defaults.snap +0 -0
  3075. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__only_comments.snap +0 -0
  3076. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__parenthesized_expression.snap +0 -0
  3077. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__parenthesized_trailing_comment.snap +0 -0
  3078. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__positional_argument_only_comment.snap +0 -0
  3079. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__positional_argument_only_comment_without_following_node.snap +0 -0
  3080. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__positional_argument_only_leading_comma_comment.snap +0 -0
  3081. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__trailing_after_comma.snap +0 -0
  3082. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__trailing_comment_after_single_statement_body.snap +0 -0
  3083. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__trailing_function_comment.snap +0 -0
  3084. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__trailing_most_outer.snap +0 -0
  3085. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__trailing_most_outer_nested.snap +0 -0
  3086. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__try_except.snap +0 -0
  3087. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__try_except_finally_else.snap +0 -0
  3088. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__while_trailing_else_end_of_line_comment.snap +0 -0
  3089. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__while_trailing_end_of_line_comment.snap +0 -0
  3090. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/comments/visitor.rs +0 -0
  3091. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/binary_like.rs +0 -0
  3092. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_attribute.rs +0 -0
  3093. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_await.rs +0 -0
  3094. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_bin_op.rs +0 -0
  3095. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_bool_op.rs +0 -0
  3096. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_boolean_literal.rs +0 -0
  3097. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_bytes_literal.rs +0 -0
  3098. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_call.rs +0 -0
  3099. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_compare.rs +0 -0
  3100. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_dict.rs +0 -0
  3101. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_dict_comp.rs +0 -0
  3102. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_ellipsis_literal.rs +0 -0
  3103. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_f_string.rs +0 -0
  3104. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_generator.rs +0 -0
  3105. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_if.rs +0 -0
  3106. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_ipy_escape_command.rs +0 -0
  3107. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_lambda.rs +0 -0
  3108. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_list.rs +0 -0
  3109. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_list_comp.rs +0 -0
  3110. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_name.rs +0 -0
  3111. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_named.rs +0 -0
  3112. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_none_literal.rs +0 -0
  3113. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_number_literal.rs +0 -0
  3114. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_set.rs +0 -0
  3115. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_set_comp.rs +0 -0
  3116. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_starred.rs +0 -0
  3117. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_string_literal.rs +0 -0
  3118. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_tuple.rs +0 -0
  3119. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_unary_op.rs +0 -0
  3120. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_yield.rs +0 -0
  3121. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/expr_yield_from.rs +0 -0
  3122. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/expression/operator.rs +0 -0
  3123. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/main.rs +0 -0
  3124. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/module/mod.rs +0 -0
  3125. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/module/mod_expression.rs +0 -0
  3126. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/module/mod_module.rs +0 -0
  3127. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/options.rs +0 -0
  3128. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/alias.rs +0 -0
  3129. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/arguments.rs +0 -0
  3130. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/bytes_literal.rs +0 -0
  3131. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/commas.rs +0 -0
  3132. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/comprehension.rs +0 -0
  3133. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/decorator.rs +0 -0
  3134. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/elif_else_clause.rs +0 -0
  3135. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/except_handler_except_handler.rs +0 -0
  3136. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/f_string.rs +0 -0
  3137. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/identifier.rs +0 -0
  3138. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/keyword.rs +0 -0
  3139. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/match_case.rs +0 -0
  3140. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/mod.rs +0 -0
  3141. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/parameter.rs +0 -0
  3142. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/parameter_with_default.rs +0 -0
  3143. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/string_literal.rs +0 -0
  3144. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/other/with_item.rs +0 -0
  3145. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/pattern/mod.rs +0 -0
  3146. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/pattern/pattern_keyword.rs +0 -0
  3147. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/pattern/pattern_match_as.rs +0 -0
  3148. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/pattern/pattern_match_class.rs +0 -0
  3149. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/pattern/pattern_match_mapping.rs +0 -0
  3150. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/pattern/pattern_match_or.rs +0 -0
  3151. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/pattern/pattern_match_sequence.rs +0 -0
  3152. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/pattern/pattern_match_singleton.rs +0 -0
  3153. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/pattern/pattern_match_star.rs +0 -0
  3154. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/pattern/pattern_match_value.rs +0 -0
  3155. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/prelude.rs +0 -0
  3156. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/preview.rs +0 -0
  3157. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/range.rs +0 -0
  3158. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/shared_traits.rs +0 -0
  3159. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/snapshots/ruff_python_formatter__tests__string_processing.snap +0 -0
  3160. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/clause.rs +0 -0
  3161. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/mod.rs +0 -0
  3162. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_ann_assign.rs +0 -0
  3163. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_assert.rs +0 -0
  3164. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_assign.rs +0 -0
  3165. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_aug_assign.rs +0 -0
  3166. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_break.rs +0 -0
  3167. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_class_def.rs +0 -0
  3168. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_continue.rs +0 -0
  3169. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_delete.rs +0 -0
  3170. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_expr.rs +0 -0
  3171. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_for.rs +0 -0
  3172. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_function_def.rs +0 -0
  3173. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_if.rs +0 -0
  3174. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_import.rs +0 -0
  3175. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_ipy_escape_command.rs +0 -0
  3176. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_match.rs +0 -0
  3177. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_pass.rs +0 -0
  3178. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_raise.rs +0 -0
  3179. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_return.rs +0 -0
  3180. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_try.rs +0 -0
  3181. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/stmt_type_alias.rs +0 -0
  3182. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/statement/suite.rs +0 -0
  3183. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/string/docstring.rs +0 -0
  3184. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/string/implicit.rs +0 -0
  3185. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/string/mod.rs +0 -0
  3186. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/string/normalize.rs +0 -0
  3187. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/type_param/mod.rs +0 -0
  3188. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/type_param/type_param_param_spec.rs +0 -0
  3189. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/type_param/type_param_type_var.rs +0 -0
  3190. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/type_param/type_param_type_var_tuple.rs +0 -0
  3191. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/src/verbatim.rs +0 -0
  3192. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/fixtures.rs +0 -0
  3193. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/normalizer.rs +0 -0
  3194. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__allow_empty_first_line.py.snap +0 -0
  3195. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__backslash_before_indent.py.snap +0 -0
  3196. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__class_blank_parentheses.py.snap +0 -0
  3197. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__comment_after_escaped_newline.py.snap +0 -0
  3198. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__comments2.py.snap +0 -0
  3199. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__comments6.py.snap +0 -0
  3200. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__comments9.py.snap +0 -0
  3201. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__comments_in_blocks.py.snap +0 -0
  3202. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__comments_in_double_parens.py.snap +0 -0
  3203. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__composition.py.snap +0 -0
  3204. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__composition_no_trailing_comma.py.snap +0 -0
  3205. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__conditional_expression.py.snap +0 -0
  3206. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__docstring_no_string_normalization.py.snap +0 -0
  3207. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__dummy_implementations.py.snap +0 -0
  3208. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__empty_lines.py.snap +0 -0
  3209. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__expression.py.snap +0 -0
  3210. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__f_docstring.py.snap +0 -0
  3211. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fmtonoff.py.snap +0 -0
  3212. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fmtonoff4.py.snap +0 -0
  3213. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fmtonoff5.py.snap +0 -0
  3214. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fmtpass_imports.py.snap +0 -0
  3215. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fmtskip5.py.snap +0 -0
  3216. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fmtskip9.py.snap +0 -0
  3217. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__form_feeds.py.snap +0 -0
  3218. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fstring.py.snap +0 -0
  3219. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__funcdef_return_type_trailing_comma.py.snap +0 -0
  3220. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__function.py.snap +0 -0
  3221. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__function2.py.snap +0 -0
  3222. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__function_trailing_comma.py.snap +0 -0
  3223. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__ignore_pyi.pyi.snap +0 -0
  3224. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__keep_newline_after_match.py.snap +0 -0
  3225. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__line_ranges_diff_edge_case.py.snap +0 -0
  3226. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__line_ranges_fmt_off_decorator.py.snap +0 -0
  3227. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__long_strings_flag_disabled.py.snap +0 -0
  3228. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__multiline_consecutive_open_parentheses_ignore.py.snap +0 -0
  3229. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__nested_stub.pyi.snap +0 -0
  3230. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__no_blank_line_before_docstring.py.snap +0 -0
  3231. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__pattern_matching_style.py.snap +0 -0
  3232. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__pattern_matching_trailing_comma.py.snap +0 -0
  3233. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__pattern_matching_with_if_stmt.py.snap +0 -0
  3234. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__pep604_union_types_line_breaks.py.snap +0 -0
  3235. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__pep_572_remove_parens.py.snap +0 -0
  3236. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__pep_701.py.snap +0 -0
  3237. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__prefer_rhs_split.py.snap +0 -0
  3238. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_cantfit.py.snap +0 -0
  3239. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_cantfit_string.py.snap +0 -0
  3240. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_comments7.py.snap +0 -0
  3241. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_hug_parens_with_braces_and_square_brackets.py.snap +0 -0
  3242. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_hug_parens_with_braces_and_square_brackets_no_ll1.py.snap +0 -0
  3243. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_long_dict_values.py.snap +0 -0
  3244. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_long_strings.py.snap +0 -0
  3245. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_long_strings__east_asian_width.py.snap +0 -0
  3246. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_long_strings__edge_case.py.snap +0 -0
  3247. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_long_strings__regression.py.snap +0 -0
  3248. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_long_strings__type_annotations.py.snap +0 -0
  3249. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_multiline_strings.py.snap +0 -0
  3250. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_return_annotation_brackets_string.py.snap +0 -0
  3251. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__raw_docstring.py.snap +0 -0
  3252. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__raw_docstring_no_string_normalization.py.snap +0 -0
  3253. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__remove_await_parens.py.snap +0 -0
  3254. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__remove_except_parens.py.snap +0 -0
  3255. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__remove_for_brackets.py.snap +0 -0
  3256. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__remove_newline_after_code_block_open.py.snap +0 -0
  3257. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__remove_redundant_parens_in_case_guard.py.snap +0 -0
  3258. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__return_annotation_brackets.py.snap +0 -0
  3259. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__single_line_format_skip_with_multiple_comments.py.snap +0 -0
  3260. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__stub.pyi.snap +0 -0
  3261. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__torture.py.snap +0 -0
  3262. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__trailing_commas_in_leading_parts.py.snap +0 -0
  3263. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__tupleassign.py.snap +0 -0
  3264. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__type_param_defaults.py.snap +0 -0
  3265. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@miscellaneous__blackd_diff.py.snap +0 -0
  3266. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@miscellaneous__debug_visitor.py.snap +0 -0
  3267. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@miscellaneous__string_quotes.py.snap +0 -0
  3268. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@blank_line_before_class_docstring.py.snap +0 -0
  3269. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@carriage_return__string.py.snap +0 -0
  3270. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@docstring.py.snap +0 -0
  3271. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@docstring_code_examples.py.snap +0 -0
  3272. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@docstring_code_examples_crlf.py.snap +0 -0
  3273. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@docstring_code_examples_dynamic_line_width.py.snap +0 -0
  3274. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@docstring_newlines.py.snap +0 -0
  3275. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@docstring_non_visible_characters.py.snap +0 -0
  3276. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@docstring_tab_indentation.py.snap +0 -0
  3277. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@empty_multiple_trailing_newlines.py.snap +0 -0
  3278. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@empty_now_newline.py.snap +0 -0
  3279. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@empty_trailing_newline.py.snap +0 -0
  3280. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@empty_whitespace.py.snap +0 -0
  3281. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__annotated_assign.py.snap +0 -0
  3282. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__attribute.py.snap +0 -0
  3283. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__await.py.snap +0 -0
  3284. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__binary.py.snap +0 -0
  3285. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__binary_implicit_string.py.snap +0 -0
  3286. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__binary_pow_spacing.py.snap +0 -0
  3287. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__boolean_operation.py.snap +0 -0
  3288. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__bytes.py.snap +0 -0
  3289. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__call.py.snap +0 -0
  3290. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__compare.py.snap +0 -0
  3291. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__dict.py.snap +0 -0
  3292. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__dict_comp.py.snap +0 -0
  3293. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__fstring_preview.py.snap +0 -0
  3294. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__generator_exp.py.snap +0 -0
  3295. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__hug.py.snap +0 -0
  3296. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__if.py.snap +0 -0
  3297. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__join_implicit_concatenated_string.py.snap +0 -0
  3298. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__join_implicit_concatenated_string_assignment.py.snap +0 -0
  3299. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__join_implicit_concatenated_string_preserve.py.snap +0 -0
  3300. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__lambda.py.snap +0 -0
  3301. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__list.py.snap +0 -0
  3302. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__list_comp.py.snap +0 -0
  3303. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__named_expr.py.snap +0 -0
  3304. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__number.py.snap +0 -0
  3305. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__optional_parentheses_comments.py.snap +0 -0
  3306. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__set_comp.py.snap +0 -0
  3307. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__slice.py.snap +0 -0
  3308. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__split_empty_brackets.py.snap +0 -0
  3309. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__starred.py.snap +0 -0
  3310. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__string.py.snap +0 -0
  3311. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__subscript.py.snap +0 -0
  3312. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__tuple.py.snap +0 -0
  3313. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__unary.py.snap +0 -0
  3314. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__unsplittable.py.snap +0 -0
  3315. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__yield.py.snap +0 -0
  3316. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@expression__yield_from.py.snap +0 -0
  3317. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__comments.py.snap +0 -0
  3318. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__empty_file.py.snap +0 -0
  3319. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__fmt_off_docstring.py.snap +0 -0
  3320. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__fmt_off_unclosed_deep_nested_trailing_comment.py.snap +0 -0
  3321. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__fmt_off_unclosed_trailing_comment.py.snap +0 -0
  3322. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__form_feed.py.snap +0 -0
  3323. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__indent.py.snap +0 -0
  3324. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__last_statement.py.snap +0 -0
  3325. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__mixed_space_and_tab.py.snap +0 -0
  3326. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__newlines.py.snap +0 -0
  3327. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__no_fmt_on.py.snap +0 -0
  3328. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__off_on_off_on.py.snap +0 -0
  3329. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__simple.py.snap +0 -0
  3330. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__trailing_comments.py.snap +0 -0
  3331. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__trailing_semicolon.py.snap +0 -0
  3332. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__yapf.py.snap +0 -0
  3333. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__decorators.py.snap +0 -0
  3334. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__docstrings.py.snap +0 -0
  3335. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__match.py.snap +0 -0
  3336. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__or_else.py.snap +0 -0
  3337. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__parentheses.py.snap +0 -0
  3338. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__reason.py.snap +0 -0
  3339. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__trailing_semi.py.snap +0 -0
  3340. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__type_params.py.snap +0 -0
  3341. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@form_feed.py.snap +0 -0
  3342. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@module_dangling_comment1.py.snap +0 -0
  3343. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@module_dangling_comment2.py.snap +0 -0
  3344. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@multiline_string_deviations.py.snap +0 -0
  3345. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@newlines.py.snap +0 -0
  3346. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@newlines.pyi.snap +0 -0
  3347. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@notebook_docstring.py.snap +0 -0
  3348. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@parentheses__call_chains.py.snap +0 -0
  3349. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@parentheses__expression_parentheses_comments.py.snap +0 -0
  3350. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@parentheses__nested.py.snap +0 -0
  3351. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@parentheses__opening_parentheses_comment_empty.py.snap +0 -0
  3352. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@parentheses__opening_parentheses_comment_value.py.snap +0 -0
  3353. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@pattern__pattern_maybe_parenthesize.py.snap +0 -0
  3354. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@preview.py.snap +0 -0
  3355. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@quote_style.py.snap +0 -0
  3356. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__ancestory.py.snap +0 -0
  3357. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__clause_header.py.snap +0 -0
  3358. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__comment_only_range.py.snap +0 -0
  3359. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__decorators.py.snap +0 -0
  3360. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__docstring_code_examples.py.snap +0 -0
  3361. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__empty_file.py.snap +0 -0
  3362. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__empty_range.py.snap +0 -0
  3363. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__end_of_file.py.snap +0 -0
  3364. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__fmt_on_off.py.snap +0 -0
  3365. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__indent.py.snap +0 -0
  3366. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__leading_comments.py.snap +0 -0
  3367. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__leading_trailing_comments.py.snap +0 -0
  3368. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__module.py.snap +0 -0
  3369. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__parentheses.py.snap +0 -0
  3370. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__range_narrowing.py.snap +0 -0
  3371. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__regressions.py.snap +0 -0
  3372. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__same_line_body.py.snap +0 -0
  3373. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__stub.pyi.snap +0 -0
  3374. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__trailing_comments.py.snap +0 -0
  3375. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__whitespace_only_range.py.snap +0 -0
  3376. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@skip_magic_trailing_comma.py.snap +0 -0
  3377. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__ann_assign.py.snap +0 -0
  3378. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__assert.py.snap +0 -0
  3379. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__assign.py.snap +0 -0
  3380. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__assignment_split_value_first.py.snap +0 -0
  3381. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__aug_assign.py.snap +0 -0
  3382. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__break.py.snap +0 -0
  3383. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__class_definition.py.snap +0 -0
  3384. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__delete.py.snap +0 -0
  3385. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__ellipsis.pyi.snap +0 -0
  3386. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__for.py.snap +0 -0
  3387. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__function.py.snap +0 -0
  3388. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__global.py.snap +0 -0
  3389. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__if.py.snap +0 -0
  3390. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__import.py.snap +0 -0
  3391. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__import_from.py.snap +0 -0
  3392. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__long_type_annotations.py.snap +0 -0
  3393. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__match.py.snap +0 -0
  3394. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__module_comment.py.snap +0 -0
  3395. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__nonlocal.py.snap +0 -0
  3396. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__raise.py.snap +0 -0
  3397. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__return.py.snap +0 -0
  3398. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__return_annotation.py.snap +0 -0
  3399. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__return_type_no_parameters.py.snap +0 -0
  3400. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__return_type_parameters.py.snap +0 -0
  3401. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__stub_functions_trailing_comments.py.snap +0 -0
  3402. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__top_level.py.snap +0 -0
  3403. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__top_level.pyi.snap +0 -0
  3404. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__try.py.snap +0 -0
  3405. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__type_alias.py.snap +0 -0
  3406. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__while.py.snap +0 -0
  3407. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__with.py.snap +0 -0
  3408. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@statement__with_39.py.snap +0 -0
  3409. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@stub_files__blank_line_after_nested_stub_class.pyi.snap +0 -0
  3410. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@stub_files__blank_line_after_nested_stub_class_eof.pyi.snap +0 -0
  3411. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@stub_files__comments.pyi.snap +0 -0
  3412. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@stub_files__nesting.pyi.snap +0 -0
  3413. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@stub_files__suite.pyi.snap +0 -0
  3414. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@stub_files__top_level.pyi.snap +0 -0
  3415. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@tab_width.py.snap +0 -0
  3416. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@trailing_comments.py.snap +0 -0
  3417. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_formatter/tests/snapshots/format@trivia.py.snap +0 -0
  3418. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_index/Cargo.toml +0 -0
  3419. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_index/src/fstring_ranges.rs +0 -0
  3420. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_index/src/indexer.rs +0 -0
  3421. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_index/src/lib.rs +0 -0
  3422. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_index/src/multiline_ranges.rs +0 -0
  3423. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_literal/Cargo.toml +0 -0
  3424. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_literal/src/cformat.rs +0 -0
  3425. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_literal/src/char.rs +0 -0
  3426. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_literal/src/escape.rs +0 -0
  3427. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_literal/src/float.rs +0 -0
  3428. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_literal/src/format.rs +0 -0
  3429. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_literal/src/lib.rs +0 -0
  3430. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/CONTRIBUTING.md +0 -0
  3431. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/Cargo.toml +0 -0
  3432. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/README.md +0 -0
  3433. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/.editorconfig +0 -0
  3434. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_invalid_annotation.py +0 -0
  3435. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_invalid_target.py +0 -0
  3436. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_invalid_value.py +0 -0
  3437. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_missing_rhs.py +0 -0
  3438. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_type_alias_annotation.py +0 -0
  3439. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/args_unparenthesized_generator.py +0 -0
  3440. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/assert_empty_msg.py +0 -0
  3441. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/assert_empty_test.py +0 -0
  3442. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/assert_invalid_msg_expr.py +0 -0
  3443. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/assert_invalid_test_expr.py +0 -0
  3444. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/assign_stmt_invalid_target.py +0 -0
  3445. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/assign_stmt_invalid_value_expr.py +0 -0
  3446. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/assign_stmt_keyword_target.py +0 -0
  3447. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/assign_stmt_missing_rhs.py +0 -0
  3448. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/async_unexpected_token.py +0 -0
  3449. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/aug_assign_stmt_invalid_target.py +0 -0
  3450. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/aug_assign_stmt_invalid_value.py +0 -0
  3451. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/aug_assign_stmt_missing_rhs.py +0 -0
  3452. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/case_expect_indented_block.py +0 -0
  3453. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/class_def_empty_body.py +0 -0
  3454. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/class_def_missing_name.py +0 -0
  3455. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/class_def_unclosed_type_param_list.py +0 -0
  3456. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/clause_expect_indented_block.py +0 -0
  3457. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/clause_expect_single_statement.py +0 -0
  3458. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_comma.py +0 -0
  3459. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_comma_between_elements.py +0 -0
  3460. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_element_between_commas.py +0 -0
  3461. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_first_element.py +0 -0
  3462. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/comprehension_missing_for_after_async.py +0 -0
  3463. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/decorator_invalid_expression.py +0 -0
  3464. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/decorator_missing_expression.py +0 -0
  3465. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/decorator_missing_newline.py +0 -0
  3466. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/decorator_unexpected_token.py +0 -0
  3467. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/del_incomplete_target.py +0 -0
  3468. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/del_stmt_empty.py +0 -0
  3469. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/dotted_name_multiple_dots.py +0 -0
  3470. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/except_stmt_invalid_expression.py +0 -0
  3471. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/except_stmt_missing_as_name.py +0 -0
  3472. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/except_stmt_missing_exception.py +0 -0
  3473. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/except_stmt_missing_exception_and_as_name.py +0 -0
  3474. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/except_stmt_unparenthesized_tuple.py +0 -0
  3475. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/f_string_empty_expression.py +0 -0
  3476. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/f_string_invalid_conversion_flag_name_tok.py +0 -0
  3477. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/f_string_invalid_conversion_flag_other_tok.py +0 -0
  3478. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/f_string_invalid_starred_expr.py +0 -0
  3479. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/f_string_lambda_without_parentheses.py +0 -0
  3480. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/f_string_unclosed_lbrace.py +0 -0
  3481. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/f_string_unclosed_lbrace_in_format_spec.py +0 -0
  3482. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_iter_expr.py +0 -0
  3483. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_target.py +0 -0
  3484. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_target_binary_expr.py +0 -0
  3485. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_target_in_keyword.py +0 -0
  3486. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/for_stmt_missing_in_keyword.py +0 -0
  3487. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/for_stmt_missing_iter.py +0 -0
  3488. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/for_stmt_missing_target.py +0 -0
  3489. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/from_import_dotted_names.py +0 -0
  3490. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/from_import_empty_names.py +0 -0
  3491. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/from_import_missing_module.py +0 -0
  3492. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/from_import_missing_rpar.py +0 -0
  3493. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/from_import_star_with_other_names.py +0 -0
  3494. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/from_import_unparenthesized_trailing_comma.py +0 -0
  3495. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/function_def_empty_body.py +0 -0
  3496. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/function_def_invalid_return_expr.py +0 -0
  3497. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/function_def_missing_identifier.py +0 -0
  3498. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/function_def_missing_return_type.py +0 -0
  3499. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/function_def_unclosed_parameter_list.py +0 -0
  3500. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/function_def_unclosed_type_param_list.py +0 -0
  3501. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/function_def_unparenthesized_return_types.py +0 -0
  3502. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/global_stmt_empty.py +0 -0
  3503. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/global_stmt_expression.py +0 -0
  3504. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/global_stmt_trailing_comma.py +0 -0
  3505. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/if_stmt_elif_missing_colon.py +0 -0
  3506. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/if_stmt_empty_body.py +0 -0
  3507. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/if_stmt_invalid_elif_test_expr.py +0 -0
  3508. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/if_stmt_invalid_test_expr.py +0 -0
  3509. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/if_stmt_missing_colon.py +0 -0
  3510. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/if_stmt_missing_test.py +0 -0
  3511. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/if_stmt_misspelled_elif.py +0 -0
  3512. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/implicitly_concatenated_unterminated_string.py +0 -0
  3513. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/implicitly_concatenated_unterminated_string_multiline.py +0 -0
  3514. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/import_alias_missing_asname.py +0 -0
  3515. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/import_stmt_empty.py +0 -0
  3516. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/import_stmt_parenthesized_names.py +0 -0
  3517. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/import_stmt_star_import.py +0 -0
  3518. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/import_stmt_trailing_comma.py +0 -0
  3519. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/invalid_byte_literal.py +0 -0
  3520. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/invalid_del_target.py +0 -0
  3521. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/invalid_fstring_literal_element.py +0 -0
  3522. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/invalid_string_literal.py +0 -0
  3523. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/lambda_body_with_starred_expr.py +0 -0
  3524. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/lambda_body_with_yield_expr.py +0 -0
  3525. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/match_classify_as_keyword.py +0 -0
  3526. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/match_classify_as_keyword_or_identifier.py +0 -0
  3527. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/match_expected_colon.py +0 -0
  3528. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/match_stmt_expect_indented_block.py +0 -0
  3529. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/match_stmt_expected_case_block.py +0 -0
  3530. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/match_stmt_invalid_guard_expr.py +0 -0
  3531. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/match_stmt_invalid_subject_expr.py +0 -0
  3532. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/match_stmt_missing_guard_expr.py +0 -0
  3533. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/match_stmt_missing_pattern.py +0 -0
  3534. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/match_stmt_no_newline_before_case.py +0 -0
  3535. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/match_stmt_single_starred_subject.py +0 -0
  3536. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/mixed_bytes_and_non_bytes_literals.py +0 -0
  3537. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/multiple_clauses_on_same_line.py +0 -0
  3538. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/node_range_with_gaps.py +0 -0
  3539. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/nonlocal_stmt_empty.py +0 -0
  3540. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/nonlocal_stmt_expression.py +0 -0
  3541. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/nonlocal_stmt_trailing_comma.py +0 -0
  3542. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/param_missing_annotation.py +0 -0
  3543. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/param_missing_default.py +0 -0
  3544. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/param_with_invalid_annotation.py +0 -0
  3545. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/param_with_invalid_default.py +0 -0
  3546. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/param_with_invalid_star_annotation.py +0 -0
  3547. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_duplicate_names.py +0 -0
  3548. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_expected_after_star_separator.py +0 -0
  3549. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_kwarg_after_star_separator.py +0 -0
  3550. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_multiple_kwargs.py +0 -0
  3551. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_multiple_slash_separator.py +0 -0
  3552. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_multiple_star_separator.py +0 -0
  3553. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_multiple_varargs.py +0 -0
  3554. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_no_arg_before_slash.py +0 -0
  3555. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_non_default_after_default.py +0 -0
  3556. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_star_after_slash.py +0 -0
  3557. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_star_separator_after_star_param.py +0 -0
  3558. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_var_keyword_with_default.py +0 -0
  3559. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/params_var_positional_with_default.py +0 -0
  3560. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/raise_stmt_from_without_exc.py +0 -0
  3561. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/raise_stmt_invalid_cause.py +0 -0
  3562. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/raise_stmt_invalid_exc.py +0 -0
  3563. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/raise_stmt_unparenthesized_tuple_cause.py +0 -0
  3564. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/raise_stmt_unparenthesized_tuple_exc.py +0 -0
  3565. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/return_stmt_invalid_expr.py +0 -0
  3566. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/simple_and_compound_stmt_on_same_line.py +0 -0
  3567. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/simple_and_compound_stmt_on_same_line_in_block.py +0 -0
  3568. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/simple_stmts_on_same_line.py +0 -0
  3569. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/simple_stmts_on_same_line_in_block.py +0 -0
  3570. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/try_stmt_invalid_order.py +0 -0
  3571. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/try_stmt_missing_except_finally.py +0 -0
  3572. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/try_stmt_misspelled_except.py +0 -0
  3573. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/try_stmt_mixed_except_kind.py +0 -0
  3574. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_alias_incomplete_stmt.py +0 -0
  3575. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_alias_invalid_value_expr.py +0 -0
  3576. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_param_invalid_bound_expr.py +0 -0
  3577. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_param_missing_bound.py +0 -0
  3578. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_param_param_spec_bound.py +0 -0
  3579. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_param_param_spec_invalid_default_expr.py +0 -0
  3580. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_param_param_spec_missing_default.py +0 -0
  3581. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_param_type_var_invalid_default_expr.py +0 -0
  3582. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_param_type_var_missing_default.py +0 -0
  3583. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_param_type_var_tuple_bound.py +0 -0
  3584. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_param_type_var_tuple_invalid_default_expr.py +0 -0
  3585. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_param_type_var_tuple_missing_default.py +0 -0
  3586. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/type_params_empty.py +0 -0
  3587. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/unterminated_fstring_newline_recovery.py +0 -0
  3588. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/while_stmt_invalid_test_expr.py +0 -0
  3589. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/while_stmt_missing_colon.py +0 -0
  3590. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/while_stmt_missing_test.py +0 -0
  3591. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/with_items_parenthesized_missing_colon.py +0 -0
  3592. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/err/with_items_parenthesized_missing_comma.py +0 -0
  3593. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/ambiguous_lpar_with_items_binary_expr.py +0 -0
  3594. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/ambiguous_lpar_with_items_if_expr.py +0 -0
  3595. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/ann_assign_stmt_simple_target.py +0 -0
  3596. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/args_unparenthesized_generator.py +0 -0
  3597. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/assign_targets_terminator.py +0 -0
  3598. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/async_for_statement.py +0 -0
  3599. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/async_function_definition.py +0 -0
  3600. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/async_with_statement.py +0 -0
  3601. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/class_def_arguments.py +0 -0
  3602. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/comma_separated_regular_list_terminator.py +0 -0
  3603. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/decorator_async_function.py +0 -0
  3604. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/del_targets_terminator.py +0 -0
  3605. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/dotted_name_normalized_spaces.py +0 -0
  3606. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/except_stmt_as_name_soft_keyword.py +0 -0
  3607. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/for_in_target_valid_expr.py +0 -0
  3608. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/from_import_no_space.py +0 -0
  3609. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/from_import_soft_keyword_module_name.py +0 -0
  3610. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/from_import_stmt_terminator.py +0 -0
  3611. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/fstring_format_spec_terminator.py +0 -0
  3612. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/function_def_parameter_range.py +0 -0
  3613. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/function_def_parenthesized_return_types.py +0 -0
  3614. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/function_def_valid_return_expr.py +0 -0
  3615. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/global_stmt.py +0 -0
  3616. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/import_as_name_soft_keyword.py +0 -0
  3617. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/import_stmt_terminator.py +0 -0
  3618. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/lambda_with_no_parameters.py +0 -0
  3619. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/lambda_with_valid_body.py +0 -0
  3620. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/match_as_pattern.py +0 -0
  3621. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/match_as_pattern_soft_keyword.py +0 -0
  3622. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/match_attr_pattern_soft_keyword.py +0 -0
  3623. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/match_classify_as_identifier_1.py +0 -0
  3624. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/match_classify_as_identifier_2.py +0 -0
  3625. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/match_classify_as_keyword_1.py +0 -0
  3626. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/match_classify_as_keyword_2.py +0 -0
  3627. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/match_classify_as_keyword_or_identifier.py +0 -0
  3628. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/match_sequence_pattern_parentheses_terminator.py +0 -0
  3629. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/match_sequence_pattern_terminator.py +0 -0
  3630. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/match_stmt_subject_expr.py +0 -0
  3631. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/match_stmt_valid_guard_expr.py +0 -0
  3632. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/nonlocal_stmt.py +0 -0
  3633. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/param_with_annotation.py +0 -0
  3634. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/param_with_default.py +0 -0
  3635. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/param_with_star_annotation.py +0 -0
  3636. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/params_non_default_after_star.py +0 -0
  3637. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/params_seen_keyword_only_param_after_star.py +0 -0
  3638. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/simple_stmts_in_block.py +0 -0
  3639. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/simple_stmts_with_semicolons.py +0 -0
  3640. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/type_param_param_spec.py +0 -0
  3641. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/type_param_type_var.py +0 -0
  3642. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/inline/ok/type_param_type_var_tuple.py +0 -0
  3643. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/arguments/double_starred.py +0 -0
  3644. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/arguments/duplicate_keyword_arguments.py +0 -0
  3645. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/arguments/invalid_expression.py +0 -0
  3646. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/arguments/invalid_keyword_expression.py +0 -0
  3647. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/arguments/invalid_order.py +0 -0
  3648. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/arguments/missing_argument.py +0 -0
  3649. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/arguments/missing_comma.py +0 -0
  3650. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/arguments/missing_expression.py +0 -0
  3651. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/arguments/starred.py +0 -0
  3652. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/arguments/unclosed_0.py +0 -0
  3653. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/arguments/unclosed_1.py +0 -0
  3654. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/arguments/unclosed_2.py +0 -0
  3655. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/attribute/invalid_member.py +0 -0
  3656. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/attribute/multiple_dots.py +0 -0
  3657. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/attribute/no_member.py +0 -0
  3658. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/await/no_expression_0.py +0 -0
  3659. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/await/no_expression_1.py +0 -0
  3660. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/await/recover.py +0 -0
  3661. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/invalid_rhs_expression.py +0 -0
  3662. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/missing_lhs.py +0 -0
  3663. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/missing_rhs_0.py +0 -0
  3664. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/missing_rhs_1.py +0 -0
  3665. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/multiple_ops.py +0 -0
  3666. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/named_expression.py +0 -0
  3667. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/starred_expression.py +0 -0
  3668. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/bool_op/invalid_rhs_expression.py +0 -0
  3669. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/bool_op/missing_lhs.py +0 -0
  3670. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/bool_op/missing_rhs.py +0 -0
  3671. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/bool_op/named_expression.py +0 -0
  3672. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/bool_op/starred_expression.py +0 -0
  3673. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/compare/invalid_order.py +0 -0
  3674. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/compare/invalid_rhs_expression.py +0 -0
  3675. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_lhs.py +0 -0
  3676. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_rhs_0.py +0 -0
  3677. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_rhs_1.py +0 -0
  3678. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_rhs_2.py +0 -0
  3679. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/compare/multiple_equals.py +0 -0
  3680. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/compare/named_expression.py +0 -0
  3681. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/compare/starred_expression.py +0 -0
  3682. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/dict/comprehension.py +0 -0
  3683. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/dict/double_star.py +0 -0
  3684. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/dict/double_star_comprehension.py +0 -0
  3685. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/dict/missing_closing_brace_0.py +0 -0
  3686. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/dict/missing_closing_brace_1.py +0 -0
  3687. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/dict/missing_closing_brace_2.py +0 -0
  3688. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/dict/named_expression_0.py +0 -0
  3689. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/dict/named_expression_1.py +0 -0
  3690. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/dict/recover.py +0 -0
  3691. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/emoji_identifiers.py +0 -0
  3692. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/emoji_statement.py +0 -0
  3693. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/if/missing_orelse_expr_0.py +0 -0
  3694. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/if/missing_orelse_expr_1.py +0 -0
  3695. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/if/missing_test_expr_0.py +0 -0
  3696. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/if/missing_test_expr_1.py +0 -0
  3697. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/if/recover.py +0 -0
  3698. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/lambda_default_parameters.py +0 -0
  3699. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/lambda_duplicate_parameters.py +0 -0
  3700. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/list/comprehension.py +0 -0
  3701. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_0.py +0 -0
  3702. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_1.py +0 -0
  3703. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_2.py +0 -0
  3704. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_3.py +0 -0
  3705. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/list/recover.py +0 -0
  3706. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/list/star_expression_precedence.py +0 -0
  3707. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/named/invalid_target.py +0 -0
  3708. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_0.py +0 -0
  3709. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_1.py +0 -0
  3710. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_2.py +0 -0
  3711. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_3.py +0 -0
  3712. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_4.py +0 -0
  3713. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/generator.py +0 -0
  3714. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_0.py +0 -0
  3715. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_1.py +0 -0
  3716. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_2.py +0 -0
  3717. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_3.py +0 -0
  3718. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/parenthesized.py +0 -0
  3719. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/tuple.py +0 -0
  3720. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/tuple_starred_expr.py +0 -0
  3721. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/set/comprehension.py +0 -0
  3722. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_0.py +0 -0
  3723. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_1.py +0 -0
  3724. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_2.py +0 -0
  3725. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_3.py +0 -0
  3726. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/set/recover.py +0 -0
  3727. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/set/star_expression_precedence.py +0 -0
  3728. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/subscript/invalid_slice_element.py +0 -0
  3729. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/subscript/unclosed_slice_0.py +0 -0
  3730. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/subscript/unclosed_slice_1.py +0 -0
  3731. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/unary/named_expression.py +0 -0
  3732. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/unary/no_expression_0.py +0 -0
  3733. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/unary/no_expression_1.py +0 -0
  3734. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/unary.py +0 -0
  3735. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/yield/named_expression.py +0 -0
  3736. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/yield/star_expression.py +0 -0
  3737. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/yield_from/starred_expression.py +0 -0
  3738. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/expressions/yield_from/unparenthesized.py +0 -0
  3739. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/re_lex_logical_token.py +0 -0
  3740. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/re_lex_logical_token_mac_eol.py +0 -0
  3741. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/re_lex_logical_token_windows_eol.py +0 -0
  3742. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/re_lexing/fstring_format_spec_1.py +0 -0
  3743. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/re_lexing/line_continuation_1.py +0 -0
  3744. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/re_lexing/line_continuation_windows_eol.py +0 -0
  3745. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/re_lexing/triple_quoted_fstring_1.py +0 -0
  3746. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/re_lexing/triple_quoted_fstring_2.py +0 -0
  3747. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/re_lexing/triple_quoted_fstring_3.py +0 -0
  3748. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/function_type_parameters.py +0 -0
  3749. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/if_extra_closing_parentheses.py +0 -0
  3750. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/if_extra_indent.py +0 -0
  3751. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/invalid_assignment_targets.py +0 -0
  3752. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/invalid_augmented_assignment_target.py +0 -0
  3753. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_0.py +0 -0
  3754. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_1.py +0 -0
  3755. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_2.py +0 -0
  3756. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_3.py +0 -0
  3757. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_4.py +0 -0
  3758. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/match/invalid_class_pattern.py +0 -0
  3759. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/match/invalid_lhs_or_rhs_pattern.py +0 -0
  3760. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/match/invalid_mapping_pattern.py +0 -0
  3761. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/match/star_pattern_usage.py +0 -0
  3762. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/match/unary_add_usage.py +0 -0
  3763. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/with/ambiguous_lpar_with_items.py +0 -0
  3764. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/with/empty_with_items.py +0 -0
  3765. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/with/unclosed_ambiguous_lpar.py +0 -0
  3766. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/with/unclosed_ambiguous_lpar_eof.py +0 -0
  3767. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/invalid/statements/with/unparenthesized_with_items.py +0 -0
  3768. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/arguments.py +0 -0
  3769. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/attribute.py +0 -0
  3770. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/await.py +0 -0
  3771. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/bin_op.py +0 -0
  3772. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/bool_op.py +0 -0
  3773. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/call.py +0 -0
  3774. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/compare.py +0 -0
  3775. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/dictionary.py +0 -0
  3776. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/dictionary_comprehension.py +0 -0
  3777. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/f_string.py +0 -0
  3778. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/generator.py +0 -0
  3779. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/if.py +0 -0
  3780. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/lambda.py +0 -0
  3781. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/list.py +0 -0
  3782. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/list_comprehension.py +0 -0
  3783. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/name.py +0 -0
  3784. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/named.py +0 -0
  3785. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/number_literal.py +0 -0
  3786. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/parenthesized.py +0 -0
  3787. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/set.py +0 -0
  3788. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/set_comprehension.py +0 -0
  3789. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/slice.py +0 -0
  3790. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/starred.py +0 -0
  3791. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/string.py +0 -0
  3792. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/subscript.py +0 -0
  3793. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/tuple.py +0 -0
  3794. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/unary_op.py +0 -0
  3795. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/yield.py +0 -0
  3796. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/expressions/yield_from.py +0 -0
  3797. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/other/atom.py +0 -0
  3798. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/other/decorator.py +0 -0
  3799. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/ambiguous_lpar_with_items.py +0 -0
  3800. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/annotated_assignment.py +0 -0
  3801. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/assert.py +0 -0
  3802. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/assignment.py +0 -0
  3803. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/augmented_assignment.py +0 -0
  3804. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/class.py +0 -0
  3805. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/delete.py +0 -0
  3806. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/for.py +0 -0
  3807. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/from_import.py +0 -0
  3808. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/function.py +0 -0
  3809. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/if.py +0 -0
  3810. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/import.py +0 -0
  3811. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/match.py +0 -0
  3812. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/raise.py +0 -0
  3813. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/return.py +0 -0
  3814. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/simple.py +0 -0
  3815. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/try.py +0 -0
  3816. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/type.py +0 -0
  3817. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/while.py +0 -0
  3818. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/resources/valid/statement/with.py +0 -0
  3819. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/error.rs +0 -0
  3820. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/lexer/cursor.rs +0 -0
  3821. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/lexer/fstring.rs +0 -0
  3822. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/lexer/indentation.rs +0 -0
  3823. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/lexer.rs +0 -0
  3824. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/lib.rs +0 -0
  3825. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/expression.rs +0 -0
  3826. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/helpers.rs +0 -0
  3827. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/mod.rs +0 -0
  3828. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/pattern.rs +0 -0
  3829. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/progress.rs +0 -0
  3830. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/recovery.rs +0 -0
  3831. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_invalid_syntax1.snap +0 -0
  3832. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_invalid_syntax2.snap +0 -0
  3833. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_invalid_syntax3.snap +0 -0
  3834. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_valid_syntax.snap +0 -0
  3835. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__ipython_escape_commands.snap +0 -0
  3836. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__unicode_aliases.snap +0 -0
  3837. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/statement.rs +0 -0
  3838. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/parser/tests.rs +0 -0
  3839. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__assignment.snap +0 -0
  3840. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__bom.snap +0 -0
  3841. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__bom_with_offset.snap +0 -0
  3842. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__bom_with_offset_edge.snap +0 -0
  3843. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__comment_until_mac_eol.snap +0 -0
  3844. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__comment_until_unix_eol.snap +0 -0
  3845. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__comment_until_windows_eol.snap +0 -0
  3846. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__dedent_after_whitespace.snap +0 -0
  3847. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_mac_eol.snap +0 -0
  3848. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_tabs_mac_eol.snap +0 -0
  3849. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_tabs_unix_eol.snap +0 -0
  3850. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_tabs_windows_eol.snap +0 -0
  3851. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_unix_eol.snap +0 -0
  3852. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_windows_eol.snap +0 -0
  3853. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__emoji_identifier.snap +0 -0
  3854. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__empty_fstrings.snap +0 -0
  3855. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__empty_ipython_escape_command.snap +0 -0
  3856. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__escape_unicode_name.snap +0 -0
  3857. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring.snap +0 -0
  3858. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_comments.snap +0 -0
  3859. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_conversion.snap +0 -0
  3860. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_escape.snap +0 -0
  3861. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_escape_braces.snap +0 -0
  3862. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_escape_raw.snap +0 -0
  3863. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_expression_multiline.snap +0 -0
  3864. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_multiline.snap +0 -0
  3865. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_named_unicode.snap +0 -0
  3866. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_named_unicode_raw.snap +0 -0
  3867. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_nested.snap +0 -0
  3868. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_parentheses.snap +0 -0
  3869. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_prefix.snap +0 -0
  3870. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_single_quote_escape_mac_eol.snap +0 -0
  3871. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_single_quote_escape_unix_eol.snap +0 -0
  3872. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_single_quote_escape_windows_eol.snap +0 -0
  3873. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_format_spec.snap +0 -0
  3874. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_ipy_escape_command.snap +0 -0
  3875. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_lambda_expression.snap +0 -0
  3876. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_multiline_format_spec.snap +0 -0
  3877. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_named_expression.snap +0 -0
  3878. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_nul_char.snap +0 -0
  3879. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__indentation_with_mac_eol.snap +0 -0
  3880. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__indentation_with_unix_eol.snap +0 -0
  3881. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__indentation_with_windows_eol.snap +0 -0
  3882. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__invalid_leading_zero_big.snap +0 -0
  3883. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__invalid_leading_zero_small.snap +0 -0
  3884. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command.snap +0 -0
  3885. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_assignment.snap +0 -0
  3886. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_indentation.snap +0 -0
  3887. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_mac_eol.snap +0 -0
  3888. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_unix_eol.snap +0 -0
  3889. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_windows_eol.snap +0 -0
  3890. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_mac_eol_and_eof.snap +0 -0
  3891. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_unix_eol_and_eof.snap +0 -0
  3892. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_windows_eol_and_eof.snap +0 -0
  3893. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_help_end_escape_command.snap +0 -0
  3894. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_empty.snap +0 -0
  3895. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_long.snap +0 -0
  3896. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_single_whitespace.snap +0 -0
  3897. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_whitespace.snap +0 -0
  3898. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__logical_newline_line_comment.snap +0 -0
  3899. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__match_softkeyword_in_notebook.snap +0 -0
  3900. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__newline_in_brackets_mac_eol.snap +0 -0
  3901. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__newline_in_brackets_unix_eol.snap +0 -0
  3902. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__newline_in_brackets_windows_eol.snap +0 -0
  3903. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__non_logical_newline_in_string_continuation.snap +0 -0
  3904. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__numbers.snap +0 -0
  3905. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__operators.snap +0 -0
  3906. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string.snap +0 -0
  3907. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string_continuation_with_mac_eol.snap +0 -0
  3908. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string_continuation_with_unix_eol.snap +0 -0
  3909. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string_continuation_with_windows_eol.snap +0 -0
  3910. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tet_too_low_dedent.snap +0 -0
  3911. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__triple_quoted_mac_eol.snap +0 -0
  3912. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__triple_quoted_unix_eol.snap +0 -0
  3913. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__triple_quoted_windows_eol.snap +0 -0
  3914. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__backspace_alias.snap +0 -0
  3915. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__bell_alias.snap +0 -0
  3916. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__carriage_return_alias.snap +0 -0
  3917. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__character_tabulation_with_justification_alias.snap +0 -0
  3918. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__delete_alias.snap +0 -0
  3919. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__dont_panic_on_8_in_octal_escape.snap +0 -0
  3920. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__double_quoted_byte.snap +0 -0
  3921. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__escape_alias.snap +0 -0
  3922. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__escape_char_in_byte_literal.snap +0 -0
  3923. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__escape_octet.snap +0 -0
  3924. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__form_feed_alias.snap +0 -0
  3925. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_constant_range.snap +0 -0
  3926. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_escaped_character.snap +0 -0
  3927. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_escaped_newline.snap +0 -0
  3928. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_line_continuation.snap +0 -0
  3929. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_parse_self_documenting_base.snap +0 -0
  3930. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_parse_self_documenting_base_more.snap +0 -0
  3931. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_parse_self_documenting_format.snap +0 -0
  3932. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_unescaped_newline.snap +0 -0
  3933. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__hts_alias.snap +0 -0
  3934. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__invalid_byte_literal_error.snap +0 -0
  3935. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__invalid_unicode_literal.snap +0 -0
  3936. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__invalid_unicode_name_error.snap +0 -0
  3937. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__missing_unicode_lbrace_error.snap +0 -0
  3938. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__missing_unicode_rbrace_error.snap +0 -0
  3939. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_empty_fstring.snap +0 -0
  3940. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_1.snap +0 -0
  3941. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_2.snap +0 -0
  3942. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_3.snap +0 -0
  3943. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_4.snap +0 -0
  3944. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring.snap +0 -0
  3945. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_equals.snap +0 -0
  3946. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_nested_concatenation_string_spec.snap +0 -0
  3947. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_nested_spec.snap +0 -0
  3948. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_nested_string_spec.snap +0 -0
  3949. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_not_equals.snap +0 -0
  3950. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_not_nested_spec.snap +0 -0
  3951. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_self_doc_prec_space.snap +0 -0
  3952. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_self_doc_trailing_space.snap +0 -0
  3953. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_yield_expr.snap +0 -0
  3954. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_string_concat.snap +0 -0
  3955. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_string_triple_quotes_with_kind.snap +0 -0
  3956. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_f_string_concat_1.snap +0 -0
  3957. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_f_string_concat_2.snap +0 -0
  3958. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_string_concat_1.snap +0 -0
  3959. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_string_concat_2.snap +0 -0
  3960. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_byte_literal_1.snap +0 -0
  3961. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_byte_literal_2.snap +0 -0
  3962. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_fstring.snap +0 -0
  3963. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__single_quoted_byte.snap +0 -0
  3964. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__string_parser_escaped_mac_eol.snap +0 -0
  3965. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__string_parser_escaped_unix_eol.snap +0 -0
  3966. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__string_parser_escaped_windows_eol.snap +0 -0
  3967. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__triple_quoted_raw_fstring.snap +0 -0
  3968. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/string.rs +0 -0
  3969. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/token.rs +0 -0
  3970. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/token_set.rs +0 -0
  3971. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/token_source.rs +0 -0
  3972. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/src/typing.rs +0 -0
  3973. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/fixtures.rs +0 -0
  3974. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/generate_inline_tests.rs +0 -0
  3975. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_invalid_annotation.py.snap +0 -0
  3976. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_invalid_target.py.snap +0 -0
  3977. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_invalid_value.py.snap +0 -0
  3978. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_missing_rhs.py.snap +0 -0
  3979. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_type_alias_annotation.py.snap +0 -0
  3980. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@args_unparenthesized_generator.py.snap +0 -0
  3981. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_empty_msg.py.snap +0 -0
  3982. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_empty_test.py.snap +0 -0
  3983. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_invalid_msg_expr.py.snap +0 -0
  3984. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_invalid_test_expr.py.snap +0 -0
  3985. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_invalid_target.py.snap +0 -0
  3986. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_invalid_value_expr.py.snap +0 -0
  3987. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_keyword_target.py.snap +0 -0
  3988. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_missing_rhs.py.snap +0 -0
  3989. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@async_unexpected_token.py.snap +0 -0
  3990. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@aug_assign_stmt_invalid_target.py.snap +0 -0
  3991. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@aug_assign_stmt_invalid_value.py.snap +0 -0
  3992. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@aug_assign_stmt_missing_rhs.py.snap +0 -0
  3993. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@case_expect_indented_block.py.snap +0 -0
  3994. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_def_empty_body.py.snap +0 -0
  3995. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_def_missing_name.py.snap +0 -0
  3996. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_def_unclosed_type_param_list.py.snap +0 -0
  3997. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@clause_expect_indented_block.py.snap +0 -0
  3998. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@clause_expect_single_statement.py.snap +0 -0
  3999. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_comma.py.snap +0 -0
  4000. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_comma_between_elements.py.snap +0 -0
  4001. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_element_between_commas.py.snap +0 -0
  4002. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_first_element.py.snap +0 -0
  4003. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comprehension_missing_for_after_async.py.snap +0 -0
  4004. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_invalid_expression.py.snap +0 -0
  4005. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_missing_expression.py.snap +0 -0
  4006. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_missing_newline.py.snap +0 -0
  4007. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_unexpected_token.py.snap +0 -0
  4008. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@del_incomplete_target.py.snap +0 -0
  4009. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@del_stmt_empty.py.snap +0 -0
  4010. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@dotted_name_multiple_dots.py.snap +0 -0
  4011. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_invalid_expression.py.snap +0 -0
  4012. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_missing_as_name.py.snap +0 -0
  4013. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_missing_exception.py.snap +0 -0
  4014. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_missing_exception_and_as_name.py.snap +0 -0
  4015. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_unparenthesized_tuple.py.snap +0 -0
  4016. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__double_starred.py.snap +0 -0
  4017. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__duplicate_keyword_arguments.py.snap +0 -0
  4018. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__invalid_expression.py.snap +0 -0
  4019. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__invalid_keyword_expression.py.snap +0 -0
  4020. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__invalid_order.py.snap +0 -0
  4021. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__missing_argument.py.snap +0 -0
  4022. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__missing_comma.py.snap +0 -0
  4023. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__missing_expression.py.snap +0 -0
  4024. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__starred.py.snap +0 -0
  4025. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__unclosed_0.py.snap +0 -0
  4026. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__unclosed_1.py.snap +0 -0
  4027. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__unclosed_2.py.snap +0 -0
  4028. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__attribute__invalid_member.py.snap +0 -0
  4029. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__attribute__multiple_dots.py.snap +0 -0
  4030. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__attribute__no_member.py.snap +0 -0
  4031. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__await__no_expression_0.py.snap +0 -0
  4032. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__await__no_expression_1.py.snap +0 -0
  4033. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__await__recover.py.snap +0 -0
  4034. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__invalid_rhs_expression.py.snap +0 -0
  4035. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__missing_lhs.py.snap +0 -0
  4036. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__missing_rhs_0.py.snap +0 -0
  4037. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__missing_rhs_1.py.snap +0 -0
  4038. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__multiple_ops.py.snap +0 -0
  4039. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__named_expression.py.snap +0 -0
  4040. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__starred_expression.py.snap +0 -0
  4041. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__invalid_rhs_expression.py.snap +0 -0
  4042. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__missing_lhs.py.snap +0 -0
  4043. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__missing_rhs.py.snap +0 -0
  4044. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__named_expression.py.snap +0 -0
  4045. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__starred_expression.py.snap +0 -0
  4046. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__invalid_order.py.snap +0 -0
  4047. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__invalid_rhs_expression.py.snap +0 -0
  4048. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_lhs.py.snap +0 -0
  4049. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_rhs_0.py.snap +0 -0
  4050. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_rhs_1.py.snap +0 -0
  4051. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_rhs_2.py.snap +0 -0
  4052. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__multiple_equals.py.snap +0 -0
  4053. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__named_expression.py.snap +0 -0
  4054. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__starred_expression.py.snap +0 -0
  4055. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__comprehension.py.snap +0 -0
  4056. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__double_star.py.snap +0 -0
  4057. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__double_star_comprehension.py.snap +0 -0
  4058. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__missing_closing_brace_0.py.snap +0 -0
  4059. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__missing_closing_brace_1.py.snap +0 -0
  4060. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__missing_closing_brace_2.py.snap +0 -0
  4061. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__named_expression_0.py.snap +0 -0
  4062. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__named_expression_1.py.snap +0 -0
  4063. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__recover.py.snap +0 -0
  4064. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__emoji_identifiers.py.snap +0 -0
  4065. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__emoji_statement.py.snap +0 -0
  4066. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_orelse_expr_0.py.snap +0 -0
  4067. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_orelse_expr_1.py.snap +0 -0
  4068. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_test_expr_0.py.snap +0 -0
  4069. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_test_expr_1.py.snap +0 -0
  4070. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__recover.py.snap +0 -0
  4071. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__lambda_default_parameters.py.snap +0 -0
  4072. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__lambda_duplicate_parameters.py.snap +0 -0
  4073. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__comprehension.py.snap +0 -0
  4074. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_0.py.snap +0 -0
  4075. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_1.py.snap +0 -0
  4076. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_2.py.snap +0 -0
  4077. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_3.py.snap +0 -0
  4078. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__recover.py.snap +0 -0
  4079. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__star_expression_precedence.py.snap +0 -0
  4080. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__invalid_target.py.snap +0 -0
  4081. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_0.py.snap +0 -0
  4082. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_1.py.snap +0 -0
  4083. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_2.py.snap +0 -0
  4084. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_3.py.snap +0 -0
  4085. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_4.py.snap +0 -0
  4086. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__generator.py.snap +0 -0
  4087. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_0.py.snap +0 -0
  4088. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_1.py.snap +0 -0
  4089. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_2.py.snap +0 -0
  4090. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_3.py.snap +0 -0
  4091. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__parenthesized.py.snap +0 -0
  4092. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__tuple.py.snap +0 -0
  4093. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__tuple_starred_expr.py.snap +0 -0
  4094. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__comprehension.py.snap +0 -0
  4095. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_0.py.snap +0 -0
  4096. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_1.py.snap +0 -0
  4097. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_2.py.snap +0 -0
  4098. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_3.py.snap +0 -0
  4099. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__recover.py.snap +0 -0
  4100. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__star_expression_precedence.py.snap +0 -0
  4101. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__subscript__invalid_slice_element.py.snap +0 -0
  4102. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__subscript__unclosed_slice_0.py.snap +0 -0
  4103. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__subscript__unclosed_slice_1.py.snap +0 -0
  4104. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary.py.snap +0 -0
  4105. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary__named_expression.py.snap +0 -0
  4106. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary__no_expression_0.py.snap +0 -0
  4107. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary__no_expression_1.py.snap +0 -0
  4108. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield__named_expression.py.snap +0 -0
  4109. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield__star_expression.py.snap +0 -0
  4110. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield_from__starred_expression.py.snap +0 -0
  4111. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield_from__unparenthesized.py.snap +0 -0
  4112. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_empty_expression.py.snap +0 -0
  4113. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_invalid_conversion_flag_name_tok.py.snap +0 -0
  4114. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_invalid_conversion_flag_other_tok.py.snap +0 -0
  4115. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_invalid_starred_expr.py.snap +0 -0
  4116. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_lambda_without_parentheses.py.snap +0 -0
  4117. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_unclosed_lbrace.py.snap +0 -0
  4118. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_unclosed_lbrace_in_format_spec.py.snap +0 -0
  4119. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_iter_expr.py.snap +0 -0
  4120. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_target.py.snap +0 -0
  4121. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_target_binary_expr.py.snap +0 -0
  4122. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_target_in_keyword.py.snap +0 -0
  4123. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_missing_in_keyword.py.snap +0 -0
  4124. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_missing_iter.py.snap +0 -0
  4125. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_missing_target.py.snap +0 -0
  4126. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_dotted_names.py.snap +0 -0
  4127. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_empty_names.py.snap +0 -0
  4128. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_missing_module.py.snap +0 -0
  4129. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_missing_rpar.py.snap +0 -0
  4130. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_star_with_other_names.py.snap +0 -0
  4131. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_unparenthesized_trailing_comma.py.snap +0 -0
  4132. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_empty_body.py.snap +0 -0
  4133. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_invalid_return_expr.py.snap +0 -0
  4134. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_missing_identifier.py.snap +0 -0
  4135. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_missing_return_type.py.snap +0 -0
  4136. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_unclosed_parameter_list.py.snap +0 -0
  4137. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_unclosed_type_param_list.py.snap +0 -0
  4138. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_unparenthesized_return_types.py.snap +0 -0
  4139. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@global_stmt_empty.py.snap +0 -0
  4140. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@global_stmt_expression.py.snap +0 -0
  4141. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@global_stmt_trailing_comma.py.snap +0 -0
  4142. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_elif_missing_colon.py.snap +0 -0
  4143. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_empty_body.py.snap +0 -0
  4144. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_invalid_elif_test_expr.py.snap +0 -0
  4145. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_invalid_test_expr.py.snap +0 -0
  4146. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_missing_colon.py.snap +0 -0
  4147. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_missing_test.py.snap +0 -0
  4148. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_misspelled_elif.py.snap +0 -0
  4149. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@implicitly_concatenated_unterminated_string.py.snap +0 -0
  4150. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@implicitly_concatenated_unterminated_string_multiline.py.snap +0 -0
  4151. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_alias_missing_asname.py.snap +0 -0
  4152. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_empty.py.snap +0 -0
  4153. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_parenthesized_names.py.snap +0 -0
  4154. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_star_import.py.snap +0 -0
  4155. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_trailing_comma.py.snap +0 -0
  4156. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_byte_literal.py.snap +0 -0
  4157. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_del_target.py.snap +0 -0
  4158. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_fstring_literal_element.py.snap +0 -0
  4159. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_string_literal.py.snap +0 -0
  4160. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@lambda_body_with_starred_expr.py.snap +0 -0
  4161. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@lambda_body_with_yield_expr.py.snap +0 -0
  4162. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_classify_as_keyword.py.snap +0 -0
  4163. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_classify_as_keyword_or_identifier.py.snap +0 -0
  4164. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_expected_colon.py.snap +0 -0
  4165. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_expect_indented_block.py.snap +0 -0
  4166. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_expected_case_block.py.snap +0 -0
  4167. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_invalid_guard_expr.py.snap +0 -0
  4168. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_invalid_subject_expr.py.snap +0 -0
  4169. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_missing_guard_expr.py.snap +0 -0
  4170. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_missing_pattern.py.snap +0 -0
  4171. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_no_newline_before_case.py.snap +0 -0
  4172. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_single_starred_subject.py.snap +0 -0
  4173. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@mixed_bytes_and_non_bytes_literals.py.snap +0 -0
  4174. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@multiple_clauses_on_same_line.py.snap +0 -0
  4175. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@node_range_with_gaps.py.snap +0 -0
  4176. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_stmt_empty.py.snap +0 -0
  4177. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_stmt_expression.py.snap +0 -0
  4178. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_stmt_trailing_comma.py.snap +0 -0
  4179. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_missing_annotation.py.snap +0 -0
  4180. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_missing_default.py.snap +0 -0
  4181. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_invalid_annotation.py.snap +0 -0
  4182. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_invalid_default.py.snap +0 -0
  4183. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_invalid_star_annotation.py.snap +0 -0
  4184. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_duplicate_names.py.snap +0 -0
  4185. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_expected_after_star_separator.py.snap +0 -0
  4186. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_kwarg_after_star_separator.py.snap +0 -0
  4187. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_kwargs.py.snap +0 -0
  4188. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_slash_separator.py.snap +0 -0
  4189. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_star_separator.py.snap +0 -0
  4190. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_varargs.py.snap +0 -0
  4191. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_no_arg_before_slash.py.snap +0 -0
  4192. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_non_default_after_default.py.snap +0 -0
  4193. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_star_after_slash.py.snap +0 -0
  4194. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_star_separator_after_star_param.py.snap +0 -0
  4195. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_var_keyword_with_default.py.snap +0 -0
  4196. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_var_positional_with_default.py.snap +0 -0
  4197. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_from_without_exc.py.snap +0 -0
  4198. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_invalid_cause.py.snap +0 -0
  4199. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_invalid_exc.py.snap +0 -0
  4200. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_unparenthesized_tuple_cause.py.snap +0 -0
  4201. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_unparenthesized_tuple_exc.py.snap +0 -0
  4202. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lex_logical_token.py.snap +0 -0
  4203. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lex_logical_token_mac_eol.py.snap +0 -0
  4204. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lex_logical_token_windows_eol.py.snap +0 -0
  4205. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__fstring_format_spec_1.py.snap +0 -0
  4206. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__line_continuation_1.py.snap +0 -0
  4207. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__line_continuation_windows_eol.py.snap +0 -0
  4208. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__triple_quoted_fstring_1.py.snap +0 -0
  4209. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__triple_quoted_fstring_2.py.snap +0 -0
  4210. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__triple_quoted_fstring_3.py.snap +0 -0
  4211. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@return_stmt_invalid_expr.py.snap +0 -0
  4212. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_and_compound_stmt_on_same_line.py.snap +0 -0
  4213. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_and_compound_stmt_on_same_line_in_block.py.snap +0 -0
  4214. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_stmts_on_same_line.py.snap +0 -0
  4215. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_stmts_on_same_line_in_block.py.snap +0 -0
  4216. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__function_type_parameters.py.snap +0 -0
  4217. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__if_extra_closing_parentheses.py.snap +0 -0
  4218. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__if_extra_indent.py.snap +0 -0
  4219. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__invalid_assignment_targets.py.snap +0 -0
  4220. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__invalid_augmented_assignment_target.py.snap +0 -0
  4221. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_0.py.snap +0 -0
  4222. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_1.py.snap +0 -0
  4223. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_2.py.snap +0 -0
  4224. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_3.py.snap +0 -0
  4225. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_4.py.snap +0 -0
  4226. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__invalid_class_pattern.py.snap +0 -0
  4227. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__invalid_lhs_or_rhs_pattern.py.snap +0 -0
  4228. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__invalid_mapping_pattern.py.snap +0 -0
  4229. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__star_pattern_usage.py.snap +0 -0
  4230. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__unary_add_usage.py.snap +0 -0
  4231. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__ambiguous_lpar_with_items.py.snap +0 -0
  4232. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__empty_with_items.py.snap +0 -0
  4233. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__unclosed_ambiguous_lpar.py.snap +0 -0
  4234. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__unclosed_ambiguous_lpar_eof.py.snap +0 -0
  4235. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__unparenthesized_with_items.py.snap +0 -0
  4236. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_invalid_order.py.snap +0 -0
  4237. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_missing_except_finally.py.snap +0 -0
  4238. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_misspelled_except.py.snap +0 -0
  4239. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_mixed_except_kind.py.snap +0 -0
  4240. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_alias_incomplete_stmt.py.snap +0 -0
  4241. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_alias_invalid_value_expr.py.snap +0 -0
  4242. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_invalid_bound_expr.py.snap +0 -0
  4243. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_missing_bound.py.snap +0 -0
  4244. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_param_spec_bound.py.snap +0 -0
  4245. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_param_spec_invalid_default_expr.py.snap +0 -0
  4246. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_param_spec_missing_default.py.snap +0 -0
  4247. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_invalid_default_expr.py.snap +0 -0
  4248. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_missing_default.py.snap +0 -0
  4249. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_tuple_bound.py.snap +0 -0
  4250. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_tuple_invalid_default_expr.py.snap +0 -0
  4251. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_tuple_missing_default.py.snap +0 -0
  4252. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_params_empty.py.snap +0 -0
  4253. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@unterminated_fstring_newline_recovery.py.snap +0 -0
  4254. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@while_stmt_invalid_test_expr.py.snap +0 -0
  4255. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@while_stmt_missing_colon.py.snap +0 -0
  4256. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@while_stmt_missing_test.py.snap +0 -0
  4257. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@with_items_parenthesized_missing_colon.py.snap +0 -0
  4258. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@with_items_parenthesized_missing_comma.py.snap +0 -0
  4259. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@ambiguous_lpar_with_items_binary_expr.py.snap +0 -0
  4260. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@ambiguous_lpar_with_items_if_expr.py.snap +0 -0
  4261. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@ann_assign_stmt_simple_target.py.snap +0 -0
  4262. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@args_unparenthesized_generator.py.snap +0 -0
  4263. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@assign_targets_terminator.py.snap +0 -0
  4264. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@async_for_statement.py.snap +0 -0
  4265. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@async_function_definition.py.snap +0 -0
  4266. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@async_with_statement.py.snap +0 -0
  4267. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@class_def_arguments.py.snap +0 -0
  4268. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@comma_separated_regular_list_terminator.py.snap +0 -0
  4269. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_async_function.py.snap +0 -0
  4270. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@del_targets_terminator.py.snap +0 -0
  4271. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@dotted_name_normalized_spaces.py.snap +0 -0
  4272. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@except_stmt_as_name_soft_keyword.py.snap +0 -0
  4273. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__arguments.py.snap +0 -0
  4274. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__attribute.py.snap +0 -0
  4275. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__await.py.snap +0 -0
  4276. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__bin_op.py.snap +0 -0
  4277. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__bool_op.py.snap +0 -0
  4278. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__call.py.snap +0 -0
  4279. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__compare.py.snap +0 -0
  4280. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__dictionary.py.snap +0 -0
  4281. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__dictionary_comprehension.py.snap +0 -0
  4282. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__f_string.py.snap +0 -0
  4283. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__generator.py.snap +0 -0
  4284. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__if.py.snap +0 -0
  4285. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__lambda.py.snap +0 -0
  4286. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__list.py.snap +0 -0
  4287. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__list_comprehension.py.snap +0 -0
  4288. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__name.py.snap +0 -0
  4289. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__named.py.snap +0 -0
  4290. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__number_literal.py.snap +0 -0
  4291. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__parenthesized.py.snap +0 -0
  4292. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__set.py.snap +0 -0
  4293. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__set_comprehension.py.snap +0 -0
  4294. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__slice.py.snap +0 -0
  4295. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__starred.py.snap +0 -0
  4296. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__string.py.snap +0 -0
  4297. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__subscript.py.snap +0 -0
  4298. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__tuple.py.snap +0 -0
  4299. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__unary_op.py.snap +0 -0
  4300. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__yield.py.snap +0 -0
  4301. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__yield_from.py.snap +0 -0
  4302. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@for_in_target_valid_expr.py.snap +0 -0
  4303. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@from_import_no_space.py.snap +0 -0
  4304. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@from_import_soft_keyword_module_name.py.snap +0 -0
  4305. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@from_import_stmt_terminator.py.snap +0 -0
  4306. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@fstring_format_spec_terminator.py.snap +0 -0
  4307. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_def_parameter_range.py.snap +0 -0
  4308. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_def_parenthesized_return_types.py.snap +0 -0
  4309. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_def_valid_return_expr.py.snap +0 -0
  4310. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@global_stmt.py.snap +0 -0
  4311. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@import_as_name_soft_keyword.py.snap +0 -0
  4312. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@import_stmt_terminator.py.snap +0 -0
  4313. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@lambda_with_no_parameters.py.snap +0 -0
  4314. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@lambda_with_valid_body.py.snap +0 -0
  4315. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_as_pattern.py.snap +0 -0
  4316. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_as_pattern_soft_keyword.py.snap +0 -0
  4317. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_attr_pattern_soft_keyword.py.snap +0 -0
  4318. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_identifier_1.py.snap +0 -0
  4319. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_identifier_2.py.snap +0 -0
  4320. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_keyword_1.py.snap +0 -0
  4321. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_keyword_2.py.snap +0 -0
  4322. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_keyword_or_identifier.py.snap +0 -0
  4323. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_sequence_pattern_parentheses_terminator.py.snap +0 -0
  4324. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_sequence_pattern_terminator.py.snap +0 -0
  4325. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_stmt_subject_expr.py.snap +0 -0
  4326. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_stmt_valid_guard_expr.py.snap +0 -0
  4327. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@nonlocal_stmt.py.snap +0 -0
  4328. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@other__atom.py.snap +0 -0
  4329. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@other__decorator.py.snap +0 -0
  4330. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_annotation.py.snap +0 -0
  4331. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_default.py.snap +0 -0
  4332. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_star_annotation.py.snap +0 -0
  4333. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@params_non_default_after_star.py.snap +0 -0
  4334. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@params_seen_keyword_only_param_after_star.py.snap +0 -0
  4335. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@simple_stmts_in_block.py.snap +0 -0
  4336. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@simple_stmts_with_semicolons.py.snap +0 -0
  4337. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__ambiguous_lpar_with_items.py.snap +0 -0
  4338. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__annotated_assignment.py.snap +0 -0
  4339. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__assert.py.snap +0 -0
  4340. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__assignment.py.snap +0 -0
  4341. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__augmented_assignment.py.snap +0 -0
  4342. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__class.py.snap +0 -0
  4343. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__delete.py.snap +0 -0
  4344. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__for.py.snap +0 -0
  4345. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__from_import.py.snap +0 -0
  4346. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__function.py.snap +0 -0
  4347. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__if.py.snap +0 -0
  4348. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__import.py.snap +0 -0
  4349. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__match.py.snap +0 -0
  4350. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__raise.py.snap +0 -0
  4351. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__return.py.snap +0 -0
  4352. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__simple.py.snap +0 -0
  4353. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__try.py.snap +0 -0
  4354. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__type.py.snap +0 -0
  4355. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__while.py.snap +0 -0
  4356. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__with.py.snap +0 -0
  4357. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_param_spec.py.snap +0 -0
  4358. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_type_var.py.snap +0 -0
  4359. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_type_var_tuple.py.snap +0 -0
  4360. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/Cargo.toml +0 -0
  4361. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/analyze/function_type.rs +0 -0
  4362. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/analyze/imports.rs +0 -0
  4363. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/analyze/logging.rs +0 -0
  4364. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/analyze/mod.rs +0 -0
  4365. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/analyze/terminal.rs +0 -0
  4366. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/analyze/type_inference.rs +0 -0
  4367. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/analyze/typing.rs +0 -0
  4368. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/analyze/visibility.rs +0 -0
  4369. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/binding.rs +0 -0
  4370. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/branches.rs +0 -0
  4371. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/context.rs +0 -0
  4372. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/definition.rs +0 -0
  4373. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/globals.rs +0 -0
  4374. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/lib.rs +0 -0
  4375. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/model/all.rs +0 -0
  4376. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/model.rs +0 -0
  4377. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/reference.rs +0 -0
  4378. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/scope.rs +0 -0
  4379. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_semantic/src/star_import.rs +0 -0
  4380. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/Cargo.toml +0 -0
  4381. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/builtins.rs +0 -0
  4382. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/future.rs +0 -0
  4383. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/identifiers.rs +0 -0
  4384. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/keyword.rs +0 -0
  4385. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/lib.rs +0 -0
  4386. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/logging.rs +0 -0
  4387. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/open_mode.rs +0 -0
  4388. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/path.rs +0 -0
  4389. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/str.rs +0 -0
  4390. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/sys/builtin_modules.rs +0 -0
  4391. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/sys/known_stdlib.rs +0 -0
  4392. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/sys/mod.rs +0 -0
  4393. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_stdlib/src/typing.rs +0 -0
  4394. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_trivia/Cargo.toml +0 -0
  4395. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_trivia/src/comment_ranges.rs +0 -0
  4396. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_trivia/src/comments.rs +0 -0
  4397. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_trivia/src/cursor.rs +0 -0
  4398. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_trivia/src/lib.rs +0 -0
  4399. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_trivia/src/pragmas.rs +0 -0
  4400. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_trivia/src/textwrap.rs +0 -0
  4401. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_trivia/src/tokenizer.rs +0 -0
  4402. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_python_trivia/src/whitespace.rs +0 -0
  4403. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/CONTRIBUTING.md +0 -0
  4404. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/Cargo.toml +0 -0
  4405. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/README.md +0 -0
  4406. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/assets/nativeServer.png +0 -0
  4407. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/docs/MIGRATION.md +0 -0
  4408. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/docs/setup/HELIX.md +0 -0
  4409. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/docs/setup/KATE.md +0 -0
  4410. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/docs/setup/NEOVIM.md +0 -0
  4411. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/docs/setup/VIM.md +0 -0
  4412. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/resources/test/fixtures/pandas_html.py +0 -0
  4413. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/resources/test/fixtures/settings/empty.json +0 -0
  4414. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/resources/test/fixtures/settings/empty_multiple_workspace.json +0 -0
  4415. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/resources/test/fixtures/settings/global_only.json +0 -0
  4416. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/resources/test/fixtures/settings/vs_code_initialization_options.json +0 -0
  4417. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/resources/test/fixtures/tensorflow_test_notebook.ipynb +0 -0
  4418. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/edit/notebook.rs +0 -0
  4419. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/edit/range.rs +0 -0
  4420. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/edit/replacement.rs +0 -0
  4421. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/edit/text_document.rs +0 -0
  4422. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/edit.rs +0 -0
  4423. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/format.rs +0 -0
  4424. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/lib.rs +0 -0
  4425. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/lint.rs +0 -0
  4426. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/logging.rs +0 -0
  4427. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/message.rs +0 -0
  4428. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/resolve.rs +0 -0
  4429. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/diagnostics.rs +0 -0
  4430. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/notifications/cancel.rs +0 -0
  4431. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/notifications/did_change.rs +0 -0
  4432. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/notifications/did_change_configuration.rs +0 -0
  4433. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/notifications/did_change_notebook.rs +0 -0
  4434. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/notifications/did_change_watched_files.rs +0 -0
  4435. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/notifications/did_change_workspace.rs +0 -0
  4436. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/notifications/did_close.rs +0 -0
  4437. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/notifications/did_close_notebook.rs +0 -0
  4438. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/notifications/did_open.rs +0 -0
  4439. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/notifications/did_open_notebook.rs +0 -0
  4440. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/notifications.rs +0 -0
  4441. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/requests/code_action.rs +0 -0
  4442. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/requests/code_action_resolve.rs +0 -0
  4443. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/requests/diagnostic.rs +0 -0
  4444. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/requests/execute_command.rs +0 -0
  4445. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/requests/format.rs +0 -0
  4446. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/requests/format_range.rs +0 -0
  4447. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/requests/hover.rs +0 -0
  4448. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/requests.rs +0 -0
  4449. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api/traits.rs +0 -0
  4450. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/api.rs +0 -0
  4451. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/client.rs +0 -0
  4452. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/connection.rs +0 -0
  4453. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/schedule/task.rs +0 -0
  4454. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/schedule/thread/pool.rs +0 -0
  4455. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/schedule/thread/priority.rs +0 -0
  4456. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/schedule/thread.rs +0 -0
  4457. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server/schedule.rs +0 -0
  4458. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/server.rs +0 -0
  4459. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/session/capabilities.rs +0 -0
  4460. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/session/index.rs +0 -0
  4461. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/session/settings.rs +0 -0
  4462. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/src/session.rs +0 -0
  4463. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/tests/document.rs +0 -0
  4464. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/tests/notebook.rs +0 -0
  4465. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/tests/snapshots/document__delete_lines_pandas_html.snap +0 -0
  4466. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/tests/snapshots/notebook__changed_notebook.snap +0 -0
  4467. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_server/tests/snapshots/notebook__initial_notebook.snap +0 -0
  4468. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_source_file/Cargo.toml +0 -0
  4469. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_source_file/src/lib.rs +0 -0
  4470. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_source_file/src/line_index.rs +0 -0
  4471. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_source_file/src/line_ranges.rs +0 -0
  4472. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_source_file/src/newlines.rs +0 -0
  4473. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_text_size/Cargo.toml +0 -0
  4474. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_text_size/src/lib.rs +0 -0
  4475. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_text_size/src/schemars_impls.rs +0 -0
  4476. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_text_size/src/serde_impls.rs +0 -0
  4477. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_text_size/src/size.rs +0 -0
  4478. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_text_size/src/traits.rs +0 -0
  4479. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_text_size/tests/auto_traits.rs +0 -0
  4480. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_text_size/tests/constructors.rs +0 -0
  4481. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_text_size/tests/indexing.rs +0 -0
  4482. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_text_size/tests/main.rs +0 -0
  4483. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_text_size/tests/serde.rs +0 -0
  4484. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_workspace/Cargo.toml +0 -0
  4485. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_workspace/src/lib.rs +0 -0
  4486. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_workspace/src/options_base.rs +0 -0
  4487. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_workspace/src/pyproject.rs +0 -0
  4488. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_workspace/src/resolver.rs +0 -0
  4489. {ruff-0.9.2 → ruff-0.9.3}/crates/ruff_workspace/src/settings.rs +0 -0
  4490. {ruff-0.9.2 → ruff-0.9.3}/python/ruff/__init__.py +0 -0
  4491. {ruff-0.9.2 → ruff-0.9.3}/python/ruff/__main__.py +0 -0
  4492. {ruff-0.9.2 → ruff-0.9.3}/rust-toolchain.toml +0 -0
ruff-0.9.3/Cargo.lock ADDED
@@ -0,0 +1,4771 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler"
7
+ version = "1.0.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.11"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "getrandom",
19
+ "once_cell",
20
+ "version_check",
21
+ "zerocopy",
22
+ ]
23
+
24
+ [[package]]
25
+ name = "aho-corasick"
26
+ version = "1.1.3"
27
+ source = "registry+https://github.com/rust-lang/crates.io-index"
28
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
29
+ dependencies = [
30
+ "memchr",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "android-tzdata"
35
+ version = "0.1.1"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
38
+
39
+ [[package]]
40
+ name = "android_system_properties"
41
+ version = "0.1.5"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
44
+ dependencies = [
45
+ "libc",
46
+ ]
47
+
48
+ [[package]]
49
+ name = "anes"
50
+ version = "0.1.6"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
53
+
54
+ [[package]]
55
+ name = "annotate-snippets"
56
+ version = "0.6.1"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "c7021ce4924a3f25f802b2cccd1af585e39ea1a363a1aa2e72afe54b67a3a7a7"
59
+
60
+ [[package]]
61
+ name = "anstream"
62
+ version = "0.6.18"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
65
+ dependencies = [
66
+ "anstyle",
67
+ "anstyle-parse",
68
+ "anstyle-query",
69
+ "anstyle-wincon",
70
+ "colorchoice",
71
+ "is_terminal_polyfill",
72
+ "utf8parse",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "anstyle"
77
+ version = "1.0.10"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
80
+
81
+ [[package]]
82
+ name = "anstyle-lossy"
83
+ version = "1.1.3"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "934ff8719effd2023a48cf63e69536c1c3ced9d3895068f6f5cc9a4ff845e59b"
86
+ dependencies = [
87
+ "anstyle",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "anstyle-parse"
92
+ version = "0.2.3"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
95
+ dependencies = [
96
+ "utf8parse",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "anstyle-query"
101
+ version = "1.0.2"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
104
+ dependencies = [
105
+ "windows-sys 0.52.0",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "anstyle-svg"
110
+ version = "0.1.7"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "d3607949e9f6de49ea4bafe12f5e4fd73613ebf24795e48587302a8cc0e4bb35"
113
+ dependencies = [
114
+ "anstream",
115
+ "anstyle",
116
+ "anstyle-lossy",
117
+ "html-escape",
118
+ "unicode-width 0.2.0",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "anstyle-wincon"
123
+ version = "3.0.6"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
126
+ dependencies = [
127
+ "anstyle",
128
+ "windows-sys 0.59.0",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "anyhow"
133
+ version = "1.0.95"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
136
+
137
+ [[package]]
138
+ name = "append-only-vec"
139
+ version = "0.1.5"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "74d9f7083455f1a474276ccd32374958d2cb591024aac45101c7623b10271347"
142
+
143
+ [[package]]
144
+ name = "arc-swap"
145
+ version = "1.7.1"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
148
+
149
+ [[package]]
150
+ name = "argfile"
151
+ version = "0.2.1"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "0a1cc0ba69de57db40674c66f7cf2caee3981ddef084388482c95c0e2133e5e8"
154
+ dependencies = [
155
+ "fs-err",
156
+ "os_str_bytes",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "arrayvec"
161
+ version = "0.7.4"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
164
+
165
+ [[package]]
166
+ name = "assert_fs"
167
+ version = "1.1.2"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "7efdb1fdb47602827a342857666feb372712cbc64b414172bd6b167a02927674"
170
+ dependencies = [
171
+ "anstyle",
172
+ "doc-comment",
173
+ "globwalk",
174
+ "predicates",
175
+ "predicates-core",
176
+ "predicates-tree",
177
+ "tempfile",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "autocfg"
182
+ version = "1.2.0"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
185
+
186
+ [[package]]
187
+ name = "base64"
188
+ version = "0.13.1"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
191
+
192
+ [[package]]
193
+ name = "base64"
194
+ version = "0.22.0"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
197
+
198
+ [[package]]
199
+ name = "bincode"
200
+ version = "1.3.3"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
203
+ dependencies = [
204
+ "serde",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "bitflags"
209
+ version = "1.3.2"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
212
+
213
+ [[package]]
214
+ name = "bitflags"
215
+ version = "2.8.0"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
218
+
219
+ [[package]]
220
+ name = "block-buffer"
221
+ version = "0.10.4"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
224
+ dependencies = [
225
+ "generic-array",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "boxcar"
230
+ version = "0.2.7"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "7f839cdf7e2d3198ac6ca003fd8ebc61715755f41c1cad15ff13df67531e00ed"
233
+
234
+ [[package]]
235
+ name = "bstr"
236
+ version = "1.11.3"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
239
+ dependencies = [
240
+ "memchr",
241
+ "regex-automata 0.4.8",
242
+ "serde",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "bumpalo"
247
+ version = "3.16.0"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
250
+
251
+ [[package]]
252
+ name = "byteorder"
253
+ version = "1.5.0"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
256
+
257
+ [[package]]
258
+ name = "cachedir"
259
+ version = "0.3.1"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "4703f3937077db8fa35bee3c8789343c1aec2585f0146f09d658d4ccc0e8d873"
262
+ dependencies = [
263
+ "tempfile",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "camino"
268
+ version = "1.1.9"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
271
+ dependencies = [
272
+ "serde",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "cast"
277
+ version = "0.3.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
280
+
281
+ [[package]]
282
+ name = "castaway"
283
+ version = "0.2.3"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
286
+ dependencies = [
287
+ "rustversion",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "cc"
292
+ version = "1.2.2"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "f34d93e62b03caf570cccc334cbc6c2fceca82f39211051345108adcba3eebdc"
295
+ dependencies = [
296
+ "jobserver",
297
+ "libc",
298
+ "shlex",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "cfg-if"
303
+ version = "1.0.0"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
306
+
307
+ [[package]]
308
+ name = "cfg_aliases"
309
+ version = "0.2.1"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
312
+
313
+ [[package]]
314
+ name = "chic"
315
+ version = "1.2.2"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "a5b5db619f3556839cb2223ae86ff3f9a09da2c5013be42bc9af08c9589bf70c"
318
+ dependencies = [
319
+ "annotate-snippets",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "chrono"
324
+ version = "0.4.39"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
327
+ dependencies = [
328
+ "android-tzdata",
329
+ "iana-time-zone",
330
+ "num-traits",
331
+ "windows-targets 0.52.6",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "ciborium"
336
+ version = "0.2.2"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
339
+ dependencies = [
340
+ "ciborium-io",
341
+ "ciborium-ll",
342
+ "serde",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "ciborium-io"
347
+ version = "0.2.2"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
350
+
351
+ [[package]]
352
+ name = "ciborium-ll"
353
+ version = "0.2.2"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
356
+ dependencies = [
357
+ "ciborium-io",
358
+ "half",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "clap"
363
+ version = "4.5.26"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783"
366
+ dependencies = [
367
+ "clap_builder",
368
+ "clap_derive",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "clap_builder"
373
+ version = "4.5.26"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121"
376
+ dependencies = [
377
+ "anstream",
378
+ "anstyle",
379
+ "clap_lex",
380
+ "strsim 0.11.1",
381
+ "terminal_size",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "clap_complete"
386
+ version = "4.5.2"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "dd79504325bf38b10165b02e89b4347300f855f273c4cb30c4a3209e6583275e"
389
+ dependencies = [
390
+ "clap",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "clap_complete_command"
395
+ version = "0.6.1"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "da8e198c052315686d36371e8a3c5778b7852fc75cc313e4e11eeb7a644a1b62"
398
+ dependencies = [
399
+ "clap",
400
+ "clap_complete",
401
+ "clap_complete_nushell",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "clap_complete_nushell"
406
+ version = "4.5.2"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "1accf1b463dee0d3ab2be72591dccdab8bef314958340447c882c4c72acfe2a3"
409
+ dependencies = [
410
+ "clap",
411
+ "clap_complete",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "clap_derive"
416
+ version = "4.5.24"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
419
+ dependencies = [
420
+ "heck",
421
+ "proc-macro2",
422
+ "quote",
423
+ "syn 2.0.96",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "clap_lex"
428
+ version = "0.7.4"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
431
+
432
+ [[package]]
433
+ name = "clearscreen"
434
+ version = "4.0.1"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "8c41dc435a7b98e4608224bbf65282309f5403719df9113621b30f8b6f74e2f4"
437
+ dependencies = [
438
+ "nix",
439
+ "terminfo",
440
+ "thiserror 2.0.11",
441
+ "which",
442
+ "windows-sys 0.59.0",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "codspeed"
447
+ version = "2.7.2"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "450a0e9df9df1c154156f4344f99d8f6f6e69d0fc4de96ef6e2e68b2ec3bce97"
450
+ dependencies = [
451
+ "colored 2.2.0",
452
+ "libc",
453
+ "serde_json",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "codspeed-criterion-compat"
458
+ version = "2.7.2"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "8eb1a6cb9c20e177fde58cdef97c1c7c9264eb1424fe45c4fccedc2fb078a569"
461
+ dependencies = [
462
+ "codspeed",
463
+ "colored 2.2.0",
464
+ "criterion",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "colorchoice"
469
+ version = "1.0.0"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
472
+
473
+ [[package]]
474
+ name = "colored"
475
+ version = "2.2.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
478
+ dependencies = [
479
+ "lazy_static",
480
+ "windows-sys 0.59.0",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "colored"
485
+ version = "3.0.0"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
488
+ dependencies = [
489
+ "windows-sys 0.59.0",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "compact_str"
494
+ version = "0.8.1"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
497
+ dependencies = [
498
+ "castaway",
499
+ "cfg-if",
500
+ "itoa",
501
+ "rustversion",
502
+ "ryu",
503
+ "serde",
504
+ "static_assertions",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "console"
509
+ version = "0.15.8"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
512
+ dependencies = [
513
+ "encode_unicode",
514
+ "lazy_static",
515
+ "libc",
516
+ "unicode-width 0.1.13",
517
+ "windows-sys 0.52.0",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "console_error_panic_hook"
522
+ version = "0.1.7"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
525
+ dependencies = [
526
+ "cfg-if",
527
+ "wasm-bindgen",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "console_log"
532
+ version = "1.0.0"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "be8aed40e4edbf4d3b4431ab260b63fdc40f5780a4766824329ea0f1eefe3c0f"
535
+ dependencies = [
536
+ "log",
537
+ "web-sys",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "core-foundation-sys"
542
+ version = "0.8.6"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
545
+
546
+ [[package]]
547
+ name = "countme"
548
+ version = "3.0.1"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
551
+ dependencies = [
552
+ "dashmap 5.5.3",
553
+ "once_cell",
554
+ "rustc-hash 1.1.0",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "cpufeatures"
559
+ version = "0.2.13"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "51e852e6dc9a5bed1fae92dd2375037bf2b768725bf3be87811edee3249d09ad"
562
+ dependencies = [
563
+ "libc",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "crc32fast"
568
+ version = "1.4.0"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
571
+ dependencies = [
572
+ "cfg-if",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "criterion"
577
+ version = "0.5.1"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
580
+ dependencies = [
581
+ "anes",
582
+ "cast",
583
+ "ciborium",
584
+ "clap",
585
+ "criterion-plot",
586
+ "is-terminal",
587
+ "itertools 0.10.5",
588
+ "num-traits",
589
+ "once_cell",
590
+ "oorandom",
591
+ "regex",
592
+ "serde",
593
+ "serde_derive",
594
+ "serde_json",
595
+ "tinytemplate",
596
+ "walkdir",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "criterion-plot"
601
+ version = "0.5.0"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
604
+ dependencies = [
605
+ "cast",
606
+ "itertools 0.10.5",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "crossbeam"
611
+ version = "0.8.4"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
614
+ dependencies = [
615
+ "crossbeam-channel",
616
+ "crossbeam-deque",
617
+ "crossbeam-epoch",
618
+ "crossbeam-queue",
619
+ "crossbeam-utils",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "crossbeam-channel"
624
+ version = "0.5.12"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95"
627
+ dependencies = [
628
+ "crossbeam-utils",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "crossbeam-deque"
633
+ version = "0.8.5"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
636
+ dependencies = [
637
+ "crossbeam-epoch",
638
+ "crossbeam-utils",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "crossbeam-epoch"
643
+ version = "0.9.18"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
646
+ dependencies = [
647
+ "crossbeam-utils",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "crossbeam-queue"
652
+ version = "0.3.11"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
655
+ dependencies = [
656
+ "crossbeam-utils",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "crossbeam-utils"
661
+ version = "0.8.19"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
664
+
665
+ [[package]]
666
+ name = "crunchy"
667
+ version = "0.2.2"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
670
+
671
+ [[package]]
672
+ name = "crypto-common"
673
+ version = "0.1.6"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
676
+ dependencies = [
677
+ "generic-array",
678
+ "typenum",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "ctrlc"
683
+ version = "3.4.5"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "90eeab0aa92f3f9b4e87f258c72b139c207d251f9cbc1080a0086b86a8870dd3"
686
+ dependencies = [
687
+ "nix",
688
+ "windows-sys 0.59.0",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "darling"
693
+ version = "0.20.8"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
696
+ dependencies = [
697
+ "darling_core",
698
+ "darling_macro",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "darling_core"
703
+ version = "0.20.8"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
706
+ dependencies = [
707
+ "fnv",
708
+ "ident_case",
709
+ "proc-macro2",
710
+ "quote",
711
+ "strsim 0.10.0",
712
+ "syn 2.0.96",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "darling_macro"
717
+ version = "0.20.8"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
720
+ dependencies = [
721
+ "darling_core",
722
+ "quote",
723
+ "syn 2.0.96",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "dashmap"
728
+ version = "5.5.3"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
731
+ dependencies = [
732
+ "cfg-if",
733
+ "hashbrown 0.14.5",
734
+ "lock_api",
735
+ "once_cell",
736
+ "parking_lot_core",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "dashmap"
741
+ version = "6.1.0"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
744
+ dependencies = [
745
+ "cfg-if",
746
+ "crossbeam-utils",
747
+ "hashbrown 0.14.5",
748
+ "lock_api",
749
+ "once_cell",
750
+ "parking_lot_core",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "diff"
755
+ version = "0.1.13"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
758
+
759
+ [[package]]
760
+ name = "difflib"
761
+ version = "0.4.0"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
764
+
765
+ [[package]]
766
+ name = "digest"
767
+ version = "0.10.7"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
770
+ dependencies = [
771
+ "block-buffer",
772
+ "crypto-common",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "dir-test"
777
+ version = "0.4.1"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "62c013fe825864f3e4593f36426c1fa7a74f5603f13ca8d1af7a990c1cd94a79"
780
+ dependencies = [
781
+ "dir-test-macros",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "dir-test-macros"
786
+ version = "0.4.1"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "d42f54d7b4a6bc2400fe5b338e35d1a335787585375322f49c5d5fe7b243da7e"
789
+ dependencies = [
790
+ "glob",
791
+ "proc-macro2",
792
+ "quote",
793
+ "syn 2.0.96",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "dirs"
798
+ version = "5.0.1"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
801
+ dependencies = [
802
+ "dirs-sys",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "dirs-sys"
807
+ version = "0.4.1"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
810
+ dependencies = [
811
+ "libc",
812
+ "option-ext",
813
+ "redox_users",
814
+ "windows-sys 0.48.0",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "displaydoc"
819
+ version = "0.2.5"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
822
+ dependencies = [
823
+ "proc-macro2",
824
+ "quote",
825
+ "syn 2.0.96",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "doc-comment"
830
+ version = "0.3.3"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
833
+
834
+ [[package]]
835
+ name = "drop_bomb"
836
+ version = "0.1.5"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
839
+
840
+ [[package]]
841
+ name = "dunce"
842
+ version = "1.0.5"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
845
+
846
+ [[package]]
847
+ name = "dyn-clone"
848
+ version = "1.0.17"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
851
+
852
+ [[package]]
853
+ name = "either"
854
+ version = "1.11.0"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
857
+
858
+ [[package]]
859
+ name = "encode_unicode"
860
+ version = "0.3.6"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
863
+
864
+ [[package]]
865
+ name = "env_filter"
866
+ version = "0.1.0"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea"
869
+ dependencies = [
870
+ "log",
871
+ "regex",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "env_home"
876
+ version = "0.1.0"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
879
+
880
+ [[package]]
881
+ name = "env_logger"
882
+ version = "0.11.6"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0"
885
+ dependencies = [
886
+ "anstream",
887
+ "anstyle",
888
+ "env_filter",
889
+ "humantime",
890
+ "log",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "equivalent"
895
+ version = "1.0.1"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
898
+
899
+ [[package]]
900
+ name = "errno"
901
+ version = "0.3.8"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
904
+ dependencies = [
905
+ "libc",
906
+ "windows-sys 0.52.0",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "escape8259"
911
+ version = "0.5.3"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "5692dd7b5a1978a5aeb0ce83b7655c58ca8efdcb79d21036ea249da95afec2c6"
914
+
915
+ [[package]]
916
+ name = "escargot"
917
+ version = "0.5.13"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "05a3ac187a16b5382fef8c69fd1bad123c67b7cf3932240a2d43dcdd32cded88"
920
+ dependencies = [
921
+ "log",
922
+ "once_cell",
923
+ "serde",
924
+ "serde_json",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "etcetera"
929
+ version = "0.8.0"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
932
+ dependencies = [
933
+ "cfg-if",
934
+ "home",
935
+ "windows-sys 0.48.0",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "fastrand"
940
+ version = "2.1.1"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
943
+
944
+ [[package]]
945
+ name = "fern"
946
+ version = "0.7.1"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29"
949
+ dependencies = [
950
+ "log",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "filetime"
955
+ version = "0.2.25"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
958
+ dependencies = [
959
+ "cfg-if",
960
+ "libc",
961
+ "libredox",
962
+ "windows-sys 0.59.0",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "flate2"
967
+ version = "1.0.28"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
970
+ dependencies = [
971
+ "crc32fast",
972
+ "miniz_oxide",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "fnv"
977
+ version = "1.0.7"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
980
+
981
+ [[package]]
982
+ name = "form_urlencoded"
983
+ version = "1.2.1"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
986
+ dependencies = [
987
+ "percent-encoding",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "fs-err"
992
+ version = "2.11.0"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
995
+ dependencies = [
996
+ "autocfg",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "fsevent-sys"
1001
+ version = "4.1.0"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
1004
+ dependencies = [
1005
+ "libc",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "generic-array"
1010
+ version = "0.14.7"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1013
+ dependencies = [
1014
+ "typenum",
1015
+ "version_check",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "getopts"
1020
+ version = "0.2.21"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
1023
+ dependencies = [
1024
+ "unicode-width 0.1.13",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "getrandom"
1029
+ version = "0.2.14"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c"
1032
+ dependencies = [
1033
+ "cfg-if",
1034
+ "js-sys",
1035
+ "libc",
1036
+ "wasi",
1037
+ "wasm-bindgen",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "glob"
1042
+ version = "0.3.2"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1045
+
1046
+ [[package]]
1047
+ name = "globset"
1048
+ version = "0.4.15"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19"
1051
+ dependencies = [
1052
+ "aho-corasick",
1053
+ "bstr",
1054
+ "log",
1055
+ "regex-automata 0.4.8",
1056
+ "regex-syntax 0.8.5",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "globwalk"
1061
+ version = "0.9.1"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
1064
+ dependencies = [
1065
+ "bitflags 2.8.0",
1066
+ "ignore",
1067
+ "walkdir",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "half"
1072
+ version = "2.4.1"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
1075
+ dependencies = [
1076
+ "cfg-if",
1077
+ "crunchy",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "hashbrown"
1082
+ version = "0.14.5"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1085
+ dependencies = [
1086
+ "ahash",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "hashbrown"
1091
+ version = "0.15.2"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1094
+
1095
+ [[package]]
1096
+ name = "hashlink"
1097
+ version = "0.9.1"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
1100
+ dependencies = [
1101
+ "hashbrown 0.14.5",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "heck"
1106
+ version = "0.5.0"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1109
+
1110
+ [[package]]
1111
+ name = "hermit-abi"
1112
+ version = "0.3.9"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1115
+
1116
+ [[package]]
1117
+ name = "home"
1118
+ version = "0.5.9"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
1121
+ dependencies = [
1122
+ "windows-sys 0.52.0",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "html-escape"
1127
+ version = "0.2.13"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
1130
+ dependencies = [
1131
+ "utf8-width",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "humantime"
1136
+ version = "2.1.0"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
1139
+
1140
+ [[package]]
1141
+ name = "iana-time-zone"
1142
+ version = "0.1.60"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
1145
+ dependencies = [
1146
+ "android_system_properties",
1147
+ "core-foundation-sys",
1148
+ "iana-time-zone-haiku",
1149
+ "js-sys",
1150
+ "wasm-bindgen",
1151
+ "windows-core",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "iana-time-zone-haiku"
1156
+ version = "0.1.2"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1159
+ dependencies = [
1160
+ "cc",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "icu_collections"
1165
+ version = "1.5.0"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1168
+ dependencies = [
1169
+ "displaydoc",
1170
+ "yoke",
1171
+ "zerofrom",
1172
+ "zerovec",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "icu_locid"
1177
+ version = "1.5.0"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1180
+ dependencies = [
1181
+ "displaydoc",
1182
+ "litemap",
1183
+ "tinystr",
1184
+ "writeable",
1185
+ "zerovec",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "icu_locid_transform"
1190
+ version = "1.5.0"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1193
+ dependencies = [
1194
+ "displaydoc",
1195
+ "icu_locid",
1196
+ "icu_locid_transform_data",
1197
+ "icu_provider",
1198
+ "tinystr",
1199
+ "zerovec",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "icu_locid_transform_data"
1204
+ version = "1.5.0"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1207
+
1208
+ [[package]]
1209
+ name = "icu_normalizer"
1210
+ version = "1.5.0"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1213
+ dependencies = [
1214
+ "displaydoc",
1215
+ "icu_collections",
1216
+ "icu_normalizer_data",
1217
+ "icu_properties",
1218
+ "icu_provider",
1219
+ "smallvec",
1220
+ "utf16_iter",
1221
+ "utf8_iter",
1222
+ "write16",
1223
+ "zerovec",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "icu_normalizer_data"
1228
+ version = "1.5.0"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1231
+
1232
+ [[package]]
1233
+ name = "icu_properties"
1234
+ version = "1.5.1"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1237
+ dependencies = [
1238
+ "displaydoc",
1239
+ "icu_collections",
1240
+ "icu_locid_transform",
1241
+ "icu_properties_data",
1242
+ "icu_provider",
1243
+ "tinystr",
1244
+ "zerovec",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "icu_properties_data"
1249
+ version = "1.5.0"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1252
+
1253
+ [[package]]
1254
+ name = "icu_provider"
1255
+ version = "1.5.0"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1258
+ dependencies = [
1259
+ "displaydoc",
1260
+ "icu_locid",
1261
+ "icu_provider_macros",
1262
+ "stable_deref_trait",
1263
+ "tinystr",
1264
+ "writeable",
1265
+ "yoke",
1266
+ "zerofrom",
1267
+ "zerovec",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "icu_provider_macros"
1272
+ version = "1.5.0"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1275
+ dependencies = [
1276
+ "proc-macro2",
1277
+ "quote",
1278
+ "syn 2.0.96",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "ident_case"
1283
+ version = "1.0.1"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1286
+
1287
+ [[package]]
1288
+ name = "idna"
1289
+ version = "1.0.3"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1292
+ dependencies = [
1293
+ "idna_adapter",
1294
+ "smallvec",
1295
+ "utf8_iter",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "idna_adapter"
1300
+ version = "1.2.0"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1303
+ dependencies = [
1304
+ "icu_normalizer",
1305
+ "icu_properties",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "ignore"
1310
+ version = "0.4.23"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b"
1313
+ dependencies = [
1314
+ "crossbeam-deque",
1315
+ "globset",
1316
+ "log",
1317
+ "memchr",
1318
+ "regex-automata 0.4.8",
1319
+ "same-file",
1320
+ "walkdir",
1321
+ "winapi-util",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "imara-diff"
1326
+ version = "0.1.7"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "fc9da1a252bd44cd341657203722352efc9bc0c847d06ea6d2dc1cd1135e0a01"
1329
+ dependencies = [
1330
+ "ahash",
1331
+ "hashbrown 0.14.5",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "imperative"
1336
+ version = "1.0.6"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "29a1f6526af721f9aec9ceed7ab8ebfca47f3399d08b80056c2acca3fcb694a9"
1339
+ dependencies = [
1340
+ "phf",
1341
+ "rust-stemmers",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "indexmap"
1346
+ version = "2.7.1"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
1349
+ dependencies = [
1350
+ "equivalent",
1351
+ "hashbrown 0.15.2",
1352
+ "serde",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "indicatif"
1357
+ version = "0.17.9"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281"
1360
+ dependencies = [
1361
+ "console",
1362
+ "number_prefix",
1363
+ "portable-atomic",
1364
+ "unicode-width 0.2.0",
1365
+ "vt100",
1366
+ "web-time",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "indoc"
1371
+ version = "2.0.5"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
1374
+
1375
+ [[package]]
1376
+ name = "inotify"
1377
+ version = "0.11.0"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
1380
+ dependencies = [
1381
+ "bitflags 2.8.0",
1382
+ "inotify-sys",
1383
+ "libc",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "inotify-sys"
1388
+ version = "0.1.5"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1391
+ dependencies = [
1392
+ "libc",
1393
+ ]
1394
+
1395
+ [[package]]
1396
+ name = "insta"
1397
+ version = "1.42.0"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "6513e4067e16e69ed1db5ab56048ed65db32d10ba5fc1217f5393f8f17d8b5a5"
1400
+ dependencies = [
1401
+ "console",
1402
+ "globset",
1403
+ "linked-hash-map",
1404
+ "once_cell",
1405
+ "pest",
1406
+ "pest_derive",
1407
+ "regex",
1408
+ "ron",
1409
+ "serde",
1410
+ "similar",
1411
+ "walkdir",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "insta-cmd"
1416
+ version = "0.6.0"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "ffeeefa927925cced49ccb01bf3e57c9d4cd132df21e576eb9415baeab2d3de6"
1419
+ dependencies = [
1420
+ "insta",
1421
+ "serde",
1422
+ "serde_json",
1423
+ ]
1424
+
1425
+ [[package]]
1426
+ name = "is-docker"
1427
+ version = "0.2.0"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
1430
+ dependencies = [
1431
+ "once_cell",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "is-macro"
1436
+ version = "0.3.7"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
1439
+ dependencies = [
1440
+ "heck",
1441
+ "proc-macro2",
1442
+ "quote",
1443
+ "syn 2.0.96",
1444
+ ]
1445
+
1446
+ [[package]]
1447
+ name = "is-terminal"
1448
+ version = "0.4.12"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
1451
+ dependencies = [
1452
+ "hermit-abi",
1453
+ "libc",
1454
+ "windows-sys 0.52.0",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "is-wsl"
1459
+ version = "0.4.0"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
1462
+ dependencies = [
1463
+ "is-docker",
1464
+ "once_cell",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "is_terminal_polyfill"
1469
+ version = "1.70.1"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1472
+
1473
+ [[package]]
1474
+ name = "itertools"
1475
+ version = "0.10.5"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1478
+ dependencies = [
1479
+ "either",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "itertools"
1484
+ version = "0.13.0"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1487
+ dependencies = [
1488
+ "either",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "itertools"
1493
+ version = "0.14.0"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1496
+ dependencies = [
1497
+ "either",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "itoa"
1502
+ version = "1.0.11"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
1505
+
1506
+ [[package]]
1507
+ name = "jobserver"
1508
+ version = "0.1.32"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1511
+ dependencies = [
1512
+ "libc",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "jod-thread"
1517
+ version = "0.1.2"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "8b23360e99b8717f20aaa4598f5a6541efbe30630039fbc7706cf954a87947ae"
1520
+
1521
+ [[package]]
1522
+ name = "js-sys"
1523
+ version = "0.3.74"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "a865e038f7f6ed956f788f0d7d60c541fff74c7bd74272c5d4cf15c63743e705"
1526
+ dependencies = [
1527
+ "once_cell",
1528
+ "wasm-bindgen",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "kqueue"
1533
+ version = "1.0.8"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
1536
+ dependencies = [
1537
+ "kqueue-sys",
1538
+ "libc",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "kqueue-sys"
1543
+ version = "1.0.4"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
1546
+ dependencies = [
1547
+ "bitflags 1.3.2",
1548
+ "libc",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "lazy_static"
1553
+ version = "1.4.0"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1556
+
1557
+ [[package]]
1558
+ name = "libc"
1559
+ version = "0.2.169"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
1562
+
1563
+ [[package]]
1564
+ name = "libcst"
1565
+ version = "1.6.0"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "649801a698a649791541a3125d396d5db065ed7cea53faca3652b0179394922a"
1568
+ dependencies = [
1569
+ "chic",
1570
+ "libcst_derive",
1571
+ "memchr",
1572
+ "paste",
1573
+ "peg",
1574
+ "regex",
1575
+ "thiserror 1.0.67",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "libcst_derive"
1580
+ version = "1.6.0"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "3bf66548c351bcaed792ef3e2b430cc840fbde504e09da6b29ed114ca60dcd4b"
1583
+ dependencies = [
1584
+ "quote",
1585
+ "syn 2.0.96",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "libmimalloc-sys"
1590
+ version = "0.1.39"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "23aa6811d3bd4deb8a84dde645f943476d13b248d818edcf8ce0b2f37f036b44"
1593
+ dependencies = [
1594
+ "cc",
1595
+ "libc",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "libredox"
1600
+ version = "0.1.3"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1603
+ dependencies = [
1604
+ "bitflags 2.8.0",
1605
+ "libc",
1606
+ "redox_syscall 0.5.3",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "libtest-mimic"
1611
+ version = "0.7.3"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "cc0bda45ed5b3a2904262c1bb91e526127aa70e7ef3758aba2ef93cf896b9b58"
1614
+ dependencies = [
1615
+ "clap",
1616
+ "escape8259",
1617
+ "termcolor",
1618
+ "threadpool",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "linked-hash-map"
1623
+ version = "0.5.6"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1626
+
1627
+ [[package]]
1628
+ name = "linux-raw-sys"
1629
+ version = "0.4.14"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
1632
+
1633
+ [[package]]
1634
+ name = "litemap"
1635
+ version = "0.7.3"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704"
1638
+
1639
+ [[package]]
1640
+ name = "lock_api"
1641
+ version = "0.4.11"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
1644
+ dependencies = [
1645
+ "autocfg",
1646
+ "scopeguard",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "log"
1651
+ version = "0.4.25"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
1654
+
1655
+ [[package]]
1656
+ name = "lsp-server"
1657
+ version = "0.7.8"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "9462c4dc73e17f971ec1f171d44bfffb72e65a130117233388a0ebc7ec5656f9"
1660
+ dependencies = [
1661
+ "crossbeam-channel",
1662
+ "log",
1663
+ "serde",
1664
+ "serde_derive",
1665
+ "serde_json",
1666
+ ]
1667
+
1668
+ [[package]]
1669
+ name = "lsp-types"
1670
+ version = "0.95.1"
1671
+ source = "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#3512a9f33eadc5402cfab1b8f7340824c8ca1439"
1672
+ dependencies = [
1673
+ "bitflags 1.3.2",
1674
+ "serde",
1675
+ "serde_json",
1676
+ "serde_repr",
1677
+ "url",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "matchers"
1682
+ version = "0.1.0"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1685
+ dependencies = [
1686
+ "regex-automata 0.1.10",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "matches"
1691
+ version = "0.1.10"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
1694
+
1695
+ [[package]]
1696
+ name = "matchit"
1697
+ version = "0.8.6"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "2f926ade0c4e170215ae43342bf13b9310a437609c81f29f86c5df6657582ef9"
1700
+
1701
+ [[package]]
1702
+ name = "memchr"
1703
+ version = "2.7.4"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1706
+
1707
+ [[package]]
1708
+ name = "mimalloc"
1709
+ version = "0.1.43"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "68914350ae34959d83f732418d51e2427a794055d0b9529f48259ac07af65633"
1712
+ dependencies = [
1713
+ "libmimalloc-sys",
1714
+ ]
1715
+
1716
+ [[package]]
1717
+ name = "minicov"
1718
+ version = "0.3.5"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "5c71e683cd655513b99affab7d317deb690528255a0d5f717f1024093c12b169"
1721
+ dependencies = [
1722
+ "cc",
1723
+ "walkdir",
1724
+ ]
1725
+
1726
+ [[package]]
1727
+ name = "minimal-lexical"
1728
+ version = "0.2.1"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1731
+
1732
+ [[package]]
1733
+ name = "miniz_oxide"
1734
+ version = "0.7.2"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
1737
+ dependencies = [
1738
+ "adler",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "mio"
1743
+ version = "1.0.2"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
1746
+ dependencies = [
1747
+ "hermit-abi",
1748
+ "libc",
1749
+ "log",
1750
+ "wasi",
1751
+ "windows-sys 0.52.0",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "natord"
1756
+ version = "1.0.9"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "308d96db8debc727c3fd9744aac51751243420e46edf401010908da7f8d5e57c"
1759
+
1760
+ [[package]]
1761
+ name = "newtype-uuid"
1762
+ version = "1.1.3"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "4c8781e2ef64806278a55ad223f0bc875772fd40e1fe6e73e8adbf027817229d"
1765
+ dependencies = [
1766
+ "uuid",
1767
+ ]
1768
+
1769
+ [[package]]
1770
+ name = "nix"
1771
+ version = "0.29.0"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1774
+ dependencies = [
1775
+ "bitflags 2.8.0",
1776
+ "cfg-if",
1777
+ "cfg_aliases",
1778
+ "libc",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "nom"
1783
+ version = "7.1.3"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1786
+ dependencies = [
1787
+ "memchr",
1788
+ "minimal-lexical",
1789
+ ]
1790
+
1791
+ [[package]]
1792
+ name = "normalize-line-endings"
1793
+ version = "0.3.0"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
1796
+
1797
+ [[package]]
1798
+ name = "notify"
1799
+ version = "8.0.0"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
1802
+ dependencies = [
1803
+ "bitflags 2.8.0",
1804
+ "filetime",
1805
+ "fsevent-sys",
1806
+ "inotify",
1807
+ "kqueue",
1808
+ "libc",
1809
+ "log",
1810
+ "mio",
1811
+ "notify-types",
1812
+ "walkdir",
1813
+ "windows-sys 0.59.0",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "notify-types"
1818
+ version = "2.0.0"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
1821
+
1822
+ [[package]]
1823
+ name = "nu-ansi-term"
1824
+ version = "0.46.0"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1827
+ dependencies = [
1828
+ "overload",
1829
+ "winapi",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "nu-ansi-term"
1834
+ version = "0.50.1"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
1837
+ dependencies = [
1838
+ "windows-sys 0.52.0",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "num-traits"
1843
+ version = "0.2.18"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
1846
+ dependencies = [
1847
+ "autocfg",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "num_cpus"
1852
+ version = "1.16.0"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1855
+ dependencies = [
1856
+ "hermit-abi",
1857
+ "libc",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "number_prefix"
1862
+ version = "0.4.0"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1865
+
1866
+ [[package]]
1867
+ name = "once_cell"
1868
+ version = "1.20.2"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
1871
+
1872
+ [[package]]
1873
+ name = "oorandom"
1874
+ version = "11.1.3"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
1877
+
1878
+ [[package]]
1879
+ name = "option-ext"
1880
+ version = "0.2.0"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1883
+
1884
+ [[package]]
1885
+ name = "ordermap"
1886
+ version = "0.5.5"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "c55fdf45a2b1e929e3656d404395767e05c98b6ebd8157eb31e370077d545160"
1889
+ dependencies = [
1890
+ "indexmap",
1891
+ ]
1892
+
1893
+ [[package]]
1894
+ name = "os_pipe"
1895
+ version = "1.2.1"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "5ffd2b0a5634335b135d5728d84c5e0fd726954b87111f7506a61c502280d982"
1898
+ dependencies = [
1899
+ "libc",
1900
+ "windows-sys 0.59.0",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "os_str_bytes"
1905
+ version = "7.0.0"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "7ac44c994af577c799b1b4bd80dc214701e349873ad894d6cdf96f4f7526e0b9"
1908
+ dependencies = [
1909
+ "memchr",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "overload"
1914
+ version = "0.1.1"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1917
+
1918
+ [[package]]
1919
+ name = "parking_lot"
1920
+ version = "0.12.3"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1923
+ dependencies = [
1924
+ "lock_api",
1925
+ "parking_lot_core",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "parking_lot_core"
1930
+ version = "0.9.9"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
1933
+ dependencies = [
1934
+ "cfg-if",
1935
+ "libc",
1936
+ "redox_syscall 0.4.1",
1937
+ "smallvec",
1938
+ "windows-targets 0.48.5",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "paste"
1943
+ version = "1.0.15"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1946
+
1947
+ [[package]]
1948
+ name = "path-absolutize"
1949
+ version = "3.1.1"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5"
1952
+ dependencies = [
1953
+ "path-dedot",
1954
+ ]
1955
+
1956
+ [[package]]
1957
+ name = "path-dedot"
1958
+ version = "3.1.1"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397"
1961
+ dependencies = [
1962
+ "once_cell",
1963
+ ]
1964
+
1965
+ [[package]]
1966
+ name = "path-slash"
1967
+ version = "0.2.1"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
1970
+
1971
+ [[package]]
1972
+ name = "pathdiff"
1973
+ version = "0.2.3"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
1976
+
1977
+ [[package]]
1978
+ name = "peg"
1979
+ version = "0.8.4"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "295283b02df346d1ef66052a757869b2876ac29a6bb0ac3f5f7cd44aebe40e8f"
1982
+ dependencies = [
1983
+ "peg-macros",
1984
+ "peg-runtime",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "peg-macros"
1989
+ version = "0.8.4"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "bdad6a1d9cf116a059582ce415d5f5566aabcd4008646779dab7fdc2a9a9d426"
1992
+ dependencies = [
1993
+ "peg-runtime",
1994
+ "proc-macro2",
1995
+ "quote",
1996
+ ]
1997
+
1998
+ [[package]]
1999
+ name = "peg-runtime"
2000
+ version = "0.8.3"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "e3aeb8f54c078314c2065ee649a7241f46b9d8e418e1a9581ba0546657d7aa3a"
2003
+
2004
+ [[package]]
2005
+ name = "pep440_rs"
2006
+ version = "0.7.3"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "31095ca1f396e3de32745f42b20deef7bc09077f918b085307e8eab6ddd8fb9c"
2009
+ dependencies = [
2010
+ "once_cell",
2011
+ "serde",
2012
+ "unicode-width 0.2.0",
2013
+ "unscanny",
2014
+ "version-ranges",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "pep508_rs"
2019
+ version = "0.9.1"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "8c2feee999fa547bacab06a4881bacc74688858b92fa8ef1e206c748b0a76048"
2022
+ dependencies = [
2023
+ "boxcar",
2024
+ "indexmap",
2025
+ "itertools 0.13.0",
2026
+ "once_cell",
2027
+ "pep440_rs",
2028
+ "regex",
2029
+ "rustc-hash 2.1.0",
2030
+ "serde",
2031
+ "smallvec",
2032
+ "thiserror 1.0.67",
2033
+ "unicode-width 0.2.0",
2034
+ "url",
2035
+ "urlencoding",
2036
+ "version-ranges",
2037
+ ]
2038
+
2039
+ [[package]]
2040
+ name = "percent-encoding"
2041
+ version = "2.3.1"
2042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2043
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2044
+
2045
+ [[package]]
2046
+ name = "pest"
2047
+ version = "2.7.11"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95"
2050
+ dependencies = [
2051
+ "memchr",
2052
+ "thiserror 1.0.67",
2053
+ "ucd-trie",
2054
+ ]
2055
+
2056
+ [[package]]
2057
+ name = "pest_derive"
2058
+ version = "2.7.11"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "2a548d2beca6773b1c244554d36fcf8548a8a58e74156968211567250e48e49a"
2061
+ dependencies = [
2062
+ "pest",
2063
+ "pest_generator",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "pest_generator"
2068
+ version = "2.7.11"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "3c93a82e8d145725dcbaf44e5ea887c8a869efdcc28706df2d08c69e17077183"
2071
+ dependencies = [
2072
+ "pest",
2073
+ "pest_meta",
2074
+ "proc-macro2",
2075
+ "quote",
2076
+ "syn 2.0.96",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "pest_meta"
2081
+ version = "2.7.11"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "a941429fea7e08bedec25e4f6785b6ffaacc6b755da98df5ef3e7dcf4a124c4f"
2084
+ dependencies = [
2085
+ "once_cell",
2086
+ "pest",
2087
+ "sha2",
2088
+ ]
2089
+
2090
+ [[package]]
2091
+ name = "phf"
2092
+ version = "0.11.2"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
2095
+ dependencies = [
2096
+ "phf_shared",
2097
+ ]
2098
+
2099
+ [[package]]
2100
+ name = "phf_codegen"
2101
+ version = "0.11.2"
2102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
+ checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
2104
+ dependencies = [
2105
+ "phf_generator",
2106
+ "phf_shared",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "phf_generator"
2111
+ version = "0.11.2"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
2114
+ dependencies = [
2115
+ "phf_shared",
2116
+ "rand",
2117
+ ]
2118
+
2119
+ [[package]]
2120
+ name = "phf_shared"
2121
+ version = "0.11.2"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
2124
+ dependencies = [
2125
+ "siphasher",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "pin-project-lite"
2130
+ version = "0.2.14"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2133
+
2134
+ [[package]]
2135
+ name = "pkg-config"
2136
+ version = "0.3.30"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
2139
+
2140
+ [[package]]
2141
+ name = "portable-atomic"
2142
+ version = "1.6.0"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
2145
+
2146
+ [[package]]
2147
+ name = "ppv-lite86"
2148
+ version = "0.2.17"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2151
+
2152
+ [[package]]
2153
+ name = "predicates"
2154
+ version = "3.1.2"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97"
2157
+ dependencies = [
2158
+ "anstyle",
2159
+ "difflib",
2160
+ "predicates-core",
2161
+ ]
2162
+
2163
+ [[package]]
2164
+ name = "predicates-core"
2165
+ version = "1.0.8"
2166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2167
+ checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931"
2168
+
2169
+ [[package]]
2170
+ name = "predicates-tree"
2171
+ version = "1.0.11"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13"
2174
+ dependencies = [
2175
+ "predicates-core",
2176
+ "termtree",
2177
+ ]
2178
+
2179
+ [[package]]
2180
+ name = "pretty_assertions"
2181
+ version = "1.4.1"
2182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2183
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
2184
+ dependencies = [
2185
+ "diff",
2186
+ "yansi",
2187
+ ]
2188
+
2189
+ [[package]]
2190
+ name = "proc-macro2"
2191
+ version = "1.0.93"
2192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2193
+ checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
2194
+ dependencies = [
2195
+ "unicode-ident",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "pyproject-toml"
2200
+ version = "0.13.4"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "643af57c3f36ba90a8b53e972727d8092f7408a9ebfbaf4c3d2c17b07c58d835"
2203
+ dependencies = [
2204
+ "indexmap",
2205
+ "pep440_rs",
2206
+ "pep508_rs",
2207
+ "serde",
2208
+ "thiserror 1.0.67",
2209
+ "toml",
2210
+ ]
2211
+
2212
+ [[package]]
2213
+ name = "quick-junit"
2214
+ version = "0.5.1"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "3ed1a693391a16317257103ad06a88c6529ac640846021da7c435a06fffdacd7"
2217
+ dependencies = [
2218
+ "chrono",
2219
+ "indexmap",
2220
+ "newtype-uuid",
2221
+ "quick-xml",
2222
+ "strip-ansi-escapes",
2223
+ "thiserror 2.0.11",
2224
+ "uuid",
2225
+ ]
2226
+
2227
+ [[package]]
2228
+ name = "quick-xml"
2229
+ version = "0.37.1"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03"
2232
+ dependencies = [
2233
+ "memchr",
2234
+ ]
2235
+
2236
+ [[package]]
2237
+ name = "quickcheck"
2238
+ version = "1.0.3"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
2241
+ dependencies = [
2242
+ "rand",
2243
+ ]
2244
+
2245
+ [[package]]
2246
+ name = "quickcheck_macros"
2247
+ version = "1.0.0"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "b22a693222d716a9587786f37ac3f6b4faedb5b80c23914e7303ff5a1d8016e9"
2250
+ dependencies = [
2251
+ "proc-macro2",
2252
+ "quote",
2253
+ "syn 1.0.109",
2254
+ ]
2255
+
2256
+ [[package]]
2257
+ name = "quote"
2258
+ version = "1.0.38"
2259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2260
+ checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
2261
+ dependencies = [
2262
+ "proc-macro2",
2263
+ ]
2264
+
2265
+ [[package]]
2266
+ name = "rand"
2267
+ version = "0.8.5"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2270
+ dependencies = [
2271
+ "libc",
2272
+ "rand_chacha",
2273
+ "rand_core",
2274
+ ]
2275
+
2276
+ [[package]]
2277
+ name = "rand_chacha"
2278
+ version = "0.3.1"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2281
+ dependencies = [
2282
+ "ppv-lite86",
2283
+ "rand_core",
2284
+ ]
2285
+
2286
+ [[package]]
2287
+ name = "rand_core"
2288
+ version = "0.6.4"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2291
+ dependencies = [
2292
+ "getrandom",
2293
+ ]
2294
+
2295
+ [[package]]
2296
+ name = "rayon"
2297
+ version = "1.10.0"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2300
+ dependencies = [
2301
+ "either",
2302
+ "rayon-core",
2303
+ ]
2304
+
2305
+ [[package]]
2306
+ name = "rayon-core"
2307
+ version = "1.12.1"
2308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2309
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2310
+ dependencies = [
2311
+ "crossbeam-deque",
2312
+ "crossbeam-utils",
2313
+ ]
2314
+
2315
+ [[package]]
2316
+ name = "red_knot"
2317
+ version = "0.0.0"
2318
+ dependencies = [
2319
+ "anyhow",
2320
+ "chrono",
2321
+ "clap",
2322
+ "colored 3.0.0",
2323
+ "countme",
2324
+ "crossbeam",
2325
+ "ctrlc",
2326
+ "filetime",
2327
+ "insta",
2328
+ "insta-cmd",
2329
+ "rayon",
2330
+ "red_knot_project",
2331
+ "red_knot_python_semantic",
2332
+ "red_knot_server",
2333
+ "regex",
2334
+ "ruff_db",
2335
+ "ruff_python_trivia",
2336
+ "salsa",
2337
+ "tempfile",
2338
+ "toml",
2339
+ "tracing",
2340
+ "tracing-flame",
2341
+ "tracing-subscriber",
2342
+ "tracing-tree",
2343
+ ]
2344
+
2345
+ [[package]]
2346
+ name = "red_knot_project"
2347
+ version = "0.0.0"
2348
+ dependencies = [
2349
+ "anyhow",
2350
+ "crossbeam",
2351
+ "glob",
2352
+ "insta",
2353
+ "notify",
2354
+ "pep440_rs",
2355
+ "rayon",
2356
+ "red_knot_python_semantic",
2357
+ "red_knot_vendored",
2358
+ "ruff_cache",
2359
+ "ruff_db",
2360
+ "ruff_macros",
2361
+ "ruff_python_ast",
2362
+ "ruff_text_size",
2363
+ "rustc-hash 2.1.0",
2364
+ "salsa",
2365
+ "serde",
2366
+ "thiserror 2.0.11",
2367
+ "toml",
2368
+ "tracing",
2369
+ ]
2370
+
2371
+ [[package]]
2372
+ name = "red_knot_python_semantic"
2373
+ version = "0.0.0"
2374
+ dependencies = [
2375
+ "anyhow",
2376
+ "bitflags 2.8.0",
2377
+ "camino",
2378
+ "compact_str",
2379
+ "countme",
2380
+ "dir-test",
2381
+ "drop_bomb",
2382
+ "hashbrown 0.15.2",
2383
+ "indexmap",
2384
+ "insta",
2385
+ "itertools 0.14.0",
2386
+ "memchr",
2387
+ "ordermap",
2388
+ "quickcheck",
2389
+ "quickcheck_macros",
2390
+ "red_knot_test",
2391
+ "red_knot_vendored",
2392
+ "ruff_db",
2393
+ "ruff_index",
2394
+ "ruff_macros",
2395
+ "ruff_python_ast",
2396
+ "ruff_python_literal",
2397
+ "ruff_python_parser",
2398
+ "ruff_python_stdlib",
2399
+ "ruff_python_trivia",
2400
+ "ruff_source_file",
2401
+ "ruff_text_size",
2402
+ "rustc-hash 2.1.0",
2403
+ "salsa",
2404
+ "serde",
2405
+ "smallvec",
2406
+ "static_assertions",
2407
+ "tempfile",
2408
+ "test-case",
2409
+ "thiserror 2.0.11",
2410
+ "tracing",
2411
+ ]
2412
+
2413
+ [[package]]
2414
+ name = "red_knot_server"
2415
+ version = "0.0.0"
2416
+ dependencies = [
2417
+ "anyhow",
2418
+ "crossbeam",
2419
+ "jod-thread",
2420
+ "libc",
2421
+ "lsp-server",
2422
+ "lsp-types",
2423
+ "red_knot_project",
2424
+ "ruff_db",
2425
+ "ruff_notebook",
2426
+ "ruff_python_ast",
2427
+ "ruff_source_file",
2428
+ "ruff_text_size",
2429
+ "rustc-hash 2.1.0",
2430
+ "serde",
2431
+ "serde_json",
2432
+ "shellexpand",
2433
+ "tracing",
2434
+ "tracing-subscriber",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "red_knot_test"
2439
+ version = "0.0.0"
2440
+ dependencies = [
2441
+ "anyhow",
2442
+ "camino",
2443
+ "colored 3.0.0",
2444
+ "memchr",
2445
+ "red_knot_python_semantic",
2446
+ "red_knot_vendored",
2447
+ "regex",
2448
+ "ruff_db",
2449
+ "ruff_index",
2450
+ "ruff_python_trivia",
2451
+ "ruff_source_file",
2452
+ "ruff_text_size",
2453
+ "rustc-hash 2.1.0",
2454
+ "salsa",
2455
+ "serde",
2456
+ "smallvec",
2457
+ "toml",
2458
+ ]
2459
+
2460
+ [[package]]
2461
+ name = "red_knot_vendored"
2462
+ version = "0.0.0"
2463
+ dependencies = [
2464
+ "path-slash",
2465
+ "ruff_db",
2466
+ "walkdir",
2467
+ "zip",
2468
+ ]
2469
+
2470
+ [[package]]
2471
+ name = "red_knot_wasm"
2472
+ version = "0.0.0"
2473
+ dependencies = [
2474
+ "console_error_panic_hook",
2475
+ "console_log",
2476
+ "js-sys",
2477
+ "log",
2478
+ "red_knot_project",
2479
+ "red_knot_python_semantic",
2480
+ "ruff_db",
2481
+ "ruff_notebook",
2482
+ "wasm-bindgen",
2483
+ "wasm-bindgen-test",
2484
+ ]
2485
+
2486
+ [[package]]
2487
+ name = "redox_syscall"
2488
+ version = "0.4.1"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
2491
+ dependencies = [
2492
+ "bitflags 1.3.2",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "redox_syscall"
2497
+ version = "0.5.3"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
2500
+ dependencies = [
2501
+ "bitflags 2.8.0",
2502
+ ]
2503
+
2504
+ [[package]]
2505
+ name = "redox_users"
2506
+ version = "0.4.5"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
2509
+ dependencies = [
2510
+ "getrandom",
2511
+ "libredox",
2512
+ "thiserror 1.0.67",
2513
+ ]
2514
+
2515
+ [[package]]
2516
+ name = "regex"
2517
+ version = "1.11.1"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2520
+ dependencies = [
2521
+ "aho-corasick",
2522
+ "memchr",
2523
+ "regex-automata 0.4.8",
2524
+ "regex-syntax 0.8.5",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "regex-automata"
2529
+ version = "0.1.10"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2532
+ dependencies = [
2533
+ "regex-syntax 0.6.29",
2534
+ ]
2535
+
2536
+ [[package]]
2537
+ name = "regex-automata"
2538
+ version = "0.4.8"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
2541
+ dependencies = [
2542
+ "aho-corasick",
2543
+ "memchr",
2544
+ "regex-syntax 0.8.5",
2545
+ ]
2546
+
2547
+ [[package]]
2548
+ name = "regex-syntax"
2549
+ version = "0.6.29"
2550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2551
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2552
+
2553
+ [[package]]
2554
+ name = "regex-syntax"
2555
+ version = "0.8.5"
2556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2557
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2558
+
2559
+ [[package]]
2560
+ name = "ring"
2561
+ version = "0.17.8"
2562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2563
+ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2564
+ dependencies = [
2565
+ "cc",
2566
+ "cfg-if",
2567
+ "getrandom",
2568
+ "libc",
2569
+ "spin",
2570
+ "untrusted",
2571
+ "windows-sys 0.52.0",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "ron"
2576
+ version = "0.7.1"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
2579
+ dependencies = [
2580
+ "base64 0.13.1",
2581
+ "bitflags 1.3.2",
2582
+ "serde",
2583
+ ]
2584
+
2585
+ [[package]]
2586
+ name = "ruff"
2587
+ version = "0.9.3"
2588
+ dependencies = [
2589
+ "anyhow",
2590
+ "argfile",
2591
+ "assert_fs",
2592
+ "bincode",
2593
+ "bitflags 2.8.0",
2594
+ "cachedir",
2595
+ "chrono",
2596
+ "clap",
2597
+ "clap_complete_command",
2598
+ "clearscreen",
2599
+ "colored 3.0.0",
2600
+ "filetime",
2601
+ "globwalk",
2602
+ "ignore",
2603
+ "indoc",
2604
+ "insta",
2605
+ "insta-cmd",
2606
+ "is-macro",
2607
+ "itertools 0.14.0",
2608
+ "log",
2609
+ "mimalloc",
2610
+ "notify",
2611
+ "path-absolutize",
2612
+ "rayon",
2613
+ "regex",
2614
+ "ruff_cache",
2615
+ "ruff_db",
2616
+ "ruff_diagnostics",
2617
+ "ruff_graph",
2618
+ "ruff_linter",
2619
+ "ruff_macros",
2620
+ "ruff_notebook",
2621
+ "ruff_python_ast",
2622
+ "ruff_python_formatter",
2623
+ "ruff_server",
2624
+ "ruff_source_file",
2625
+ "ruff_text_size",
2626
+ "ruff_workspace",
2627
+ "rustc-hash 2.1.0",
2628
+ "serde",
2629
+ "serde_json",
2630
+ "shellexpand",
2631
+ "strum",
2632
+ "tempfile",
2633
+ "test-case",
2634
+ "thiserror 2.0.11",
2635
+ "tikv-jemallocator",
2636
+ "toml",
2637
+ "tracing",
2638
+ "walkdir",
2639
+ "wild",
2640
+ ]
2641
+
2642
+ [[package]]
2643
+ name = "ruff_annotate_snippets"
2644
+ version = "0.1.0"
2645
+ dependencies = [
2646
+ "anstream",
2647
+ "anstyle",
2648
+ "memchr",
2649
+ "ruff_annotate_snippets",
2650
+ "serde",
2651
+ "snapbox",
2652
+ "toml",
2653
+ "tryfn",
2654
+ "unicode-width 0.2.0",
2655
+ ]
2656
+
2657
+ [[package]]
2658
+ name = "ruff_benchmark"
2659
+ version = "0.0.0"
2660
+ dependencies = [
2661
+ "codspeed-criterion-compat",
2662
+ "criterion",
2663
+ "mimalloc",
2664
+ "rayon",
2665
+ "red_knot_project",
2666
+ "red_knot_python_semantic",
2667
+ "ruff_db",
2668
+ "ruff_linter",
2669
+ "ruff_python_ast",
2670
+ "ruff_python_formatter",
2671
+ "ruff_python_parser",
2672
+ "ruff_python_trivia",
2673
+ "rustc-hash 2.1.0",
2674
+ "serde",
2675
+ "serde_json",
2676
+ "tikv-jemallocator",
2677
+ "ureq",
2678
+ "url",
2679
+ ]
2680
+
2681
+ [[package]]
2682
+ name = "ruff_cache"
2683
+ version = "0.0.0"
2684
+ dependencies = [
2685
+ "filetime",
2686
+ "glob",
2687
+ "globset",
2688
+ "itertools 0.14.0",
2689
+ "regex",
2690
+ "ruff_macros",
2691
+ "seahash",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "ruff_db"
2696
+ version = "0.0.0"
2697
+ dependencies = [
2698
+ "camino",
2699
+ "countme",
2700
+ "dashmap 6.1.0",
2701
+ "dunce",
2702
+ "filetime",
2703
+ "glob",
2704
+ "ignore",
2705
+ "insta",
2706
+ "matchit",
2707
+ "path-slash",
2708
+ "ruff_cache",
2709
+ "ruff_notebook",
2710
+ "ruff_python_ast",
2711
+ "ruff_python_parser",
2712
+ "ruff_python_trivia",
2713
+ "ruff_source_file",
2714
+ "ruff_text_size",
2715
+ "rustc-hash 2.1.0",
2716
+ "salsa",
2717
+ "serde",
2718
+ "tempfile",
2719
+ "thiserror 2.0.11",
2720
+ "tracing",
2721
+ "tracing-subscriber",
2722
+ "tracing-tree",
2723
+ "web-time",
2724
+ "zip",
2725
+ ]
2726
+
2727
+ [[package]]
2728
+ name = "ruff_dev"
2729
+ version = "0.0.0"
2730
+ dependencies = [
2731
+ "anyhow",
2732
+ "clap",
2733
+ "ignore",
2734
+ "imara-diff",
2735
+ "indicatif",
2736
+ "indoc",
2737
+ "itertools 0.14.0",
2738
+ "libcst",
2739
+ "pretty_assertions",
2740
+ "rayon",
2741
+ "regex",
2742
+ "ruff",
2743
+ "ruff_diagnostics",
2744
+ "ruff_formatter",
2745
+ "ruff_linter",
2746
+ "ruff_notebook",
2747
+ "ruff_python_ast",
2748
+ "ruff_python_codegen",
2749
+ "ruff_python_formatter",
2750
+ "ruff_python_parser",
2751
+ "ruff_python_trivia",
2752
+ "ruff_workspace",
2753
+ "schemars",
2754
+ "serde",
2755
+ "serde_json",
2756
+ "similar",
2757
+ "strum",
2758
+ "tempfile",
2759
+ "toml",
2760
+ "tracing",
2761
+ "tracing-indicatif",
2762
+ "tracing-subscriber",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "ruff_diagnostics"
2767
+ version = "0.0.0"
2768
+ dependencies = [
2769
+ "anyhow",
2770
+ "is-macro",
2771
+ "log",
2772
+ "ruff_text_size",
2773
+ "serde",
2774
+ ]
2775
+
2776
+ [[package]]
2777
+ name = "ruff_formatter"
2778
+ version = "0.0.0"
2779
+ dependencies = [
2780
+ "drop_bomb",
2781
+ "ruff_cache",
2782
+ "ruff_macros",
2783
+ "ruff_text_size",
2784
+ "rustc-hash 2.1.0",
2785
+ "schemars",
2786
+ "serde",
2787
+ "static_assertions",
2788
+ "tracing",
2789
+ "unicode-width 0.2.0",
2790
+ ]
2791
+
2792
+ [[package]]
2793
+ name = "ruff_graph"
2794
+ version = "0.1.0"
2795
+ dependencies = [
2796
+ "anyhow",
2797
+ "clap",
2798
+ "red_knot_python_semantic",
2799
+ "ruff_cache",
2800
+ "ruff_db",
2801
+ "ruff_linter",
2802
+ "ruff_macros",
2803
+ "ruff_python_ast",
2804
+ "ruff_python_parser",
2805
+ "salsa",
2806
+ "schemars",
2807
+ "serde",
2808
+ "zip",
2809
+ ]
2810
+
2811
+ [[package]]
2812
+ name = "ruff_index"
2813
+ version = "0.0.0"
2814
+ dependencies = [
2815
+ "ruff_macros",
2816
+ "static_assertions",
2817
+ ]
2818
+
2819
+ [[package]]
2820
+ name = "ruff_linter"
2821
+ version = "0.9.3"
2822
+ dependencies = [
2823
+ "aho-corasick",
2824
+ "anyhow",
2825
+ "bitflags 2.8.0",
2826
+ "chrono",
2827
+ "clap",
2828
+ "colored 3.0.0",
2829
+ "fern",
2830
+ "glob",
2831
+ "globset",
2832
+ "imperative",
2833
+ "insta",
2834
+ "is-macro",
2835
+ "is-wsl",
2836
+ "itertools 0.14.0",
2837
+ "libcst",
2838
+ "log",
2839
+ "memchr",
2840
+ "natord",
2841
+ "path-absolutize",
2842
+ "pathdiff",
2843
+ "pep440_rs",
2844
+ "pyproject-toml",
2845
+ "quick-junit",
2846
+ "regex",
2847
+ "ruff_annotate_snippets",
2848
+ "ruff_cache",
2849
+ "ruff_diagnostics",
2850
+ "ruff_index",
2851
+ "ruff_macros",
2852
+ "ruff_notebook",
2853
+ "ruff_python_ast",
2854
+ "ruff_python_codegen",
2855
+ "ruff_python_index",
2856
+ "ruff_python_literal",
2857
+ "ruff_python_parser",
2858
+ "ruff_python_semantic",
2859
+ "ruff_python_stdlib",
2860
+ "ruff_python_trivia",
2861
+ "ruff_source_file",
2862
+ "ruff_text_size",
2863
+ "rustc-hash 2.1.0",
2864
+ "schemars",
2865
+ "serde",
2866
+ "serde_json",
2867
+ "similar",
2868
+ "smallvec",
2869
+ "strum",
2870
+ "strum_macros",
2871
+ "test-case",
2872
+ "thiserror 2.0.11",
2873
+ "toml",
2874
+ "typed-arena",
2875
+ "unicode-normalization",
2876
+ "unicode-width 0.2.0",
2877
+ "unicode_names2",
2878
+ "url",
2879
+ ]
2880
+
2881
+ [[package]]
2882
+ name = "ruff_macros"
2883
+ version = "0.0.0"
2884
+ dependencies = [
2885
+ "itertools 0.14.0",
2886
+ "proc-macro2",
2887
+ "quote",
2888
+ "ruff_python_trivia",
2889
+ "syn 2.0.96",
2890
+ ]
2891
+
2892
+ [[package]]
2893
+ name = "ruff_notebook"
2894
+ version = "0.0.0"
2895
+ dependencies = [
2896
+ "anyhow",
2897
+ "itertools 0.14.0",
2898
+ "rand",
2899
+ "ruff_diagnostics",
2900
+ "ruff_source_file",
2901
+ "ruff_text_size",
2902
+ "serde",
2903
+ "serde_json",
2904
+ "serde_with",
2905
+ "test-case",
2906
+ "thiserror 2.0.11",
2907
+ "uuid",
2908
+ ]
2909
+
2910
+ [[package]]
2911
+ name = "ruff_python_ast"
2912
+ version = "0.0.0"
2913
+ dependencies = [
2914
+ "aho-corasick",
2915
+ "bitflags 2.8.0",
2916
+ "compact_str",
2917
+ "is-macro",
2918
+ "itertools 0.14.0",
2919
+ "memchr",
2920
+ "ruff_cache",
2921
+ "ruff_macros",
2922
+ "ruff_python_trivia",
2923
+ "ruff_source_file",
2924
+ "ruff_text_size",
2925
+ "rustc-hash 2.1.0",
2926
+ "schemars",
2927
+ "serde",
2928
+ ]
2929
+
2930
+ [[package]]
2931
+ name = "ruff_python_ast_integration_tests"
2932
+ version = "0.0.0"
2933
+ dependencies = [
2934
+ "insta",
2935
+ "ruff_python_ast",
2936
+ "ruff_python_parser",
2937
+ "ruff_python_trivia",
2938
+ "ruff_text_size",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "ruff_python_codegen"
2943
+ version = "0.0.0"
2944
+ dependencies = [
2945
+ "ruff_python_ast",
2946
+ "ruff_python_literal",
2947
+ "ruff_python_parser",
2948
+ "ruff_source_file",
2949
+ "ruff_text_size",
2950
+ ]
2951
+
2952
+ [[package]]
2953
+ name = "ruff_python_formatter"
2954
+ version = "0.0.0"
2955
+ dependencies = [
2956
+ "anyhow",
2957
+ "clap",
2958
+ "countme",
2959
+ "insta",
2960
+ "itertools 0.14.0",
2961
+ "memchr",
2962
+ "regex",
2963
+ "ruff_cache",
2964
+ "ruff_formatter",
2965
+ "ruff_macros",
2966
+ "ruff_python_ast",
2967
+ "ruff_python_parser",
2968
+ "ruff_python_trivia",
2969
+ "ruff_source_file",
2970
+ "ruff_text_size",
2971
+ "rustc-hash 2.1.0",
2972
+ "schemars",
2973
+ "serde",
2974
+ "serde_json",
2975
+ "similar",
2976
+ "smallvec",
2977
+ "static_assertions",
2978
+ "thiserror 2.0.11",
2979
+ "tracing",
2980
+ ]
2981
+
2982
+ [[package]]
2983
+ name = "ruff_python_index"
2984
+ version = "0.0.0"
2985
+ dependencies = [
2986
+ "ruff_python_ast",
2987
+ "ruff_python_parser",
2988
+ "ruff_python_trivia",
2989
+ "ruff_source_file",
2990
+ "ruff_text_size",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "ruff_python_literal"
2995
+ version = "0.0.0"
2996
+ dependencies = [
2997
+ "bitflags 2.8.0",
2998
+ "itertools 0.14.0",
2999
+ "ruff_python_ast",
3000
+ "unic-ucd-category",
3001
+ ]
3002
+
3003
+ [[package]]
3004
+ name = "ruff_python_parser"
3005
+ version = "0.0.0"
3006
+ dependencies = [
3007
+ "anyhow",
3008
+ "bitflags 2.8.0",
3009
+ "bstr",
3010
+ "compact_str",
3011
+ "insta",
3012
+ "memchr",
3013
+ "ruff_annotate_snippets",
3014
+ "ruff_python_ast",
3015
+ "ruff_python_trivia",
3016
+ "ruff_source_file",
3017
+ "ruff_text_size",
3018
+ "rustc-hash 2.1.0",
3019
+ "static_assertions",
3020
+ "unicode-ident",
3021
+ "unicode-normalization",
3022
+ "unicode_names2",
3023
+ "walkdir",
3024
+ ]
3025
+
3026
+ [[package]]
3027
+ name = "ruff_python_resolver"
3028
+ version = "0.0.0"
3029
+ dependencies = [
3030
+ "env_logger",
3031
+ "insta",
3032
+ "log",
3033
+ "tempfile",
3034
+ ]
3035
+
3036
+ [[package]]
3037
+ name = "ruff_python_semantic"
3038
+ version = "0.0.0"
3039
+ dependencies = [
3040
+ "bitflags 2.8.0",
3041
+ "is-macro",
3042
+ "ruff_cache",
3043
+ "ruff_index",
3044
+ "ruff_macros",
3045
+ "ruff_python_ast",
3046
+ "ruff_python_parser",
3047
+ "ruff_python_stdlib",
3048
+ "ruff_text_size",
3049
+ "rustc-hash 2.1.0",
3050
+ "schemars",
3051
+ "serde",
3052
+ "smallvec",
3053
+ ]
3054
+
3055
+ [[package]]
3056
+ name = "ruff_python_stdlib"
3057
+ version = "0.0.0"
3058
+ dependencies = [
3059
+ "bitflags 2.8.0",
3060
+ "unicode-ident",
3061
+ ]
3062
+
3063
+ [[package]]
3064
+ name = "ruff_python_trivia"
3065
+ version = "0.0.0"
3066
+ dependencies = [
3067
+ "itertools 0.14.0",
3068
+ "ruff_source_file",
3069
+ "ruff_text_size",
3070
+ "unicode-ident",
3071
+ ]
3072
+
3073
+ [[package]]
3074
+ name = "ruff_python_trivia_integration_tests"
3075
+ version = "0.0.0"
3076
+ dependencies = [
3077
+ "insta",
3078
+ "ruff_python_parser",
3079
+ "ruff_python_trivia",
3080
+ "ruff_text_size",
3081
+ ]
3082
+
3083
+ [[package]]
3084
+ name = "ruff_server"
3085
+ version = "0.2.2"
3086
+ dependencies = [
3087
+ "anyhow",
3088
+ "crossbeam",
3089
+ "ignore",
3090
+ "insta",
3091
+ "jod-thread",
3092
+ "libc",
3093
+ "lsp-server",
3094
+ "lsp-types",
3095
+ "regex",
3096
+ "ruff_diagnostics",
3097
+ "ruff_formatter",
3098
+ "ruff_linter",
3099
+ "ruff_notebook",
3100
+ "ruff_python_ast",
3101
+ "ruff_python_codegen",
3102
+ "ruff_python_formatter",
3103
+ "ruff_python_index",
3104
+ "ruff_python_parser",
3105
+ "ruff_source_file",
3106
+ "ruff_text_size",
3107
+ "ruff_workspace",
3108
+ "rustc-hash 2.1.0",
3109
+ "serde",
3110
+ "serde_json",
3111
+ "shellexpand",
3112
+ "thiserror 2.0.11",
3113
+ "tracing",
3114
+ "tracing-subscriber",
3115
+ ]
3116
+
3117
+ [[package]]
3118
+ name = "ruff_source_file"
3119
+ version = "0.0.0"
3120
+ dependencies = [
3121
+ "memchr",
3122
+ "ruff_text_size",
3123
+ "serde",
3124
+ ]
3125
+
3126
+ [[package]]
3127
+ name = "ruff_text_size"
3128
+ version = "0.0.0"
3129
+ dependencies = [
3130
+ "schemars",
3131
+ "serde",
3132
+ "serde_test",
3133
+ "static_assertions",
3134
+ ]
3135
+
3136
+ [[package]]
3137
+ name = "ruff_wasm"
3138
+ version = "0.9.3"
3139
+ dependencies = [
3140
+ "console_error_panic_hook",
3141
+ "console_log",
3142
+ "js-sys",
3143
+ "log",
3144
+ "ruff_formatter",
3145
+ "ruff_linter",
3146
+ "ruff_python_ast",
3147
+ "ruff_python_codegen",
3148
+ "ruff_python_formatter",
3149
+ "ruff_python_index",
3150
+ "ruff_python_parser",
3151
+ "ruff_python_trivia",
3152
+ "ruff_source_file",
3153
+ "ruff_text_size",
3154
+ "ruff_workspace",
3155
+ "serde",
3156
+ "serde-wasm-bindgen",
3157
+ "wasm-bindgen",
3158
+ "wasm-bindgen-test",
3159
+ ]
3160
+
3161
+ [[package]]
3162
+ name = "ruff_workspace"
3163
+ version = "0.0.0"
3164
+ dependencies = [
3165
+ "anyhow",
3166
+ "colored 3.0.0",
3167
+ "etcetera",
3168
+ "glob",
3169
+ "globset",
3170
+ "ignore",
3171
+ "is-macro",
3172
+ "itertools 0.14.0",
3173
+ "log",
3174
+ "matchit",
3175
+ "path-absolutize",
3176
+ "path-slash",
3177
+ "pep440_rs",
3178
+ "regex",
3179
+ "ruff_cache",
3180
+ "ruff_formatter",
3181
+ "ruff_graph",
3182
+ "ruff_linter",
3183
+ "ruff_macros",
3184
+ "ruff_python_ast",
3185
+ "ruff_python_formatter",
3186
+ "ruff_python_semantic",
3187
+ "ruff_python_stdlib",
3188
+ "ruff_source_file",
3189
+ "rustc-hash 2.1.0",
3190
+ "schemars",
3191
+ "serde",
3192
+ "shellexpand",
3193
+ "strum",
3194
+ "tempfile",
3195
+ "toml",
3196
+ ]
3197
+
3198
+ [[package]]
3199
+ name = "rust-stemmers"
3200
+ version = "1.2.0"
3201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3202
+ checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
3203
+ dependencies = [
3204
+ "serde",
3205
+ "serde_derive",
3206
+ ]
3207
+
3208
+ [[package]]
3209
+ name = "rustc-hash"
3210
+ version = "1.1.0"
3211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3212
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
3213
+
3214
+ [[package]]
3215
+ name = "rustc-hash"
3216
+ version = "2.1.0"
3217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3218
+ checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
3219
+
3220
+ [[package]]
3221
+ name = "rustix"
3222
+ version = "0.38.40"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "99e4ea3e1cdc4b559b8e5650f9c8e5998e3e5c1343b4eaf034565f32318d63c0"
3225
+ dependencies = [
3226
+ "bitflags 2.8.0",
3227
+ "errno",
3228
+ "libc",
3229
+ "linux-raw-sys",
3230
+ "windows-sys 0.52.0",
3231
+ ]
3232
+
3233
+ [[package]]
3234
+ name = "rustls"
3235
+ version = "0.23.19"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "934b404430bb06b3fae2cba809eb45a1ab1aecd64491213d7c3301b88393f8d1"
3238
+ dependencies = [
3239
+ "log",
3240
+ "once_cell",
3241
+ "ring",
3242
+ "rustls-pki-types",
3243
+ "rustls-webpki",
3244
+ "subtle",
3245
+ "zeroize",
3246
+ ]
3247
+
3248
+ [[package]]
3249
+ name = "rustls-pki-types"
3250
+ version = "1.10.0"
3251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3252
+ checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
3253
+
3254
+ [[package]]
3255
+ name = "rustls-webpki"
3256
+ version = "0.102.8"
3257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3258
+ checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
3259
+ dependencies = [
3260
+ "ring",
3261
+ "rustls-pki-types",
3262
+ "untrusted",
3263
+ ]
3264
+
3265
+ [[package]]
3266
+ name = "rustversion"
3267
+ version = "1.0.15"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "80af6f9131f277a45a3fba6ce8e2258037bb0477a67e610d3c1fe046ab31de47"
3270
+
3271
+ [[package]]
3272
+ name = "ryu"
3273
+ version = "1.0.17"
3274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3275
+ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
3276
+
3277
+ [[package]]
3278
+ name = "salsa"
3279
+ version = "0.18.0"
3280
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=88a1d7774d78f048fbd77d40abca9ebd729fd1f0#88a1d7774d78f048fbd77d40abca9ebd729fd1f0"
3281
+ dependencies = [
3282
+ "append-only-vec",
3283
+ "arc-swap",
3284
+ "crossbeam",
3285
+ "dashmap 6.1.0",
3286
+ "hashlink",
3287
+ "indexmap",
3288
+ "parking_lot",
3289
+ "rayon",
3290
+ "rustc-hash 2.1.0",
3291
+ "salsa-macro-rules",
3292
+ "salsa-macros",
3293
+ "smallvec",
3294
+ "tracing",
3295
+ ]
3296
+
3297
+ [[package]]
3298
+ name = "salsa-macro-rules"
3299
+ version = "0.1.0"
3300
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=88a1d7774d78f048fbd77d40abca9ebd729fd1f0#88a1d7774d78f048fbd77d40abca9ebd729fd1f0"
3301
+
3302
+ [[package]]
3303
+ name = "salsa-macros"
3304
+ version = "0.18.0"
3305
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=88a1d7774d78f048fbd77d40abca9ebd729fd1f0#88a1d7774d78f048fbd77d40abca9ebd729fd1f0"
3306
+ dependencies = [
3307
+ "heck",
3308
+ "proc-macro2",
3309
+ "quote",
3310
+ "syn 2.0.96",
3311
+ "synstructure",
3312
+ ]
3313
+
3314
+ [[package]]
3315
+ name = "same-file"
3316
+ version = "1.0.6"
3317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3318
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3319
+ dependencies = [
3320
+ "winapi-util",
3321
+ ]
3322
+
3323
+ [[package]]
3324
+ name = "schemars"
3325
+ version = "0.8.21"
3326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3327
+ checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92"
3328
+ dependencies = [
3329
+ "dyn-clone",
3330
+ "schemars_derive",
3331
+ "serde",
3332
+ "serde_json",
3333
+ ]
3334
+
3335
+ [[package]]
3336
+ name = "schemars_derive"
3337
+ version = "0.8.21"
3338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3339
+ checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e"
3340
+ dependencies = [
3341
+ "proc-macro2",
3342
+ "quote",
3343
+ "serde_derive_internals",
3344
+ "syn 2.0.96",
3345
+ ]
3346
+
3347
+ [[package]]
3348
+ name = "scoped-tls"
3349
+ version = "1.0.1"
3350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3351
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
3352
+
3353
+ [[package]]
3354
+ name = "scopeguard"
3355
+ version = "1.2.0"
3356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3357
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3358
+
3359
+ [[package]]
3360
+ name = "seahash"
3361
+ version = "4.1.0"
3362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3363
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
3364
+
3365
+ [[package]]
3366
+ name = "serde"
3367
+ version = "1.0.217"
3368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3369
+ checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
3370
+ dependencies = [
3371
+ "serde_derive",
3372
+ ]
3373
+
3374
+ [[package]]
3375
+ name = "serde-wasm-bindgen"
3376
+ version = "0.6.5"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
3379
+ dependencies = [
3380
+ "js-sys",
3381
+ "serde",
3382
+ "wasm-bindgen",
3383
+ ]
3384
+
3385
+ [[package]]
3386
+ name = "serde_derive"
3387
+ version = "1.0.217"
3388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3389
+ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
3390
+ dependencies = [
3391
+ "proc-macro2",
3392
+ "quote",
3393
+ "syn 2.0.96",
3394
+ ]
3395
+
3396
+ [[package]]
3397
+ name = "serde_derive_internals"
3398
+ version = "0.29.0"
3399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3400
+ checksum = "330f01ce65a3a5fe59a60c82f3c9a024b573b8a6e875bd233fe5f934e71d54e3"
3401
+ dependencies = [
3402
+ "proc-macro2",
3403
+ "quote",
3404
+ "syn 2.0.96",
3405
+ ]
3406
+
3407
+ [[package]]
3408
+ name = "serde_json"
3409
+ version = "1.0.137"
3410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3411
+ checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b"
3412
+ dependencies = [
3413
+ "itoa",
3414
+ "memchr",
3415
+ "ryu",
3416
+ "serde",
3417
+ ]
3418
+
3419
+ [[package]]
3420
+ name = "serde_repr"
3421
+ version = "0.1.19"
3422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3423
+ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
3424
+ dependencies = [
3425
+ "proc-macro2",
3426
+ "quote",
3427
+ "syn 2.0.96",
3428
+ ]
3429
+
3430
+ [[package]]
3431
+ name = "serde_spanned"
3432
+ version = "0.6.7"
3433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3434
+ checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d"
3435
+ dependencies = [
3436
+ "serde",
3437
+ ]
3438
+
3439
+ [[package]]
3440
+ name = "serde_test"
3441
+ version = "1.0.177"
3442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3443
+ checksum = "7f901ee573cab6b3060453d2d5f0bae4e6d628c23c0a962ff9b5f1d7c8d4f1ed"
3444
+ dependencies = [
3445
+ "serde",
3446
+ ]
3447
+
3448
+ [[package]]
3449
+ name = "serde_with"
3450
+ version = "3.12.0"
3451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3452
+ checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
3453
+ dependencies = [
3454
+ "serde",
3455
+ "serde_derive",
3456
+ "serde_with_macros",
3457
+ ]
3458
+
3459
+ [[package]]
3460
+ name = "serde_with_macros"
3461
+ version = "3.12.0"
3462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3463
+ checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
3464
+ dependencies = [
3465
+ "darling",
3466
+ "proc-macro2",
3467
+ "quote",
3468
+ "syn 2.0.96",
3469
+ ]
3470
+
3471
+ [[package]]
3472
+ name = "sha2"
3473
+ version = "0.10.8"
3474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3475
+ checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
3476
+ dependencies = [
3477
+ "cfg-if",
3478
+ "cpufeatures",
3479
+ "digest",
3480
+ ]
3481
+
3482
+ [[package]]
3483
+ name = "sharded-slab"
3484
+ version = "0.1.7"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3487
+ dependencies = [
3488
+ "lazy_static",
3489
+ ]
3490
+
3491
+ [[package]]
3492
+ name = "shellexpand"
3493
+ version = "3.1.0"
3494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3495
+ checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
3496
+ dependencies = [
3497
+ "dirs",
3498
+ ]
3499
+
3500
+ [[package]]
3501
+ name = "shlex"
3502
+ version = "1.3.0"
3503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3504
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3505
+
3506
+ [[package]]
3507
+ name = "similar"
3508
+ version = "2.7.0"
3509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3510
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
3511
+
3512
+ [[package]]
3513
+ name = "siphasher"
3514
+ version = "0.3.11"
3515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3516
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
3517
+
3518
+ [[package]]
3519
+ name = "smallvec"
3520
+ version = "1.13.2"
3521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3522
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
3523
+
3524
+ [[package]]
3525
+ name = "snapbox"
3526
+ version = "0.6.21"
3527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3528
+ checksum = "96dcfc4581e3355d70ac2ee14cfdf81dce3d85c85f1ed9e2c1d3013f53b3436b"
3529
+ dependencies = [
3530
+ "anstream",
3531
+ "anstyle",
3532
+ "anstyle-svg",
3533
+ "escargot",
3534
+ "libc",
3535
+ "normalize-line-endings",
3536
+ "os_pipe",
3537
+ "serde_json",
3538
+ "similar",
3539
+ "snapbox-macros",
3540
+ "wait-timeout",
3541
+ "windows-sys 0.59.0",
3542
+ ]
3543
+
3544
+ [[package]]
3545
+ name = "snapbox-macros"
3546
+ version = "0.3.10"
3547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3548
+ checksum = "16569f53ca23a41bb6f62e0a5084aa1661f4814a67fa33696a79073e03a664af"
3549
+ dependencies = [
3550
+ "anstream",
3551
+ ]
3552
+
3553
+ [[package]]
3554
+ name = "spin"
3555
+ version = "0.9.8"
3556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3557
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3558
+
3559
+ [[package]]
3560
+ name = "stable_deref_trait"
3561
+ version = "1.2.0"
3562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3563
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3564
+
3565
+ [[package]]
3566
+ name = "static_assertions"
3567
+ version = "1.1.0"
3568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3569
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3570
+
3571
+ [[package]]
3572
+ name = "strip-ansi-escapes"
3573
+ version = "0.2.0"
3574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3575
+ checksum = "55ff8ef943b384c414f54aefa961dd2bd853add74ec75e7ac74cf91dba62bcfa"
3576
+ dependencies = [
3577
+ "vte",
3578
+ ]
3579
+
3580
+ [[package]]
3581
+ name = "strsim"
3582
+ version = "0.10.0"
3583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3584
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
3585
+
3586
+ [[package]]
3587
+ name = "strsim"
3588
+ version = "0.11.1"
3589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3591
+
3592
+ [[package]]
3593
+ name = "strum"
3594
+ version = "0.26.3"
3595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3596
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
3597
+ dependencies = [
3598
+ "strum_macros",
3599
+ ]
3600
+
3601
+ [[package]]
3602
+ name = "strum_macros"
3603
+ version = "0.26.4"
3604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3605
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
3606
+ dependencies = [
3607
+ "heck",
3608
+ "proc-macro2",
3609
+ "quote",
3610
+ "rustversion",
3611
+ "syn 2.0.96",
3612
+ ]
3613
+
3614
+ [[package]]
3615
+ name = "subtle"
3616
+ version = "2.5.0"
3617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3618
+ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
3619
+
3620
+ [[package]]
3621
+ name = "syn"
3622
+ version = "1.0.109"
3623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3624
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3625
+ dependencies = [
3626
+ "proc-macro2",
3627
+ "quote",
3628
+ "unicode-ident",
3629
+ ]
3630
+
3631
+ [[package]]
3632
+ name = "syn"
3633
+ version = "2.0.96"
3634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3635
+ checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
3636
+ dependencies = [
3637
+ "proc-macro2",
3638
+ "quote",
3639
+ "unicode-ident",
3640
+ ]
3641
+
3642
+ [[package]]
3643
+ name = "synstructure"
3644
+ version = "0.13.1"
3645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3646
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3647
+ dependencies = [
3648
+ "proc-macro2",
3649
+ "quote",
3650
+ "syn 2.0.96",
3651
+ ]
3652
+
3653
+ [[package]]
3654
+ name = "tempfile"
3655
+ version = "3.14.0"
3656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3657
+ checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
3658
+ dependencies = [
3659
+ "cfg-if",
3660
+ "fastrand",
3661
+ "once_cell",
3662
+ "rustix",
3663
+ "windows-sys 0.59.0",
3664
+ ]
3665
+
3666
+ [[package]]
3667
+ name = "termcolor"
3668
+ version = "1.4.1"
3669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3670
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
3671
+ dependencies = [
3672
+ "winapi-util",
3673
+ ]
3674
+
3675
+ [[package]]
3676
+ name = "terminal_size"
3677
+ version = "0.4.0"
3678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3679
+ checksum = "4f599bd7ca042cfdf8f4512b277c02ba102247820f9d9d4a9f521f496751a6ef"
3680
+ dependencies = [
3681
+ "rustix",
3682
+ "windows-sys 0.59.0",
3683
+ ]
3684
+
3685
+ [[package]]
3686
+ name = "terminfo"
3687
+ version = "0.9.0"
3688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3689
+ checksum = "d4ea810f0692f9f51b382fff5893887bb4580f5fa246fde546e0b13e7fcee662"
3690
+ dependencies = [
3691
+ "fnv",
3692
+ "nom",
3693
+ "phf",
3694
+ "phf_codegen",
3695
+ ]
3696
+
3697
+ [[package]]
3698
+ name = "termtree"
3699
+ version = "0.4.1"
3700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3701
+ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
3702
+
3703
+ [[package]]
3704
+ name = "test-case"
3705
+ version = "3.3.1"
3706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3707
+ checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8"
3708
+ dependencies = [
3709
+ "test-case-macros",
3710
+ ]
3711
+
3712
+ [[package]]
3713
+ name = "test-case-core"
3714
+ version = "3.3.1"
3715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3716
+ checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
3717
+ dependencies = [
3718
+ "cfg-if",
3719
+ "proc-macro2",
3720
+ "quote",
3721
+ "syn 2.0.96",
3722
+ ]
3723
+
3724
+ [[package]]
3725
+ name = "test-case-macros"
3726
+ version = "3.3.1"
3727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3728
+ checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
3729
+ dependencies = [
3730
+ "proc-macro2",
3731
+ "quote",
3732
+ "syn 2.0.96",
3733
+ "test-case-core",
3734
+ ]
3735
+
3736
+ [[package]]
3737
+ name = "thiserror"
3738
+ version = "1.0.67"
3739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3740
+ checksum = "3b3c6efbfc763e64eb85c11c25320f0737cb7364c4b6336db90aa9ebe27a0bbd"
3741
+ dependencies = [
3742
+ "thiserror-impl 1.0.67",
3743
+ ]
3744
+
3745
+ [[package]]
3746
+ name = "thiserror"
3747
+ version = "2.0.11"
3748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3749
+ checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
3750
+ dependencies = [
3751
+ "thiserror-impl 2.0.11",
3752
+ ]
3753
+
3754
+ [[package]]
3755
+ name = "thiserror-impl"
3756
+ version = "1.0.67"
3757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3758
+ checksum = "b607164372e89797d78b8e23a6d67d5d1038c1c65efd52e1389ef8b77caba2a6"
3759
+ dependencies = [
3760
+ "proc-macro2",
3761
+ "quote",
3762
+ "syn 2.0.96",
3763
+ ]
3764
+
3765
+ [[package]]
3766
+ name = "thiserror-impl"
3767
+ version = "2.0.11"
3768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3769
+ checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
3770
+ dependencies = [
3771
+ "proc-macro2",
3772
+ "quote",
3773
+ "syn 2.0.96",
3774
+ ]
3775
+
3776
+ [[package]]
3777
+ name = "thread_local"
3778
+ version = "1.1.8"
3779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3780
+ checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
3781
+ dependencies = [
3782
+ "cfg-if",
3783
+ "once_cell",
3784
+ ]
3785
+
3786
+ [[package]]
3787
+ name = "threadpool"
3788
+ version = "1.8.1"
3789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3790
+ checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
3791
+ dependencies = [
3792
+ "num_cpus",
3793
+ ]
3794
+
3795
+ [[package]]
3796
+ name = "tikv-jemalloc-sys"
3797
+ version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
3798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3799
+ checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d"
3800
+ dependencies = [
3801
+ "cc",
3802
+ "libc",
3803
+ ]
3804
+
3805
+ [[package]]
3806
+ name = "tikv-jemallocator"
3807
+ version = "0.6.0"
3808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3809
+ checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865"
3810
+ dependencies = [
3811
+ "libc",
3812
+ "tikv-jemalloc-sys",
3813
+ ]
3814
+
3815
+ [[package]]
3816
+ name = "tinystr"
3817
+ version = "0.7.6"
3818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3819
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3820
+ dependencies = [
3821
+ "displaydoc",
3822
+ "zerovec",
3823
+ ]
3824
+
3825
+ [[package]]
3826
+ name = "tinytemplate"
3827
+ version = "1.2.1"
3828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3829
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3830
+ dependencies = [
3831
+ "serde",
3832
+ "serde_json",
3833
+ ]
3834
+
3835
+ [[package]]
3836
+ name = "tinyvec"
3837
+ version = "1.6.0"
3838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3839
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
3840
+ dependencies = [
3841
+ "tinyvec_macros",
3842
+ ]
3843
+
3844
+ [[package]]
3845
+ name = "tinyvec_macros"
3846
+ version = "0.1.1"
3847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3848
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3849
+
3850
+ [[package]]
3851
+ name = "toml"
3852
+ version = "0.8.19"
3853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3854
+ checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
3855
+ dependencies = [
3856
+ "serde",
3857
+ "serde_spanned",
3858
+ "toml_datetime",
3859
+ "toml_edit",
3860
+ ]
3861
+
3862
+ [[package]]
3863
+ name = "toml_datetime"
3864
+ version = "0.6.8"
3865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3866
+ checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
3867
+ dependencies = [
3868
+ "serde",
3869
+ ]
3870
+
3871
+ [[package]]
3872
+ name = "toml_edit"
3873
+ version = "0.22.20"
3874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3875
+ checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d"
3876
+ dependencies = [
3877
+ "indexmap",
3878
+ "serde",
3879
+ "serde_spanned",
3880
+ "toml_datetime",
3881
+ "winnow",
3882
+ ]
3883
+
3884
+ [[package]]
3885
+ name = "tracing"
3886
+ version = "0.1.41"
3887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3888
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3889
+ dependencies = [
3890
+ "log",
3891
+ "pin-project-lite",
3892
+ "tracing-attributes",
3893
+ "tracing-core",
3894
+ ]
3895
+
3896
+ [[package]]
3897
+ name = "tracing-attributes"
3898
+ version = "0.1.28"
3899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3900
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3901
+ dependencies = [
3902
+ "proc-macro2",
3903
+ "quote",
3904
+ "syn 2.0.96",
3905
+ ]
3906
+
3907
+ [[package]]
3908
+ name = "tracing-core"
3909
+ version = "0.1.33"
3910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3911
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3912
+ dependencies = [
3913
+ "once_cell",
3914
+ "valuable",
3915
+ ]
3916
+
3917
+ [[package]]
3918
+ name = "tracing-flame"
3919
+ version = "0.2.0"
3920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3921
+ checksum = "0bae117ee14789185e129aaee5d93750abe67fdc5a9a62650452bfe4e122a3a9"
3922
+ dependencies = [
3923
+ "lazy_static",
3924
+ "tracing",
3925
+ "tracing-subscriber",
3926
+ ]
3927
+
3928
+ [[package]]
3929
+ name = "tracing-indicatif"
3930
+ version = "0.3.9"
3931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3932
+ checksum = "8201ca430e0cd893ef978226fd3516c06d9c494181c8bf4e5b32e30ed4b40aa1"
3933
+ dependencies = [
3934
+ "indicatif",
3935
+ "tracing",
3936
+ "tracing-core",
3937
+ "tracing-subscriber",
3938
+ ]
3939
+
3940
+ [[package]]
3941
+ name = "tracing-log"
3942
+ version = "0.2.0"
3943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3944
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3945
+ dependencies = [
3946
+ "log",
3947
+ "once_cell",
3948
+ "tracing-core",
3949
+ ]
3950
+
3951
+ [[package]]
3952
+ name = "tracing-subscriber"
3953
+ version = "0.3.19"
3954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3955
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
3956
+ dependencies = [
3957
+ "matchers",
3958
+ "nu-ansi-term 0.46.0",
3959
+ "once_cell",
3960
+ "regex",
3961
+ "sharded-slab",
3962
+ "smallvec",
3963
+ "thread_local",
3964
+ "tracing",
3965
+ "tracing-core",
3966
+ "tracing-log",
3967
+ ]
3968
+
3969
+ [[package]]
3970
+ name = "tracing-tree"
3971
+ version = "0.4.0"
3972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3973
+ checksum = "f459ca79f1b0d5f71c54ddfde6debfc59c8b6eeb46808ae492077f739dc7b49c"
3974
+ dependencies = [
3975
+ "nu-ansi-term 0.50.1",
3976
+ "tracing-core",
3977
+ "tracing-log",
3978
+ "tracing-subscriber",
3979
+ ]
3980
+
3981
+ [[package]]
3982
+ name = "tryfn"
3983
+ version = "0.2.3"
3984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3985
+ checksum = "5fe242ee9e646acec9ab73a5c540e8543ed1b107f0ce42be831e0775d423c396"
3986
+ dependencies = [
3987
+ "ignore",
3988
+ "libtest-mimic",
3989
+ "snapbox",
3990
+ ]
3991
+
3992
+ [[package]]
3993
+ name = "typed-arena"
3994
+ version = "2.0.2"
3995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3996
+ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
3997
+
3998
+ [[package]]
3999
+ name = "typenum"
4000
+ version = "1.17.0"
4001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4002
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
4003
+
4004
+ [[package]]
4005
+ name = "ucd-trie"
4006
+ version = "0.1.6"
4007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4008
+ checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
4009
+
4010
+ [[package]]
4011
+ name = "unic-char-property"
4012
+ version = "0.9.0"
4013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4014
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
4015
+ dependencies = [
4016
+ "unic-char-range",
4017
+ ]
4018
+
4019
+ [[package]]
4020
+ name = "unic-char-range"
4021
+ version = "0.9.0"
4022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4023
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
4024
+
4025
+ [[package]]
4026
+ name = "unic-common"
4027
+ version = "0.9.0"
4028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4029
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
4030
+
4031
+ [[package]]
4032
+ name = "unic-ucd-category"
4033
+ version = "0.9.0"
4034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4035
+ checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0"
4036
+ dependencies = [
4037
+ "matches",
4038
+ "unic-char-property",
4039
+ "unic-char-range",
4040
+ "unic-ucd-version",
4041
+ ]
4042
+
4043
+ [[package]]
4044
+ name = "unic-ucd-version"
4045
+ version = "0.9.0"
4046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4047
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
4048
+ dependencies = [
4049
+ "unic-common",
4050
+ ]
4051
+
4052
+ [[package]]
4053
+ name = "unicode-ident"
4054
+ version = "1.0.14"
4055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4056
+ checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
4057
+
4058
+ [[package]]
4059
+ name = "unicode-normalization"
4060
+ version = "0.1.24"
4061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4062
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
4063
+ dependencies = [
4064
+ "tinyvec",
4065
+ ]
4066
+
4067
+ [[package]]
4068
+ name = "unicode-width"
4069
+ version = "0.1.13"
4070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4071
+ checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
4072
+
4073
+ [[package]]
4074
+ name = "unicode-width"
4075
+ version = "0.2.0"
4076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4077
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
4078
+
4079
+ [[package]]
4080
+ name = "unicode_names2"
4081
+ version = "1.3.0"
4082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4083
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
4084
+ dependencies = [
4085
+ "phf",
4086
+ "unicode_names2_generator",
4087
+ ]
4088
+
4089
+ [[package]]
4090
+ name = "unicode_names2_generator"
4091
+ version = "1.3.0"
4092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4093
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
4094
+ dependencies = [
4095
+ "getopts",
4096
+ "log",
4097
+ "phf_codegen",
4098
+ "rand",
4099
+ ]
4100
+
4101
+ [[package]]
4102
+ name = "unscanny"
4103
+ version = "0.1.0"
4104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4105
+ checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47"
4106
+
4107
+ [[package]]
4108
+ name = "untrusted"
4109
+ version = "0.9.0"
4110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4111
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4112
+
4113
+ [[package]]
4114
+ name = "ureq"
4115
+ version = "2.12.1"
4116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4117
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
4118
+ dependencies = [
4119
+ "base64 0.22.0",
4120
+ "flate2",
4121
+ "log",
4122
+ "once_cell",
4123
+ "rustls",
4124
+ "rustls-pki-types",
4125
+ "url",
4126
+ "webpki-roots",
4127
+ ]
4128
+
4129
+ [[package]]
4130
+ name = "url"
4131
+ version = "2.5.4"
4132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4133
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
4134
+ dependencies = [
4135
+ "form_urlencoded",
4136
+ "idna",
4137
+ "percent-encoding",
4138
+ "serde",
4139
+ ]
4140
+
4141
+ [[package]]
4142
+ name = "urlencoding"
4143
+ version = "2.1.3"
4144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4145
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
4146
+
4147
+ [[package]]
4148
+ name = "utf16_iter"
4149
+ version = "1.0.5"
4150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4151
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
4152
+
4153
+ [[package]]
4154
+ name = "utf8-width"
4155
+ version = "0.1.7"
4156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4157
+ checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
4158
+
4159
+ [[package]]
4160
+ name = "utf8_iter"
4161
+ version = "1.0.4"
4162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4163
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4164
+
4165
+ [[package]]
4166
+ name = "utf8parse"
4167
+ version = "0.2.1"
4168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4169
+ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
4170
+
4171
+ [[package]]
4172
+ name = "uuid"
4173
+ version = "1.12.0"
4174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4175
+ checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4"
4176
+ dependencies = [
4177
+ "getrandom",
4178
+ "rand",
4179
+ "uuid-macro-internal",
4180
+ "wasm-bindgen",
4181
+ ]
4182
+
4183
+ [[package]]
4184
+ name = "uuid-macro-internal"
4185
+ version = "1.12.0"
4186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4187
+ checksum = "144b419c512fdd5eaa4c2998813e32aaab2b257746ee038de93985a99635501d"
4188
+ dependencies = [
4189
+ "proc-macro2",
4190
+ "quote",
4191
+ "syn 2.0.96",
4192
+ ]
4193
+
4194
+ [[package]]
4195
+ name = "valuable"
4196
+ version = "0.1.0"
4197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4198
+ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
4199
+
4200
+ [[package]]
4201
+ name = "version-ranges"
4202
+ version = "0.1.1"
4203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4204
+ checksum = "f8d079415ceb2be83fc355adbadafe401307d5c309c7e6ade6638e6f9f42f42d"
4205
+ dependencies = [
4206
+ "smallvec",
4207
+ ]
4208
+
4209
+ [[package]]
4210
+ name = "version_check"
4211
+ version = "0.9.4"
4212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4213
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
4214
+
4215
+ [[package]]
4216
+ name = "vt100"
4217
+ version = "0.15.2"
4218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4219
+ checksum = "84cd863bf0db7e392ba3bd04994be3473491b31e66340672af5d11943c6274de"
4220
+ dependencies = [
4221
+ "itoa",
4222
+ "log",
4223
+ "unicode-width 0.1.13",
4224
+ "vte",
4225
+ ]
4226
+
4227
+ [[package]]
4228
+ name = "vte"
4229
+ version = "0.11.1"
4230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4231
+ checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197"
4232
+ dependencies = [
4233
+ "arrayvec",
4234
+ "utf8parse",
4235
+ "vte_generate_state_changes",
4236
+ ]
4237
+
4238
+ [[package]]
4239
+ name = "vte_generate_state_changes"
4240
+ version = "0.1.1"
4241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4242
+ checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff"
4243
+ dependencies = [
4244
+ "proc-macro2",
4245
+ "quote",
4246
+ ]
4247
+
4248
+ [[package]]
4249
+ name = "wait-timeout"
4250
+ version = "0.2.0"
4251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4252
+ checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
4253
+ dependencies = [
4254
+ "libc",
4255
+ ]
4256
+
4257
+ [[package]]
4258
+ name = "walkdir"
4259
+ version = "2.5.0"
4260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4261
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4262
+ dependencies = [
4263
+ "same-file",
4264
+ "winapi-util",
4265
+ ]
4266
+
4267
+ [[package]]
4268
+ name = "wasi"
4269
+ version = "0.11.0+wasi-snapshot-preview1"
4270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4271
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
4272
+
4273
+ [[package]]
4274
+ name = "wasm-bindgen"
4275
+ version = "0.2.97"
4276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4277
+ checksum = "d15e63b4482863c109d70a7b8706c1e364eb6ea449b201a76c5b89cedcec2d5c"
4278
+ dependencies = [
4279
+ "cfg-if",
4280
+ "once_cell",
4281
+ "wasm-bindgen-macro",
4282
+ ]
4283
+
4284
+ [[package]]
4285
+ name = "wasm-bindgen-backend"
4286
+ version = "0.2.97"
4287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4288
+ checksum = "8d36ef12e3aaca16ddd3f67922bc63e48e953f126de60bd33ccc0101ef9998cd"
4289
+ dependencies = [
4290
+ "bumpalo",
4291
+ "log",
4292
+ "once_cell",
4293
+ "proc-macro2",
4294
+ "quote",
4295
+ "syn 2.0.96",
4296
+ "wasm-bindgen-shared",
4297
+ ]
4298
+
4299
+ [[package]]
4300
+ name = "wasm-bindgen-futures"
4301
+ version = "0.4.47"
4302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4303
+ checksum = "9dfaf8f50e5f293737ee323940c7d8b08a66a95a419223d9f41610ca08b0833d"
4304
+ dependencies = [
4305
+ "cfg-if",
4306
+ "js-sys",
4307
+ "once_cell",
4308
+ "wasm-bindgen",
4309
+ "web-sys",
4310
+ ]
4311
+
4312
+ [[package]]
4313
+ name = "wasm-bindgen-macro"
4314
+ version = "0.2.97"
4315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4316
+ checksum = "705440e08b42d3e4b36de7d66c944be628d579796b8090bfa3471478a2260051"
4317
+ dependencies = [
4318
+ "quote",
4319
+ "wasm-bindgen-macro-support",
4320
+ ]
4321
+
4322
+ [[package]]
4323
+ name = "wasm-bindgen-macro-support"
4324
+ version = "0.2.97"
4325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4326
+ checksum = "98c9ae5a76e46f4deecd0f0255cc223cfa18dc9b261213b8aa0c7b36f61b3f1d"
4327
+ dependencies = [
4328
+ "proc-macro2",
4329
+ "quote",
4330
+ "syn 2.0.96",
4331
+ "wasm-bindgen-backend",
4332
+ "wasm-bindgen-shared",
4333
+ ]
4334
+
4335
+ [[package]]
4336
+ name = "wasm-bindgen-shared"
4337
+ version = "0.2.97"
4338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4339
+ checksum = "6ee99da9c5ba11bd675621338ef6fa52296b76b83305e9b6e5c77d4c286d6d49"
4340
+
4341
+ [[package]]
4342
+ name = "wasm-bindgen-test"
4343
+ version = "0.3.47"
4344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4345
+ checksum = "3d919bb60ebcecb9160afee6c71b43a58a4f0517a2de0054cd050d02cec08201"
4346
+ dependencies = [
4347
+ "js-sys",
4348
+ "minicov",
4349
+ "once_cell",
4350
+ "scoped-tls",
4351
+ "wasm-bindgen",
4352
+ "wasm-bindgen-futures",
4353
+ "wasm-bindgen-test-macro",
4354
+ ]
4355
+
4356
+ [[package]]
4357
+ name = "wasm-bindgen-test-macro"
4358
+ version = "0.3.47"
4359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4360
+ checksum = "222ebde6ea87fbfa6bdd2e9f1fd8a91d60aee5db68792632176c4e16a74fc7d8"
4361
+ dependencies = [
4362
+ "proc-macro2",
4363
+ "quote",
4364
+ "syn 2.0.96",
4365
+ ]
4366
+
4367
+ [[package]]
4368
+ name = "web-sys"
4369
+ version = "0.3.74"
4370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4371
+ checksum = "a98bc3c33f0fe7e59ad7cd041b89034fa82a7c2d4365ca538dda6cdaf513863c"
4372
+ dependencies = [
4373
+ "js-sys",
4374
+ "wasm-bindgen",
4375
+ ]
4376
+
4377
+ [[package]]
4378
+ name = "web-time"
4379
+ version = "1.1.0"
4380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4381
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4382
+ dependencies = [
4383
+ "js-sys",
4384
+ "wasm-bindgen",
4385
+ ]
4386
+
4387
+ [[package]]
4388
+ name = "webpki-roots"
4389
+ version = "0.26.1"
4390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4391
+ checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009"
4392
+ dependencies = [
4393
+ "rustls-pki-types",
4394
+ ]
4395
+
4396
+ [[package]]
4397
+ name = "which"
4398
+ version = "7.0.1"
4399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4400
+ checksum = "fb4a9e33648339dc1642b0e36e21b3385e6148e289226f657c809dee59df5028"
4401
+ dependencies = [
4402
+ "either",
4403
+ "env_home",
4404
+ "rustix",
4405
+ "winsafe",
4406
+ ]
4407
+
4408
+ [[package]]
4409
+ name = "wild"
4410
+ version = "2.2.1"
4411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4412
+ checksum = "a3131afc8c575281e1e80f36ed6a092aa502c08b18ed7524e86fbbb12bb410e1"
4413
+ dependencies = [
4414
+ "glob",
4415
+ ]
4416
+
4417
+ [[package]]
4418
+ name = "winapi"
4419
+ version = "0.3.9"
4420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4421
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4422
+ dependencies = [
4423
+ "winapi-i686-pc-windows-gnu",
4424
+ "winapi-x86_64-pc-windows-gnu",
4425
+ ]
4426
+
4427
+ [[package]]
4428
+ name = "winapi-i686-pc-windows-gnu"
4429
+ version = "0.4.0"
4430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4431
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4432
+
4433
+ [[package]]
4434
+ name = "winapi-util"
4435
+ version = "0.1.8"
4436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4437
+ checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
4438
+ dependencies = [
4439
+ "windows-sys 0.52.0",
4440
+ ]
4441
+
4442
+ [[package]]
4443
+ name = "winapi-x86_64-pc-windows-gnu"
4444
+ version = "0.4.0"
4445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4446
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4447
+
4448
+ [[package]]
4449
+ name = "windows-core"
4450
+ version = "0.52.0"
4451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4452
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
4453
+ dependencies = [
4454
+ "windows-targets 0.52.6",
4455
+ ]
4456
+
4457
+ [[package]]
4458
+ name = "windows-sys"
4459
+ version = "0.48.0"
4460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4461
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4462
+ dependencies = [
4463
+ "windows-targets 0.48.5",
4464
+ ]
4465
+
4466
+ [[package]]
4467
+ name = "windows-sys"
4468
+ version = "0.52.0"
4469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4470
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4471
+ dependencies = [
4472
+ "windows-targets 0.52.6",
4473
+ ]
4474
+
4475
+ [[package]]
4476
+ name = "windows-sys"
4477
+ version = "0.59.0"
4478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4479
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4480
+ dependencies = [
4481
+ "windows-targets 0.52.6",
4482
+ ]
4483
+
4484
+ [[package]]
4485
+ name = "windows-targets"
4486
+ version = "0.48.5"
4487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4488
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4489
+ dependencies = [
4490
+ "windows_aarch64_gnullvm 0.48.5",
4491
+ "windows_aarch64_msvc 0.48.5",
4492
+ "windows_i686_gnu 0.48.5",
4493
+ "windows_i686_msvc 0.48.5",
4494
+ "windows_x86_64_gnu 0.48.5",
4495
+ "windows_x86_64_gnullvm 0.48.5",
4496
+ "windows_x86_64_msvc 0.48.5",
4497
+ ]
4498
+
4499
+ [[package]]
4500
+ name = "windows-targets"
4501
+ version = "0.52.6"
4502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4503
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4504
+ dependencies = [
4505
+ "windows_aarch64_gnullvm 0.52.6",
4506
+ "windows_aarch64_msvc 0.52.6",
4507
+ "windows_i686_gnu 0.52.6",
4508
+ "windows_i686_gnullvm",
4509
+ "windows_i686_msvc 0.52.6",
4510
+ "windows_x86_64_gnu 0.52.6",
4511
+ "windows_x86_64_gnullvm 0.52.6",
4512
+ "windows_x86_64_msvc 0.52.6",
4513
+ ]
4514
+
4515
+ [[package]]
4516
+ name = "windows_aarch64_gnullvm"
4517
+ version = "0.48.5"
4518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4519
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4520
+
4521
+ [[package]]
4522
+ name = "windows_aarch64_gnullvm"
4523
+ version = "0.52.6"
4524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4525
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4526
+
4527
+ [[package]]
4528
+ name = "windows_aarch64_msvc"
4529
+ version = "0.48.5"
4530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4531
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4532
+
4533
+ [[package]]
4534
+ name = "windows_aarch64_msvc"
4535
+ version = "0.52.6"
4536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4537
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4538
+
4539
+ [[package]]
4540
+ name = "windows_i686_gnu"
4541
+ version = "0.48.5"
4542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4543
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4544
+
4545
+ [[package]]
4546
+ name = "windows_i686_gnu"
4547
+ version = "0.52.6"
4548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4549
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4550
+
4551
+ [[package]]
4552
+ name = "windows_i686_gnullvm"
4553
+ version = "0.52.6"
4554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4555
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4556
+
4557
+ [[package]]
4558
+ name = "windows_i686_msvc"
4559
+ version = "0.48.5"
4560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4561
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4562
+
4563
+ [[package]]
4564
+ name = "windows_i686_msvc"
4565
+ version = "0.52.6"
4566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4567
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4568
+
4569
+ [[package]]
4570
+ name = "windows_x86_64_gnu"
4571
+ version = "0.48.5"
4572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4573
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4574
+
4575
+ [[package]]
4576
+ name = "windows_x86_64_gnu"
4577
+ version = "0.52.6"
4578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4579
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4580
+
4581
+ [[package]]
4582
+ name = "windows_x86_64_gnullvm"
4583
+ version = "0.48.5"
4584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4585
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4586
+
4587
+ [[package]]
4588
+ name = "windows_x86_64_gnullvm"
4589
+ version = "0.52.6"
4590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4591
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4592
+
4593
+ [[package]]
4594
+ name = "windows_x86_64_msvc"
4595
+ version = "0.48.5"
4596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4597
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4598
+
4599
+ [[package]]
4600
+ name = "windows_x86_64_msvc"
4601
+ version = "0.52.6"
4602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4603
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4604
+
4605
+ [[package]]
4606
+ name = "winnow"
4607
+ version = "0.6.18"
4608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4609
+ checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f"
4610
+ dependencies = [
4611
+ "memchr",
4612
+ ]
4613
+
4614
+ [[package]]
4615
+ name = "winsafe"
4616
+ version = "0.0.19"
4617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4618
+ checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
4619
+
4620
+ [[package]]
4621
+ name = "write16"
4622
+ version = "1.0.0"
4623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4624
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4625
+
4626
+ [[package]]
4627
+ name = "writeable"
4628
+ version = "0.5.5"
4629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4630
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4631
+
4632
+ [[package]]
4633
+ name = "yansi"
4634
+ version = "1.0.1"
4635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4636
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4637
+
4638
+ [[package]]
4639
+ name = "yoke"
4640
+ version = "0.7.4"
4641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4642
+ checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5"
4643
+ dependencies = [
4644
+ "serde",
4645
+ "stable_deref_trait",
4646
+ "yoke-derive",
4647
+ "zerofrom",
4648
+ ]
4649
+
4650
+ [[package]]
4651
+ name = "yoke-derive"
4652
+ version = "0.7.4"
4653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4654
+ checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95"
4655
+ dependencies = [
4656
+ "proc-macro2",
4657
+ "quote",
4658
+ "syn 2.0.96",
4659
+ "synstructure",
4660
+ ]
4661
+
4662
+ [[package]]
4663
+ name = "zerocopy"
4664
+ version = "0.7.32"
4665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4666
+ checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
4667
+ dependencies = [
4668
+ "zerocopy-derive",
4669
+ ]
4670
+
4671
+ [[package]]
4672
+ name = "zerocopy-derive"
4673
+ version = "0.7.32"
4674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4675
+ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
4676
+ dependencies = [
4677
+ "proc-macro2",
4678
+ "quote",
4679
+ "syn 2.0.96",
4680
+ ]
4681
+
4682
+ [[package]]
4683
+ name = "zerofrom"
4684
+ version = "0.1.4"
4685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4686
+ checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55"
4687
+ dependencies = [
4688
+ "zerofrom-derive",
4689
+ ]
4690
+
4691
+ [[package]]
4692
+ name = "zerofrom-derive"
4693
+ version = "0.1.4"
4694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4695
+ checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5"
4696
+ dependencies = [
4697
+ "proc-macro2",
4698
+ "quote",
4699
+ "syn 2.0.96",
4700
+ "synstructure",
4701
+ ]
4702
+
4703
+ [[package]]
4704
+ name = "zeroize"
4705
+ version = "1.7.0"
4706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4707
+ checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
4708
+
4709
+ [[package]]
4710
+ name = "zerovec"
4711
+ version = "0.10.4"
4712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4713
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4714
+ dependencies = [
4715
+ "yoke",
4716
+ "zerofrom",
4717
+ "zerovec-derive",
4718
+ ]
4719
+
4720
+ [[package]]
4721
+ name = "zerovec-derive"
4722
+ version = "0.10.3"
4723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4724
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4725
+ dependencies = [
4726
+ "proc-macro2",
4727
+ "quote",
4728
+ "syn 2.0.96",
4729
+ ]
4730
+
4731
+ [[package]]
4732
+ name = "zip"
4733
+ version = "0.6.6"
4734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4735
+ checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
4736
+ dependencies = [
4737
+ "byteorder",
4738
+ "crc32fast",
4739
+ "crossbeam-utils",
4740
+ "flate2",
4741
+ "zstd",
4742
+ ]
4743
+
4744
+ [[package]]
4745
+ name = "zstd"
4746
+ version = "0.11.2+zstd.1.5.2"
4747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4748
+ checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
4749
+ dependencies = [
4750
+ "zstd-safe",
4751
+ ]
4752
+
4753
+ [[package]]
4754
+ name = "zstd-safe"
4755
+ version = "5.0.2+zstd.1.5.2"
4756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4757
+ checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
4758
+ dependencies = [
4759
+ "libc",
4760
+ "zstd-sys",
4761
+ ]
4762
+
4763
+ [[package]]
4764
+ name = "zstd-sys"
4765
+ version = "2.0.11+zstd.1.5.6"
4766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4767
+ checksum = "75652c55c0b6f3e6f12eb786fe1bc960396bf05a1eb3bf1f3691c3610ac2e6d4"
4768
+ dependencies = [
4769
+ "cc",
4770
+ "pkg-config",
4771
+ ]