ruff 0.9.2__tar.gz → 0.9.4__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 (4549) hide show
  1. ruff-0.9.4/Cargo.lock +4792 -0
  2. ruff-0.9.4/Cargo.toml +314 -0
  3. ruff-0.9.4/PKG-INFO +579 -0
  4. ruff-0.9.4/README.md +545 -0
  5. ruff-0.9.4/crates/red_knot_python_semantic/mdtest.py +220 -0
  6. ruff-0.9.4/crates/red_knot_python_semantic/mdtest.py.lock +141 -0
  7. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/annotations/deferred.md +44 -0
  8. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/annotations/literal.md +153 -0
  9. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/annotations/literal_string.md +150 -0
  10. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/attributes.md +656 -0
  11. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/binary/booleans.md +93 -0
  12. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/binary/instances.md +428 -0
  13. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/boundness_declaredness/public.md +269 -0
  14. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/call/callable_instance.md +101 -0
  15. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/comprehensions/basic.md +151 -0
  16. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/comprehensions/invalid_syntax.md +43 -0
  17. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/directives/assert_type.md +138 -0
  18. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/expression/attribute.md +34 -0
  19. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/expression/boolean.md +101 -0
  20. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/expression/len.md +218 -0
  21. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/generics.md +81 -0
  22. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/import/builtins.md +70 -0
  23. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/import/conditional.md +123 -0
  24. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/import/conflicts.md +75 -0
  25. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/import/invalid_syntax.md +31 -0
  26. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/import/relative.md +164 -0
  27. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/literal/f_string.md +32 -0
  28. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/loops/for.md +267 -0
  29. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/mdtest_custom_typeshed.md +95 -0
  30. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/mro.md +408 -0
  31. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/narrow/isinstance.md +218 -0
  32. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/narrow/issubclass.md +276 -0
  33. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/narrow/type.md +120 -0
  34. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/pep695_type_aliases.md +95 -0
  35. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/scopes/builtin.md +32 -0
  36. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/scopes/moduletype_attrs.md +136 -0
  37. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/scopes/nonlocal.md +56 -0
  38. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/scopes/unbound.md +57 -0
  39. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/slots.md +215 -0
  40. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/statically_known_branches.md +1530 -0
  41. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/subscript/bytes.md +53 -0
  42. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/subscript/instance.md +44 -0
  43. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/subscript/string.md +95 -0
  44. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/subscript/tuple.md +123 -0
  45. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/suppressions/knot_ignore.md +190 -0
  46. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/suppressions/type_ignore.md +162 -0
  47. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/sys_version_info.md +143 -0
  48. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/terminal_statements.md +640 -0
  49. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/type_of/dynamic.md +101 -0
  50. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_assignable_to.md +349 -0
  51. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_disjoint_from.md +310 -0
  52. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_equivalent_to.md +121 -0
  53. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_fully_static.md +54 -0
  54. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_gradual_equivalent_to.md +64 -0
  55. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_single_valued.md +25 -0
  56. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_singleton.md +56 -0
  57. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/type_properties/str_repr.md +27 -0
  58. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/type_properties/truthiness.md +47 -0
  59. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/type_qualifiers/classvar.md +93 -0
  60. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/unary/not.md +211 -0
  61. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/unpacking.md +578 -0
  62. ruff-0.9.4/crates/red_knot_python_semantic/resources/mdtest/with/sync.md +134 -0
  63. ruff-0.9.4/crates/red_knot_python_semantic/src/db.rs +193 -0
  64. ruff-0.9.4/crates/red_knot_python_semantic/src/lib.rs +54 -0
  65. ruff-0.9.4/crates/red_knot_python_semantic/src/lint.rs +512 -0
  66. ruff-0.9.4/crates/red_knot_python_semantic/src/module_resolver/resolver.rs +1844 -0
  67. ruff-0.9.4/crates/red_knot_python_semantic/src/module_resolver/testing.rs +312 -0
  68. ruff-0.9.4/crates/red_knot_python_semantic/src/program.rs +136 -0
  69. ruff-0.9.4/crates/red_knot_python_semantic/src/semantic_index/ast_ids.rs +198 -0
  70. ruff-0.9.4/crates/red_knot_python_semantic/src/semantic_index/builder.rs +1679 -0
  71. ruff-0.9.4/crates/red_knot_python_semantic/src/semantic_index/use_def/symbol_state.rs +682 -0
  72. ruff-0.9.4/crates/red_knot_python_semantic/src/semantic_index/use_def.rs +751 -0
  73. ruff-0.9.4/crates/red_knot_python_semantic/src/semantic_model.rs +231 -0
  74. ruff-0.9.4/crates/red_knot_python_semantic/src/suppression.rs +1184 -0
  75. ruff-0.9.4/crates/red_knot_python_semantic/src/symbol.rs +154 -0
  76. ruff-0.9.4/crates/red_knot_python_semantic/src/types/call/bind.rs +412 -0
  77. ruff-0.9.4/crates/red_knot_python_semantic/src/types/call.rs +423 -0
  78. ruff-0.9.4/crates/red_knot_python_semantic/src/types/class_base.rs +192 -0
  79. ruff-0.9.4/crates/red_knot_python_semantic/src/types/context.rs +202 -0
  80. ruff-0.9.4/crates/red_knot_python_semantic/src/types/diagnostic.rs +1126 -0
  81. ruff-0.9.4/crates/red_knot_python_semantic/src/types/infer.rs +6340 -0
  82. ruff-0.9.4/crates/red_knot_python_semantic/src/types/mro.rs +330 -0
  83. ruff-0.9.4/crates/red_knot_python_semantic/src/types/narrow.rs +565 -0
  84. ruff-0.9.4/crates/red_knot_python_semantic/src/types/property_tests.rs +560 -0
  85. ruff-0.9.4/crates/red_knot_python_semantic/src/types/signatures.rs +634 -0
  86. ruff-0.9.4/crates/red_knot_python_semantic/src/types/type_ordering.rs +266 -0
  87. ruff-0.9.4/crates/red_knot_python_semantic/src/types/unpacker.rs +277 -0
  88. ruff-0.9.4/crates/red_knot_python_semantic/src/types.rs +4875 -0
  89. ruff-0.9.4/crates/red_knot_python_semantic/src/visibility_constraints.rs +338 -0
  90. ruff-0.9.4/crates/red_knot_test/README.md +437 -0
  91. ruff-0.9.4/crates/red_knot_test/src/config.rs +65 -0
  92. ruff-0.9.4/crates/red_knot_test/src/db.rs +109 -0
  93. ruff-0.9.4/crates/red_knot_test/src/diagnostic.rs +213 -0
  94. ruff-0.9.4/crates/red_knot_test/src/lib.rs +260 -0
  95. ruff-0.9.4/crates/red_knot_test/src/matcher.rs +1061 -0
  96. ruff-0.9.4/crates/red_knot_test/src/parser.rs +820 -0
  97. ruff-0.9.4/crates/red_knot_vendored/knot_extensions/knot_extensions.pyi +27 -0
  98. ruff-0.9.4/crates/ruff/Cargo.toml +86 -0
  99. ruff-0.9.4/crates/ruff/README.md +545 -0
  100. ruff-0.9.4/crates/ruff/src/args.rs +1384 -0
  101. ruff-0.9.4/crates/ruff/src/commands/analyze_graph.rs +260 -0
  102. ruff-0.9.4/crates/ruff/src/commands/completions/config.rs +158 -0
  103. ruff-0.9.4/crates/ruff/src/commands/completions/mod.rs +1 -0
  104. ruff-0.9.4/crates/ruff/src/commands/format.rs +927 -0
  105. ruff-0.9.4/crates/ruff/src/commands/mod.rs +16 -0
  106. ruff-0.9.4/crates/ruff/tests/format.rs +2086 -0
  107. ruff-0.9.4/crates/ruff/tests/lint.rs +2176 -0
  108. ruff-0.9.4/crates/ruff/tests/show_settings.rs +57 -0
  109. ruff-0.9.4/crates/ruff/tests/snapshots/lint__flake8_import_convention_unused_aliased_import.snap +31 -0
  110. ruff-0.9.4/crates/ruff/tests/snapshots/show_settings__display_default_settings.snap +394 -0
  111. ruff-0.9.4/crates/ruff_annotate_snippets/src/renderer/mod.rs +175 -0
  112. ruff-0.9.4/crates/ruff_db/src/diagnostic.rs +343 -0
  113. ruff-0.9.4/crates/ruff_graph/src/db.rs +94 -0
  114. ruff-0.9.4/crates/ruff_linter/Cargo.toml +88 -0
  115. ruff-0.9.4/crates/ruff_linter/src/checkers/ast/analyze/bindings.rs +119 -0
  116. ruff-0.9.4/crates/ruff_linter/src/checkers/ast/analyze/deferred_scopes.rs +477 -0
  117. ruff-0.9.4/crates/ruff_linter/src/checkers/ast/analyze/expression.rs +1750 -0
  118. ruff-0.9.4/crates/ruff_linter/src/checkers/ast/analyze/statement.rs +1756 -0
  119. ruff-0.9.4/crates/ruff_linter/src/checkers/ast/mod.rs +2684 -0
  120. ruff-0.9.4/crates/ruff_linter/src/codes.rs +1134 -0
  121. ruff-0.9.4/crates/ruff_linter/src/fix/codemods.rs +232 -0
  122. ruff-0.9.4/crates/ruff_linter/src/fix/mod.rs +381 -0
  123. ruff-0.9.4/crates/ruff_linter/src/rule_selector.rs +497 -0
  124. ruff-0.9.4/crates/ruff_linter/src/rules/airflow/mod.rs +32 -0
  125. ruff-0.9.4/crates/ruff_linter/src/rules/airflow/rules/moved_to_provider_in_3.rs +1028 -0
  126. ruff-0.9.4/crates/ruff_linter/src/rules/airflow/rules/removal_in_3.rs +1115 -0
  127. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_async/rules/blocking_process_invocation.rs +169 -0
  128. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_bandit/mod.rs +159 -0
  129. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_sql_expression.rs +205 -0
  130. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_bandit/rules/suspicious_function_call.rs +1189 -0
  131. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_bandit/rules/suspicious_imports.rs +614 -0
  132. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_bugbear/mod.rs +177 -0
  133. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_bugbear/rules/class_as_data_structure.rs +129 -0
  134. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_bugbear/rules/function_call_in_argument_default.rs +160 -0
  135. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_comprehensions/fixes.rs +1004 -0
  136. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_generator_set.rs +159 -0
  137. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_map.rs +341 -0
  138. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_pytest_style/mod.rs +409 -0
  139. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_pytest_style/rules/assertion.rs +856 -0
  140. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_pytest_style/rules/parametrize.rs +892 -0
  141. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_pytest_style/rules/raises.rs +270 -0
  142. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_pytest_style/rules/warns.rs +266 -0
  143. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_simplify/mod.rs +79 -0
  144. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_bool_op.rs +870 -0
  145. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_expr.rs +307 -0
  146. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_unary_op.rs +305 -0
  147. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_simplify/rules/needless_bool.rs +339 -0
  148. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_simplify/rules/split_static_string.rs +221 -0
  149. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_tidy_imports/rules/banned_module_level_imports.rs +186 -0
  150. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_tidy_imports/settings.rs +68 -0
  151. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_type_checking/helpers.rs +453 -0
  152. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_type_checking/rules/runtime_cast_value.rs +79 -0
  153. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_type_checking/rules/runtime_import_in_type_checking_block.rs +357 -0
  154. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_type_checking/rules/type_alias_quotes.rs +378 -0
  155. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_type_checking/rules/typing_only_runtime_import.rs +533 -0
  156. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_unused_arguments/rules/unused_arguments.rs +557 -0
  157. ruff-0.9.4/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/path_constructor_current_directory.rs +139 -0
  158. ruff-0.9.4/crates/ruff_linter/src/rules/flynt/helpers.rs +67 -0
  159. ruff-0.9.4/crates/ruff_linter/src/rules/flynt/rules/static_join_to_fstring.rs +158 -0
  160. ruff-0.9.4/crates/ruff_linter/src/rules/isort/rules/organize_imports.rs +147 -0
  161. ruff-0.9.4/crates/ruff_linter/src/rules/pycodestyle/rules/lambda_assignment.rs +282 -0
  162. ruff-0.9.4/crates/ruff_linter/src/rules/pydoclint/mod.rs +101 -0
  163. ruff-0.9.4/crates/ruff_linter/src/rules/pydoclint/rules/check_docstring.rs +1049 -0
  164. ruff-0.9.4/crates/ruff_linter/src/rules/pydoclint/settings.rs +21 -0
  165. ruff-0.9.4/crates/ruff_linter/src/rules/pyflakes/mod.rs +4260 -0
  166. ruff-0.9.4/crates/ruff_linter/src/rules/pyflakes/rules/unused_import.rs +580 -0
  167. ruff-0.9.4/crates/ruff_linter/src/rules/pylint/mod.rs +460 -0
  168. ruff-0.9.4/crates/ruff_linter/src/rules/pylint/rules/import_outside_top_level.rs +101 -0
  169. ruff-0.9.4/crates/ruff_linter/src/rules/pylint/rules/literal_membership.rs +114 -0
  170. ruff-0.9.4/crates/ruff_linter/src/rules/pylint/rules/mod.rs +217 -0
  171. ruff-0.9.4/crates/ruff_linter/src/rules/pylint/rules/no_self_use.rs +147 -0
  172. ruff-0.9.4/crates/ruff_linter/src/rules/pylint/rules/non_augmented_assignment.rs +231 -0
  173. ruff-0.9.4/crates/ruff_linter/src/rules/pylint/rules/redefined_slots_in_subclass.rs +212 -0
  174. ruff-0.9.4/crates/ruff_linter/src/rules/pylint/rules/unspecified_encoding.rs +255 -0
  175. ruff-0.9.4/crates/ruff_linter/src/rules/pyupgrade/mod.rs +274 -0
  176. ruff-0.9.4/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_import.rs +753 -0
  177. ruff-0.9.4/crates/ruff_linter/src/rules/pyupgrade/rules/mod.rs +85 -0
  178. ruff-0.9.4/crates/ruff_linter/src/rules/pyupgrade/rules/native_literals.rs +260 -0
  179. ruff-0.9.4/crates/ruff_linter/src/rules/pyupgrade/rules/pep695/mod.rs +346 -0
  180. ruff-0.9.4/crates/ruff_linter/src/rules/pyupgrade/rules/pep695/non_pep695_generic_class.rs +220 -0
  181. ruff-0.9.4/crates/ruff_linter/src/rules/pyupgrade/rules/pep695/non_pep695_generic_function.rs +171 -0
  182. ruff-0.9.4/crates/ruff_linter/src/rules/pyupgrade/rules/pep695/non_pep695_type_alias.rs +271 -0
  183. ruff-0.9.4/crates/ruff_linter/src/rules/pyupgrade/rules/quoted_annotation.rs +117 -0
  184. ruff-0.9.4/crates/ruff_linter/src/rules/pyupgrade/rules/yield_in_for_loop.rs +166 -0
  185. ruff-0.9.4/crates/ruff_linter/src/rules/refurb/mod.rs +73 -0
  186. ruff-0.9.4/crates/ruff_linter/src/rules/refurb/rules/for_loop_writes.rs +241 -0
  187. ruff-0.9.4/crates/ruff_linter/src/rules/refurb/rules/mod.rs +71 -0
  188. ruff-0.9.4/crates/ruff_linter/src/rules/refurb/rules/reimplemented_starmap.rs +365 -0
  189. ruff-0.9.4/crates/ruff_linter/src/rules/ruff/mod.rs +523 -0
  190. ruff-0.9.4/crates/ruff_linter/src/rules/ruff/rules/assert_with_print_message.rs +300 -0
  191. ruff-0.9.4/crates/ruff_linter/src/rules/ruff/rules/function_call_in_dataclass_default.rs +164 -0
  192. ruff-0.9.4/crates/ruff_linter/src/rules/ruff/rules/mod.rs +116 -0
  193. ruff-0.9.4/crates/ruff_linter/src/rules/ruff/rules/needless_else.rs +304 -0
  194. ruff-0.9.4/crates/ruff_linter/src/rules/ruff/rules/quadratic_list_summation.rs +141 -0
  195. ruff-0.9.4/crates/ruff_linter/src/rules/ruff/rules/starmap_zip.rs +177 -0
  196. ruff-0.9.4/crates/ruff_linter/src/rules/ruff/rules/unnecessary_regular_expression.rs +379 -0
  197. ruff-0.9.4/crates/ruff_linter/src/rules/ruff/rules/unnecessary_round.rs +213 -0
  198. ruff-0.9.4/crates/ruff_linter/src/rules/tryceratops/rules/try_consider_else.rs +82 -0
  199. ruff-0.9.4/crates/ruff_linter/src/settings/mod.rs +452 -0
  200. ruff-0.9.4/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__import_sorting.snap +83 -0
  201. ruff-0.9.4/crates/ruff_macros/src/combine.rs +43 -0
  202. ruff-0.9.4/crates/ruff_macros/src/lib.rs +136 -0
  203. ruff-0.9.4/crates/ruff_python_ast/ast.toml +167 -0
  204. ruff-0.9.4/crates/ruff_python_ast/generate.py +499 -0
  205. ruff-0.9.4/crates/ruff_python_ast/src/expression.rs +351 -0
  206. ruff-0.9.4/crates/ruff_python_ast/src/generated.rs +3786 -0
  207. ruff-0.9.4/crates/ruff_python_ast/src/lib.rs +132 -0
  208. ruff-0.9.4/crates/ruff_python_ast/src/node.rs +1648 -0
  209. ruff-0.9.4/crates/ruff_python_ast/src/nodes.rs +3577 -0
  210. ruff-0.9.4/crates/ruff_python_ast/src/parenthesize.rs +67 -0
  211. ruff-0.9.4/crates/ruff_python_ast/src/str.rs +282 -0
  212. ruff-0.9.4/crates/ruff_python_ast/src/visitor/source_order.rs +582 -0
  213. ruff-0.9.4/crates/ruff_python_codegen/src/generator.rs +1857 -0
  214. ruff-0.9.4/crates/ruff_python_formatter/generate.py +176 -0
  215. ruff-0.9.4/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/fstring.py +733 -0
  216. ruff-0.9.4/crates/ruff_python_formatter/src/builders.rs +246 -0
  217. ruff-0.9.4/crates/ruff_python_formatter/src/comments/debug.rs +244 -0
  218. ruff-0.9.4/crates/ruff_python_formatter/src/comments/format.rs +637 -0
  219. ruff-0.9.4/crates/ruff_python_formatter/src/context.rs +439 -0
  220. ruff-0.9.4/crates/ruff_python_formatter/src/expression/expr_slice.rs +283 -0
  221. ruff-0.9.4/crates/ruff_python_formatter/src/expression/expr_subscript.rs +132 -0
  222. ruff-0.9.4/crates/ruff_python_formatter/src/expression/mod.rs +1313 -0
  223. ruff-0.9.4/crates/ruff_python_formatter/src/expression/parentheses.rs +468 -0
  224. ruff-0.9.4/crates/ruff_python_formatter/src/generated.rs +3036 -0
  225. ruff-0.9.4/crates/ruff_python_formatter/src/lib.rs +350 -0
  226. ruff-0.9.4/crates/ruff_python_formatter/src/other/f_string_element.rs +303 -0
  227. ruff-0.9.4/crates/ruff_python_formatter/src/other/parameters.rs +684 -0
  228. ruff-0.9.4/crates/ruff_python_formatter/src/pattern/pattern_arguments.rs +100 -0
  229. ruff-0.9.4/crates/ruff_python_formatter/src/statement/stmt_global.rs +58 -0
  230. ruff-0.9.4/crates/ruff_python_formatter/src/statement/stmt_import_from.rs +82 -0
  231. ruff-0.9.4/crates/ruff_python_formatter/src/statement/stmt_nonlocal.rs +58 -0
  232. ruff-0.9.4/crates/ruff_python_formatter/src/statement/stmt_while.rs +76 -0
  233. ruff-0.9.4/crates/ruff_python_formatter/src/statement/stmt_with.rs +366 -0
  234. ruff-0.9.4/crates/ruff_python_formatter/src/type_param/type_params.rs +35 -0
  235. ruff-0.9.4/crates/ruff_python_formatter/tests/normalizer.rs +259 -0
  236. ruff-0.9.4/crates/ruff_python_formatter/tests/snapshots/format@expression__fstring.py.snap +2340 -0
  237. ruff-0.9.4/crates/ruff_python_parser/src/lib.rs +843 -0
  238. ruff-0.9.4/crates/ruff_python_semantic/src/analyze/class.rs +408 -0
  239. ruff-0.9.4/crates/ruff_python_semantic/src/analyze/typing.rs +1217 -0
  240. ruff-0.9.4/crates/ruff_python_semantic/src/imports.rs +283 -0
  241. ruff-0.9.4/crates/ruff_python_semantic/src/nodes.rs +136 -0
  242. ruff-0.9.4/crates/ruff_server/src/fix.rs +158 -0
  243. ruff-0.9.4/crates/ruff_server/src/session/index/ruff_settings.rs +440 -0
  244. ruff-0.9.4/crates/ruff_text_size/src/range.rs +545 -0
  245. ruff-0.9.4/crates/ruff_workspace/src/configuration.rs +2102 -0
  246. ruff-0.9.4/crates/ruff_workspace/src/options.rs +3905 -0
  247. ruff-0.9.4/pyproject.toml +142 -0
  248. ruff-0.9.2/Cargo.lock +0 -4777
  249. ruff-0.9.2/Cargo.toml +0 -314
  250. ruff-0.9.2/PKG-INFO +0 -579
  251. ruff-0.9.2/README.md +0 -545
  252. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/annotations/literal.md +0 -153
  253. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/annotations/literal_string.md +0 -150
  254. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/attributes.md +0 -503
  255. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/binary/booleans.md +0 -95
  256. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/binary/instances.md +0 -427
  257. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/boundness_declaredness/public.md +0 -209
  258. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/call/callable_instance.md +0 -101
  259. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/directives/assert_type.md +0 -142
  260. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/expression/attribute.md +0 -27
  261. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/expression/boolean.md +0 -101
  262. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/expression/len.md +0 -218
  263. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/generics.md +0 -79
  264. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/import/builtins.md +0 -8
  265. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/import/conditional.md +0 -123
  266. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/import/conflicts.md +0 -75
  267. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/import/invalid_syntax.md +0 -31
  268. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/import/relative.md +0 -164
  269. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/literal/f_string.md +0 -33
  270. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/loops/for.md +0 -267
  271. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/mro.md +0 -409
  272. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/narrow/isinstance.md +0 -222
  273. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/narrow/issubclass.md +0 -248
  274. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/narrow/type.md +0 -120
  275. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/pep695_type_aliases.md +0 -78
  276. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/scopes/builtin.md +0 -32
  277. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/scopes/moduletype_attrs.md +0 -136
  278. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/scopes/nonlocal.md +0 -45
  279. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/scopes/unbound.md +0 -57
  280. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/slots.md +0 -184
  281. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/statically_known_branches.md +0 -1530
  282. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/subscript/bytes.md +0 -53
  283. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/subscript/instance.md +0 -43
  284. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/subscript/string.md +0 -95
  285. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/subscript/tuple.md +0 -123
  286. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/suppressions/knot_ignore.md +0 -182
  287. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/suppressions/type_ignore.md +0 -162
  288. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/sys_version_info.md +0 -143
  289. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/type_of/dynamic.md +0 -101
  290. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_assignable_to.md +0 -352
  291. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_equivalent_to.md +0 -35
  292. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/unary/not.md +0 -209
  293. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/unpacking.md +0 -578
  294. ruff-0.9.2/crates/red_knot_python_semantic/resources/mdtest/with/sync.md +0 -134
  295. ruff-0.9.2/crates/red_knot_python_semantic/src/db.rs +0 -198
  296. ruff-0.9.2/crates/red_knot_python_semantic/src/lib.rs +0 -54
  297. ruff-0.9.2/crates/red_knot_python_semantic/src/lint.rs +0 -470
  298. ruff-0.9.2/crates/red_knot_python_semantic/src/module_resolver/resolver.rs +0 -1836
  299. ruff-0.9.2/crates/red_knot_python_semantic/src/module_resolver/testing.rs +0 -312
  300. ruff-0.9.2/crates/red_knot_python_semantic/src/program.rs +0 -136
  301. ruff-0.9.2/crates/red_knot_python_semantic/src/semantic_index/ast_ids.rs +0 -198
  302. ruff-0.9.2/crates/red_knot_python_semantic/src/semantic_index/builder.rs +0 -1663
  303. ruff-0.9.2/crates/red_knot_python_semantic/src/semantic_index/use_def/symbol_state.rs +0 -775
  304. ruff-0.9.2/crates/red_knot_python_semantic/src/semantic_index/use_def.rs +0 -726
  305. ruff-0.9.2/crates/red_knot_python_semantic/src/semantic_model.rs +0 -231
  306. ruff-0.9.2/crates/red_knot_python_semantic/src/suppression.rs +0 -1172
  307. ruff-0.9.2/crates/red_knot_python_semantic/src/symbol.rs +0 -146
  308. ruff-0.9.2/crates/red_knot_python_semantic/src/types/call/bind.rs +0 -411
  309. ruff-0.9.2/crates/red_knot_python_semantic/src/types/call.rs +0 -423
  310. ruff-0.9.2/crates/red_knot_python_semantic/src/types/class_base.rs +0 -192
  311. ruff-0.9.2/crates/red_knot_python_semantic/src/types/context.rs +0 -202
  312. ruff-0.9.2/crates/red_knot_python_semantic/src/types/diagnostic.rs +0 -1062
  313. ruff-0.9.2/crates/red_knot_python_semantic/src/types/infer.rs +0 -6760
  314. ruff-0.9.2/crates/red_knot_python_semantic/src/types/mro.rs +0 -330
  315. ruff-0.9.2/crates/red_knot_python_semantic/src/types/narrow.rs +0 -565
  316. ruff-0.9.2/crates/red_knot_python_semantic/src/types/property_tests.rs +0 -407
  317. ruff-0.9.2/crates/red_knot_python_semantic/src/types/signatures.rs +0 -628
  318. ruff-0.9.2/crates/red_knot_python_semantic/src/types/unpacker.rs +0 -277
  319. ruff-0.9.2/crates/red_knot_python_semantic/src/types.rs +0 -4928
  320. ruff-0.9.2/crates/red_knot_python_semantic/src/visibility_constraints.rs +0 -338
  321. ruff-0.9.2/crates/red_knot_test/README.md +0 -467
  322. ruff-0.9.2/crates/red_knot_test/src/config.rs +0 -56
  323. ruff-0.9.2/crates/red_knot_test/src/db.rs +0 -109
  324. ruff-0.9.2/crates/red_knot_test/src/diagnostic.rs +0 -213
  325. ruff-0.9.2/crates/red_knot_test/src/lib.rs +0 -205
  326. ruff-0.9.2/crates/red_knot_test/src/matcher.rs +0 -1061
  327. ruff-0.9.2/crates/red_knot_test/src/parser.rs +0 -815
  328. ruff-0.9.2/crates/red_knot_vendored/knot_extensions/knot_extensions.pyi +0 -26
  329. ruff-0.9.2/crates/ruff/Cargo.toml +0 -86
  330. ruff-0.9.2/crates/ruff/README.md +0 -545
  331. ruff-0.9.2/crates/ruff/src/args.rs +0 -1378
  332. ruff-0.9.2/crates/ruff/src/commands/analyze_graph.rs +0 -257
  333. ruff-0.9.2/crates/ruff/src/commands/format.rs +0 -927
  334. ruff-0.9.2/crates/ruff/src/commands/mod.rs +0 -14
  335. ruff-0.9.2/crates/ruff/tests/format.rs +0 -2086
  336. ruff-0.9.2/crates/ruff/tests/lint.rs +0 -2162
  337. ruff-0.9.2/crates/ruff/tests/show_settings.rs +0 -33
  338. ruff-0.9.2/crates/ruff/tests/snapshots/show_settings__display_default_settings.snap +0 -401
  339. ruff-0.9.2/crates/ruff_annotate_snippets/src/renderer/mod.rs +0 -175
  340. ruff-0.9.2/crates/ruff_db/src/diagnostic.rs +0 -324
  341. ruff-0.9.2/crates/ruff_graph/src/db.rs +0 -106
  342. ruff-0.9.2/crates/ruff_linter/Cargo.toml +0 -88
  343. ruff-0.9.2/crates/ruff_linter/src/checkers/ast/analyze/bindings.rs +0 -104
  344. ruff-0.9.2/crates/ruff_linter/src/checkers/ast/analyze/deferred_scopes.rs +0 -442
  345. ruff-0.9.2/crates/ruff_linter/src/checkers/ast/analyze/expression.rs +0 -1700
  346. ruff-0.9.2/crates/ruff_linter/src/checkers/ast/analyze/statement.rs +0 -1762
  347. ruff-0.9.2/crates/ruff_linter/src/checkers/ast/mod.rs +0 -2664
  348. ruff-0.9.2/crates/ruff_linter/src/codes.rs +0 -1128
  349. ruff-0.9.2/crates/ruff_linter/src/fix/codemods.rs +0 -224
  350. ruff-0.9.2/crates/ruff_linter/src/fix/mod.rs +0 -380
  351. ruff-0.9.2/crates/ruff_linter/src/rule_selector.rs +0 -497
  352. ruff-0.9.2/crates/ruff_linter/src/rules/airflow/mod.rs +0 -31
  353. ruff-0.9.2/crates/ruff_linter/src/rules/airflow/rules/moved_to_provider_in_3.rs +0 -933
  354. ruff-0.9.2/crates/ruff_linter/src/rules/airflow/rules/removal_in_3.rs +0 -857
  355. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_async/rules/blocking_process_invocation.rs +0 -166
  356. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_bandit/mod.rs +0 -121
  357. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_sql_expression.rs +0 -196
  358. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_bandit/rules/suspicious_function_call.rs +0 -1002
  359. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_bandit/rules/suspicious_imports.rs +0 -609
  360. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_bugbear/mod.rs +0 -147
  361. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_bugbear/rules/class_as_data_structure.rs +0 -127
  362. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_bugbear/rules/function_call_in_argument_default.rs +0 -157
  363. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_comprehensions/fixes.rs +0 -993
  364. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_generator_set.rs +0 -132
  365. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_map.rs +0 -333
  366. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_pytest_style/mod.rs +0 -379
  367. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_pytest_style/rules/assertion.rs +0 -760
  368. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_pytest_style/rules/parametrize.rs +0 -886
  369. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_pytest_style/rules/raises.rs +0 -256
  370. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_pytest_style/rules/warns.rs +0 -252
  371. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_simplify/mod.rs +0 -78
  372. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_bool_op.rs +0 -862
  373. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_expr.rs +0 -309
  374. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_unary_op.rs +0 -295
  375. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_simplify/rules/needless_bool.rs +0 -308
  376. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_simplify/rules/split_static_string.rs +0 -218
  377. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_tidy_imports/rules/banned_module_level_imports.rs +0 -80
  378. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_tidy_imports/settings.rs +0 -62
  379. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_type_checking/helpers.rs +0 -422
  380. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_type_checking/rules/runtime_cast_value.rs +0 -81
  381. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_type_checking/rules/runtime_import_in_type_checking_block.rs +0 -356
  382. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_type_checking/rules/type_alias_quotes.rs +0 -380
  383. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_type_checking/rules/typing_only_runtime_import.rs +0 -532
  384. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_unused_arguments/rules/unused_arguments.rs +0 -557
  385. ruff-0.9.2/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/path_constructor_current_directory.rs +0 -145
  386. ruff-0.9.2/crates/ruff_linter/src/rules/flynt/helpers.rs +0 -67
  387. ruff-0.9.2/crates/ruff_linter/src/rules/flynt/rules/static_join_to_fstring.rs +0 -151
  388. ruff-0.9.2/crates/ruff_linter/src/rules/isort/rules/organize_imports.rs +0 -148
  389. ruff-0.9.2/crates/ruff_linter/src/rules/pycodestyle/rules/lambda_assignment.rs +0 -282
  390. ruff-0.9.2/crates/ruff_linter/src/rules/pydoclint/mod.rs +0 -72
  391. ruff-0.9.2/crates/ruff_linter/src/rules/pydoclint/rules/check_docstring.rs +0 -1031
  392. ruff-0.9.2/crates/ruff_linter/src/rules/pyflakes/mod.rs +0 -4229
  393. ruff-0.9.2/crates/ruff_linter/src/rules/pyflakes/rules/unused_import.rs +0 -573
  394. ruff-0.9.2/crates/ruff_linter/src/rules/pylint/mod.rs +0 -432
  395. ruff-0.9.2/crates/ruff_linter/src/rules/pylint/rules/import_outside_top_level.rs +0 -62
  396. ruff-0.9.2/crates/ruff_linter/src/rules/pylint/rules/literal_membership.rs +0 -109
  397. ruff-0.9.2/crates/ruff_linter/src/rules/pylint/rules/mod.rs +0 -215
  398. ruff-0.9.2/crates/ruff_linter/src/rules/pylint/rules/no_self_use.rs +0 -145
  399. ruff-0.9.2/crates/ruff_linter/src/rules/pylint/rules/non_augmented_assignment.rs +0 -231
  400. ruff-0.9.2/crates/ruff_linter/src/rules/pylint/rules/unspecified_encoding.rs +0 -260
  401. ruff-0.9.2/crates/ruff_linter/src/rules/pyupgrade/mod.rs +0 -271
  402. ruff-0.9.2/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_import.rs +0 -750
  403. ruff-0.9.2/crates/ruff_linter/src/rules/pyupgrade/rules/mod.rs +0 -85
  404. ruff-0.9.2/crates/ruff_linter/src/rules/pyupgrade/rules/native_literals.rs +0 -250
  405. ruff-0.9.2/crates/ruff_linter/src/rules/pyupgrade/rules/quoted_annotation.rs +0 -119
  406. ruff-0.9.2/crates/ruff_linter/src/rules/pyupgrade/rules/use_pep695_type_alias.rs +0 -370
  407. ruff-0.9.2/crates/ruff_linter/src/rules/pyupgrade/rules/yield_in_for_loop.rs +0 -160
  408. ruff-0.9.2/crates/ruff_linter/src/rules/refurb/mod.rs +0 -72
  409. ruff-0.9.2/crates/ruff_linter/src/rules/refurb/rules/mod.rs +0 -69
  410. ruff-0.9.2/crates/ruff_linter/src/rules/refurb/rules/reimplemented_starmap.rs +0 -384
  411. ruff-0.9.2/crates/ruff_linter/src/rules/ruff/mod.rs +0 -516
  412. ruff-0.9.2/crates/ruff_linter/src/rules/ruff/rules/assert_with_print_message.rs +0 -292
  413. ruff-0.9.2/crates/ruff_linter/src/rules/ruff/rules/function_call_in_dataclass_default.rs +0 -158
  414. ruff-0.9.2/crates/ruff_linter/src/rules/ruff/rules/mod.rs +0 -112
  415. ruff-0.9.2/crates/ruff_linter/src/rules/ruff/rules/quadratic_list_summation.rs +0 -142
  416. ruff-0.9.2/crates/ruff_linter/src/rules/ruff/rules/unnecessary_regular_expression.rs +0 -299
  417. ruff-0.9.2/crates/ruff_linter/src/rules/ruff/rules/unnecessary_round.rs +0 -208
  418. ruff-0.9.2/crates/ruff_linter/src/rules/tryceratops/rules/try_consider_else.rs +0 -80
  419. ruff-0.9.2/crates/ruff_linter/src/settings/mod.rs +0 -450
  420. ruff-0.9.2/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__import_sorting.snap +0 -88
  421. ruff-0.9.2/crates/ruff_macros/src/lib.rs +0 -122
  422. ruff-0.9.2/crates/ruff_python_ast/src/expression.rs +0 -670
  423. ruff-0.9.2/crates/ruff_python_ast/src/lib.rs +0 -131
  424. ruff-0.9.2/crates/ruff_python_ast/src/node.rs +0 -8304
  425. ruff-0.9.2/crates/ruff_python_ast/src/nodes.rs +0 -4672
  426. ruff-0.9.2/crates/ruff_python_ast/src/parenthesize.rs +0 -67
  427. ruff-0.9.2/crates/ruff_python_ast/src/str.rs +0 -274
  428. ruff-0.9.2/crates/ruff_python_ast/src/visitor/source_order.rs +0 -612
  429. ruff-0.9.2/crates/ruff_python_codegen/src/generator.rs +0 -1889
  430. ruff-0.9.2/crates/ruff_python_formatter/generate.py +0 -175
  431. ruff-0.9.2/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/fstring.py +0 -720
  432. ruff-0.9.2/crates/ruff_python_formatter/src/builders.rs +0 -232
  433. ruff-0.9.2/crates/ruff_python_formatter/src/comments/debug.rs +0 -244
  434. ruff-0.9.2/crates/ruff_python_formatter/src/comments/format.rs +0 -637
  435. ruff-0.9.2/crates/ruff_python_formatter/src/context.rs +0 -428
  436. ruff-0.9.2/crates/ruff_python_formatter/src/expression/expr_slice.rs +0 -283
  437. ruff-0.9.2/crates/ruff_python_formatter/src/expression/expr_subscript.rs +0 -132
  438. ruff-0.9.2/crates/ruff_python_formatter/src/expression/mod.rs +0 -1313
  439. ruff-0.9.2/crates/ruff_python_formatter/src/expression/parentheses.rs +0 -468
  440. ruff-0.9.2/crates/ruff_python_formatter/src/generated.rs +0 -3036
  441. ruff-0.9.2/crates/ruff_python_formatter/src/lib.rs +0 -350
  442. ruff-0.9.2/crates/ruff_python_formatter/src/other/f_string_element.rs +0 -292
  443. ruff-0.9.2/crates/ruff_python_formatter/src/other/parameters.rs +0 -685
  444. ruff-0.9.2/crates/ruff_python_formatter/src/pattern/pattern_arguments.rs +0 -101
  445. ruff-0.9.2/crates/ruff_python_formatter/src/statement/stmt_global.rs +0 -59
  446. ruff-0.9.2/crates/ruff_python_formatter/src/statement/stmt_import_from.rs +0 -83
  447. ruff-0.9.2/crates/ruff_python_formatter/src/statement/stmt_nonlocal.rs +0 -59
  448. ruff-0.9.2/crates/ruff_python_formatter/src/statement/stmt_while.rs +0 -77
  449. ruff-0.9.2/crates/ruff_python_formatter/src/statement/stmt_with.rs +0 -367
  450. ruff-0.9.2/crates/ruff_python_formatter/src/type_param/type_params.rs +0 -36
  451. ruff-0.9.2/crates/ruff_python_formatter/tests/normalizer.rs +0 -259
  452. ruff-0.9.2/crates/ruff_python_formatter/tests/snapshots/format@expression__fstring.py.snap +0 -2291
  453. ruff-0.9.2/crates/ruff_python_parser/src/lib.rs +0 -843
  454. ruff-0.9.2/crates/ruff_python_semantic/src/analyze/class.rs +0 -390
  455. ruff-0.9.2/crates/ruff_python_semantic/src/analyze/typing.rs +0 -1165
  456. ruff-0.9.2/crates/ruff_python_semantic/src/imports.rs +0 -283
  457. ruff-0.9.2/crates/ruff_python_semantic/src/nodes.rs +0 -136
  458. ruff-0.9.2/crates/ruff_server/src/fix.rs +0 -158
  459. ruff-0.9.2/crates/ruff_server/src/session/index/ruff_settings.rs +0 -429
  460. ruff-0.9.2/crates/ruff_text_size/src/range.rs +0 -544
  461. ruff-0.9.2/crates/ruff_workspace/src/configuration.rs +0 -2059
  462. ruff-0.9.2/crates/ruff_workspace/src/options.rs +0 -3840
  463. ruff-0.9.2/pyproject.toml +0 -114
  464. {ruff-0.9.2 → ruff-0.9.4}/LICENSE +0 -0
  465. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/Cargo.toml +0 -0
  466. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/build.rs +0 -0
  467. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/README.md +0 -0
  468. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/.mdformat.toml +0 -0
  469. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/annotations/annotated.md +0 -0
  470. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/annotations/any.md +0 -0
  471. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/annotations/never.md +0 -0
  472. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/annotations/optional.md +0 -0
  473. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/annotations/starred.md +0 -0
  474. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/annotations/stdlib_typing_aliases.md +0 -0
  475. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/annotations/string.md +0 -0
  476. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/annotations/union.md +0 -0
  477. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/annotations/unsupported_special_forms.md +0 -0
  478. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/annotations/unsupported_type_qualifiers.md +0 -0
  479. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/assignment/annotations.md +0 -0
  480. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/assignment/augmented.md +0 -0
  481. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/assignment/multi_target.md +0 -0
  482. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/assignment/unbound.md +0 -0
  483. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/assignment/walrus.md +0 -0
  484. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/binary/classes.md +0 -0
  485. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/binary/custom.md +0 -0
  486. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/binary/integers.md +0 -0
  487. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/boolean/short_circuit.md +0 -0
  488. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/call/constructor.md +0 -0
  489. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/call/function.md +0 -0
  490. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/call/invalid_syntax.md +0 -0
  491. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/call/union.md +0 -0
  492. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/comparison/byte_literals.md +0 -0
  493. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/comparison/identity.md +0 -0
  494. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/comparison/instances/membership_test.md +0 -0
  495. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/comparison/instances/rich_comparison.md +0 -0
  496. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/comparison/integers.md +0 -0
  497. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/comparison/intersections.md +0 -0
  498. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/comparison/non_bool_returns.md +0 -0
  499. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/comparison/strings.md +0 -0
  500. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/comparison/tuples.md +0 -0
  501. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/comparison/unions.md +0 -0
  502. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/comparison/unsupported.md +0 -0
  503. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/conditional/if_expression.md +0 -0
  504. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/conditional/if_statement.md +0 -0
  505. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/conditional/match.md +0 -0
  506. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/declaration/error.md +0 -0
  507. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/directives/cast.md +0 -0
  508. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/exception/basic.md +0 -0
  509. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/exception/control_flow.md +0 -0
  510. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/exception/except_star.md +0 -0
  511. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/exception/invalid_syntax.md +0 -0
  512. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/expression/if.md +0 -0
  513. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/final.md +0 -0
  514. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/function/parameters.md +0 -0
  515. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/import/basic.md +0 -0
  516. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/import/errors.md +0 -0
  517. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/import/stubs.md +0 -0
  518. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/import/tracking.md +0 -0
  519. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/intersection_types.md +0 -0
  520. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/invalid_syntax.md +0 -0
  521. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/known_constants.md +0 -0
  522. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/literal/boolean.md +0 -0
  523. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/literal/bytes.md +0 -0
  524. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/literal/collections/dictionary.md +0 -0
  525. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/literal/collections/list.md +0 -0
  526. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/literal/collections/set.md +0 -0
  527. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/literal/collections/tuple.md +0 -0
  528. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/literal/complex.md +0 -0
  529. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/literal/ellipsis.md +0 -0
  530. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/literal/float.md +0 -0
  531. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/literal/integer.md +0 -0
  532. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/literal/string.md +0 -0
  533. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/loops/async_for.md +0 -0
  534. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/loops/iterators.md +0 -0
  535. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/loops/while_loop.md +0 -0
  536. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/mdtest_config.md +0 -0
  537. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/metaclass.md +0 -0
  538. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/bool-call.md +0 -0
  539. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/boolean.md +0 -0
  540. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/boolean.md +0 -0
  541. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/elif_else.md +0 -0
  542. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/is.md +0 -0
  543. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/is_not.md +0 -0
  544. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/nested.md +0 -0
  545. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/not.md +0 -0
  546. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/conditionals/not_eq.md +0 -0
  547. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/match.md +0 -0
  548. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/post_if_statement.md +0 -0
  549. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/truthiness.md +0 -0
  550. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/narrow/while.md +0 -0
  551. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/regression/14334_diagnostics_in_wrong_file.md +0 -0
  552. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/shadowing/class.md +0 -0
  553. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/shadowing/function.md +0 -0
  554. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/shadowing/variable_declaration.md +0 -0
  555. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/stubs/class.md +0 -0
  556. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/stubs/ellipsis.md +0 -0
  557. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/subscript/class.md +0 -0
  558. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/subscript/lists.md +0 -0
  559. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/subscript/stepsize_zero.md +0 -0
  560. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/suppressions/no_type_check.md +0 -0
  561. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/sys_platform.md +0 -0
  562. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/type_api.md +0 -0
  563. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/type_of/basic.md +0 -0
  564. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/type_of/typing_dot_Type.md +0 -0
  565. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/type_properties/is_subtype_of.md +0 -0
  566. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/type_properties/tuples_containing_never.md +0 -0
  567. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/unary/custom.md +0 -0
  568. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/unary/integers.md +0 -0
  569. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/unary/invert_add_usub.md +0 -0
  570. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/union_types.md +0 -0
  571. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/resources/mdtest/with/async.md +0 -0
  572. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/ast_node_ref.rs +0 -0
  573. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/module_name.rs +0 -0
  574. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/module_resolver/mod.rs +0 -0
  575. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/module_resolver/module.rs +0 -0
  576. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/module_resolver/path.rs +0 -0
  577. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/module_resolver/typeshed.rs +0 -0
  578. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/node_key.rs +0 -0
  579. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/python_platform.rs +0 -0
  580. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/python_version.rs +0 -0
  581. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/semantic_index/builder/except_handlers.rs +0 -0
  582. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/semantic_index/constraint.rs +0 -0
  583. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/semantic_index/definition.rs +0 -0
  584. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/semantic_index/expression.rs +0 -0
  585. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/semantic_index/symbol.rs +0 -0
  586. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/semantic_index/use_def/bitset.rs +0 -0
  587. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/semantic_index.rs +0 -0
  588. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/site_packages.rs +0 -0
  589. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/stdlib.rs +0 -0
  590. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/types/builder.rs +0 -0
  591. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/types/call/arguments.rs +0 -0
  592. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/types/display.rs +0 -0
  593. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/types/slots.rs +0 -0
  594. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/types/string_annotation.rs +0 -0
  595. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/types/subclass_of.rs +0 -0
  596. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/unpack.rs +0 -0
  597. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/util/mod.rs +0 -0
  598. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/src/util/subscript.rs +0 -0
  599. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_python_semantic/tests/mdtest.rs +0 -0
  600. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_test/Cargo.toml +0 -0
  601. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_test/src/assertion.rs +0 -0
  602. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/Cargo.toml +0 -0
  603. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/README.md +0 -0
  604. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/build.rs +0 -0
  605. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/knot_extensions/README.md +0 -0
  606. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/src/lib.rs +0 -0
  607. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/LICENSE +0 -0
  608. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/README.md +0 -0
  609. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/source_commit.txt +0 -0
  610. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/VERSIONS +0 -0
  611. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/__future__.pyi +0 -0
  612. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/__main__.pyi +0 -0
  613. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_ast.pyi +0 -0
  614. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_asyncio.pyi +0 -0
  615. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_bisect.pyi +0 -0
  616. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_blake2.pyi +0 -0
  617. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_bootlocale.pyi +0 -0
  618. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_bz2.pyi +0 -0
  619. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_codecs.pyi +0 -0
  620. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_collections_abc.pyi +0 -0
  621. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_compat_pickle.pyi +0 -0
  622. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_compression.pyi +0 -0
  623. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_contextvars.pyi +0 -0
  624. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_csv.pyi +0 -0
  625. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_ctypes.pyi +0 -0
  626. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_curses.pyi +0 -0
  627. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_curses_panel.pyi +0 -0
  628. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_dbm.pyi +0 -0
  629. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_decimal.pyi +0 -0
  630. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_dummy_thread.pyi +0 -0
  631. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_dummy_threading.pyi +0 -0
  632. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_frozen_importlib.pyi +0 -0
  633. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_frozen_importlib_external.pyi +0 -0
  634. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_gdbm.pyi +0 -0
  635. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_hashlib.pyi +0 -0
  636. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_heapq.pyi +0 -0
  637. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_imp.pyi +0 -0
  638. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_interpchannels.pyi +0 -0
  639. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_interpqueues.pyi +0 -0
  640. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_interpreters.pyi +0 -0
  641. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_io.pyi +0 -0
  642. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_json.pyi +0 -0
  643. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_locale.pyi +0 -0
  644. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_lsprof.pyi +0 -0
  645. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_lzma.pyi +0 -0
  646. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_markupbase.pyi +0 -0
  647. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_msi.pyi +0 -0
  648. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_multibytecodec.pyi +0 -0
  649. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_operator.pyi +0 -0
  650. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_osx_support.pyi +0 -0
  651. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_pickle.pyi +0 -0
  652. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_posixsubprocess.pyi +0 -0
  653. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_py_abc.pyi +0 -0
  654. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_pydecimal.pyi +0 -0
  655. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_queue.pyi +0 -0
  656. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_random.pyi +0 -0
  657. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_sitebuiltins.pyi +0 -0
  658. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_socket.pyi +0 -0
  659. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_sqlite3.pyi +0 -0
  660. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_ssl.pyi +0 -0
  661. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_stat.pyi +0 -0
  662. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_struct.pyi +0 -0
  663. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_thread.pyi +0 -0
  664. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_threading_local.pyi +0 -0
  665. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_tkinter.pyi +0 -0
  666. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_tracemalloc.pyi +0 -0
  667. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_typeshed/README.md +0 -0
  668. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_typeshed/__init__.pyi +0 -0
  669. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_typeshed/dbapi.pyi +0 -0
  670. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_typeshed/importlib.pyi +0 -0
  671. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_typeshed/wsgi.pyi +0 -0
  672. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_typeshed/xml.pyi +0 -0
  673. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_warnings.pyi +0 -0
  674. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_weakref.pyi +0 -0
  675. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_weakrefset.pyi +0 -0
  676. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/_winapi.pyi +0 -0
  677. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/abc.pyi +0 -0
  678. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/aifc.pyi +0 -0
  679. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/antigravity.pyi +0 -0
  680. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/argparse.pyi +0 -0
  681. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/array.pyi +0 -0
  682. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ast.pyi +0 -0
  683. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asynchat.pyi +0 -0
  684. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/__init__.pyi +0 -0
  685. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/base_events.pyi +0 -0
  686. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/base_futures.pyi +0 -0
  687. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/base_subprocess.pyi +0 -0
  688. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/base_tasks.pyi +0 -0
  689. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/constants.pyi +0 -0
  690. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/coroutines.pyi +0 -0
  691. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/events.pyi +0 -0
  692. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/exceptions.pyi +0 -0
  693. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/format_helpers.pyi +0 -0
  694. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/futures.pyi +0 -0
  695. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/locks.pyi +0 -0
  696. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/log.pyi +0 -0
  697. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/mixins.pyi +0 -0
  698. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/proactor_events.pyi +0 -0
  699. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/protocols.pyi +0 -0
  700. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/queues.pyi +0 -0
  701. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/runners.pyi +0 -0
  702. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/selector_events.pyi +0 -0
  703. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/sslproto.pyi +0 -0
  704. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/staggered.pyi +0 -0
  705. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/streams.pyi +0 -0
  706. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/subprocess.pyi +0 -0
  707. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/taskgroups.pyi +0 -0
  708. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/tasks.pyi +0 -0
  709. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/threads.pyi +0 -0
  710. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/timeouts.pyi +0 -0
  711. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/transports.pyi +0 -0
  712. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/trsock.pyi +0 -0
  713. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/unix_events.pyi +0 -0
  714. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/windows_events.pyi +0 -0
  715. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncio/windows_utils.pyi +0 -0
  716. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/asyncore.pyi +0 -0
  717. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/atexit.pyi +0 -0
  718. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/audioop.pyi +0 -0
  719. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/base64.pyi +0 -0
  720. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/bdb.pyi +0 -0
  721. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/binascii.pyi +0 -0
  722. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/binhex.pyi +0 -0
  723. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/bisect.pyi +0 -0
  724. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/builtins.pyi +0 -0
  725. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/bz2.pyi +0 -0
  726. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/cProfile.pyi +0 -0
  727. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/calendar.pyi +0 -0
  728. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/cgi.pyi +0 -0
  729. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/cgitb.pyi +0 -0
  730. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/chunk.pyi +0 -0
  731. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/cmath.pyi +0 -0
  732. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/cmd.pyi +0 -0
  733. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/code.pyi +0 -0
  734. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/codecs.pyi +0 -0
  735. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/codeop.pyi +0 -0
  736. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/collections/__init__.pyi +0 -0
  737. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/collections/abc.pyi +0 -0
  738. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/colorsys.pyi +0 -0
  739. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/compileall.pyi +0 -0
  740. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/concurrent/__init__.pyi +0 -0
  741. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/concurrent/futures/__init__.pyi +0 -0
  742. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/concurrent/futures/_base.pyi +0 -0
  743. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/concurrent/futures/process.pyi +0 -0
  744. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/concurrent/futures/thread.pyi +0 -0
  745. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/configparser.pyi +0 -0
  746. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/contextlib.pyi +0 -0
  747. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/contextvars.pyi +0 -0
  748. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/copy.pyi +0 -0
  749. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/copyreg.pyi +0 -0
  750. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/crypt.pyi +0 -0
  751. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/csv.pyi +0 -0
  752. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/__init__.pyi +0 -0
  753. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/_endian.pyi +0 -0
  754. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/macholib/__init__.pyi +0 -0
  755. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/macholib/dyld.pyi +0 -0
  756. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/macholib/dylib.pyi +0 -0
  757. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/macholib/framework.pyi +0 -0
  758. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/util.pyi +0 -0
  759. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ctypes/wintypes.pyi +0 -0
  760. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/curses/__init__.pyi +0 -0
  761. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/curses/ascii.pyi +0 -0
  762. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/curses/has_key.pyi +0 -0
  763. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/curses/panel.pyi +0 -0
  764. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/curses/textpad.pyi +0 -0
  765. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/dataclasses.pyi +0 -0
  766. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/datetime.pyi +0 -0
  767. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/dbm/__init__.pyi +0 -0
  768. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/dbm/dumb.pyi +0 -0
  769. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/dbm/gnu.pyi +0 -0
  770. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/dbm/ndbm.pyi +0 -0
  771. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/dbm/sqlite3.pyi +0 -0
  772. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/decimal.pyi +0 -0
  773. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/difflib.pyi +0 -0
  774. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/dis.pyi +0 -0
  775. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/__init__.pyi +0 -0
  776. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/_msvccompiler.pyi +0 -0
  777. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/archive_util.pyi +0 -0
  778. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/bcppcompiler.pyi +0 -0
  779. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/ccompiler.pyi +0 -0
  780. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/cmd.pyi +0 -0
  781. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/__init__.pyi +0 -0
  782. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/bdist.pyi +0 -0
  783. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/bdist_dumb.pyi +0 -0
  784. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/bdist_msi.pyi +0 -0
  785. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/bdist_packager.pyi +0 -0
  786. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/bdist_rpm.pyi +0 -0
  787. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/bdist_wininst.pyi +0 -0
  788. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/build.pyi +0 -0
  789. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/build_clib.pyi +0 -0
  790. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/build_ext.pyi +0 -0
  791. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/build_py.pyi +0 -0
  792. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/build_scripts.pyi +0 -0
  793. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/check.pyi +0 -0
  794. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/clean.pyi +0 -0
  795. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/config.pyi +0 -0
  796. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/install.pyi +0 -0
  797. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/install_data.pyi +0 -0
  798. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/install_egg_info.pyi +0 -0
  799. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/install_headers.pyi +0 -0
  800. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/install_lib.pyi +0 -0
  801. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/install_scripts.pyi +0 -0
  802. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/register.pyi +0 -0
  803. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/sdist.pyi +0 -0
  804. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/command/upload.pyi +0 -0
  805. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/config.pyi +0 -0
  806. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/core.pyi +0 -0
  807. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/cygwinccompiler.pyi +0 -0
  808. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/debug.pyi +0 -0
  809. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/dep_util.pyi +0 -0
  810. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/dir_util.pyi +0 -0
  811. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/dist.pyi +0 -0
  812. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/errors.pyi +0 -0
  813. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/extension.pyi +0 -0
  814. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/fancy_getopt.pyi +0 -0
  815. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/file_util.pyi +0 -0
  816. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/filelist.pyi +0 -0
  817. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/log.pyi +0 -0
  818. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/msvccompiler.pyi +0 -0
  819. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/spawn.pyi +0 -0
  820. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/sysconfig.pyi +0 -0
  821. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/text_file.pyi +0 -0
  822. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/unixccompiler.pyi +0 -0
  823. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/util.pyi +0 -0
  824. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/distutils/version.pyi +0 -0
  825. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/doctest.pyi +0 -0
  826. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/dummy_threading.pyi +0 -0
  827. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/__init__.pyi +0 -0
  828. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/_header_value_parser.pyi +0 -0
  829. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/_policybase.pyi +0 -0
  830. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/base64mime.pyi +0 -0
  831. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/charset.pyi +0 -0
  832. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/contentmanager.pyi +0 -0
  833. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/encoders.pyi +0 -0
  834. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/errors.pyi +0 -0
  835. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/feedparser.pyi +0 -0
  836. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/generator.pyi +0 -0
  837. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/header.pyi +0 -0
  838. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/headerregistry.pyi +0 -0
  839. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/iterators.pyi +0 -0
  840. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/message.pyi +0 -0
  841. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/__init__.pyi +0 -0
  842. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/application.pyi +0 -0
  843. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/audio.pyi +0 -0
  844. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/base.pyi +0 -0
  845. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/image.pyi +0 -0
  846. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/message.pyi +0 -0
  847. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/multipart.pyi +0 -0
  848. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/nonmultipart.pyi +0 -0
  849. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/mime/text.pyi +0 -0
  850. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/parser.pyi +0 -0
  851. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/policy.pyi +0 -0
  852. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/quoprimime.pyi +0 -0
  853. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/email/utils.pyi +0 -0
  854. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/__init__.pyi +0 -0
  855. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/aliases.pyi +0 -0
  856. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/ascii.pyi +0 -0
  857. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/base64_codec.pyi +0 -0
  858. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/big5.pyi +0 -0
  859. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/big5hkscs.pyi +0 -0
  860. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/bz2_codec.pyi +0 -0
  861. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/charmap.pyi +0 -0
  862. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp037.pyi +0 -0
  863. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1006.pyi +0 -0
  864. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1026.pyi +0 -0
  865. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1125.pyi +0 -0
  866. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1140.pyi +0 -0
  867. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1250.pyi +0 -0
  868. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1251.pyi +0 -0
  869. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1252.pyi +0 -0
  870. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1253.pyi +0 -0
  871. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1254.pyi +0 -0
  872. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1255.pyi +0 -0
  873. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1256.pyi +0 -0
  874. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1257.pyi +0 -0
  875. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp1258.pyi +0 -0
  876. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp273.pyi +0 -0
  877. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp424.pyi +0 -0
  878. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp437.pyi +0 -0
  879. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp500.pyi +0 -0
  880. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp720.pyi +0 -0
  881. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp737.pyi +0 -0
  882. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp775.pyi +0 -0
  883. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp850.pyi +0 -0
  884. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp852.pyi +0 -0
  885. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp855.pyi +0 -0
  886. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp856.pyi +0 -0
  887. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp857.pyi +0 -0
  888. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp858.pyi +0 -0
  889. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp860.pyi +0 -0
  890. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp861.pyi +0 -0
  891. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp862.pyi +0 -0
  892. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp863.pyi +0 -0
  893. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp864.pyi +0 -0
  894. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp865.pyi +0 -0
  895. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp866.pyi +0 -0
  896. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp869.pyi +0 -0
  897. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp874.pyi +0 -0
  898. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp875.pyi +0 -0
  899. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp932.pyi +0 -0
  900. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp949.pyi +0 -0
  901. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/cp950.pyi +0 -0
  902. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/euc_jis_2004.pyi +0 -0
  903. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/euc_jisx0213.pyi +0 -0
  904. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/euc_jp.pyi +0 -0
  905. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/euc_kr.pyi +0 -0
  906. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/gb18030.pyi +0 -0
  907. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/gb2312.pyi +0 -0
  908. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/gbk.pyi +0 -0
  909. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/hex_codec.pyi +0 -0
  910. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/hp_roman8.pyi +0 -0
  911. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/hz.pyi +0 -0
  912. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/idna.pyi +0 -0
  913. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_jp.pyi +0 -0
  914. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_jp_1.pyi +0 -0
  915. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_jp_2.pyi +0 -0
  916. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
  917. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_jp_3.pyi +0 -0
  918. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
  919. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso2022_kr.pyi +0 -0
  920. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_1.pyi +0 -0
  921. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_10.pyi +0 -0
  922. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_11.pyi +0 -0
  923. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_13.pyi +0 -0
  924. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_14.pyi +0 -0
  925. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_15.pyi +0 -0
  926. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_16.pyi +0 -0
  927. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_2.pyi +0 -0
  928. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_3.pyi +0 -0
  929. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_4.pyi +0 -0
  930. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_5.pyi +0 -0
  931. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_6.pyi +0 -0
  932. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_7.pyi +0 -0
  933. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_8.pyi +0 -0
  934. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/iso8859_9.pyi +0 -0
  935. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/johab.pyi +0 -0
  936. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/koi8_r.pyi +0 -0
  937. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/koi8_t.pyi +0 -0
  938. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/koi8_u.pyi +0 -0
  939. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/kz1048.pyi +0 -0
  940. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/latin_1.pyi +0 -0
  941. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_arabic.pyi +0 -0
  942. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_centeuro.pyi +0 -0
  943. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_croatian.pyi +0 -0
  944. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_cyrillic.pyi +0 -0
  945. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_farsi.pyi +0 -0
  946. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_greek.pyi +0 -0
  947. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_iceland.pyi +0 -0
  948. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_latin2.pyi +0 -0
  949. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_roman.pyi +0 -0
  950. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_romanian.pyi +0 -0
  951. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mac_turkish.pyi +0 -0
  952. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/mbcs.pyi +0 -0
  953. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/oem.pyi +0 -0
  954. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/palmos.pyi +0 -0
  955. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/ptcp154.pyi +0 -0
  956. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/punycode.pyi +0 -0
  957. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/quopri_codec.pyi +0 -0
  958. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/raw_unicode_escape.pyi +0 -0
  959. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/rot_13.pyi +0 -0
  960. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/shift_jis.pyi +0 -0
  961. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/shift_jis_2004.pyi +0 -0
  962. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/shift_jisx0213.pyi +0 -0
  963. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/tis_620.pyi +0 -0
  964. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/undefined.pyi +0 -0
  965. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/unicode_escape.pyi +0 -0
  966. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_16.pyi +0 -0
  967. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_16_be.pyi +0 -0
  968. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_16_le.pyi +0 -0
  969. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_32.pyi +0 -0
  970. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_32_be.pyi +0 -0
  971. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_32_le.pyi +0 -0
  972. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_7.pyi +0 -0
  973. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_8.pyi +0 -0
  974. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/utf_8_sig.pyi +0 -0
  975. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/uu_codec.pyi +0 -0
  976. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/encodings/zlib_codec.pyi +0 -0
  977. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ensurepip/__init__.pyi +0 -0
  978. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/enum.pyi +0 -0
  979. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/errno.pyi +0 -0
  980. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/faulthandler.pyi +0 -0
  981. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/fcntl.pyi +0 -0
  982. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/filecmp.pyi +0 -0
  983. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/fileinput.pyi +0 -0
  984. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/fnmatch.pyi +0 -0
  985. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/formatter.pyi +0 -0
  986. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/fractions.pyi +0 -0
  987. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ftplib.pyi +0 -0
  988. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/functools.pyi +0 -0
  989. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/gc.pyi +0 -0
  990. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/genericpath.pyi +0 -0
  991. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/getopt.pyi +0 -0
  992. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/getpass.pyi +0 -0
  993. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/gettext.pyi +0 -0
  994. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/glob.pyi +0 -0
  995. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/graphlib.pyi +0 -0
  996. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/grp.pyi +0 -0
  997. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/gzip.pyi +0 -0
  998. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/hashlib.pyi +0 -0
  999. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/heapq.pyi +0 -0
  1000. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/hmac.pyi +0 -0
  1001. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/html/__init__.pyi +0 -0
  1002. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/html/entities.pyi +0 -0
  1003. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/html/parser.pyi +0 -0
  1004. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/http/__init__.pyi +0 -0
  1005. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/http/client.pyi +0 -0
  1006. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/http/cookiejar.pyi +0 -0
  1007. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/http/cookies.pyi +0 -0
  1008. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/http/server.pyi +0 -0
  1009. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/imaplib.pyi +0 -0
  1010. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/imghdr.pyi +0 -0
  1011. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/imp.pyi +0 -0
  1012. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/__init__.pyi +0 -0
  1013. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/_abc.pyi +0 -0
  1014. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/_bootstrap.pyi +0 -0
  1015. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/_bootstrap_external.pyi +0 -0
  1016. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/abc.pyi +0 -0
  1017. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/machinery.pyi +0 -0
  1018. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/metadata/__init__.pyi +0 -0
  1019. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/metadata/_meta.pyi +0 -0
  1020. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/metadata/diagnose.pyi +0 -0
  1021. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/readers.pyi +0 -0
  1022. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/resources/__init__.pyi +0 -0
  1023. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/resources/_common.pyi +0 -0
  1024. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/resources/_functional.pyi +0 -0
  1025. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/resources/abc.pyi +0 -0
  1026. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/resources/readers.pyi +0 -0
  1027. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/resources/simple.pyi +0 -0
  1028. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/simple.pyi +0 -0
  1029. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/importlib/util.pyi +0 -0
  1030. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/inspect.pyi +0 -0
  1031. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/io.pyi +0 -0
  1032. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ipaddress.pyi +0 -0
  1033. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/itertools.pyi +0 -0
  1034. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/json/__init__.pyi +0 -0
  1035. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/json/decoder.pyi +0 -0
  1036. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/json/encoder.pyi +0 -0
  1037. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/json/scanner.pyi +0 -0
  1038. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/json/tool.pyi +0 -0
  1039. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/keyword.pyi +0 -0
  1040. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/__init__.pyi +0 -0
  1041. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/btm_matcher.pyi +0 -0
  1042. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixer_base.pyi +0 -0
  1043. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/__init__.pyi +0 -0
  1044. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
  1045. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
  1046. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
  1047. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
  1048. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
  1049. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
  1050. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
  1051. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
  1052. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
  1053. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
  1054. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
  1055. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
  1056. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
  1057. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
  1058. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
  1059. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
  1060. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
  1061. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
  1062. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
  1063. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
  1064. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
  1065. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
  1066. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
  1067. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
  1068. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
  1069. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
  1070. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
  1071. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
  1072. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
  1073. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
  1074. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
  1075. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
  1076. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
  1077. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
  1078. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
  1079. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
  1080. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
  1081. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
  1082. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
  1083. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
  1084. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
  1085. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
  1086. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
  1087. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
  1088. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
  1089. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
  1090. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
  1091. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
  1092. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
  1093. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
  1094. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
  1095. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
  1096. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/main.pyi +0 -0
  1097. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
  1098. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/driver.pyi +0 -0
  1099. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
  1100. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/literals.pyi +0 -0
  1101. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/parse.pyi +0 -0
  1102. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
  1103. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/token.pyi +0 -0
  1104. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
  1105. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pygram.pyi +0 -0
  1106. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/pytree.pyi +0 -0
  1107. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lib2to3/refactor.pyi +0 -0
  1108. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/linecache.pyi +0 -0
  1109. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/locale.pyi +0 -0
  1110. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/logging/__init__.pyi +0 -0
  1111. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/logging/config.pyi +0 -0
  1112. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/logging/handlers.pyi +0 -0
  1113. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/lzma.pyi +0 -0
  1114. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/mailbox.pyi +0 -0
  1115. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/mailcap.pyi +0 -0
  1116. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/marshal.pyi +0 -0
  1117. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/math.pyi +0 -0
  1118. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/mimetypes.pyi +0 -0
  1119. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/mmap.pyi +0 -0
  1120. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/modulefinder.pyi +0 -0
  1121. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/msilib/__init__.pyi +0 -0
  1122. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/msilib/schema.pyi +0 -0
  1123. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/msilib/sequence.pyi +0 -0
  1124. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/msilib/text.pyi +0 -0
  1125. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/msvcrt.pyi +0 -0
  1126. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/__init__.pyi +0 -0
  1127. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/connection.pyi +0 -0
  1128. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/context.pyi +0 -0
  1129. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
  1130. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/dummy/connection.pyi +0 -0
  1131. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/forkserver.pyi +0 -0
  1132. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/heap.pyi +0 -0
  1133. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/managers.pyi +0 -0
  1134. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/pool.pyi +0 -0
  1135. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/popen_fork.pyi +0 -0
  1136. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
  1137. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
  1138. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
  1139. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/process.pyi +0 -0
  1140. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/queues.pyi +0 -0
  1141. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/reduction.pyi +0 -0
  1142. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/resource_sharer.pyi +0 -0
  1143. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/resource_tracker.pyi +0 -0
  1144. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/shared_memory.pyi +0 -0
  1145. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/sharedctypes.pyi +0 -0
  1146. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/spawn.pyi +0 -0
  1147. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/synchronize.pyi +0 -0
  1148. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/multiprocessing/util.pyi +0 -0
  1149. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/netrc.pyi +0 -0
  1150. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/nis.pyi +0 -0
  1151. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/nntplib.pyi +0 -0
  1152. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/nt.pyi +0 -0
  1153. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ntpath.pyi +0 -0
  1154. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/nturl2path.pyi +0 -0
  1155. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/numbers.pyi +0 -0
  1156. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/opcode.pyi +0 -0
  1157. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/operator.pyi +0 -0
  1158. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/optparse.pyi +0 -0
  1159. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/os/__init__.pyi +0 -0
  1160. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/os/path.pyi +0 -0
  1161. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ossaudiodev.pyi +0 -0
  1162. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/parser.pyi +0 -0
  1163. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pathlib.pyi +0 -0
  1164. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pdb.pyi +0 -0
  1165. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pickle.pyi +0 -0
  1166. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pickletools.pyi +0 -0
  1167. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pipes.pyi +0 -0
  1168. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pkgutil.pyi +0 -0
  1169. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/platform.pyi +0 -0
  1170. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/plistlib.pyi +0 -0
  1171. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/poplib.pyi +0 -0
  1172. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/posix.pyi +0 -0
  1173. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/posixpath.pyi +0 -0
  1174. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pprint.pyi +0 -0
  1175. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/profile.pyi +0 -0
  1176. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pstats.pyi +0 -0
  1177. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pty.pyi +0 -0
  1178. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pwd.pyi +0 -0
  1179. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/py_compile.pyi +0 -0
  1180. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pyclbr.pyi +0 -0
  1181. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pydoc.pyi +0 -0
  1182. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pydoc_data/__init__.pyi +0 -0
  1183. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pydoc_data/topics.pyi +0 -0
  1184. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pyexpat/__init__.pyi +0 -0
  1185. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pyexpat/errors.pyi +0 -0
  1186. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/pyexpat/model.pyi +0 -0
  1187. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/queue.pyi +0 -0
  1188. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/quopri.pyi +0 -0
  1189. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/random.pyi +0 -0
  1190. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/re.pyi +0 -0
  1191. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/readline.pyi +0 -0
  1192. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/reprlib.pyi +0 -0
  1193. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/resource.pyi +0 -0
  1194. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/rlcompleter.pyi +0 -0
  1195. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/runpy.pyi +0 -0
  1196. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/sched.pyi +0 -0
  1197. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/secrets.pyi +0 -0
  1198. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/select.pyi +0 -0
  1199. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/selectors.pyi +0 -0
  1200. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/shelve.pyi +0 -0
  1201. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/shlex.pyi +0 -0
  1202. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/shutil.pyi +0 -0
  1203. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/signal.pyi +0 -0
  1204. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/site.pyi +0 -0
  1205. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/smtpd.pyi +0 -0
  1206. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/smtplib.pyi +0 -0
  1207. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/sndhdr.pyi +0 -0
  1208. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/socket.pyi +0 -0
  1209. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/socketserver.pyi +0 -0
  1210. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/spwd.pyi +0 -0
  1211. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/sqlite3/__init__.pyi +0 -0
  1212. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/sqlite3/dbapi2.pyi +0 -0
  1213. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/sqlite3/dump.pyi +0 -0
  1214. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/sre_compile.pyi +0 -0
  1215. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/sre_constants.pyi +0 -0
  1216. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/sre_parse.pyi +0 -0
  1217. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/ssl.pyi +0 -0
  1218. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/stat.pyi +0 -0
  1219. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/statistics.pyi +0 -0
  1220. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/string.pyi +0 -0
  1221. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/stringprep.pyi +0 -0
  1222. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/struct.pyi +0 -0
  1223. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/subprocess.pyi +0 -0
  1224. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/sunau.pyi +0 -0
  1225. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/symbol.pyi +0 -0
  1226. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/symtable.pyi +0 -0
  1227. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/sys/__init__.pyi +0 -0
  1228. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/sys/_monitoring.pyi +0 -0
  1229. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/sysconfig.pyi +0 -0
  1230. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/syslog.pyi +0 -0
  1231. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tabnanny.pyi +0 -0
  1232. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tarfile.pyi +0 -0
  1233. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/telnetlib.pyi +0 -0
  1234. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tempfile.pyi +0 -0
  1235. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/termios.pyi +0 -0
  1236. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/textwrap.pyi +0 -0
  1237. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/this.pyi +0 -0
  1238. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/threading.pyi +0 -0
  1239. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/time.pyi +0 -0
  1240. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/timeit.pyi +0 -0
  1241. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/__init__.pyi +0 -0
  1242. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/colorchooser.pyi +0 -0
  1243. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/commondialog.pyi +0 -0
  1244. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/constants.pyi +0 -0
  1245. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/dialog.pyi +0 -0
  1246. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/dnd.pyi +0 -0
  1247. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/filedialog.pyi +0 -0
  1248. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/font.pyi +0 -0
  1249. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/messagebox.pyi +0 -0
  1250. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/scrolledtext.pyi +0 -0
  1251. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/simpledialog.pyi +0 -0
  1252. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/tix.pyi +0 -0
  1253. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tkinter/ttk.pyi +0 -0
  1254. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/token.pyi +0 -0
  1255. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tokenize.pyi +0 -0
  1256. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tomllib.pyi +0 -0
  1257. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/trace.pyi +0 -0
  1258. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/traceback.pyi +0 -0
  1259. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tracemalloc.pyi +0 -0
  1260. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/tty.pyi +0 -0
  1261. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/turtle.pyi +0 -0
  1262. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/types.pyi +0 -0
  1263. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/typing.pyi +0 -0
  1264. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/typing_extensions.pyi +0 -0
  1265. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unicodedata.pyi +0 -0
  1266. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/__init__.pyi +0 -0
  1267. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/_log.pyi +0 -0
  1268. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/async_case.pyi +0 -0
  1269. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/case.pyi +0 -0
  1270. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/loader.pyi +0 -0
  1271. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/main.pyi +0 -0
  1272. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/mock.pyi +0 -0
  1273. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/result.pyi +0 -0
  1274. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/runner.pyi +0 -0
  1275. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/signals.pyi +0 -0
  1276. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/suite.pyi +0 -0
  1277. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/unittest/util.pyi +0 -0
  1278. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/urllib/__init__.pyi +0 -0
  1279. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/urllib/error.pyi +0 -0
  1280. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/urllib/parse.pyi +0 -0
  1281. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/urllib/request.pyi +0 -0
  1282. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/urllib/response.pyi +0 -0
  1283. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/urllib/robotparser.pyi +0 -0
  1284. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/uu.pyi +0 -0
  1285. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/uuid.pyi +0 -0
  1286. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/warnings.pyi +0 -0
  1287. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/wave.pyi +0 -0
  1288. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/weakref.pyi +0 -0
  1289. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/webbrowser.pyi +0 -0
  1290. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/winreg.pyi +0 -0
  1291. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/winsound.pyi +0 -0
  1292. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/__init__.pyi +0 -0
  1293. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/handlers.pyi +0 -0
  1294. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/headers.pyi +0 -0
  1295. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/simple_server.pyi +0 -0
  1296. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/types.pyi +0 -0
  1297. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/util.pyi +0 -0
  1298. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/wsgiref/validate.pyi +0 -0
  1299. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xdrlib.pyi +0 -0
  1300. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/__init__.pyi +0 -0
  1301. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/NodeFilter.pyi +0 -0
  1302. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/__init__.pyi +0 -0
  1303. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/domreg.pyi +0 -0
  1304. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/expatbuilder.pyi +0 -0
  1305. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/minicompat.pyi +0 -0
  1306. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/minidom.pyi +0 -0
  1307. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/pulldom.pyi +0 -0
  1308. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/dom/xmlbuilder.pyi +0 -0
  1309. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/etree/ElementInclude.pyi +0 -0
  1310. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/etree/ElementPath.pyi +0 -0
  1311. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/etree/ElementTree.pyi +0 -0
  1312. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/etree/__init__.pyi +0 -0
  1313. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/etree/cElementTree.pyi +0 -0
  1314. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/parsers/__init__.pyi +0 -0
  1315. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/parsers/expat/__init__.pyi +0 -0
  1316. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/parsers/expat/errors.pyi +0 -0
  1317. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/parsers/expat/model.pyi +0 -0
  1318. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/sax/__init__.pyi +0 -0
  1319. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/sax/_exceptions.pyi +0 -0
  1320. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/sax/expatreader.pyi +0 -0
  1321. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/sax/handler.pyi +0 -0
  1322. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/sax/saxutils.pyi +0 -0
  1323. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xml/sax/xmlreader.pyi +0 -0
  1324. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xmlrpc/__init__.pyi +0 -0
  1325. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xmlrpc/client.pyi +0 -0
  1326. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xmlrpc/server.pyi +0 -0
  1327. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/xxlimited.pyi +0 -0
  1328. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/zipapp.pyi +0 -0
  1329. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/zipfile/__init__.pyi +0 -0
  1330. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/zipfile/_path/__init__.pyi +0 -0
  1331. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/zipfile/_path/glob.pyi +0 -0
  1332. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/zipimport.pyi +0 -0
  1333. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/zlib.pyi +0 -0
  1334. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/zoneinfo/__init__.pyi +0 -0
  1335. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/zoneinfo/_common.pyi +0 -0
  1336. {ruff-0.9.2 → ruff-0.9.4}/crates/red_knot_vendored/vendor/typeshed/stdlib/zoneinfo/_tzpath.pyi +0 -0
  1337. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/build.rs +0 -0
  1338. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/cache_mutable/.gitignore +0 -0
  1339. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/cache_remove_old_files/source.py +0 -0
  1340. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/formatted.py +0 -0
  1341. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/include-test/a.py +0 -0
  1342. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/include-test/b.py +0 -0
  1343. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/include-test/nested-project/e.py +0 -0
  1344. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/include-test/nested-project/pyproject.toml +0 -0
  1345. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/include-test/pyproject.toml +0 -0
  1346. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/include-test/subdirectory/c.py +0 -0
  1347. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/include-test/subdirectory/d.py +0 -0
  1348. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/trailing_semicolon.ipynb +0 -0
  1349. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/unformatted.ipynb +0 -0
  1350. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/resources/test/fixtures/unformatted.py +0 -0
  1351. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/cache.rs +0 -0
  1352. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/add_noqa.rs +0 -0
  1353. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/check.rs +0 -0
  1354. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/check_stdin.rs +0 -0
  1355. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/clean.rs +0 -0
  1356. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/config.rs +0 -0
  1357. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/format_stdin.rs +0 -0
  1358. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/linter.rs +0 -0
  1359. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/rule.rs +0 -0
  1360. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/server.rs +0 -0
  1361. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/show_files.rs +0 -0
  1362. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/show_settings.rs +0 -0
  1363. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/snapshots/ruff__commands__check__test__E902_E902.py.snap +0 -0
  1364. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/commands/version.rs +0 -0
  1365. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/diagnostics.rs +0 -0
  1366. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/lib.rs +0 -0
  1367. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/main.rs +0 -0
  1368. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/printer.rs +0 -0
  1369. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/resolve.rs +0 -0
  1370. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/snapshots/ruff__version__tests__version_formatting.snap +0 -0
  1371. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/snapshots/ruff__version__tests__version_formatting_with_commit_info.snap +0 -0
  1372. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/snapshots/ruff__version__tests__version_formatting_with_commits_since_last_tag.snap +0 -0
  1373. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/snapshots/ruff__version__tests__version_serializable.snap +0 -0
  1374. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/stdin.rs +0 -0
  1375. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/src/version.rs +0 -0
  1376. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/tests/analyze_graph.rs +0 -0
  1377. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/tests/config.rs +0 -0
  1378. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/tests/integration_test.rs +0 -0
  1379. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/tests/resolve_files.rs +0 -0
  1380. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/tests/snapshots/integration_test__rule_f401.snap +0 -0
  1381. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/tests/snapshots/integration_test__stdin_json.snap +0 -0
  1382. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff/tests/version.rs +0 -0
  1383. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/Cargo.toml +0 -0
  1384. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/LICENSE-APACHE +0 -0
  1385. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/LICENSE-MIT +0 -0
  1386. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/README.md +0 -0
  1387. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/examples/expected_type.rs +0 -0
  1388. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/examples/expected_type.svg +0 -0
  1389. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/examples/footer.rs +0 -0
  1390. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/examples/footer.svg +0 -0
  1391. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/examples/format.rs +0 -0
  1392. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/examples/format.svg +0 -0
  1393. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/examples/multislice.rs +0 -0
  1394. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/examples/multislice.svg +0 -0
  1395. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/src/lib.rs +0 -0
  1396. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/src/renderer/display_list.rs +0 -0
  1397. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/src/renderer/margin.rs +0 -0
  1398. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/src/renderer/styled_buffer.rs +0 -0
  1399. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/src/renderer/stylesheet.rs +0 -0
  1400. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/src/snippet.rs +0 -0
  1401. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/examples.rs +0 -0
  1402. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_eof.svg +0 -0
  1403. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_eof.toml +0 -0
  1404. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_insertion.svg +0 -0
  1405. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_insertion.toml +0 -0
  1406. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_multiline.svg +0 -0
  1407. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_multiline.toml +0 -0
  1408. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_multiline2.svg +0 -0
  1409. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_multiline2.toml +0 -0
  1410. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_removed_nl.svg +0 -0
  1411. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/ann_removed_nl.toml +0 -0
  1412. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/ensure-emoji-highlight-width.svg +0 -0
  1413. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/ensure-emoji-highlight-width.toml +0 -0
  1414. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_ann_multiline.svg +0 -0
  1415. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_ann_multiline.toml +0 -0
  1416. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_bad_origin_line.svg +0 -0
  1417. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_bad_origin_line.toml +0 -0
  1418. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_leading.svg +0 -0
  1419. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_leading.toml +0 -0
  1420. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_trailing.svg +0 -0
  1421. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/fold_trailing.toml +0 -0
  1422. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/issue_9.svg +0 -0
  1423. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/issue_9.toml +0 -0
  1424. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/multiple_annotations.svg +0 -0
  1425. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/multiple_annotations.toml +0 -0
  1426. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/simple.svg +0 -0
  1427. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/simple.toml +0 -0
  1428. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line.svg +0 -0
  1429. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line.toml +0 -0
  1430. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line_char.svg +0 -0
  1431. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line_char.toml +0 -0
  1432. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line_non_ws.svg +0 -0
  1433. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/color/strip_line_non_ws.toml +0 -0
  1434. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/deserialize.rs +0 -0
  1435. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/fixtures/main.rs +0 -0
  1436. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/formatter.rs +0 -0
  1437. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_annotate_snippets/tests/rustc_tests.rs +0 -0
  1438. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_cache/Cargo.toml +0 -0
  1439. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_cache/src/cache_key.rs +0 -0
  1440. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_cache/src/filetime.rs +0 -0
  1441. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_cache/src/globset.rs +0 -0
  1442. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_cache/src/lib.rs +0 -0
  1443. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_cache/tests/cache_key.rs +0 -0
  1444. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/Cargo.toml +0 -0
  1445. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/display.rs +0 -0
  1446. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/file_revision.rs +0 -0
  1447. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/files/file_root.rs +0 -0
  1448. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/files/path.rs +0 -0
  1449. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/files.rs +0 -0
  1450. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/lib.rs +0 -0
  1451. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/panic.rs +0 -0
  1452. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/parsed.rs +0 -0
  1453. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/source.rs +0 -0
  1454. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/system/memory_fs.rs +0 -0
  1455. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/system/os.rs +0 -0
  1456. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/system/path.rs +0 -0
  1457. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/system/test.rs +0 -0
  1458. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/system/walk_directory.rs +0 -0
  1459. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/system.rs +0 -0
  1460. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/testing.rs +0 -0
  1461. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/vendored/path.rs +0 -0
  1462. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_db/src/vendored.rs +0 -0
  1463. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_diagnostics/Cargo.toml +0 -0
  1464. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_diagnostics/src/diagnostic.rs +0 -0
  1465. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_diagnostics/src/edit.rs +0 -0
  1466. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_diagnostics/src/fix.rs +0 -0
  1467. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_diagnostics/src/lib.rs +0 -0
  1468. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_diagnostics/src/source_map.rs +0 -0
  1469. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_diagnostics/src/violation.rs +0 -0
  1470. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/Cargo.toml +0 -0
  1471. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/shared_traits.rs +0 -0
  1472. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/arguments.rs +0 -0
  1473. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/buffer.rs +0 -0
  1474. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/builders.rs +0 -0
  1475. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/diagnostics.rs +0 -0
  1476. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/format_element/document.rs +0 -0
  1477. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/format_element/tag.rs +0 -0
  1478. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/format_element.rs +0 -0
  1479. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/format_extensions.rs +0 -0
  1480. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/formatter.rs +0 -0
  1481. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/group_id.rs +0 -0
  1482. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/lib.rs +0 -0
  1483. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/macros.rs +0 -0
  1484. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/prelude.rs +0 -0
  1485. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/printer/call_stack.rs +0 -0
  1486. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/printer/line_suffixes.rs +0 -0
  1487. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/printer/mod.rs +0 -0
  1488. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/printer/printer_options/mod.rs +0 -0
  1489. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/printer/queue.rs +0 -0
  1490. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/printer/stack.rs +0 -0
  1491. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_formatter/src/source_code.rs +0 -0
  1492. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_graph/Cargo.toml +0 -0
  1493. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_graph/src/collector.rs +0 -0
  1494. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_graph/src/lib.rs +0 -0
  1495. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_graph/src/resolver.rs +0 -0
  1496. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_graph/src/settings.rs +0 -0
  1497. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_index/Cargo.toml +0 -0
  1498. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_index/src/idx.rs +0 -0
  1499. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_index/src/lib.rs +0 -0
  1500. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_index/src/slice.rs +0 -0
  1501. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_index/src/vec.rs +0 -0
  1502. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/__init__.py +0 -0
  1503. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/__init__.py +0 -0
  1504. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/disallowed_rule_names.txt +0 -0
  1505. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/package/pyproject.toml +0 -0
  1506. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/package/resources/ignored.py +0 -0
  1507. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/package/src/package/__init__.py +0 -0
  1508. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/package/src/package/app.py +0 -0
  1509. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/package/src/package/core.py +0 -0
  1510. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/.gitignore +0 -0
  1511. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/README.md +0 -0
  1512. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/examples/.dotfiles/pyproject.toml +0 -0
  1513. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/examples/.dotfiles/script.py +0 -0
  1514. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/examples/docs/docs/__init__.py +0 -0
  1515. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/examples/docs/docs/concepts/__init__.py +0 -0
  1516. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/examples/docs/docs/concepts/file.py +0 -0
  1517. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/examples/docs/docs/file.py +0 -0
  1518. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/examples/docs/ruff.toml +0 -0
  1519. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/examples/excluded/script.py +0 -0
  1520. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/project/__init__.py +0 -0
  1521. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/project/file.py +0 -0
  1522. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/project/import_file.py +0 -0
  1523. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/pyproject.toml +0 -0
  1524. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/python_modules/app/app/__init__.py +0 -0
  1525. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/python_modules/app/app/app_file.py +0 -0
  1526. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/python_modules/core/core/__init__.py +0 -0
  1527. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/resources/test/project/python_modules/core/core/core_file.py +0 -0
  1528. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/analyze/comprehension.rs +0 -0
  1529. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/analyze/deferred_for_loops.rs +0 -0
  1530. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/analyze/deferred_lambdas.rs +0 -0
  1531. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/analyze/definitions.rs +0 -0
  1532. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/analyze/except_handler.rs +0 -0
  1533. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/analyze/mod.rs +0 -0
  1534. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/analyze/module.rs +0 -0
  1535. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/analyze/parameter.rs +0 -0
  1536. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/analyze/parameters.rs +0 -0
  1537. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/analyze/string_like.rs +0 -0
  1538. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/analyze/suite.rs +0 -0
  1539. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/analyze/unresolved_references.rs +0 -0
  1540. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/annotation.rs +0 -0
  1541. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/ast/deferred.rs +0 -0
  1542. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/filesystem.rs +0 -0
  1543. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/imports.rs +0 -0
  1544. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/logical_lines.rs +0 -0
  1545. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/mod.rs +0 -0
  1546. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/noqa.rs +0 -0
  1547. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/physical_lines.rs +0 -0
  1548. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/checkers/tokens.rs +0 -0
  1549. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/comments/mod.rs +0 -0
  1550. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/comments/shebang.rs +0 -0
  1551. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/comments/snapshots/ruff_linter__comments__shebang__tests__shebang_end_of_line.snap +0 -0
  1552. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/comments/snapshots/ruff_linter__comments__shebang__tests__shebang_leading_space.snap +0 -0
  1553. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/comments/snapshots/ruff_linter__comments__shebang__tests__shebang_match.snap +0 -0
  1554. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/comments/snapshots/ruff_linter__comments__shebang__tests__shebang_match_trailing_comment.snap +0 -0
  1555. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/comments/snapshots/ruff_linter__comments__shebang__tests__shebang_non_match.snap +0 -0
  1556. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/cst/helpers.rs +0 -0
  1557. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/cst/matchers.rs +0 -0
  1558. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/cst/mod.rs +0 -0
  1559. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/directives.rs +0 -0
  1560. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/doc_lines.rs +0 -0
  1561. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/docstrings/extraction.rs +0 -0
  1562. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/docstrings/google.rs +0 -0
  1563. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/docstrings/mod.rs +0 -0
  1564. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/docstrings/numpy.rs +0 -0
  1565. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/docstrings/sections.rs +0 -0
  1566. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/docstrings/styles.rs +0 -0
  1567. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/fix/edits.rs +0 -0
  1568. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/fix/snippet.rs +0 -0
  1569. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/fs.rs +0 -0
  1570. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/importer/insertion.rs +0 -0
  1571. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/importer/mod.rs +0 -0
  1572. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/lib.rs +0 -0
  1573. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/line_width.rs +0 -0
  1574. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/linter.rs +0 -0
  1575. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/locator.rs +0 -0
  1576. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/logging.rs +0 -0
  1577. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/azure.rs +0 -0
  1578. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/diff.rs +0 -0
  1579. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/github.rs +0 -0
  1580. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/gitlab.rs +0 -0
  1581. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/grouped.rs +0 -0
  1582. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/json.rs +0 -0
  1583. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/json_lines.rs +0 -0
  1584. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/junit.rs +0 -0
  1585. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/mod.rs +0 -0
  1586. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/pylint.rs +0 -0
  1587. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/rdjson.rs +0 -0
  1588. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/sarif.rs +0 -0
  1589. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__azure__tests__output.snap +0 -0
  1590. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__azure__tests__syntax_errors.snap +0 -0
  1591. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__github__tests__output.snap +0 -0
  1592. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__github__tests__syntax_errors.snap +0 -0
  1593. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__gitlab__tests__output.snap +0 -0
  1594. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__gitlab__tests__syntax_errors.snap +0 -0
  1595. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__grouped__tests__default.snap +0 -0
  1596. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__grouped__tests__fix_status.snap +0 -0
  1597. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__grouped__tests__fix_status_unsafe.snap +0 -0
  1598. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__grouped__tests__show_source.snap +0 -0
  1599. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__grouped__tests__syntax_errors.snap +0 -0
  1600. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__json__tests__notebook_output.snap +0 -0
  1601. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__json__tests__output.snap +0 -0
  1602. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__json__tests__syntax_errors.snap +0 -0
  1603. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__json_lines__tests__notebook_output.snap +0 -0
  1604. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__json_lines__tests__output.snap +0 -0
  1605. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__json_lines__tests__syntax_errors.snap +0 -0
  1606. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__junit__tests__output.snap +0 -0
  1607. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__junit__tests__syntax_errors.snap +0 -0
  1608. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__pylint__tests__output.snap +0 -0
  1609. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__pylint__tests__syntax_errors.snap +0 -0
  1610. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__rdjson__tests__output.snap +0 -0
  1611. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__rdjson__tests__syntax_errors.snap +0 -0
  1612. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__sarif__tests__results.snap +0 -0
  1613. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__text__tests__default.snap +0 -0
  1614. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__text__tests__fix_status.snap +0 -0
  1615. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__text__tests__fix_status_unsafe.snap +0 -0
  1616. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__text__tests__notebook_output.snap +0 -0
  1617. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/snapshots/ruff_linter__message__text__tests__syntax_errors.snap +0 -0
  1618. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/message/text.rs +0 -0
  1619. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/noqa.rs +0 -0
  1620. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/package.rs +0 -0
  1621. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/packaging.rs +0 -0
  1622. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/pyproject_toml.rs +0 -0
  1623. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/registry/rule_set.rs +0 -0
  1624. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/registry.rs +0 -0
  1625. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/renamer.rs +0 -0
  1626. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rule_redirects.rs +0 -0
  1627. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/airflow/rules/dag_schedule_argument.rs +0 -0
  1628. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/airflow/rules/mod.rs +0 -0
  1629. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/airflow/rules/task_variable_name.rs +0 -0
  1630. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/eradicate/detection.rs +0 -0
  1631. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/eradicate/mod.rs +0 -0
  1632. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/eradicate/rules/commented_out_code.rs +0 -0
  1633. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/eradicate/rules/mod.rs +0 -0
  1634. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/fastapi/mod.rs +0 -0
  1635. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/fastapi/rules/fastapi_non_annotated_dependency.rs +0 -0
  1636. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/fastapi/rules/fastapi_redundant_response_model.rs +0 -0
  1637. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/fastapi/rules/fastapi_unused_path_parameter.rs +0 -0
  1638. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/fastapi/rules/mod.rs +0 -0
  1639. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_2020/helpers.rs +0 -0
  1640. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_2020/mod.rs +0 -0
  1641. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_2020/rules/compare.rs +0 -0
  1642. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_2020/rules/mod.rs +0 -0
  1643. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_2020/rules/name_or_attribute.rs +0 -0
  1644. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_2020/rules/subscript.rs +0 -0
  1645. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_annotations/helpers.rs +0 -0
  1646. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_annotations/mod.rs +0 -0
  1647. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_annotations/rules/definition.rs +0 -0
  1648. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_annotations/rules/mod.rs +0 -0
  1649. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_annotations/settings.rs +0 -0
  1650. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_async/helpers.rs +0 -0
  1651. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_async/mod.rs +0 -0
  1652. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_async/rules/async_busy_wait.rs +0 -0
  1653. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_async/rules/async_function_with_timeout.rs +0 -0
  1654. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_async/rules/async_zero_sleep.rs +0 -0
  1655. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_async/rules/blocking_http_call.rs +0 -0
  1656. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_async/rules/blocking_open_call.rs +0 -0
  1657. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_async/rules/blocking_sleep.rs +0 -0
  1658. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_async/rules/cancel_scope_no_checkpoint.rs +0 -0
  1659. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_async/rules/long_sleep_not_forever.rs +0 -0
  1660. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_async/rules/mod.rs +0 -0
  1661. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_async/rules/sync_call.rs +0 -0
  1662. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/helpers.rs +0 -0
  1663. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/assert_used.rs +0 -0
  1664. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/bad_file_permissions.rs +0 -0
  1665. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/django_extra.rs +0 -0
  1666. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/django_raw_sql.rs +0 -0
  1667. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/exec_used.rs +0 -0
  1668. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/flask_debug_true.rs +0 -0
  1669. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_bind_all_interfaces.rs +0 -0
  1670. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_password_default.rs +0 -0
  1671. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_password_func_arg.rs +0 -0
  1672. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_password_string.rs +0 -0
  1673. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/hardcoded_tmp_directory.rs +0 -0
  1674. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/hashlib_insecure_hash_functions.rs +0 -0
  1675. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/jinja2_autoescape_false.rs +0 -0
  1676. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/logging_config_insecure_listen.rs +0 -0
  1677. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/mako_templates.rs +0 -0
  1678. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/mod.rs +0 -0
  1679. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/paramiko_calls.rs +0 -0
  1680. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/request_with_no_cert_validation.rs +0 -0
  1681. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/request_without_timeout.rs +0 -0
  1682. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/shell_injection.rs +0 -0
  1683. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/snmp_insecure_version.rs +0 -0
  1684. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/snmp_weak_cryptography.rs +0 -0
  1685. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/ssh_no_host_key_verification.rs +0 -0
  1686. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/ssl_insecure_version.rs +0 -0
  1687. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/ssl_with_bad_defaults.rs +0 -0
  1688. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/ssl_with_no_version.rs +0 -0
  1689. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/tarfile_unsafe_members.rs +0 -0
  1690. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/try_except_continue.rs +0 -0
  1691. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/try_except_pass.rs +0 -0
  1692. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/unsafe_yaml_load.rs +0 -0
  1693. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/rules/weak_cryptographic_key.rs +0 -0
  1694. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bandit/settings.rs +0 -0
  1695. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_blind_except/mod.rs +0 -0
  1696. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_blind_except/rules/blind_except.rs +0 -0
  1697. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_blind_except/rules/mod.rs +0 -0
  1698. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_boolean_trap/helpers.rs +0 -0
  1699. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_boolean_trap/mod.rs +0 -0
  1700. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_boolean_trap/rules/boolean_default_value_positional_argument.rs +0 -0
  1701. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_boolean_trap/rules/boolean_positional_value_in_call.rs +0 -0
  1702. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_boolean_trap/rules/boolean_type_hint_positional_argument.rs +0 -0
  1703. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_boolean_trap/rules/mod.rs +0 -0
  1704. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_boolean_trap/settings.rs +0 -0
  1705. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/helpers.rs +0 -0
  1706. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/abstract_base_class.rs +0 -0
  1707. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/assert_false.rs +0 -0
  1708. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/assert_raises_exception.rs +0 -0
  1709. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/assignment_to_os_environ.rs +0 -0
  1710. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/batched_without_explicit_strict.rs +0 -0
  1711. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/cached_instance_method.rs +0 -0
  1712. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/duplicate_exceptions.rs +0 -0
  1713. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/duplicate_value.rs +0 -0
  1714. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/except_with_empty_tuple.rs +0 -0
  1715. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/except_with_non_exception_classes.rs +0 -0
  1716. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/f_string_docstring.rs +0 -0
  1717. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/function_uses_loop_variable.rs +0 -0
  1718. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/getattr_with_constant.rs +0 -0
  1719. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/jump_statement_in_finally.rs +0 -0
  1720. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/loop_iterator_mutation.rs +0 -0
  1721. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/loop_variable_overrides_iterator.rs +0 -0
  1722. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/mod.rs +0 -0
  1723. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/mutable_argument_default.rs +0 -0
  1724. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/mutable_contextvar_default.rs +0 -0
  1725. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/no_explicit_stacklevel.rs +0 -0
  1726. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/raise_literal.rs +0 -0
  1727. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/raise_without_from_inside_except.rs +0 -0
  1728. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/re_sub_positional_args.rs +0 -0
  1729. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/redundant_tuple_in_exception_handler.rs +0 -0
  1730. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/return_in_generator.rs +0 -0
  1731. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/reuse_of_groupby_generator.rs +0 -0
  1732. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/setattr_with_constant.rs +0 -0
  1733. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/star_arg_unpacking_after_keyword_arg.rs +0 -0
  1734. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/static_key_dict_comprehension.rs +0 -0
  1735. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/strip_with_multi_characters.rs +0 -0
  1736. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/unary_prefix_increment_decrement.rs +0 -0
  1737. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/unintentional_type_annotation.rs +0 -0
  1738. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/unreliable_callable_check.rs +0 -0
  1739. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/unused_loop_control_variable.rs +0 -0
  1740. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/useless_comparison.rs +0 -0
  1741. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/useless_contextlib_suppress.rs +0 -0
  1742. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/useless_expression.rs +0 -0
  1743. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/rules/zip_without_explicit_strict.rs +0 -0
  1744. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_bugbear/settings.rs +0 -0
  1745. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_builtins/helpers.rs +0 -0
  1746. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_builtins/mod.rs +0 -0
  1747. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_builtins/rules/builtin_argument_shadowing.rs +0 -0
  1748. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_builtins/rules/builtin_attribute_shadowing.rs +0 -0
  1749. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_builtins/rules/builtin_import_shadowing.rs +0 -0
  1750. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_builtins/rules/builtin_lambda_argument_shadowing.rs +0 -0
  1751. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_builtins/rules/builtin_variable_shadowing.rs +0 -0
  1752. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_builtins/rules/mod.rs +0 -0
  1753. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_builtins/rules/stdlib_module_shadowing.rs +0 -0
  1754. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_builtins/settings.rs +0 -0
  1755. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_commas/mod.rs +0 -0
  1756. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_commas/rules/mod.rs +0 -0
  1757. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_commas/rules/trailing_commas.rs +0 -0
  1758. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/mod.rs +0 -0
  1759. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/helpers.rs +0 -0
  1760. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/mod.rs +0 -0
  1761. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_call_around_sorted.rs +0 -0
  1762. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_collection_call.rs +0 -0
  1763. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_comprehension.rs +0 -0
  1764. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_comprehension_in_call.rs +0 -0
  1765. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_dict_comprehension_for_iterable.rs +0 -0
  1766. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_double_cast_or_process.rs +0 -0
  1767. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_generator_dict.rs +0 -0
  1768. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_generator_list.rs +0 -0
  1769. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_list_call.rs +0 -0
  1770. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_list_comprehension_dict.rs +0 -0
  1771. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_list_comprehension_set.rs +0 -0
  1772. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_literal_dict.rs +0 -0
  1773. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_literal_set.rs +0 -0
  1774. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_literal_within_dict_call.rs +0 -0
  1775. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_literal_within_list_call.rs +0 -0
  1776. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_literal_within_tuple_call.rs +0 -0
  1777. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/rules/unnecessary_subscript_reversal.rs +0 -0
  1778. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_comprehensions/settings.rs +0 -0
  1779. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_copyright/mod.rs +0 -0
  1780. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_copyright/rules/missing_copyright_notice.rs +0 -0
  1781. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_copyright/rules/mod.rs +0 -0
  1782. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_copyright/settings.rs +0 -0
  1783. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/mod.rs +0 -0
  1784. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_date_fromtimestamp.rs +0 -0
  1785. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_date_today.rs +0 -0
  1786. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_fromtimestamp.rs +0 -0
  1787. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_now_without_tzinfo.rs +0 -0
  1788. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_strptime_without_zone.rs +0 -0
  1789. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_today.rs +0 -0
  1790. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_utcfromtimestamp.rs +0 -0
  1791. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_utcnow.rs +0 -0
  1792. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/rules/call_datetime_without_tzinfo.rs +0 -0
  1793. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/rules/datetime_min_max.rs +0 -0
  1794. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/rules/helpers.rs +0 -0
  1795. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_datetimez/rules/mod.rs +0 -0
  1796. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_debugger/mod.rs +0 -0
  1797. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_debugger/rules/debugger.rs +0 -0
  1798. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_debugger/rules/mod.rs +0 -0
  1799. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_debugger/types.rs +0 -0
  1800. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_django/mod.rs +0 -0
  1801. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_django/rules/all_with_model_form.rs +0 -0
  1802. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_django/rules/exclude_with_model_form.rs +0 -0
  1803. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_django/rules/helpers.rs +0 -0
  1804. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_django/rules/locals_in_render_function.rs +0 -0
  1805. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_django/rules/mod.rs +0 -0
  1806. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_django/rules/model_without_dunder_str.rs +0 -0
  1807. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_django/rules/non_leading_receiver_decorator.rs +0 -0
  1808. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_django/rules/nullable_model_string_field.rs +0 -0
  1809. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_django/rules/unordered_body_content_in_model.rs +0 -0
  1810. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_errmsg/mod.rs +0 -0
  1811. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_errmsg/rules/mod.rs +0 -0
  1812. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_errmsg/rules/string_in_exception.rs +0 -0
  1813. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_errmsg/settings.rs +0 -0
  1814. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_executable/helpers.rs +0 -0
  1815. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_executable/mod.rs +0 -0
  1816. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_executable/rules/mod.rs +0 -0
  1817. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_leading_whitespace.rs +0 -0
  1818. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_missing_executable_file.rs +0 -0
  1819. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_missing_python.rs +0 -0
  1820. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_not_executable.rs +0 -0
  1821. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_executable/rules/shebang_not_first_line.rs +0 -0
  1822. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_fixme/mod.rs +0 -0
  1823. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_fixme/rules/mod.rs +0 -0
  1824. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_fixme/rules/todos.rs +0 -0
  1825. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_future_annotations/mod.rs +0 -0
  1826. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_future_annotations/rules/future_required_type_annotation.rs +0 -0
  1827. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_future_annotations/rules/future_rewritable_type_annotation.rs +0 -0
  1828. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_future_annotations/rules/mod.rs +0 -0
  1829. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_gettext/mod.rs +0 -0
  1830. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_gettext/rules/f_string_in_gettext_func_call.rs +0 -0
  1831. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_gettext/rules/format_in_gettext_func_call.rs +0 -0
  1832. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_gettext/rules/mod.rs +0 -0
  1833. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_gettext/rules/printf_in_gettext_func_call.rs +0 -0
  1834. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_gettext/settings.rs +0 -0
  1835. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_implicit_str_concat/mod.rs +0 -0
  1836. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_implicit_str_concat/rules/explicit.rs +0 -0
  1837. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_implicit_str_concat/rules/implicit.rs +0 -0
  1838. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_implicit_str_concat/rules/mod.rs +0 -0
  1839. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_implicit_str_concat/settings.rs +0 -0
  1840. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_import_conventions/mod.rs +0 -0
  1841. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_import_conventions/rules/banned_import_alias.rs +0 -0
  1842. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_import_conventions/rules/banned_import_from.rs +0 -0
  1843. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_import_conventions/rules/mod.rs +0 -0
  1844. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_import_conventions/rules/unconventional_import_alias.rs +0 -0
  1845. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_import_conventions/settings.rs +0 -0
  1846. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_logging/mod.rs +0 -0
  1847. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_logging/rules/direct_logger_instantiation.rs +0 -0
  1848. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_logging/rules/exception_without_exc_info.rs +0 -0
  1849. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_logging/rules/invalid_get_logger_argument.rs +0 -0
  1850. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_logging/rules/mod.rs +0 -0
  1851. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_logging/rules/root_logger_call.rs +0 -0
  1852. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_logging/rules/undocumented_warn.rs +0 -0
  1853. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_logging_format/mod.rs +0 -0
  1854. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_logging_format/rules/logging_call.rs +0 -0
  1855. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_logging_format/rules/mod.rs +0 -0
  1856. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_logging_format/violations.rs +0 -0
  1857. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_no_pep420/mod.rs +0 -0
  1858. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_no_pep420/rules/implicit_namespace_package.rs +0 -0
  1859. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_no_pep420/rules/mod.rs +0 -0
  1860. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pie/mod.rs +0 -0
  1861. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pie/rules/duplicate_class_field_definition.rs +0 -0
  1862. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pie/rules/mod.rs +0 -0
  1863. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pie/rules/multiple_starts_ends_with.rs +0 -0
  1864. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pie/rules/non_unique_enums.rs +0 -0
  1865. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pie/rules/reimplemented_container_builtin.rs +0 -0
  1866. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pie/rules/unnecessary_dict_kwargs.rs +0 -0
  1867. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pie/rules/unnecessary_placeholder.rs +0 -0
  1868. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pie/rules/unnecessary_range_start.rs +0 -0
  1869. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pie/rules/unnecessary_spread.rs +0 -0
  1870. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_print/mod.rs +0 -0
  1871. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_print/rules/mod.rs +0 -0
  1872. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_print/rules/print_call.rs +0 -0
  1873. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/mod.rs +0 -0
  1874. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/any_eq_ne_annotation.rs +0 -0
  1875. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/bad_generator_return_type.rs +0 -0
  1876. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/bad_version_info_comparison.rs +0 -0
  1877. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/bytestring_usage.rs +0 -0
  1878. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/collections_named_tuple.rs +0 -0
  1879. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/complex_assignment_in_stub.rs +0 -0
  1880. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/complex_if_statement_in_stub.rs +0 -0
  1881. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/custom_type_var_return_type.rs +0 -0
  1882. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/docstring_in_stubs.rs +0 -0
  1883. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/duplicate_literal_member.rs +0 -0
  1884. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/duplicate_union_member.rs +0 -0
  1885. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/ellipsis_in_non_empty_class_body.rs +0 -0
  1886. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/exit_annotations.rs +0 -0
  1887. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/future_annotations_in_stub.rs +0 -0
  1888. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/generic_not_last_base_class.rs +0 -0
  1889. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/iter_method_return_iterable.rs +0 -0
  1890. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/mod.rs +0 -0
  1891. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/no_return_argument_annotation.rs +0 -0
  1892. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/non_empty_stub_body.rs +0 -0
  1893. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/non_self_return_type.rs +0 -0
  1894. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/numeric_literal_too_long.rs +0 -0
  1895. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/pass_in_class_body.rs +0 -0
  1896. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/pass_statement_stub_body.rs +0 -0
  1897. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/pre_pep570_positional_argument.rs +0 -0
  1898. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/prefix_type_params.rs +0 -0
  1899. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/quoted_annotation_in_stub.rs +0 -0
  1900. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_final_literal.rs +0 -0
  1901. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_literal_union.rs +0 -0
  1902. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_none_literal.rs +0 -0
  1903. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/redundant_numeric_union.rs +0 -0
  1904. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/simple_defaults.rs +0 -0
  1905. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/str_or_repr_defined_in_stub.rs +0 -0
  1906. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/string_or_bytes_too_long.rs +0 -0
  1907. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/stub_body_multiple_statements.rs +0 -0
  1908. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/type_alias_naming.rs +0 -0
  1909. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/type_comment_in_stub.rs +0 -0
  1910. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/unaliased_collections_abc_set_import.rs +0 -0
  1911. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/unnecessary_literal_union.rs +0 -0
  1912. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/unnecessary_type_union.rs +0 -0
  1913. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/unrecognized_platform.rs +0 -0
  1914. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/unrecognized_version_info.rs +0 -0
  1915. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/unsupported_method_call_on_all.rs +0 -0
  1916. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pyi/rules/unused_private_type_definition.rs +0 -0
  1917. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/fail.rs +0 -0
  1918. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/fixture.rs +0 -0
  1919. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/helpers.rs +0 -0
  1920. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/imports.rs +0 -0
  1921. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/marks.rs +0 -0
  1922. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/mod.rs +0 -0
  1923. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/patch.rs +0 -0
  1924. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/test_functions.rs +0 -0
  1925. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pytest_style/rules/unittest_assert.rs +0 -0
  1926. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pytest_style/settings.rs +0 -0
  1927. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_pytest_style/types.rs +0 -0
  1928. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_quotes/helpers.rs +0 -0
  1929. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_quotes/mod.rs +0 -0
  1930. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_quotes/rules/avoidable_escaped_quote.rs +0 -0
  1931. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_quotes/rules/check_string_quotes.rs +0 -0
  1932. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_quotes/rules/mod.rs +0 -0
  1933. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_quotes/rules/unnecessary_escaped_quote.rs +0 -0
  1934. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_quotes/settings.rs +0 -0
  1935. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_raise/mod.rs +0 -0
  1936. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_raise/rules/mod.rs +0 -0
  1937. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_raise/rules/unnecessary_paren_on_raise_exception.rs +0 -0
  1938. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_return/branch.rs +0 -0
  1939. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_return/helpers.rs +0 -0
  1940. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_return/mod.rs +0 -0
  1941. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_return/rules/function.rs +0 -0
  1942. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_return/rules/mod.rs +0 -0
  1943. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_return/visitor.rs +0 -0
  1944. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_self/mod.rs +0 -0
  1945. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_self/rules/mod.rs +0 -0
  1946. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_self/rules/private_member_access.rs +0 -0
  1947. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_self/settings.rs +0 -0
  1948. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_ifexp.rs +0 -0
  1949. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/ast_with.rs +0 -0
  1950. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/collapsible_if.rs +0 -0
  1951. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/enumerate_for_loop.rs +0 -0
  1952. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/fix_with.rs +0 -0
  1953. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/if_else_block_instead_of_dict_get.rs +0 -0
  1954. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/if_else_block_instead_of_dict_lookup.rs +0 -0
  1955. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/if_else_block_instead_of_if_exp.rs +0 -0
  1956. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/if_with_same_arms.rs +0 -0
  1957. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/key_in_dict.rs +0 -0
  1958. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/mod.rs +0 -0
  1959. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/open_file_with_context_handler.rs +0 -0
  1960. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/reimplemented_builtin.rs +0 -0
  1961. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/return_in_try_except_finally.rs +0 -0
  1962. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/suppressible_exception.rs +0 -0
  1963. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/yoda_conditions.rs +0 -0
  1964. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_simplify/rules/zip_dict_keys_and_values.rs +0 -0
  1965. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_slots/mod.rs +0 -0
  1966. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_slots/rules/helpers.rs +0 -0
  1967. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_slots/rules/mod.rs +0 -0
  1968. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_slots/rules/no_slots_in_namedtuple_subclass.rs +0 -0
  1969. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_slots/rules/no_slots_in_str_subclass.rs +0 -0
  1970. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_slots/rules/no_slots_in_tuple_subclass.rs +0 -0
  1971. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_tidy_imports/matchers.rs +0 -0
  1972. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_tidy_imports/mod.rs +0 -0
  1973. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_tidy_imports/rules/banned_api.rs +0 -0
  1974. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_tidy_imports/rules/mod.rs +0 -0
  1975. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_tidy_imports/rules/relative_imports.rs +0 -0
  1976. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_todos/mod.rs +0 -0
  1977. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_todos/rules/mod.rs +0 -0
  1978. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_todos/rules/todos.rs +0 -0
  1979. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_type_checking/imports.rs +0 -0
  1980. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_type_checking/mod.rs +0 -0
  1981. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_type_checking/rules/empty_type_checking_block.rs +0 -0
  1982. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_type_checking/rules/mod.rs +0 -0
  1983. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_type_checking/rules/runtime_string_union.rs +0 -0
  1984. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_type_checking/settings.rs +0 -0
  1985. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_unused_arguments/mod.rs +0 -0
  1986. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_unused_arguments/rules/mod.rs +0 -0
  1987. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_unused_arguments/settings.rs +0 -0
  1988. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_use_pathlib/mod.rs +0 -0
  1989. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/glob_rule.rs +0 -0
  1990. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/invalid_pathlib_with_suffix.rs +0 -0
  1991. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/mod.rs +0 -0
  1992. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/os_path_getatime.rs +0 -0
  1993. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/os_path_getctime.rs +0 -0
  1994. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/os_path_getmtime.rs +0 -0
  1995. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/os_path_getsize.rs +0 -0
  1996. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/os_sep_split.rs +0 -0
  1997. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_use_pathlib/rules/replaceable_by_pathlib.rs +0 -0
  1998. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flake8_use_pathlib/violations.rs +0 -0
  1999. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flynt/mod.rs +0 -0
  2000. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/flynt/rules/mod.rs +0 -0
  2001. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/annotate.rs +0 -0
  2002. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/block.rs +0 -0
  2003. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/categorize.rs +0 -0
  2004. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/comments.rs +0 -0
  2005. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/format.rs +0 -0
  2006. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/helpers.rs +0 -0
  2007. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/mod.rs +0 -0
  2008. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/normalize.rs +0 -0
  2009. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/order.rs +0 -0
  2010. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/rules/add_required_imports.rs +0 -0
  2011. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/rules/mod.rs +0 -0
  2012. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/settings.rs +0 -0
  2013. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/sorting.rs +0 -0
  2014. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/split.rs +0 -0
  2015. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/isort/types.rs +0 -0
  2016. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/mccabe/mod.rs +0 -0
  2017. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/mccabe/rules/function_is_too_complex.rs +0 -0
  2018. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/mccabe/rules/mod.rs +0 -0
  2019. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/mccabe/settings.rs +0 -0
  2020. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/mod.rs +0 -0
  2021. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/numpy/mod.rs +0 -0
  2022. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/numpy/rules/deprecated_function.rs +0 -0
  2023. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/numpy/rules/deprecated_type_alias.rs +0 -0
  2024. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/numpy/rules/legacy_random.rs +0 -0
  2025. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/numpy/rules/mod.rs +0 -0
  2026. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/numpy/rules/numpy_2_0_deprecation.rs +0 -0
  2027. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pandas_vet/helpers.rs +0 -0
  2028. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pandas_vet/mod.rs +0 -0
  2029. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pandas_vet/rules/assignment_to_df.rs +0 -0
  2030. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pandas_vet/rules/attr.rs +0 -0
  2031. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pandas_vet/rules/call.rs +0 -0
  2032. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pandas_vet/rules/inplace_argument.rs +0 -0
  2033. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pandas_vet/rules/mod.rs +0 -0
  2034. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pandas_vet/rules/nunique_constant_series_check.rs +0 -0
  2035. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pandas_vet/rules/pd_merge.rs +0 -0
  2036. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pandas_vet/rules/read_table.rs +0 -0
  2037. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pandas_vet/rules/subscript.rs +0 -0
  2038. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/helpers.rs +0 -0
  2039. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/mod.rs +0 -0
  2040. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/camelcase_imported_as_acronym.rs +0 -0
  2041. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/camelcase_imported_as_constant.rs +0 -0
  2042. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/camelcase_imported_as_lowercase.rs +0 -0
  2043. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/constant_imported_as_non_constant.rs +0 -0
  2044. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/dunder_function_name.rs +0 -0
  2045. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/error_suffix_on_exception_name.rs +0 -0
  2046. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/invalid_argument_name.rs +0 -0
  2047. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/invalid_class_name.rs +0 -0
  2048. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/invalid_first_argument_name.rs +0 -0
  2049. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/invalid_function_name.rs +0 -0
  2050. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/invalid_module_name.rs +0 -0
  2051. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/lowercase_imported_as_non_lowercase.rs +0 -0
  2052. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/mixed_case_variable_in_class_scope.rs +0 -0
  2053. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/mixed_case_variable_in_global_scope.rs +0 -0
  2054. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/mod.rs +0 -0
  2055. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/rules/non_lowercase_variable_in_function.rs +0 -0
  2056. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pep8_naming/settings.rs +0 -0
  2057. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/perflint/mod.rs +0 -0
  2058. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/perflint/rules/incorrect_dict_iterator.rs +0 -0
  2059. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/perflint/rules/manual_dict_comprehension.rs +0 -0
  2060. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/perflint/rules/manual_list_comprehension.rs +0 -0
  2061. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/perflint/rules/manual_list_copy.rs +0 -0
  2062. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/perflint/rules/mod.rs +0 -0
  2063. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/perflint/rules/try_except_in_loop.rs +0 -0
  2064. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/perflint/rules/unnecessary_list_cast.rs +0 -0
  2065. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/helpers.rs +0 -0
  2066. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/mod.rs +0 -0
  2067. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/overlong.rs +0 -0
  2068. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/ambiguous_class_name.rs +0 -0
  2069. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/ambiguous_function_name.rs +0 -0
  2070. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/ambiguous_variable_name.rs +0 -0
  2071. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/bare_except.rs +0 -0
  2072. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/blank_lines.rs +0 -0
  2073. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/compound_statements.rs +0 -0
  2074. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/doc_line_too_long.rs +0 -0
  2075. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/errors.rs +0 -0
  2076. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/invalid_escape_sequence.rs +0 -0
  2077. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/line_too_long.rs +0 -0
  2078. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/literal_comparisons.rs +0 -0
  2079. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/extraneous_whitespace.rs +0 -0
  2080. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/indentation.rs +0 -0
  2081. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/missing_whitespace.rs +0 -0
  2082. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/missing_whitespace_after_keyword.rs +0 -0
  2083. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/missing_whitespace_around_operator.rs +0 -0
  2084. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/mod.rs +0 -0
  2085. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/redundant_backslash.rs +0 -0
  2086. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/space_around_operator.rs +0 -0
  2087. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/whitespace_around_keywords.rs +0 -0
  2088. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/whitespace_around_named_parameter_equals.rs +0 -0
  2089. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/whitespace_before_comment.rs +0 -0
  2090. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/whitespace_before_parameters.rs +0 -0
  2091. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/missing_newline_at_end_of_file.rs +0 -0
  2092. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/mixed_spaces_and_tabs.rs +0 -0
  2093. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/mod.rs +0 -0
  2094. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/module_import_not_at_top_of_file.rs +0 -0
  2095. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/multiple_imports_on_one_line.rs +0 -0
  2096. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/not_tests.rs +0 -0
  2097. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/tab_indentation.rs +0 -0
  2098. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/too_many_newlines_at_end_of_file.rs +0 -0
  2099. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/trailing_whitespace.rs +0 -0
  2100. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/type_comparison.rs +0 -0
  2101. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/rules/whitespace_after_decorator.rs +0 -0
  2102. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pycodestyle/settings.rs +0 -0
  2103. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydoclint/rules/mod.rs +0 -0
  2104. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/helpers.rs +0 -0
  2105. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/mod.rs +0 -0
  2106. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/backslashes.rs +0 -0
  2107. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/blank_after_summary.rs +0 -0
  2108. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/blank_before_after_class.rs +0 -0
  2109. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/blank_before_after_function.rs +0 -0
  2110. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/capitalized.rs +0 -0
  2111. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/ends_with_period.rs +0 -0
  2112. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/ends_with_punctuation.rs +0 -0
  2113. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/if_needed.rs +0 -0
  2114. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/indent.rs +0 -0
  2115. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/mod.rs +0 -0
  2116. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/multi_line_summary_start.rs +0 -0
  2117. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/newline_after_last_paragraph.rs +0 -0
  2118. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/no_signature.rs +0 -0
  2119. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/no_surrounding_whitespace.rs +0 -0
  2120. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/non_imperative_mood.rs +0 -0
  2121. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/not_empty.rs +0 -0
  2122. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/not_missing.rs +0 -0
  2123. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/one_liner.rs +0 -0
  2124. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/sections.rs +0 -0
  2125. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/starts_with_this.rs +0 -0
  2126. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/rules/triple_quotes.rs +0 -0
  2127. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pydocstyle/settings.rs +0 -0
  2128. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/cformat.rs +0 -0
  2129. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/fixes.rs +0 -0
  2130. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/format.rs +0 -0
  2131. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/assert_tuple.rs +0 -0
  2132. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/break_outside_loop.rs +0 -0
  2133. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/continue_outside_loop.rs +0 -0
  2134. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/default_except_not_last.rs +0 -0
  2135. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/f_string_missing_placeholders.rs +0 -0
  2136. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/forward_annotation_syntax_error.rs +0 -0
  2137. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/future_feature_not_defined.rs +0 -0
  2138. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/if_tuple.rs +0 -0
  2139. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/imports.rs +0 -0
  2140. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/invalid_literal_comparisons.rs +0 -0
  2141. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/invalid_print_syntax.rs +0 -0
  2142. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/mod.rs +0 -0
  2143. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/raise_not_implemented.rs +0 -0
  2144. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/redefined_while_unused.rs +0 -0
  2145. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/repeated_keys.rs +0 -0
  2146. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/return_outside_function.rs +0 -0
  2147. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/starred_expressions.rs +0 -0
  2148. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/strings.rs +0 -0
  2149. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/undefined_export.rs +0 -0
  2150. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/undefined_local.rs +0 -0
  2151. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/undefined_name.rs +0 -0
  2152. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/unused_annotation.rs +0 -0
  2153. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/unused_variable.rs +0 -0
  2154. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/rules/yield_outside_function.rs +0 -0
  2155. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyflakes/settings.rs +0 -0
  2156. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pygrep_hooks/mod.rs +0 -0
  2157. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pygrep_hooks/rules/blanket_noqa.rs +0 -0
  2158. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pygrep_hooks/rules/blanket_type_ignore.rs +0 -0
  2159. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pygrep_hooks/rules/deprecated_log_warn.rs +0 -0
  2160. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pygrep_hooks/rules/invalid_mock_access.rs +0 -0
  2161. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pygrep_hooks/rules/mod.rs +0 -0
  2162. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pygrep_hooks/rules/no_eval.rs +0 -0
  2163. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/helpers.rs +0 -0
  2164. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/and_or_ternary.rs +0 -0
  2165. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/assert_on_string_literal.rs +0 -0
  2166. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/await_outside_async.rs +0 -0
  2167. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/bad_dunder_method_name.rs +0 -0
  2168. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/bad_open_mode.rs +0 -0
  2169. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/bad_staticmethod_argument.rs +0 -0
  2170. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/bad_str_strip_call.rs +0 -0
  2171. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/bad_string_format_character.rs +0 -0
  2172. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/bad_string_format_type.rs +0 -0
  2173. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/bidirectional_unicode.rs +0 -0
  2174. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/binary_op_exception.rs +0 -0
  2175. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/boolean_chained_comparison.rs +0 -0
  2176. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/collapsible_else_if.rs +0 -0
  2177. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/compare_to_empty_string.rs +0 -0
  2178. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/comparison_of_constant.rs +0 -0
  2179. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/comparison_with_itself.rs +0 -0
  2180. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/continue_in_finally.rs +0 -0
  2181. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/dict_index_missing_items.rs +0 -0
  2182. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/dict_iter_missing_items.rs +0 -0
  2183. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/duplicate_bases.rs +0 -0
  2184. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/empty_comment.rs +0 -0
  2185. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/eq_without_hash.rs +0 -0
  2186. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/global_at_module_level.rs +0 -0
  2187. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/global_statement.rs +0 -0
  2188. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/global_variable_not_assigned.rs +0 -0
  2189. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/if_stmt_min_max.rs +0 -0
  2190. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/import_private_name.rs +0 -0
  2191. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/import_self.rs +0 -0
  2192. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/invalid_all_format.rs +0 -0
  2193. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/invalid_all_object.rs +0 -0
  2194. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/invalid_bool_return.rs +0 -0
  2195. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/invalid_bytes_return.rs +0 -0
  2196. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/invalid_envvar_default.rs +0 -0
  2197. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/invalid_envvar_value.rs +0 -0
  2198. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/invalid_hash_return.rs +0 -0
  2199. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/invalid_index_return.rs +0 -0
  2200. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/invalid_length_return.rs +0 -0
  2201. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/invalid_str_return.rs +0 -0
  2202. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/invalid_string_characters.rs +0 -0
  2203. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/iteration_over_set.rs +0 -0
  2204. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/len_test.rs +0 -0
  2205. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/load_before_global_declaration.rs +0 -0
  2206. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/logging.rs +0 -0
  2207. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/magic_value_comparison.rs +0 -0
  2208. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/manual_import_from.rs +0 -0
  2209. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/misplaced_bare_raise.rs +0 -0
  2210. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/modified_iterating_set.rs +0 -0
  2211. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/named_expr_without_context.rs +0 -0
  2212. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/nan_comparison.rs +0 -0
  2213. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/nested_min_max.rs +0 -0
  2214. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/no_method_decorator.rs +0 -0
  2215. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/non_ascii_module_import.rs +0 -0
  2216. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/non_ascii_name.rs +0 -0
  2217. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/non_slot_assignment.rs +0 -0
  2218. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/nonlocal_and_global.rs +0 -0
  2219. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/nonlocal_without_binding.rs +0 -0
  2220. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/potential_index_error.rs +0 -0
  2221. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/property_with_parameters.rs +0 -0
  2222. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/redeclared_assigned_name.rs +0 -0
  2223. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/redefined_argument_from_local.rs +0 -0
  2224. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/redefined_loop_name.rs +0 -0
  2225. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/repeated_equality_comparison.rs +0 -0
  2226. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/repeated_isinstance_calls.rs +0 -0
  2227. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/repeated_keyword_argument.rs +0 -0
  2228. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/return_in_init.rs +0 -0
  2229. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/self_assigning_variable.rs +0 -0
  2230. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/self_or_cls_assignment.rs +0 -0
  2231. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/shallow_copy_environ.rs +0 -0
  2232. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/single_string_slots.rs +0 -0
  2233. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/singledispatch_method.rs +0 -0
  2234. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/singledispatchmethod_function.rs +0 -0
  2235. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__assert.py.md.snap +0 -0
  2236. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__async-for.py.md.snap +0 -0
  2237. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__for.py.md.snap +0 -0
  2238. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__if.py.md.snap +0 -0
  2239. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__match.py.md.snap +0 -0
  2240. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__raise.py.md.snap +0 -0
  2241. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__simple.py.md.snap +0 -0
  2242. {ruff-0.9.2 → ruff-0.9.4}/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
  2243. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__try.py.md.snap +0 -0
  2244. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/snapshots/ruff_linter__rules__pylint__rules__unreachable__tests__while.py.md.snap +0 -0
  2245. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/subprocess_popen_preexec_fn.rs +0 -0
  2246. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/subprocess_run_without_check.rs +0 -0
  2247. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/super_without_brackets.rs +0 -0
  2248. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/sys_exit_alias.rs +0 -0
  2249. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/too_many_arguments.rs +0 -0
  2250. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/too_many_boolean_expressions.rs +0 -0
  2251. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/too_many_branches.rs +0 -0
  2252. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/too_many_locals.rs +0 -0
  2253. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/too_many_nested_blocks.rs +0 -0
  2254. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/too_many_positional_arguments.rs +0 -0
  2255. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/too_many_public_methods.rs +0 -0
  2256. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/too_many_return_statements.rs +0 -0
  2257. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/too_many_statements.rs +0 -0
  2258. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/type_bivariance.rs +0 -0
  2259. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/type_name_incorrect_variance.rs +0 -0
  2260. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/type_param_name_mismatch.rs +0 -0
  2261. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/unexpected_special_method_signature.rs +0 -0
  2262. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/unnecessary_dict_index_lookup.rs +0 -0
  2263. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/unnecessary_direct_lambda_call.rs +0 -0
  2264. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/unnecessary_dunder_call.rs +0 -0
  2265. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/unnecessary_lambda.rs +0 -0
  2266. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/unnecessary_list_index_lookup.rs +0 -0
  2267. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/unreachable.rs +0 -0
  2268. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/useless_else_on_loop.rs +0 -0
  2269. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/useless_exception_statement.rs +0 -0
  2270. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/useless_import_alias.rs +0 -0
  2271. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/useless_return.rs +0 -0
  2272. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/useless_with_lock.rs +0 -0
  2273. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/yield_from_in_async_function.rs +0 -0
  2274. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/rules/yield_in_init.rs +0 -0
  2275. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pylint/settings.rs +0 -0
  2276. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/fixes.rs +0 -0
  2277. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/helpers.rs +0 -0
  2278. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/convert_named_tuple_functional_to_class.rs +0 -0
  2279. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/convert_typed_dict_functional_to_class.rs +0 -0
  2280. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/datetime_utc_alias.rs +0 -0
  2281. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_c_element_tree.rs +0 -0
  2282. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_mock_import.rs +0 -0
  2283. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/deprecated_unittest_alias.rs +0 -0
  2284. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/extraneous_parentheses.rs +0 -0
  2285. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/f_strings.rs +0 -0
  2286. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/format_literals.rs +0 -0
  2287. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/lru_cache_with_maxsize_none.rs +0 -0
  2288. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/lru_cache_without_parameters.rs +0 -0
  2289. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/open_alias.rs +0 -0
  2290. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/os_error_alias.rs +0 -0
  2291. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/outdated_version_block.rs +0 -0
  2292. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/printf_string_formatting.rs +0 -0
  2293. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/redundant_open_modes.rs +0 -0
  2294. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/replace_stdout_stderr.rs +0 -0
  2295. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/replace_str_enum.rs +0 -0
  2296. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/replace_universal_newlines.rs +0 -0
  2297. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/super_call_with_parameters.rs +0 -0
  2298. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/timeout_error_alias.rs +0 -0
  2299. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/type_of_primitive.rs +0 -0
  2300. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/typing_text_str_alias.rs +0 -0
  2301. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/unicode_kind_prefix.rs +0 -0
  2302. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_builtin_import.rs +0 -0
  2303. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_class_parentheses.rs +0 -0
  2304. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_coding_comment.rs +0 -0
  2305. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_default_type_args.rs +0 -0
  2306. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_encode_utf8.rs +0 -0
  2307. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/unnecessary_future_import.rs +0 -0
  2308. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/unpacked_list_comprehension.rs +0 -0
  2309. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/use_pep585_annotation.rs +0 -0
  2310. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/use_pep604_annotation.rs +0 -0
  2311. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/use_pep604_isinstance.rs +0 -0
  2312. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/use_pep646_unpack.rs +0 -0
  2313. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/useless_metaclass_type.rs +0 -0
  2314. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/rules/useless_object_inheritance.rs +0 -0
  2315. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/settings.rs +0 -0
  2316. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/pyupgrade/types.rs +0 -0
  2317. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/helpers.rs +0 -0
  2318. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/bit_count.rs +0 -0
  2319. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/check_and_remove_from_set.rs +0 -0
  2320. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/delete_full_slice.rs +0 -0
  2321. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/for_loop_set_mutations.rs +0 -0
  2322. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/fstring_number_format.rs +0 -0
  2323. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/hardcoded_string_charset.rs +0 -0
  2324. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/hashlib_digest_hex.rs +0 -0
  2325. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/if_exp_instead_of_or_operator.rs +0 -0
  2326. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/if_expr_min_max.rs +0 -0
  2327. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/implicit_cwd.rs +0 -0
  2328. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/int_on_sliced_str.rs +0 -0
  2329. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/isinstance_type_none.rs +0 -0
  2330. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/list_reverse_copy.rs +0 -0
  2331. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/math_constant.rs +0 -0
  2332. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/metaclass_abcmeta.rs +0 -0
  2333. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/print_empty_string.rs +0 -0
  2334. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/read_whole_file.rs +0 -0
  2335. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/readlines_in_for.rs +0 -0
  2336. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/redundant_log_base.rs +0 -0
  2337. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/regex_flag_alias.rs +0 -0
  2338. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/reimplemented_operator.rs +0 -0
  2339. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/repeated_append.rs +0 -0
  2340. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/repeated_global.rs +0 -0
  2341. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/single_item_membership_test.rs +0 -0
  2342. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/slice_copy.rs +0 -0
  2343. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/slice_to_remove_prefix_or_suffix.rs +0 -0
  2344. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/sorted_min_max.rs +0 -0
  2345. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/subclass_builtin.rs +0 -0
  2346. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/type_none_comparison.rs +0 -0
  2347. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/unnecessary_enumerate.rs +0 -0
  2348. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/unnecessary_from_float.rs +0 -0
  2349. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/verbose_decimal_constructor.rs +0 -0
  2350. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/refurb/rules/write_whole_file.rs +0 -0
  2351. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/ambiguous_unicode_character.rs +0 -0
  2352. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/assignment_in_assert.rs +0 -0
  2353. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/asyncio_dangling_task.rs +0 -0
  2354. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/collection_literal_concatenation.rs +0 -0
  2355. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/confusables.rs +0 -0
  2356. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/dataclass_enum.rs +0 -0
  2357. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/decimal_from_float_literal.rs +0 -0
  2358. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/default_factory_kwarg.rs +0 -0
  2359. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/explicit_f_string_type_conversion.rs +0 -0
  2360. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/falsy_dict_get_fallback.rs +0 -0
  2361. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/helpers.rs +0 -0
  2362. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/if_key_in_dict_del.rs +0 -0
  2363. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/implicit_optional.rs +0 -0
  2364. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/incorrectly_parenthesized_tuple_in_subscript.rs +0 -0
  2365. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/invalid_assert_message_literal_argument.rs +0 -0
  2366. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/invalid_formatter_suppression_comment.rs +0 -0
  2367. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/invalid_index_type.rs +0 -0
  2368. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/invalid_pyproject_toml.rs +0 -0
  2369. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/map_int_version_parsing.rs +0 -0
  2370. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/missing_fstring_syntax.rs +0 -0
  2371. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/mutable_class_default.rs +0 -0
  2372. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/mutable_dataclass_default.rs +0 -0
  2373. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/mutable_fromkeys_value.rs +0 -0
  2374. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/never_union.rs +0 -0
  2375. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/none_not_at_end_of_union.rs +0 -0
  2376. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/parenthesize_chained_operators.rs +0 -0
  2377. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/post_init_default.rs +0 -0
  2378. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/pytest_raises_ambiguous_pattern.rs +0 -0
  2379. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/redirected_noqa.rs +0 -0
  2380. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/redundant_bool_literal.rs +0 -0
  2381. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/sequence_sorting.rs +0 -0
  2382. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/sort_dunder_all.rs +0 -0
  2383. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/sort_dunder_slots.rs +0 -0
  2384. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/static_key_dict_comprehension.rs +0 -0
  2385. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/suppression_comment_visitor.rs +0 -0
  2386. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/test_rules.rs +0 -0
  2387. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/unnecessary_cast_to_int.rs +0 -0
  2388. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/unnecessary_iterable_allocation_for_first_element.rs +0 -0
  2389. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/unnecessary_key_check.rs +0 -0
  2390. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/unnecessary_literal_within_deque_call.rs +0 -0
  2391. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/unnecessary_nested_literal.rs +0 -0
  2392. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/unraw_re_pattern.rs +0 -0
  2393. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/unsafe_markup_use.rs +0 -0
  2394. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/unused_async.rs +0 -0
  2395. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/unused_noqa.rs +0 -0
  2396. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/used_dummy_variable.rs +0 -0
  2397. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/useless_if_else.rs +0 -0
  2398. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/rules/zip_instead_of_pairwise.rs +0 -0
  2399. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/settings.rs +0 -0
  2400. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/ruff/typing.rs +0 -0
  2401. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/tryceratops/helpers.rs +0 -0
  2402. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/tryceratops/mod.rs +0 -0
  2403. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/tryceratops/rules/error_instead_of_exception.rs +0 -0
  2404. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/tryceratops/rules/mod.rs +0 -0
  2405. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/tryceratops/rules/raise_vanilla_args.rs +0 -0
  2406. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/tryceratops/rules/raise_vanilla_class.rs +0 -0
  2407. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/tryceratops/rules/raise_within_try.rs +0 -0
  2408. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/tryceratops/rules/reraise_no_cause.rs +0 -0
  2409. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/tryceratops/rules/type_check_without_type_error.rs +0 -0
  2410. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/tryceratops/rules/useless_try_except.rs +0 -0
  2411. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/tryceratops/rules/verbose_log_message.rs +0 -0
  2412. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/rules/tryceratops/rules/verbose_raise.rs +0 -0
  2413. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/settings/fix_safety_table.rs +0 -0
  2414. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/settings/flags.rs +0 -0
  2415. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/settings/rule_table.rs +0 -0
  2416. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/settings/types.rs +0 -0
  2417. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__ipy_escape_command.snap +0 -0
  2418. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__undefined_name.snap +0 -0
  2419. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__unused_variable.snap +0 -0
  2420. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__vscode_language_id.snap +0 -0
  2421. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__flake8_exemption_all.snap +0 -0
  2422. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__flake8_exemption_all_case_insensitive.snap +0 -0
  2423. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__flake8_exemption_all_no_space.snap +0 -0
  2424. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__flake8_exemption_codes.snap +0 -0
  2425. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_all.snap +0 -0
  2426. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_all_case_insensitive.snap +0 -0
  2427. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_all_leading_comment.snap +0 -0
  2428. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_all_multi_space.snap +0 -0
  2429. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_all_no_space.snap +0 -0
  2430. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_all_trailing_comment.snap +0 -0
  2431. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_code.snap +0 -0
  2432. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_code_case_insensitive.snap +0 -0
  2433. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_code_leading_comment.snap +0 -0
  2434. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_code_multi_space.snap +0 -0
  2435. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_code_no_space.snap +0 -0
  2436. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_code_trailing_comment.snap +0 -0
  2437. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_codes.snap +0 -0
  2438. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_codes_case_insensitive.snap +0 -0
  2439. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_codes_leading_comment.snap +0 -0
  2440. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_codes_multi_space.snap +0 -0
  2441. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_codes_no_space.snap +0 -0
  2442. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_codes_trailing_comment.snap +0 -0
  2443. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_empty_comma.snap +0 -0
  2444. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_empty_comma_space.snap +0 -0
  2445. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_invalid_codes.snap +0 -0
  2446. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_invalid_suffix.snap +0 -0
  2447. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_leading_space.snap +0 -0
  2448. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_non_code.snap +0 -0
  2449. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_squashed_codes.snap +0 -0
  2450. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__noqa_trailing_space.snap +0 -0
  2451. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__ruff_exemption_all.snap +0 -0
  2452. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__ruff_exemption_all_case_insensitive.snap +0 -0
  2453. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__ruff_exemption_all_no_space.snap +0 -0
  2454. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/snapshots/ruff_linter__noqa__tests__ruff_exemption_codes.snap +0 -0
  2455. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/source_kind.rs +0 -0
  2456. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/test.rs +0 -0
  2457. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/text_helpers.rs +0 -0
  2458. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_linter/src/upstream_categories.rs +0 -0
  2459. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_macros/Cargo.toml +0 -0
  2460. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_macros/src/cache_key.rs +0 -0
  2461. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_macros/src/combine_options.rs +0 -0
  2462. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_macros/src/config.rs +0 -0
  2463. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_macros/src/derive_message_formats.rs +0 -0
  2464. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_macros/src/kebab_case.rs +0 -0
  2465. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_macros/src/map_codes.rs +0 -0
  2466. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_macros/src/newtype_index.rs +0 -0
  2467. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_macros/src/rule_code_prefix.rs +0 -0
  2468. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_macros/src/rule_namespace.rs +0 -0
  2469. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_macros/src/violation_metadata.rs +0 -0
  2470. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/Cargo.toml +0 -0
  2471. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/R.ipynb +0 -0
  2472. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/add_missing_cell_id.ipynb +0 -0
  2473. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/after_fix.ipynb +0 -0
  2474. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/before_fix.ipynb +0 -0
  2475. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/automagic.json +0 -0
  2476. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/automagic_after_code.json +0 -0
  2477. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/automagic_assignment.json +0 -0
  2478. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/automagic_before_code.json +0 -0
  2479. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/automagics.json +0 -0
  2480. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/cell_magic.json +0 -0
  2481. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/code_and_magic.json +0 -0
  2482. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/markdown.json +0 -0
  2483. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/only_code.json +0 -0
  2484. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/only_magic.json +0 -0
  2485. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/unicode_magic_gh9145.json +0 -0
  2486. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/valid_cell_magic.json +0 -0
  2487. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/vscode_language_id_javascript.json +0 -0
  2488. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/cell/vscode_language_id_python.json +0 -0
  2489. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/invalid_extension.ipynb +0 -0
  2490. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/ipy_escape_command.ipynb +0 -0
  2491. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/ipy_escape_command_expected.ipynb +0 -0
  2492. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/isort.ipynb +0 -0
  2493. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/isort_expected.ipynb +0 -0
  2494. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/kernelspec_language.ipynb +0 -0
  2495. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/no_cell_id.ipynb +0 -0
  2496. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/no_trailing_newline.ipynb +0 -0
  2497. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/not_json.ipynb +0 -0
  2498. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/undefined_name.ipynb +0 -0
  2499. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/unused_variable.ipynb +0 -0
  2500. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/unused_variable_expected.ipynb +0 -0
  2501. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/valid.ipynb +0 -0
  2502. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/vscode_language_id.ipynb +0 -0
  2503. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/vscode_language_id_expected.ipynb +0 -0
  2504. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/resources/test/fixtures/jupyter/wrong_schema.ipynb +0 -0
  2505. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/src/cell.rs +0 -0
  2506. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/src/index.rs +0 -0
  2507. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/src/lib.rs +0 -0
  2508. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/src/notebook.rs +0 -0
  2509. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_notebook/src/schema.rs +0 -0
  2510. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/Cargo.toml +0 -0
  2511. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/comparable.rs +0 -0
  2512. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/docstrings.rs +0 -0
  2513. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/helpers.rs +0 -0
  2514. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/identifier.rs +0 -0
  2515. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/int.rs +0 -0
  2516. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/name.rs +0 -0
  2517. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/relocate.rs +0 -0
  2518. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/script.rs +0 -0
  2519. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/statement_visitor.rs +0 -0
  2520. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/stmt_if.rs +0 -0
  2521. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/str_prefix.rs +0 -0
  2522. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/traversal.rs +0 -0
  2523. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/types.rs +0 -0
  2524. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/visitor/transformer.rs +0 -0
  2525. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/visitor.rs +0 -0
  2526. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_ast/src/whitespace.rs +0 -0
  2527. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_codegen/Cargo.toml +0 -0
  2528. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_codegen/src/lib.rs +0 -0
  2529. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_codegen/src/stylist.rs +0 -0
  2530. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/CONTRIBUTING.md +0 -0
  2531. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/Cargo.toml +0 -0
  2532. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/README.md +0 -0
  2533. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/orphan_rules_in_the_formatter.svg +0 -0
  2534. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/.editorconfig +0 -0
  2535. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/allow_empty_first_line.py +0 -0
  2536. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/allow_empty_first_line.py.expect +0 -0
  2537. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/async_stmts.py +0 -0
  2538. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/async_stmts.py.expect +0 -0
  2539. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/attribute_access_on_number_literals.py +0 -0
  2540. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/attribute_access_on_number_literals.py.expect +0 -0
  2541. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/backslash_before_indent.options.json +0 -0
  2542. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/backslash_before_indent.py +0 -0
  2543. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/backslash_before_indent.py.expect +0 -0
  2544. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/beginning_backslash.py +0 -0
  2545. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/beginning_backslash.py.expect +0 -0
  2546. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/bracketmatch.py +0 -0
  2547. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/bracketmatch.py.expect +0 -0
  2548. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/bytes_docstring.py +0 -0
  2549. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/bytes_docstring.py.expect +0 -0
  2550. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/class_blank_parentheses.py +0 -0
  2551. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/class_blank_parentheses.py.expect +0 -0
  2552. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/class_methods_new_line.py +0 -0
  2553. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/class_methods_new_line.py.expect +0 -0
  2554. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/collections.py +0 -0
  2555. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/collections.py.expect +0 -0
  2556. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comment_after_escaped_newline.py +0 -0
  2557. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comment_after_escaped_newline.py.expect +0 -0
  2558. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comment_type_hint.py +0 -0
  2559. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comment_type_hint.py.expect +0 -0
  2560. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments.py +0 -0
  2561. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments.py.expect +0 -0
  2562. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments2.py +0 -0
  2563. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments2.py.expect +0 -0
  2564. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments3.py +0 -0
  2565. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments3.py.expect +0 -0
  2566. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments4.py +0 -0
  2567. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments4.py.expect +0 -0
  2568. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments5.py +0 -0
  2569. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments5.py.expect +0 -0
  2570. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments6.py +0 -0
  2571. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments6.py.expect +0 -0
  2572. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments8.py +0 -0
  2573. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments8.py.expect +0 -0
  2574. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments9.py +0 -0
  2575. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments9.py.expect +0 -0
  2576. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments_in_blocks.py +0 -0
  2577. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments_in_blocks.py.expect +0 -0
  2578. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments_in_double_parens.py +0 -0
  2579. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments_in_double_parens.py.expect +0 -0
  2580. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments_non_breaking_space.py +0 -0
  2581. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/comments_non_breaking_space.py.expect +0 -0
  2582. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/composition.py +0 -0
  2583. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/composition.py.expect +0 -0
  2584. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/composition_no_trailing_comma.py +0 -0
  2585. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/composition_no_trailing_comma.py.expect +0 -0
  2586. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/conditional_expression.py +0 -0
  2587. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/conditional_expression.py.expect +0 -0
  2588. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_38.options.json +0 -0
  2589. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_38.py +0 -0
  2590. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_38.py.expect +0 -0
  2591. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_39.py +0 -0
  2592. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_39.py.expect +0 -0
  2593. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_310.options.json +0 -0
  2594. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_310.py +0 -0
  2595. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_310.py.expect +0 -0
  2596. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_311.options.json +0 -0
  2597. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_311.py +0 -0
  2598. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_311.py.expect +0 -0
  2599. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_38.options.json +0 -0
  2600. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_38.py +0 -0
  2601. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_38.py.expect +0 -0
  2602. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_39.py +0 -0
  2603. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/context_managers_autodetect_39.py.expect +0 -0
  2604. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring.py +0 -0
  2605. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring.py.expect +0 -0
  2606. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_newline_preview.options.json +0 -0
  2607. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_newline_preview.py +0 -0
  2608. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_newline_preview.py.expect +0 -0
  2609. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_no_extra_empty_line_before_eof.py +0 -0
  2610. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_no_extra_empty_line_before_eof.py.expect +0 -0
  2611. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_no_string_normalization.py +0 -0
  2612. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_no_string_normalization.py.expect +0 -0
  2613. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_preview.py +0 -0
  2614. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/docstring_preview.py.expect +0 -0
  2615. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/dummy_implementations.py +0 -0
  2616. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/dummy_implementations.py.expect +0 -0
  2617. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/empty_lines.py +0 -0
  2618. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/empty_lines.py.expect +0 -0
  2619. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/expression.py +0 -0
  2620. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/expression.py.expect +0 -0
  2621. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/f_docstring.py +0 -0
  2622. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/f_docstring.py.expect +0 -0
  2623. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff.py +0 -0
  2624. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff.py.expect +0 -0
  2625. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff2.py +0 -0
  2626. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff2.py.expect +0 -0
  2627. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff3.py +0 -0
  2628. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff3.py.expect +0 -0
  2629. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff4.py +0 -0
  2630. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff4.py.expect +0 -0
  2631. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff5.py +0 -0
  2632. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff5.py.expect +0 -0
  2633. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff6.py +0 -0
  2634. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtonoff6.py.expect +0 -0
  2635. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtpass_imports.py +0 -0
  2636. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtpass_imports.py.expect +0 -0
  2637. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip.py +0 -0
  2638. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip.py.expect +0 -0
  2639. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip2.py +0 -0
  2640. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip2.py.expect +0 -0
  2641. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip3.py +0 -0
  2642. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip3.py.expect +0 -0
  2643. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip4.py +0 -0
  2644. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip4.py.expect +0 -0
  2645. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip5.py +0 -0
  2646. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip5.py.expect +0 -0
  2647. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip6.py +0 -0
  2648. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip6.py.expect +0 -0
  2649. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip7.py +0 -0
  2650. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip7.py.expect +0 -0
  2651. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip8.py +0 -0
  2652. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip8.py.expect +0 -0
  2653. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip9.options.json +0 -0
  2654. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip9.py +0 -0
  2655. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtskip9.py.expect +0 -0
  2656. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/form_feeds.py +0 -0
  2657. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/form_feeds.py.expect +0 -0
  2658. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fstring.py +0 -0
  2659. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fstring.py.expect +0 -0
  2660. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/funcdef_return_type_trailing_comma.options.json +0 -0
  2661. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/funcdef_return_type_trailing_comma.py +0 -0
  2662. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/funcdef_return_type_trailing_comma.py.expect +0 -0
  2663. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/function.py +0 -0
  2664. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/function.py.expect +0 -0
  2665. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/function2.py +0 -0
  2666. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/function2.py.expect +0 -0
  2667. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/function_trailing_comma.py +0 -0
  2668. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/function_trailing_comma.py.expect +0 -0
  2669. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/ignore_pyi.pyi +0 -0
  2670. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/ignore_pyi.pyi.expect +0 -0
  2671. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/import_spacing.py +0 -0
  2672. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/import_spacing.py.expect +0 -0
  2673. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/is_simple_lookup_for_doublestar_expression.options.json +0 -0
  2674. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/is_simple_lookup_for_doublestar_expression.py +0 -0
  2675. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/is_simple_lookup_for_doublestar_expression.py.expect +0 -0
  2676. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/keep_newline_after_match.options.json +0 -0
  2677. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/keep_newline_after_match.py +0 -0
  2678. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/keep_newline_after_match.py.expect +0 -0
  2679. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_basic.py +0 -0
  2680. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_basic.py.expect +0 -0
  2681. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_diff_edge_case.py +0 -0
  2682. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_diff_edge_case.py.expect +0 -0
  2683. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_exceeding_end.py +0 -0
  2684. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_exceeding_end.py.expect +0 -0
  2685. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_fmt_off.py +0 -0
  2686. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_fmt_off.py.expect +0 -0
  2687. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_fmt_off_decorator.py +0 -0
  2688. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_fmt_off_decorator.py.expect +0 -0
  2689. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_fmt_off_overlap.py +0 -0
  2690. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_fmt_off_overlap.py.expect +0 -0
  2691. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_imports.py +0 -0
  2692. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_imports.py.expect +0 -0
  2693. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_indentation.py +0 -0
  2694. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_indentation.py.expect +0 -0
  2695. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_two_passes.py +0 -0
  2696. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_two_passes.py.expect +0 -0
  2697. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_unwrapping.py +0 -0
  2698. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/line_ranges_unwrapping.py.expect +0 -0
  2699. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/linelength6.options.json +0 -0
  2700. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/linelength6.py +0 -0
  2701. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/linelength6.py.expect +0 -0
  2702. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/long_strings_flag_disabled.py +0 -0
  2703. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/long_strings_flag_disabled.py.expect +0 -0
  2704. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_1.py +0 -0
  2705. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_1.py.expect +0 -0
  2706. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_2.options.json +0 -0
  2707. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_2.py +0 -0
  2708. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_2.py.expect +0 -0
  2709. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_3.py +0 -0
  2710. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_3.py.expect +0 -0
  2711. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_4.py +0 -0
  2712. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_4.py.expect +0 -0
  2713. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_followed_by_class.py +0 -0
  2714. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_followed_by_class.py.expect +0 -0
  2715. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_followed_by_function.py +0 -0
  2716. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/module_docstring_followed_by_function.py.expect +0 -0
  2717. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/multiline_consecutive_open_parentheses_ignore.py +0 -0
  2718. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/multiline_consecutive_open_parentheses_ignore.py.expect +0 -0
  2719. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/nested_stub.pyi +0 -0
  2720. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/nested_stub.pyi.expect +0 -0
  2721. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/no_blank_line_before_docstring.py +0 -0
  2722. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/no_blank_line_before_docstring.py.expect +0 -0
  2723. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/numeric_literals.py +0 -0
  2724. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/numeric_literals.py.expect +0 -0
  2725. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/numeric_literals_skip_underscores.py +0 -0
  2726. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/numeric_literals_skip_underscores.py.expect +0 -0
  2727. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/one_element_subscript.py +0 -0
  2728. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/one_element_subscript.py.expect +0 -0
  2729. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/parenthesized_context_managers.options.json +0 -0
  2730. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/parenthesized_context_managers.py +0 -0
  2731. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/parenthesized_context_managers.py.expect +0 -0
  2732. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_complex.options.json +0 -0
  2733. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_complex.py +0 -0
  2734. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_complex.py.expect +0 -0
  2735. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_extras.options.json +0 -0
  2736. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_extras.py +0 -0
  2737. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_extras.py.expect +0 -0
  2738. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_generic.options.json +0 -0
  2739. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_generic.py +0 -0
  2740. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_generic.py.expect +0 -0
  2741. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_long.options.json +0 -0
  2742. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_long.py +0 -0
  2743. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_long.py.expect +0 -0
  2744. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_simple.options.json +0 -0
  2745. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_simple.py +0 -0
  2746. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_simple.py.expect +0 -0
  2747. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_style.options.json +0 -0
  2748. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_style.py +0 -0
  2749. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_style.py.expect +0 -0
  2750. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_trailing_comma.options.json +0 -0
  2751. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_trailing_comma.py +0 -0
  2752. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_trailing_comma.py.expect +0 -0
  2753. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_with_if_stmt.options.json +0 -0
  2754. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_with_if_stmt.py +0 -0
  2755. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pattern_matching_with_if_stmt.py.expect +0 -0
  2756. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep604_union_types_line_breaks.options.json +0 -0
  2757. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep604_union_types_line_breaks.py +0 -0
  2758. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep604_union_types_line_breaks.py.expect +0 -0
  2759. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_570.py +0 -0
  2760. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_570.py.expect +0 -0
  2761. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572.py +0 -0
  2762. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572.py.expect +0 -0
  2763. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_py310.options.json +0 -0
  2764. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_py310.py +0 -0
  2765. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_py310.py.expect +0 -0
  2766. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_py39.py +0 -0
  2767. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_py39.py.expect +0 -0
  2768. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_remove_parens.py +0 -0
  2769. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_remove_parens.py.expect +0 -0
  2770. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_slices.py +0 -0
  2771. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_572_slices.py.expect +0 -0
  2772. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_604.py +0 -0
  2773. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_604.py.expect +0 -0
  2774. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_646.options.json +0 -0
  2775. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_646.py +0 -0
  2776. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_646.py.expect +0 -0
  2777. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_654.options.json +0 -0
  2778. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_654.py +0 -0
  2779. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_654.py.expect +0 -0
  2780. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_654_style.options.json +0 -0
  2781. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_654_style.py +0 -0
  2782. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_654_style.py.expect +0 -0
  2783. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_701.options.json +0 -0
  2784. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_701.py +0 -0
  2785. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/pep_701.py.expect +0 -0
  2786. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/percent_precedence.py +0 -0
  2787. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/percent_precedence.py.expect +0 -0
  2788. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_newline.options.json +0 -0
  2789. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_newline.py +0 -0
  2790. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_newline.py.expect +0 -0
  2791. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_spacing.py +0 -0
  2792. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_spacing.py.expect +0 -0
  2793. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_spacing_long.py +0 -0
  2794. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/power_op_spacing_long.py.expect +0 -0
  2795. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/prefer_rhs_split.py +0 -0
  2796. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/prefer_rhs_split.py.expect +0 -0
  2797. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/prefer_rhs_split_reformatted.py +0 -0
  2798. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/prefer_rhs_split_reformatted.py.expect +0 -0
  2799. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_cantfit.options.json +0 -0
  2800. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_cantfit.py +0 -0
  2801. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_cantfit.py.expect +0 -0
  2802. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_cantfit_string.options.json +0 -0
  2803. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_cantfit_string.py +0 -0
  2804. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_cantfit_string.py.expect +0 -0
  2805. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_comments7.options.json +0 -0
  2806. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_comments7.py +0 -0
  2807. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_comments7.py.expect +0 -0
  2808. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_format_unicode_escape_seq.options.json +0 -0
  2809. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_format_unicode_escape_seq.py +0 -0
  2810. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_format_unicode_escape_seq.py.expect +0 -0
  2811. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_hug_parens_with_braces_and_square_brackets.options.json +0 -0
  2812. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_hug_parens_with_braces_and_square_brackets.py +0 -0
  2813. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_hug_parens_with_braces_and_square_brackets.py.expect +0 -0
  2814. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_hug_parens_with_braces_and_square_brackets_no_ll1.options.json +0 -0
  2815. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_hug_parens_with_braces_and_square_brackets_no_ll1.py +0 -0
  2816. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_hug_parens_with_braces_and_square_brackets_no_ll1.py.expect +0 -0
  2817. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_dict_values.options.json +0 -0
  2818. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_dict_values.py +0 -0
  2819. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_dict_values.py.expect +0 -0
  2820. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings.options.json +0 -0
  2821. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings.py +0 -0
  2822. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings.py.expect +0 -0
  2823. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__east_asian_width.options.json +0 -0
  2824. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__east_asian_width.py +0 -0
  2825. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__east_asian_width.py.expect +0 -0
  2826. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__edge_case.options.json +0 -0
  2827. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__edge_case.py +0 -0
  2828. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__edge_case.py.expect +0 -0
  2829. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__regression.options.json +0 -0
  2830. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__regression.py +0 -0
  2831. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__regression.py.expect +0 -0
  2832. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__type_annotations.options.json +0 -0
  2833. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__type_annotations.py +0 -0
  2834. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_long_strings__type_annotations.py.expect +0 -0
  2835. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_multiline_strings.options.json +0 -0
  2836. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_multiline_strings.py +0 -0
  2837. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_multiline_strings.py.expect +0 -0
  2838. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_pep646_typed_star_arg_type_var_tuple.options.json +0 -0
  2839. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_pep646_typed_star_arg_type_var_tuple.py +0 -0
  2840. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_pep646_typed_star_arg_type_var_tuple.py.expect +0 -0
  2841. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_return_annotation_brackets_string.options.json +0 -0
  2842. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_return_annotation_brackets_string.py +0 -0
  2843. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/preview_return_annotation_brackets_string.py.expect +0 -0
  2844. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/py310_pep572.options.json +0 -0
  2845. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/py310_pep572.py +0 -0
  2846. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/py310_pep572.py.expect +0 -0
  2847. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/python37.py +0 -0
  2848. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/python37.py.expect +0 -0
  2849. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/python38.py +0 -0
  2850. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/python38.py.expect +0 -0
  2851. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/python39.py +0 -0
  2852. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/python39.py.expect +0 -0
  2853. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/raw_docstring.py +0 -0
  2854. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/raw_docstring.py.expect +0 -0
  2855. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/raw_docstring_no_string_normalization.py +0 -0
  2856. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/raw_docstring_no_string_normalization.py.expect +0 -0
  2857. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_await_parens.py +0 -0
  2858. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_await_parens.py.expect +0 -0
  2859. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_except_parens.py +0 -0
  2860. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_except_parens.py.expect +0 -0
  2861. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_for_brackets.py +0 -0
  2862. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_for_brackets.py.expect +0 -0
  2863. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_newline_after_code_block_open.py +0 -0
  2864. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_newline_after_code_block_open.py.expect +0 -0
  2865. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_parens.py +0 -0
  2866. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_parens.py.expect +0 -0
  2867. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_redundant_parens_in_case_guard.options.json +0 -0
  2868. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_redundant_parens_in_case_guard.py +0 -0
  2869. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_redundant_parens_in_case_guard.py.expect +0 -0
  2870. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_with_brackets.py +0 -0
  2871. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/remove_with_brackets.py.expect +0 -0
  2872. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/return_annotation_brackets.py +0 -0
  2873. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/return_annotation_brackets.py.expect +0 -0
  2874. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/single_line_format_skip_with_multiple_comments.py +0 -0
  2875. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/single_line_format_skip_with_multiple_comments.py.expect +0 -0
  2876. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/skip_magic_trailing_comma.options.json +0 -0
  2877. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/skip_magic_trailing_comma.py +0 -0
  2878. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/skip_magic_trailing_comma.py.expect +0 -0
  2879. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/slices.py +0 -0
  2880. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/slices.py.expect +0 -0
  2881. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/split_delimiter_comments.py +0 -0
  2882. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/split_delimiter_comments.py.expect +0 -0
  2883. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/starred_for_target.options.json +0 -0
  2884. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/starred_for_target.py +0 -0
  2885. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/starred_for_target.py.expect +0 -0
  2886. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/string_prefixes.py +0 -0
  2887. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/string_prefixes.py.expect +0 -0
  2888. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/stub.pyi +0 -0
  2889. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/stub.pyi.expect +0 -0
  2890. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/torture.py +0 -0
  2891. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/torture.py.expect +0 -0
  2892. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma.py +0 -0
  2893. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma.py.expect +0 -0
  2894. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma_optional_parens1.py +0 -0
  2895. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma_optional_parens1.py.expect +0 -0
  2896. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma_optional_parens2.py +0 -0
  2897. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma_optional_parens2.py.expect +0 -0
  2898. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma_optional_parens3.py +0 -0
  2899. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_comma_optional_parens3.py.expect +0 -0
  2900. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_commas_in_leading_parts.py +0 -0
  2901. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/trailing_commas_in_leading_parts.py.expect +0 -0
  2902. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/tricky_unicode_symbols.py +0 -0
  2903. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/tricky_unicode_symbols.py.expect +0 -0
  2904. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/tupleassign.py +0 -0
  2905. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/tupleassign.py.expect +0 -0
  2906. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_aliases.options.json +0 -0
  2907. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_aliases.py +0 -0
  2908. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_aliases.py.expect +0 -0
  2909. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_comment_syntax_error.py +0 -0
  2910. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_comment_syntax_error.py.expect +0 -0
  2911. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_param_defaults.options.json +0 -0
  2912. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_param_defaults.py +0 -0
  2913. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_param_defaults.py.expect +0 -0
  2914. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_params.options.json +0 -0
  2915. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_params.py +0 -0
  2916. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/type_params.py.expect +0 -0
  2917. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/typed_params_trailing_comma.options.json +0 -0
  2918. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/typed_params_trailing_comma.py +0 -0
  2919. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/typed_params_trailing_comma.py.expect +0 -0
  2920. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/walrus_in_dict.options.json +0 -0
  2921. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/walrus_in_dict.py +0 -0
  2922. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/walrus_in_dict.py.expect +0 -0
  2923. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/whitespace.py +0 -0
  2924. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/cases/whitespace.py.expect +0 -0
  2925. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/blackd_diff.py +0 -0
  2926. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/blackd_diff.py.expect +0 -0
  2927. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/debug_visitor.py +0 -0
  2928. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/debug_visitor.py.expect +0 -0
  2929. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/force_py36.py +0 -0
  2930. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/force_py36.py.expect +0 -0
  2931. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/force_pyi.pyi +0 -0
  2932. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/force_pyi.pyi.expect +0 -0
  2933. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/missing_final_newline.py +0 -0
  2934. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/missing_final_newline.py.expect +0 -0
  2935. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/string_quotes.py +0 -0
  2936. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/black/miscellaneous/string_quotes.py.expect +0 -0
  2937. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/import_black_tests.py +0 -0
  2938. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/.editorconfig +0 -0
  2939. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/blank_line_before_class_docstring.options.json +0 -0
  2940. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/blank_line_before_class_docstring.py +0 -0
  2941. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/carriage_return/.editorconfig +0 -0
  2942. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/carriage_return/.gitattributes +0 -0
  2943. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/carriage_return/string.py +0 -0
  2944. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring.options.json +0 -0
  2945. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring.py +0 -0
  2946. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_code_examples.options.json +0 -0
  2947. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_code_examples.py +0 -0
  2948. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_code_examples_crlf.options.json +0 -0
  2949. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_code_examples_crlf.py +0 -0
  2950. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_code_examples_dynamic_line_width.options.json +0 -0
  2951. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_code_examples_dynamic_line_width.py +0 -0
  2952. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_newlines.py +0 -0
  2953. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_non_visible_characters.py +0 -0
  2954. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_tab_indentation.options.json +0 -0
  2955. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_tab_indentation.py +0 -0
  2956. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/empty_multiple_trailing_newlines.py +0 -0
  2957. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/empty_now_newline.py +0 -0
  2958. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/empty_trailing_newline.py +0 -0
  2959. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/empty_whitespace.py +0 -0
  2960. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/annotated_assign.py +0 -0
  2961. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/attribute.py +0 -0
  2962. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/await.py +0 -0
  2963. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/binary.py +0 -0
  2964. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/binary_implicit_string.py +0 -0
  2965. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/binary_pow_spacing.py +0 -0
  2966. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/boolean_operation.py +0 -0
  2967. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/bytes.options.json +0 -0
  2968. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/bytes.py +0 -0
  2969. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/call.py +0 -0
  2970. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/compare.py +0 -0
  2971. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/dict.py +0 -0
  2972. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/dict_comp.py +0 -0
  2973. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/fstring.options.json +0 -0
  2974. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/fstring_preview.options.json +0 -0
  2975. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/fstring_preview.py +0 -0
  2976. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/generator_exp.py +0 -0
  2977. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/hug.py +0 -0
  2978. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/if.py +0 -0
  2979. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/join_implicit_concatenated_string.py +0 -0
  2980. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/join_implicit_concatenated_string_assignment.py +0 -0
  2981. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/join_implicit_concatenated_string_preserve.options.json +0 -0
  2982. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/join_implicit_concatenated_string_preserve.py +0 -0
  2983. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/lambda.py +0 -0
  2984. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/list.py +0 -0
  2985. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/list_comp.py +0 -0
  2986. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/named_expr.py +0 -0
  2987. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/number.py +0 -0
  2988. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/optional_parentheses_comments.py +0 -0
  2989. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/set_comp.py +0 -0
  2990. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/slice.py +0 -0
  2991. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/split_empty_brackets.py +0 -0
  2992. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/starred.py +0 -0
  2993. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/string.options.json +0 -0
  2994. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/string.py +0 -0
  2995. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/subscript.py +0 -0
  2996. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/tuple.py +0 -0
  2997. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/unary.py +0 -0
  2998. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/unsplittable.py +0 -0
  2999. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/yield.py +0 -0
  3000. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/yield_from.py +0 -0
  3001. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/comments.py +0 -0
  3002. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/empty_file.py +0 -0
  3003. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/fmt_off_docstring.options.json +0 -0
  3004. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/fmt_off_docstring.py +0 -0
  3005. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/fmt_off_unclosed_deep_nested_trailing_comment.py +0 -0
  3006. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/fmt_off_unclosed_trailing_comment.py +0 -0
  3007. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/form_feed.py +0 -0
  3008. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/indent.options.json +0 -0
  3009. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/indent.py +0 -0
  3010. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/last_statement.py +0 -0
  3011. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/mixed_space_and_tab.options.json +0 -0
  3012. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/mixed_space_and_tab.py +0 -0
  3013. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/newlines.py +0 -0
  3014. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/no_fmt_on.py +0 -0
  3015. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/off_on_off_on.py +0 -0
  3016. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/simple.py +0 -0
  3017. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/trailing_comments.py +0 -0
  3018. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/trailing_semicolon.py +0 -0
  3019. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/yapf.py +0 -0
  3020. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/decorators.py +0 -0
  3021. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/docstrings.py +0 -0
  3022. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/match.py +0 -0
  3023. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/or_else.py +0 -0
  3024. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/parentheses.py +0 -0
  3025. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/reason.py +0 -0
  3026. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/trailing_semi.py +0 -0
  3027. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/type_params.py +0 -0
  3028. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/form_feed.py +0 -0
  3029. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/module_dangling_comment1.py +0 -0
  3030. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/module_dangling_comment2.py +0 -0
  3031. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/multiline_string_deviations.py +0 -0
  3032. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/newlines.py +0 -0
  3033. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/newlines.pyi +0 -0
  3034. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/notebook_docstring.options.json +0 -0
  3035. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/notebook_docstring.py +0 -0
  3036. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/parentheses/call_chains.py +0 -0
  3037. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/parentheses/expression_parentheses_comments.py +0 -0
  3038. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/parentheses/nested.py +0 -0
  3039. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/parentheses/opening_parentheses_comment_empty.py +0 -0
  3040. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/parentheses/opening_parentheses_comment_value.py +0 -0
  3041. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/pattern/pattern_maybe_parenthesize.py +0 -0
  3042. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/preview.options.json +0 -0
  3043. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/preview.py +0 -0
  3044. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/quote_style.options.json +0 -0
  3045. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/quote_style.py +0 -0
  3046. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/ancestory.py +0 -0
  3047. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/clause_header.py +0 -0
  3048. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/comment_only_range.py +0 -0
  3049. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/decorators.py +0 -0
  3050. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/docstring_code_examples.options.json +0 -0
  3051. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/docstring_code_examples.py +0 -0
  3052. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/empty_file.py +0 -0
  3053. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/empty_range.py +0 -0
  3054. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/end_of_file.py +0 -0
  3055. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/fmt_on_off.py +0 -0
  3056. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/indent.options.json +0 -0
  3057. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/indent.py +0 -0
  3058. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/leading_comments.py +0 -0
  3059. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/leading_trailing_comments.py +0 -0
  3060. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/module.py +0 -0
  3061. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/parentheses.py +0 -0
  3062. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/range_narrowing.py +0 -0
  3063. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/regressions.py +0 -0
  3064. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/same_line_body.py +0 -0
  3065. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/stub.options.json +0 -0
  3066. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/stub.pyi +0 -0
  3067. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/trailing_comments.py +0 -0
  3068. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/range_formatting/whitespace_only_range.py +0 -0
  3069. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/skip_magic_trailing_comma.options.json +0 -0
  3070. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/skip_magic_trailing_comma.py +0 -0
  3071. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/ann_assign.py +0 -0
  3072. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/assert.py +0 -0
  3073. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/assign.py +0 -0
  3074. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/assignment_split_value_first.py +0 -0
  3075. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/aug_assign.py +0 -0
  3076. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/break.py +0 -0
  3077. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/class_definition.py +0 -0
  3078. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/delete.py +0 -0
  3079. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/ellipsis.pyi +0 -0
  3080. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/for.py +0 -0
  3081. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/function.py +0 -0
  3082. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/global.py +0 -0
  3083. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/if.py +0 -0
  3084. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/import.py +0 -0
  3085. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/import_from.py +0 -0
  3086. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/long_type_annotations.py +0 -0
  3087. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/match.py +0 -0
  3088. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/module_comment.py +0 -0
  3089. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/nonlocal.py +0 -0
  3090. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/raise.py +0 -0
  3091. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/return.py +0 -0
  3092. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/return_annotation.py +0 -0
  3093. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/return_type_no_parameters.py +0 -0
  3094. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/return_type_parameters.py +0 -0
  3095. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/stub_functions_trailing_comments.py +0 -0
  3096. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/top_level.py +0 -0
  3097. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/top_level.pyi +0 -0
  3098. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/try.py +0 -0
  3099. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/type_alias.py +0 -0
  3100. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/while.py +0 -0
  3101. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/with.options.json +0 -0
  3102. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/with.py +0 -0
  3103. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/with_39.options.json +0 -0
  3104. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/with_39.py +0 -0
  3105. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/blank_line_after_nested_stub_class.options.json +0 -0
  3106. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/blank_line_after_nested_stub_class.pyi +0 -0
  3107. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/blank_line_after_nested_stub_class_eof.options.json +0 -0
  3108. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/blank_line_after_nested_stub_class_eof.pyi +0 -0
  3109. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/comments.pyi +0 -0
  3110. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/nesting.pyi +0 -0
  3111. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/suite.pyi +0 -0
  3112. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/stub_files/top_level.pyi +0 -0
  3113. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/tab_width.options.json +0 -0
  3114. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/tab_width.py +0 -0
  3115. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/trailing_comments.py +0 -0
  3116. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/resources/test/fixtures/ruff/trivia.py +0 -0
  3117. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/cli.rs +0 -0
  3118. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/map.rs +0 -0
  3119. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/mod.rs +0 -0
  3120. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/node_key.rs +0 -0
  3121. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/placement.rs +0 -0
  3122. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__debug__tests__debug.snap +0 -0
  3123. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__base_test.snap +0 -0
  3124. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__binary_expression_left_operand_comment.snap +0 -0
  3125. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__binary_expression_left_operand_trailing_end_of_line_comment.snap +0 -0
  3126. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__dangling_comment.snap +0 -0
  3127. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__empty_file.snap +0 -0
  3128. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__if_elif_else_comments.snap +0 -0
  3129. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__if_elif_if_else_comments.snap +0 -0
  3130. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__leading_most_outer.snap +0 -0
  3131. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__match_cases.snap +0 -0
  3132. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__nested_binary_expression.snap +0 -0
  3133. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__non_positional_arguments_slash_on_same_line.snap +0 -0
  3134. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__non_positional_arguments_with_defaults.snap +0 -0
  3135. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__only_comments.snap +0 -0
  3136. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__parenthesized_expression.snap +0 -0
  3137. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__parenthesized_trailing_comment.snap +0 -0
  3138. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__positional_argument_only_comment.snap +0 -0
  3139. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__positional_argument_only_comment_without_following_node.snap +0 -0
  3140. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__positional_argument_only_leading_comma_comment.snap +0 -0
  3141. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__trailing_after_comma.snap +0 -0
  3142. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__trailing_comment_after_single_statement_body.snap +0 -0
  3143. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__trailing_function_comment.snap +0 -0
  3144. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__trailing_most_outer.snap +0 -0
  3145. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__trailing_most_outer_nested.snap +0 -0
  3146. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__try_except.snap +0 -0
  3147. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__try_except_finally_else.snap +0 -0
  3148. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__while_trailing_else_end_of_line_comment.snap +0 -0
  3149. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/snapshots/ruff_python_formatter__comments__tests__while_trailing_end_of_line_comment.snap +0 -0
  3150. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/comments/visitor.rs +0 -0
  3151. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/binary_like.rs +0 -0
  3152. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_attribute.rs +0 -0
  3153. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_await.rs +0 -0
  3154. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_bin_op.rs +0 -0
  3155. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_bool_op.rs +0 -0
  3156. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_boolean_literal.rs +0 -0
  3157. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_bytes_literal.rs +0 -0
  3158. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_call.rs +0 -0
  3159. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_compare.rs +0 -0
  3160. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_dict.rs +0 -0
  3161. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_dict_comp.rs +0 -0
  3162. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_ellipsis_literal.rs +0 -0
  3163. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_f_string.rs +0 -0
  3164. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_generator.rs +0 -0
  3165. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_if.rs +0 -0
  3166. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_ipy_escape_command.rs +0 -0
  3167. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_lambda.rs +0 -0
  3168. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_list.rs +0 -0
  3169. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_list_comp.rs +0 -0
  3170. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_name.rs +0 -0
  3171. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_named.rs +0 -0
  3172. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_none_literal.rs +0 -0
  3173. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_number_literal.rs +0 -0
  3174. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_set.rs +0 -0
  3175. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_set_comp.rs +0 -0
  3176. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_starred.rs +0 -0
  3177. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_string_literal.rs +0 -0
  3178. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_tuple.rs +0 -0
  3179. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_unary_op.rs +0 -0
  3180. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_yield.rs +0 -0
  3181. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/expr_yield_from.rs +0 -0
  3182. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/expression/operator.rs +0 -0
  3183. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/main.rs +0 -0
  3184. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/module/mod.rs +0 -0
  3185. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/module/mod_expression.rs +0 -0
  3186. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/module/mod_module.rs +0 -0
  3187. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/options.rs +0 -0
  3188. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/alias.rs +0 -0
  3189. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/arguments.rs +0 -0
  3190. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/bytes_literal.rs +0 -0
  3191. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/commas.rs +0 -0
  3192. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/comprehension.rs +0 -0
  3193. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/decorator.rs +0 -0
  3194. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/elif_else_clause.rs +0 -0
  3195. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/except_handler_except_handler.rs +0 -0
  3196. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/f_string.rs +0 -0
  3197. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/identifier.rs +0 -0
  3198. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/keyword.rs +0 -0
  3199. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/match_case.rs +0 -0
  3200. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/mod.rs +0 -0
  3201. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/parameter.rs +0 -0
  3202. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/parameter_with_default.rs +0 -0
  3203. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/string_literal.rs +0 -0
  3204. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/other/with_item.rs +0 -0
  3205. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/pattern/mod.rs +0 -0
  3206. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/pattern/pattern_keyword.rs +0 -0
  3207. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/pattern/pattern_match_as.rs +0 -0
  3208. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/pattern/pattern_match_class.rs +0 -0
  3209. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/pattern/pattern_match_mapping.rs +0 -0
  3210. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/pattern/pattern_match_or.rs +0 -0
  3211. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/pattern/pattern_match_sequence.rs +0 -0
  3212. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/pattern/pattern_match_singleton.rs +0 -0
  3213. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/pattern/pattern_match_star.rs +0 -0
  3214. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/pattern/pattern_match_value.rs +0 -0
  3215. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/prelude.rs +0 -0
  3216. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/preview.rs +0 -0
  3217. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/range.rs +0 -0
  3218. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/shared_traits.rs +0 -0
  3219. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/snapshots/ruff_python_formatter__tests__string_processing.snap +0 -0
  3220. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/clause.rs +0 -0
  3221. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/mod.rs +0 -0
  3222. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_ann_assign.rs +0 -0
  3223. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_assert.rs +0 -0
  3224. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_assign.rs +0 -0
  3225. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_aug_assign.rs +0 -0
  3226. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_break.rs +0 -0
  3227. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_class_def.rs +0 -0
  3228. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_continue.rs +0 -0
  3229. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_delete.rs +0 -0
  3230. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_expr.rs +0 -0
  3231. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_for.rs +0 -0
  3232. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_function_def.rs +0 -0
  3233. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_if.rs +0 -0
  3234. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_import.rs +0 -0
  3235. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_ipy_escape_command.rs +0 -0
  3236. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_match.rs +0 -0
  3237. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_pass.rs +0 -0
  3238. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_raise.rs +0 -0
  3239. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_return.rs +0 -0
  3240. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_try.rs +0 -0
  3241. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/stmt_type_alias.rs +0 -0
  3242. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/statement/suite.rs +0 -0
  3243. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/string/docstring.rs +0 -0
  3244. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/string/implicit.rs +0 -0
  3245. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/string/mod.rs +0 -0
  3246. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/string/normalize.rs +0 -0
  3247. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/type_param/mod.rs +0 -0
  3248. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/type_param/type_param_param_spec.rs +0 -0
  3249. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/type_param/type_param_type_var.rs +0 -0
  3250. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/type_param/type_param_type_var_tuple.rs +0 -0
  3251. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/src/verbatim.rs +0 -0
  3252. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/fixtures.rs +0 -0
  3253. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__allow_empty_first_line.py.snap +0 -0
  3254. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__backslash_before_indent.py.snap +0 -0
  3255. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__class_blank_parentheses.py.snap +0 -0
  3256. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__comment_after_escaped_newline.py.snap +0 -0
  3257. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__comments2.py.snap +0 -0
  3258. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__comments6.py.snap +0 -0
  3259. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__comments9.py.snap +0 -0
  3260. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__comments_in_blocks.py.snap +0 -0
  3261. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__comments_in_double_parens.py.snap +0 -0
  3262. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__composition.py.snap +0 -0
  3263. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__composition_no_trailing_comma.py.snap +0 -0
  3264. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__conditional_expression.py.snap +0 -0
  3265. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__docstring_no_string_normalization.py.snap +0 -0
  3266. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__dummy_implementations.py.snap +0 -0
  3267. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__empty_lines.py.snap +0 -0
  3268. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__expression.py.snap +0 -0
  3269. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__f_docstring.py.snap +0 -0
  3270. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fmtonoff.py.snap +0 -0
  3271. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fmtonoff4.py.snap +0 -0
  3272. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fmtonoff5.py.snap +0 -0
  3273. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fmtpass_imports.py.snap +0 -0
  3274. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fmtskip5.py.snap +0 -0
  3275. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fmtskip9.py.snap +0 -0
  3276. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__form_feeds.py.snap +0 -0
  3277. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__fstring.py.snap +0 -0
  3278. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__funcdef_return_type_trailing_comma.py.snap +0 -0
  3279. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__function.py.snap +0 -0
  3280. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__function2.py.snap +0 -0
  3281. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__function_trailing_comma.py.snap +0 -0
  3282. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__ignore_pyi.pyi.snap +0 -0
  3283. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__keep_newline_after_match.py.snap +0 -0
  3284. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__line_ranges_diff_edge_case.py.snap +0 -0
  3285. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__line_ranges_fmt_off_decorator.py.snap +0 -0
  3286. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__long_strings_flag_disabled.py.snap +0 -0
  3287. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__multiline_consecutive_open_parentheses_ignore.py.snap +0 -0
  3288. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__nested_stub.pyi.snap +0 -0
  3289. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__no_blank_line_before_docstring.py.snap +0 -0
  3290. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__pattern_matching_style.py.snap +0 -0
  3291. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__pattern_matching_trailing_comma.py.snap +0 -0
  3292. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__pattern_matching_with_if_stmt.py.snap +0 -0
  3293. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__pep604_union_types_line_breaks.py.snap +0 -0
  3294. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__pep_572_remove_parens.py.snap +0 -0
  3295. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__pep_701.py.snap +0 -0
  3296. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__prefer_rhs_split.py.snap +0 -0
  3297. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_cantfit.py.snap +0 -0
  3298. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_cantfit_string.py.snap +0 -0
  3299. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_comments7.py.snap +0 -0
  3300. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_hug_parens_with_braces_and_square_brackets.py.snap +0 -0
  3301. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_hug_parens_with_braces_and_square_brackets_no_ll1.py.snap +0 -0
  3302. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_long_dict_values.py.snap +0 -0
  3303. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_long_strings.py.snap +0 -0
  3304. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_long_strings__east_asian_width.py.snap +0 -0
  3305. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_long_strings__edge_case.py.snap +0 -0
  3306. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_long_strings__regression.py.snap +0 -0
  3307. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_long_strings__type_annotations.py.snap +0 -0
  3308. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_multiline_strings.py.snap +0 -0
  3309. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__preview_return_annotation_brackets_string.py.snap +0 -0
  3310. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__raw_docstring.py.snap +0 -0
  3311. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__raw_docstring_no_string_normalization.py.snap +0 -0
  3312. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__remove_await_parens.py.snap +0 -0
  3313. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__remove_except_parens.py.snap +0 -0
  3314. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__remove_for_brackets.py.snap +0 -0
  3315. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__remove_newline_after_code_block_open.py.snap +0 -0
  3316. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__remove_redundant_parens_in_case_guard.py.snap +0 -0
  3317. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__return_annotation_brackets.py.snap +0 -0
  3318. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__single_line_format_skip_with_multiple_comments.py.snap +0 -0
  3319. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__stub.pyi.snap +0 -0
  3320. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__torture.py.snap +0 -0
  3321. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__trailing_commas_in_leading_parts.py.snap +0 -0
  3322. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__tupleassign.py.snap +0 -0
  3323. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@cases__type_param_defaults.py.snap +0 -0
  3324. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@miscellaneous__blackd_diff.py.snap +0 -0
  3325. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@miscellaneous__debug_visitor.py.snap +0 -0
  3326. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/black_compatibility@miscellaneous__string_quotes.py.snap +0 -0
  3327. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@blank_line_before_class_docstring.py.snap +0 -0
  3328. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@carriage_return__string.py.snap +0 -0
  3329. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@docstring.py.snap +0 -0
  3330. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@docstring_code_examples.py.snap +0 -0
  3331. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@docstring_code_examples_crlf.py.snap +0 -0
  3332. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@docstring_code_examples_dynamic_line_width.py.snap +0 -0
  3333. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@docstring_newlines.py.snap +0 -0
  3334. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@docstring_non_visible_characters.py.snap +0 -0
  3335. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@docstring_tab_indentation.py.snap +0 -0
  3336. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@empty_multiple_trailing_newlines.py.snap +0 -0
  3337. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@empty_now_newline.py.snap +0 -0
  3338. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@empty_trailing_newline.py.snap +0 -0
  3339. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@empty_whitespace.py.snap +0 -0
  3340. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__annotated_assign.py.snap +0 -0
  3341. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__attribute.py.snap +0 -0
  3342. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__await.py.snap +0 -0
  3343. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__binary.py.snap +0 -0
  3344. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__binary_implicit_string.py.snap +0 -0
  3345. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__binary_pow_spacing.py.snap +0 -0
  3346. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__boolean_operation.py.snap +0 -0
  3347. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__bytes.py.snap +0 -0
  3348. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__call.py.snap +0 -0
  3349. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__compare.py.snap +0 -0
  3350. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__dict.py.snap +0 -0
  3351. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__dict_comp.py.snap +0 -0
  3352. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__fstring_preview.py.snap +0 -0
  3353. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__generator_exp.py.snap +0 -0
  3354. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__hug.py.snap +0 -0
  3355. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__if.py.snap +0 -0
  3356. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__join_implicit_concatenated_string.py.snap +0 -0
  3357. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__join_implicit_concatenated_string_assignment.py.snap +0 -0
  3358. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__join_implicit_concatenated_string_preserve.py.snap +0 -0
  3359. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__lambda.py.snap +0 -0
  3360. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__list.py.snap +0 -0
  3361. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__list_comp.py.snap +0 -0
  3362. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__named_expr.py.snap +0 -0
  3363. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__number.py.snap +0 -0
  3364. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__optional_parentheses_comments.py.snap +0 -0
  3365. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__set_comp.py.snap +0 -0
  3366. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__slice.py.snap +0 -0
  3367. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__split_empty_brackets.py.snap +0 -0
  3368. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__starred.py.snap +0 -0
  3369. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__string.py.snap +0 -0
  3370. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__subscript.py.snap +0 -0
  3371. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__tuple.py.snap +0 -0
  3372. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__unary.py.snap +0 -0
  3373. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__unsplittable.py.snap +0 -0
  3374. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__yield.py.snap +0 -0
  3375. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@expression__yield_from.py.snap +0 -0
  3376. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__comments.py.snap +0 -0
  3377. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__empty_file.py.snap +0 -0
  3378. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__fmt_off_docstring.py.snap +0 -0
  3379. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__fmt_off_unclosed_deep_nested_trailing_comment.py.snap +0 -0
  3380. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__fmt_off_unclosed_trailing_comment.py.snap +0 -0
  3381. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__form_feed.py.snap +0 -0
  3382. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__indent.py.snap +0 -0
  3383. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__last_statement.py.snap +0 -0
  3384. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__mixed_space_and_tab.py.snap +0 -0
  3385. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__newlines.py.snap +0 -0
  3386. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__no_fmt_on.py.snap +0 -0
  3387. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__off_on_off_on.py.snap +0 -0
  3388. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__simple.py.snap +0 -0
  3389. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__trailing_comments.py.snap +0 -0
  3390. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__trailing_semicolon.py.snap +0 -0
  3391. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_on_off__yapf.py.snap +0 -0
  3392. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__decorators.py.snap +0 -0
  3393. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__docstrings.py.snap +0 -0
  3394. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__match.py.snap +0 -0
  3395. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__or_else.py.snap +0 -0
  3396. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__parentheses.py.snap +0 -0
  3397. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__reason.py.snap +0 -0
  3398. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__trailing_semi.py.snap +0 -0
  3399. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@fmt_skip__type_params.py.snap +0 -0
  3400. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@form_feed.py.snap +0 -0
  3401. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@module_dangling_comment1.py.snap +0 -0
  3402. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@module_dangling_comment2.py.snap +0 -0
  3403. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@multiline_string_deviations.py.snap +0 -0
  3404. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@newlines.py.snap +0 -0
  3405. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@newlines.pyi.snap +0 -0
  3406. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@notebook_docstring.py.snap +0 -0
  3407. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@parentheses__call_chains.py.snap +0 -0
  3408. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@parentheses__expression_parentheses_comments.py.snap +0 -0
  3409. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@parentheses__nested.py.snap +0 -0
  3410. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@parentheses__opening_parentheses_comment_empty.py.snap +0 -0
  3411. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@parentheses__opening_parentheses_comment_value.py.snap +0 -0
  3412. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@pattern__pattern_maybe_parenthesize.py.snap +0 -0
  3413. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@preview.py.snap +0 -0
  3414. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@quote_style.py.snap +0 -0
  3415. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__ancestory.py.snap +0 -0
  3416. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__clause_header.py.snap +0 -0
  3417. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__comment_only_range.py.snap +0 -0
  3418. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__decorators.py.snap +0 -0
  3419. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__docstring_code_examples.py.snap +0 -0
  3420. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__empty_file.py.snap +0 -0
  3421. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__empty_range.py.snap +0 -0
  3422. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__end_of_file.py.snap +0 -0
  3423. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__fmt_on_off.py.snap +0 -0
  3424. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__indent.py.snap +0 -0
  3425. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__leading_comments.py.snap +0 -0
  3426. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__leading_trailing_comments.py.snap +0 -0
  3427. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__module.py.snap +0 -0
  3428. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__parentheses.py.snap +0 -0
  3429. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__range_narrowing.py.snap +0 -0
  3430. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__regressions.py.snap +0 -0
  3431. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__same_line_body.py.snap +0 -0
  3432. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__stub.pyi.snap +0 -0
  3433. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__trailing_comments.py.snap +0 -0
  3434. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@range_formatting__whitespace_only_range.py.snap +0 -0
  3435. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@skip_magic_trailing_comma.py.snap +0 -0
  3436. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__ann_assign.py.snap +0 -0
  3437. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__assert.py.snap +0 -0
  3438. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__assign.py.snap +0 -0
  3439. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__assignment_split_value_first.py.snap +0 -0
  3440. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__aug_assign.py.snap +0 -0
  3441. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__break.py.snap +0 -0
  3442. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__class_definition.py.snap +0 -0
  3443. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__delete.py.snap +0 -0
  3444. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__ellipsis.pyi.snap +0 -0
  3445. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__for.py.snap +0 -0
  3446. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__function.py.snap +0 -0
  3447. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__global.py.snap +0 -0
  3448. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__if.py.snap +0 -0
  3449. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__import.py.snap +0 -0
  3450. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__import_from.py.snap +0 -0
  3451. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__long_type_annotations.py.snap +0 -0
  3452. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__match.py.snap +0 -0
  3453. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__module_comment.py.snap +0 -0
  3454. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__nonlocal.py.snap +0 -0
  3455. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__raise.py.snap +0 -0
  3456. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__return.py.snap +0 -0
  3457. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__return_annotation.py.snap +0 -0
  3458. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__return_type_no_parameters.py.snap +0 -0
  3459. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__return_type_parameters.py.snap +0 -0
  3460. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__stub_functions_trailing_comments.py.snap +0 -0
  3461. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__top_level.py.snap +0 -0
  3462. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__top_level.pyi.snap +0 -0
  3463. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__try.py.snap +0 -0
  3464. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__type_alias.py.snap +0 -0
  3465. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__while.py.snap +0 -0
  3466. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__with.py.snap +0 -0
  3467. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@statement__with_39.py.snap +0 -0
  3468. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@stub_files__blank_line_after_nested_stub_class.pyi.snap +0 -0
  3469. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@stub_files__blank_line_after_nested_stub_class_eof.pyi.snap +0 -0
  3470. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@stub_files__comments.pyi.snap +0 -0
  3471. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@stub_files__nesting.pyi.snap +0 -0
  3472. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@stub_files__suite.pyi.snap +0 -0
  3473. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@stub_files__top_level.pyi.snap +0 -0
  3474. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@tab_width.py.snap +0 -0
  3475. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@trailing_comments.py.snap +0 -0
  3476. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_formatter/tests/snapshots/format@trivia.py.snap +0 -0
  3477. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_index/Cargo.toml +0 -0
  3478. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_index/src/fstring_ranges.rs +0 -0
  3479. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_index/src/indexer.rs +0 -0
  3480. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_index/src/lib.rs +0 -0
  3481. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_index/src/multiline_ranges.rs +0 -0
  3482. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_literal/Cargo.toml +0 -0
  3483. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_literal/src/cformat.rs +0 -0
  3484. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_literal/src/char.rs +0 -0
  3485. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_literal/src/escape.rs +0 -0
  3486. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_literal/src/float.rs +0 -0
  3487. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_literal/src/format.rs +0 -0
  3488. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_literal/src/lib.rs +0 -0
  3489. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/CONTRIBUTING.md +0 -0
  3490. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/Cargo.toml +0 -0
  3491. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/README.md +0 -0
  3492. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/.editorconfig +0 -0
  3493. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_invalid_annotation.py +0 -0
  3494. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_invalid_target.py +0 -0
  3495. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_invalid_value.py +0 -0
  3496. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_missing_rhs.py +0 -0
  3497. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/ann_assign_stmt_type_alias_annotation.py +0 -0
  3498. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/args_unparenthesized_generator.py +0 -0
  3499. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/assert_empty_msg.py +0 -0
  3500. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/assert_empty_test.py +0 -0
  3501. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/assert_invalid_msg_expr.py +0 -0
  3502. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/assert_invalid_test_expr.py +0 -0
  3503. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/assign_stmt_invalid_target.py +0 -0
  3504. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/assign_stmt_invalid_value_expr.py +0 -0
  3505. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/assign_stmt_keyword_target.py +0 -0
  3506. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/assign_stmt_missing_rhs.py +0 -0
  3507. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/async_unexpected_token.py +0 -0
  3508. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/aug_assign_stmt_invalid_target.py +0 -0
  3509. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/aug_assign_stmt_invalid_value.py +0 -0
  3510. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/aug_assign_stmt_missing_rhs.py +0 -0
  3511. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/case_expect_indented_block.py +0 -0
  3512. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/class_def_empty_body.py +0 -0
  3513. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/class_def_missing_name.py +0 -0
  3514. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/class_def_unclosed_type_param_list.py +0 -0
  3515. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/clause_expect_indented_block.py +0 -0
  3516. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/clause_expect_single_statement.py +0 -0
  3517. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_comma.py +0 -0
  3518. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_comma_between_elements.py +0 -0
  3519. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_element_between_commas.py +0 -0
  3520. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/comma_separated_missing_first_element.py +0 -0
  3521. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/comprehension_missing_for_after_async.py +0 -0
  3522. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/decorator_invalid_expression.py +0 -0
  3523. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/decorator_missing_expression.py +0 -0
  3524. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/decorator_missing_newline.py +0 -0
  3525. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/decorator_unexpected_token.py +0 -0
  3526. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/del_incomplete_target.py +0 -0
  3527. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/del_stmt_empty.py +0 -0
  3528. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/dotted_name_multiple_dots.py +0 -0
  3529. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/except_stmt_invalid_expression.py +0 -0
  3530. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/except_stmt_missing_as_name.py +0 -0
  3531. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/except_stmt_missing_exception.py +0 -0
  3532. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/except_stmt_missing_exception_and_as_name.py +0 -0
  3533. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/except_stmt_unparenthesized_tuple.py +0 -0
  3534. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/f_string_empty_expression.py +0 -0
  3535. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/f_string_invalid_conversion_flag_name_tok.py +0 -0
  3536. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/f_string_invalid_conversion_flag_other_tok.py +0 -0
  3537. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/f_string_invalid_starred_expr.py +0 -0
  3538. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/f_string_lambda_without_parentheses.py +0 -0
  3539. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/f_string_unclosed_lbrace.py +0 -0
  3540. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/f_string_unclosed_lbrace_in_format_spec.py +0 -0
  3541. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_iter_expr.py +0 -0
  3542. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_target.py +0 -0
  3543. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_target_binary_expr.py +0 -0
  3544. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/for_stmt_invalid_target_in_keyword.py +0 -0
  3545. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/for_stmt_missing_in_keyword.py +0 -0
  3546. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/for_stmt_missing_iter.py +0 -0
  3547. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/for_stmt_missing_target.py +0 -0
  3548. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/from_import_dotted_names.py +0 -0
  3549. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/from_import_empty_names.py +0 -0
  3550. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/from_import_missing_module.py +0 -0
  3551. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/from_import_missing_rpar.py +0 -0
  3552. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/from_import_star_with_other_names.py +0 -0
  3553. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/from_import_unparenthesized_trailing_comma.py +0 -0
  3554. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/function_def_empty_body.py +0 -0
  3555. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/function_def_invalid_return_expr.py +0 -0
  3556. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/function_def_missing_identifier.py +0 -0
  3557. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/function_def_missing_return_type.py +0 -0
  3558. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/function_def_unclosed_parameter_list.py +0 -0
  3559. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/function_def_unclosed_type_param_list.py +0 -0
  3560. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/function_def_unparenthesized_return_types.py +0 -0
  3561. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/global_stmt_empty.py +0 -0
  3562. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/global_stmt_expression.py +0 -0
  3563. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/global_stmt_trailing_comma.py +0 -0
  3564. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/if_stmt_elif_missing_colon.py +0 -0
  3565. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/if_stmt_empty_body.py +0 -0
  3566. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/if_stmt_invalid_elif_test_expr.py +0 -0
  3567. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/if_stmt_invalid_test_expr.py +0 -0
  3568. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/if_stmt_missing_colon.py +0 -0
  3569. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/if_stmt_missing_test.py +0 -0
  3570. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/if_stmt_misspelled_elif.py +0 -0
  3571. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/implicitly_concatenated_unterminated_string.py +0 -0
  3572. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/implicitly_concatenated_unterminated_string_multiline.py +0 -0
  3573. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/import_alias_missing_asname.py +0 -0
  3574. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/import_stmt_empty.py +0 -0
  3575. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/import_stmt_parenthesized_names.py +0 -0
  3576. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/import_stmt_star_import.py +0 -0
  3577. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/import_stmt_trailing_comma.py +0 -0
  3578. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/invalid_byte_literal.py +0 -0
  3579. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/invalid_del_target.py +0 -0
  3580. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/invalid_fstring_literal_element.py +0 -0
  3581. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/invalid_string_literal.py +0 -0
  3582. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/lambda_body_with_starred_expr.py +0 -0
  3583. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/lambda_body_with_yield_expr.py +0 -0
  3584. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/match_classify_as_keyword.py +0 -0
  3585. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/match_classify_as_keyword_or_identifier.py +0 -0
  3586. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/match_expected_colon.py +0 -0
  3587. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/match_stmt_expect_indented_block.py +0 -0
  3588. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/match_stmt_expected_case_block.py +0 -0
  3589. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/match_stmt_invalid_guard_expr.py +0 -0
  3590. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/match_stmt_invalid_subject_expr.py +0 -0
  3591. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/match_stmt_missing_guard_expr.py +0 -0
  3592. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/match_stmt_missing_pattern.py +0 -0
  3593. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/match_stmt_no_newline_before_case.py +0 -0
  3594. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/match_stmt_single_starred_subject.py +0 -0
  3595. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/mixed_bytes_and_non_bytes_literals.py +0 -0
  3596. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/multiple_clauses_on_same_line.py +0 -0
  3597. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/node_range_with_gaps.py +0 -0
  3598. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/nonlocal_stmt_empty.py +0 -0
  3599. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/nonlocal_stmt_expression.py +0 -0
  3600. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/nonlocal_stmt_trailing_comma.py +0 -0
  3601. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/param_missing_annotation.py +0 -0
  3602. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/param_missing_default.py +0 -0
  3603. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/param_with_invalid_annotation.py +0 -0
  3604. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/param_with_invalid_default.py +0 -0
  3605. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/param_with_invalid_star_annotation.py +0 -0
  3606. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_duplicate_names.py +0 -0
  3607. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_expected_after_star_separator.py +0 -0
  3608. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_kwarg_after_star_separator.py +0 -0
  3609. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_multiple_kwargs.py +0 -0
  3610. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_multiple_slash_separator.py +0 -0
  3611. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_multiple_star_separator.py +0 -0
  3612. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_multiple_varargs.py +0 -0
  3613. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_no_arg_before_slash.py +0 -0
  3614. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_non_default_after_default.py +0 -0
  3615. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_star_after_slash.py +0 -0
  3616. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_star_separator_after_star_param.py +0 -0
  3617. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_var_keyword_with_default.py +0 -0
  3618. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/params_var_positional_with_default.py +0 -0
  3619. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/raise_stmt_from_without_exc.py +0 -0
  3620. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/raise_stmt_invalid_cause.py +0 -0
  3621. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/raise_stmt_invalid_exc.py +0 -0
  3622. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/raise_stmt_unparenthesized_tuple_cause.py +0 -0
  3623. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/raise_stmt_unparenthesized_tuple_exc.py +0 -0
  3624. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/return_stmt_invalid_expr.py +0 -0
  3625. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/simple_and_compound_stmt_on_same_line.py +0 -0
  3626. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/simple_and_compound_stmt_on_same_line_in_block.py +0 -0
  3627. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/simple_stmts_on_same_line.py +0 -0
  3628. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/simple_stmts_on_same_line_in_block.py +0 -0
  3629. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/try_stmt_invalid_order.py +0 -0
  3630. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/try_stmt_missing_except_finally.py +0 -0
  3631. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/try_stmt_misspelled_except.py +0 -0
  3632. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/try_stmt_mixed_except_kind.py +0 -0
  3633. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_alias_incomplete_stmt.py +0 -0
  3634. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_alias_invalid_value_expr.py +0 -0
  3635. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_param_invalid_bound_expr.py +0 -0
  3636. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_param_missing_bound.py +0 -0
  3637. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_param_param_spec_bound.py +0 -0
  3638. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_param_param_spec_invalid_default_expr.py +0 -0
  3639. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_param_param_spec_missing_default.py +0 -0
  3640. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_param_type_var_invalid_default_expr.py +0 -0
  3641. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_param_type_var_missing_default.py +0 -0
  3642. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_param_type_var_tuple_bound.py +0 -0
  3643. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_param_type_var_tuple_invalid_default_expr.py +0 -0
  3644. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_param_type_var_tuple_missing_default.py +0 -0
  3645. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/type_params_empty.py +0 -0
  3646. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/unterminated_fstring_newline_recovery.py +0 -0
  3647. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/while_stmt_invalid_test_expr.py +0 -0
  3648. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/while_stmt_missing_colon.py +0 -0
  3649. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/while_stmt_missing_test.py +0 -0
  3650. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/with_items_parenthesized_missing_colon.py +0 -0
  3651. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/err/with_items_parenthesized_missing_comma.py +0 -0
  3652. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/ambiguous_lpar_with_items_binary_expr.py +0 -0
  3653. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/ambiguous_lpar_with_items_if_expr.py +0 -0
  3654. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/ann_assign_stmt_simple_target.py +0 -0
  3655. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/args_unparenthesized_generator.py +0 -0
  3656. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/assign_targets_terminator.py +0 -0
  3657. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/async_for_statement.py +0 -0
  3658. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/async_function_definition.py +0 -0
  3659. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/async_with_statement.py +0 -0
  3660. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/class_def_arguments.py +0 -0
  3661. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/comma_separated_regular_list_terminator.py +0 -0
  3662. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/decorator_async_function.py +0 -0
  3663. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/del_targets_terminator.py +0 -0
  3664. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/dotted_name_normalized_spaces.py +0 -0
  3665. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/except_stmt_as_name_soft_keyword.py +0 -0
  3666. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/for_in_target_valid_expr.py +0 -0
  3667. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/from_import_no_space.py +0 -0
  3668. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/from_import_soft_keyword_module_name.py +0 -0
  3669. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/from_import_stmt_terminator.py +0 -0
  3670. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/fstring_format_spec_terminator.py +0 -0
  3671. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/function_def_parameter_range.py +0 -0
  3672. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/function_def_parenthesized_return_types.py +0 -0
  3673. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/function_def_valid_return_expr.py +0 -0
  3674. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/global_stmt.py +0 -0
  3675. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/import_as_name_soft_keyword.py +0 -0
  3676. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/import_stmt_terminator.py +0 -0
  3677. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/lambda_with_no_parameters.py +0 -0
  3678. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/lambda_with_valid_body.py +0 -0
  3679. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/match_as_pattern.py +0 -0
  3680. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/match_as_pattern_soft_keyword.py +0 -0
  3681. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/match_attr_pattern_soft_keyword.py +0 -0
  3682. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/match_classify_as_identifier_1.py +0 -0
  3683. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/match_classify_as_identifier_2.py +0 -0
  3684. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/match_classify_as_keyword_1.py +0 -0
  3685. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/match_classify_as_keyword_2.py +0 -0
  3686. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/match_classify_as_keyword_or_identifier.py +0 -0
  3687. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/match_sequence_pattern_parentheses_terminator.py +0 -0
  3688. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/match_sequence_pattern_terminator.py +0 -0
  3689. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/match_stmt_subject_expr.py +0 -0
  3690. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/match_stmt_valid_guard_expr.py +0 -0
  3691. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/nonlocal_stmt.py +0 -0
  3692. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/param_with_annotation.py +0 -0
  3693. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/param_with_default.py +0 -0
  3694. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/param_with_star_annotation.py +0 -0
  3695. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/params_non_default_after_star.py +0 -0
  3696. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/params_seen_keyword_only_param_after_star.py +0 -0
  3697. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/simple_stmts_in_block.py +0 -0
  3698. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/simple_stmts_with_semicolons.py +0 -0
  3699. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/type_param_param_spec.py +0 -0
  3700. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/type_param_type_var.py +0 -0
  3701. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/inline/ok/type_param_type_var_tuple.py +0 -0
  3702. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/arguments/double_starred.py +0 -0
  3703. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/arguments/duplicate_keyword_arguments.py +0 -0
  3704. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/arguments/invalid_expression.py +0 -0
  3705. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/arguments/invalid_keyword_expression.py +0 -0
  3706. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/arguments/invalid_order.py +0 -0
  3707. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/arguments/missing_argument.py +0 -0
  3708. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/arguments/missing_comma.py +0 -0
  3709. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/arguments/missing_expression.py +0 -0
  3710. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/arguments/starred.py +0 -0
  3711. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/arguments/unclosed_0.py +0 -0
  3712. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/arguments/unclosed_1.py +0 -0
  3713. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/arguments/unclosed_2.py +0 -0
  3714. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/attribute/invalid_member.py +0 -0
  3715. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/attribute/multiple_dots.py +0 -0
  3716. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/attribute/no_member.py +0 -0
  3717. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/await/no_expression_0.py +0 -0
  3718. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/await/no_expression_1.py +0 -0
  3719. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/await/recover.py +0 -0
  3720. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/invalid_rhs_expression.py +0 -0
  3721. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/missing_lhs.py +0 -0
  3722. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/missing_rhs_0.py +0 -0
  3723. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/missing_rhs_1.py +0 -0
  3724. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/multiple_ops.py +0 -0
  3725. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/named_expression.py +0 -0
  3726. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/bin_op/starred_expression.py +0 -0
  3727. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/bool_op/invalid_rhs_expression.py +0 -0
  3728. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/bool_op/missing_lhs.py +0 -0
  3729. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/bool_op/missing_rhs.py +0 -0
  3730. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/bool_op/named_expression.py +0 -0
  3731. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/bool_op/starred_expression.py +0 -0
  3732. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/compare/invalid_order.py +0 -0
  3733. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/compare/invalid_rhs_expression.py +0 -0
  3734. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_lhs.py +0 -0
  3735. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_rhs_0.py +0 -0
  3736. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_rhs_1.py +0 -0
  3737. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/compare/missing_rhs_2.py +0 -0
  3738. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/compare/multiple_equals.py +0 -0
  3739. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/compare/named_expression.py +0 -0
  3740. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/compare/starred_expression.py +0 -0
  3741. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/dict/comprehension.py +0 -0
  3742. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/dict/double_star.py +0 -0
  3743. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/dict/double_star_comprehension.py +0 -0
  3744. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/dict/missing_closing_brace_0.py +0 -0
  3745. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/dict/missing_closing_brace_1.py +0 -0
  3746. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/dict/missing_closing_brace_2.py +0 -0
  3747. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/dict/named_expression_0.py +0 -0
  3748. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/dict/named_expression_1.py +0 -0
  3749. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/dict/recover.py +0 -0
  3750. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/emoji_identifiers.py +0 -0
  3751. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/emoji_statement.py +0 -0
  3752. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/if/missing_orelse_expr_0.py +0 -0
  3753. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/if/missing_orelse_expr_1.py +0 -0
  3754. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/if/missing_test_expr_0.py +0 -0
  3755. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/if/missing_test_expr_1.py +0 -0
  3756. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/if/recover.py +0 -0
  3757. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/lambda_default_parameters.py +0 -0
  3758. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/lambda_duplicate_parameters.py +0 -0
  3759. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/list/comprehension.py +0 -0
  3760. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_0.py +0 -0
  3761. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_1.py +0 -0
  3762. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_2.py +0 -0
  3763. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/list/missing_closing_bracket_3.py +0 -0
  3764. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/list/recover.py +0 -0
  3765. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/list/star_expression_precedence.py +0 -0
  3766. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/named/invalid_target.py +0 -0
  3767. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_0.py +0 -0
  3768. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_1.py +0 -0
  3769. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_2.py +0 -0
  3770. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_3.py +0 -0
  3771. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/named/missing_expression_4.py +0 -0
  3772. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/generator.py +0 -0
  3773. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_0.py +0 -0
  3774. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_1.py +0 -0
  3775. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_2.py +0 -0
  3776. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/missing_closing_paren_3.py +0 -0
  3777. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/parenthesized.py +0 -0
  3778. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/tuple.py +0 -0
  3779. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/parenthesized/tuple_starred_expr.py +0 -0
  3780. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/set/comprehension.py +0 -0
  3781. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_0.py +0 -0
  3782. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_1.py +0 -0
  3783. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_2.py +0 -0
  3784. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/set/missing_closing_curly_brace_3.py +0 -0
  3785. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/set/recover.py +0 -0
  3786. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/set/star_expression_precedence.py +0 -0
  3787. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/subscript/invalid_slice_element.py +0 -0
  3788. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/subscript/unclosed_slice_0.py +0 -0
  3789. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/subscript/unclosed_slice_1.py +0 -0
  3790. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/unary/named_expression.py +0 -0
  3791. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/unary/no_expression_0.py +0 -0
  3792. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/unary/no_expression_1.py +0 -0
  3793. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/unary.py +0 -0
  3794. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/yield/named_expression.py +0 -0
  3795. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/yield/star_expression.py +0 -0
  3796. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/yield_from/starred_expression.py +0 -0
  3797. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/expressions/yield_from/unparenthesized.py +0 -0
  3798. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/re_lex_logical_token.py +0 -0
  3799. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/re_lex_logical_token_mac_eol.py +0 -0
  3800. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/re_lex_logical_token_windows_eol.py +0 -0
  3801. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/re_lexing/fstring_format_spec_1.py +0 -0
  3802. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/re_lexing/line_continuation_1.py +0 -0
  3803. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/re_lexing/line_continuation_windows_eol.py +0 -0
  3804. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/re_lexing/triple_quoted_fstring_1.py +0 -0
  3805. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/re_lexing/triple_quoted_fstring_2.py +0 -0
  3806. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/re_lexing/triple_quoted_fstring_3.py +0 -0
  3807. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/function_type_parameters.py +0 -0
  3808. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/if_extra_closing_parentheses.py +0 -0
  3809. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/if_extra_indent.py +0 -0
  3810. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/invalid_assignment_targets.py +0 -0
  3811. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/invalid_augmented_assignment_target.py +0 -0
  3812. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_0.py +0 -0
  3813. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_1.py +0 -0
  3814. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_2.py +0 -0
  3815. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_3.py +0 -0
  3816. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/match/as_pattern_4.py +0 -0
  3817. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/match/invalid_class_pattern.py +0 -0
  3818. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/match/invalid_lhs_or_rhs_pattern.py +0 -0
  3819. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/match/invalid_mapping_pattern.py +0 -0
  3820. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/match/star_pattern_usage.py +0 -0
  3821. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/match/unary_add_usage.py +0 -0
  3822. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/with/ambiguous_lpar_with_items.py +0 -0
  3823. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/with/empty_with_items.py +0 -0
  3824. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/with/unclosed_ambiguous_lpar.py +0 -0
  3825. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/with/unclosed_ambiguous_lpar_eof.py +0 -0
  3826. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/invalid/statements/with/unparenthesized_with_items.py +0 -0
  3827. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/arguments.py +0 -0
  3828. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/attribute.py +0 -0
  3829. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/await.py +0 -0
  3830. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/bin_op.py +0 -0
  3831. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/bool_op.py +0 -0
  3832. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/call.py +0 -0
  3833. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/compare.py +0 -0
  3834. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/dictionary.py +0 -0
  3835. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/dictionary_comprehension.py +0 -0
  3836. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/f_string.py +0 -0
  3837. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/generator.py +0 -0
  3838. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/if.py +0 -0
  3839. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/lambda.py +0 -0
  3840. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/list.py +0 -0
  3841. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/list_comprehension.py +0 -0
  3842. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/name.py +0 -0
  3843. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/named.py +0 -0
  3844. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/number_literal.py +0 -0
  3845. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/parenthesized.py +0 -0
  3846. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/set.py +0 -0
  3847. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/set_comprehension.py +0 -0
  3848. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/slice.py +0 -0
  3849. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/starred.py +0 -0
  3850. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/string.py +0 -0
  3851. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/subscript.py +0 -0
  3852. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/tuple.py +0 -0
  3853. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/unary_op.py +0 -0
  3854. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/yield.py +0 -0
  3855. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/expressions/yield_from.py +0 -0
  3856. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/other/atom.py +0 -0
  3857. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/other/decorator.py +0 -0
  3858. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/ambiguous_lpar_with_items.py +0 -0
  3859. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/annotated_assignment.py +0 -0
  3860. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/assert.py +0 -0
  3861. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/assignment.py +0 -0
  3862. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/augmented_assignment.py +0 -0
  3863. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/class.py +0 -0
  3864. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/delete.py +0 -0
  3865. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/for.py +0 -0
  3866. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/from_import.py +0 -0
  3867. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/function.py +0 -0
  3868. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/if.py +0 -0
  3869. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/import.py +0 -0
  3870. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/match.py +0 -0
  3871. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/raise.py +0 -0
  3872. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/return.py +0 -0
  3873. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/simple.py +0 -0
  3874. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/try.py +0 -0
  3875. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/type.py +0 -0
  3876. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/while.py +0 -0
  3877. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/resources/valid/statement/with.py +0 -0
  3878. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/error.rs +0 -0
  3879. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/lexer/cursor.rs +0 -0
  3880. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/lexer/fstring.rs +0 -0
  3881. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/lexer/indentation.rs +0 -0
  3882. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/lexer.rs +0 -0
  3883. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/expression.rs +0 -0
  3884. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/helpers.rs +0 -0
  3885. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/mod.rs +0 -0
  3886. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/pattern.rs +0 -0
  3887. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/progress.rs +0 -0
  3888. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/recovery.rs +0 -0
  3889. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_invalid_syntax1.snap +0 -0
  3890. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_invalid_syntax2.snap +0 -0
  3891. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_invalid_syntax3.snap +0 -0
  3892. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__expr_mode_valid_syntax.snap +0 -0
  3893. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__ipython_escape_commands.snap +0 -0
  3894. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/snapshots/ruff_python_parser__parser__tests__unicode_aliases.snap +0 -0
  3895. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/statement.rs +0 -0
  3896. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/parser/tests.rs +0 -0
  3897. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__assignment.snap +0 -0
  3898. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__bom.snap +0 -0
  3899. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__bom_with_offset.snap +0 -0
  3900. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__bom_with_offset_edge.snap +0 -0
  3901. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__comment_until_mac_eol.snap +0 -0
  3902. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__comment_until_unix_eol.snap +0 -0
  3903. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__comment_until_windows_eol.snap +0 -0
  3904. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__dedent_after_whitespace.snap +0 -0
  3905. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_mac_eol.snap +0 -0
  3906. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_tabs_mac_eol.snap +0 -0
  3907. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_tabs_unix_eol.snap +0 -0
  3908. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_tabs_windows_eol.snap +0 -0
  3909. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_unix_eol.snap +0 -0
  3910. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__double_dedent_with_windows_eol.snap +0 -0
  3911. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__emoji_identifier.snap +0 -0
  3912. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__empty_fstrings.snap +0 -0
  3913. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__empty_ipython_escape_command.snap +0 -0
  3914. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__escape_unicode_name.snap +0 -0
  3915. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring.snap +0 -0
  3916. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_comments.snap +0 -0
  3917. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_conversion.snap +0 -0
  3918. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_escape.snap +0 -0
  3919. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_escape_braces.snap +0 -0
  3920. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_escape_raw.snap +0 -0
  3921. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_expression_multiline.snap +0 -0
  3922. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_multiline.snap +0 -0
  3923. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_named_unicode.snap +0 -0
  3924. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_named_unicode_raw.snap +0 -0
  3925. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_nested.snap +0 -0
  3926. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_parentheses.snap +0 -0
  3927. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_prefix.snap +0 -0
  3928. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_single_quote_escape_mac_eol.snap +0 -0
  3929. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_single_quote_escape_unix_eol.snap +0 -0
  3930. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_single_quote_escape_windows_eol.snap +0 -0
  3931. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_format_spec.snap +0 -0
  3932. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_ipy_escape_command.snap +0 -0
  3933. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_lambda_expression.snap +0 -0
  3934. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_multiline_format_spec.snap +0 -0
  3935. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_named_expression.snap +0 -0
  3936. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__fstring_with_nul_char.snap +0 -0
  3937. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__indentation_with_mac_eol.snap +0 -0
  3938. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__indentation_with_unix_eol.snap +0 -0
  3939. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__indentation_with_windows_eol.snap +0 -0
  3940. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__invalid_leading_zero_big.snap +0 -0
  3941. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__invalid_leading_zero_small.snap +0 -0
  3942. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command.snap +0 -0
  3943. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_assignment.snap +0 -0
  3944. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_indentation.snap +0 -0
  3945. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_mac_eol.snap +0 -0
  3946. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_unix_eol.snap +0 -0
  3947. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_windows_eol.snap +0 -0
  3948. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_mac_eol_and_eof.snap +0 -0
  3949. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_unix_eol_and_eof.snap +0 -0
  3950. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_windows_eol_and_eof.snap +0 -0
  3951. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__ipython_help_end_escape_command.snap +0 -0
  3952. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_empty.snap +0 -0
  3953. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_long.snap +0 -0
  3954. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_single_whitespace.snap +0 -0
  3955. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__line_comment_whitespace.snap +0 -0
  3956. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__logical_newline_line_comment.snap +0 -0
  3957. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__match_softkeyword_in_notebook.snap +0 -0
  3958. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__newline_in_brackets_mac_eol.snap +0 -0
  3959. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__newline_in_brackets_unix_eol.snap +0 -0
  3960. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__newline_in_brackets_windows_eol.snap +0 -0
  3961. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__non_logical_newline_in_string_continuation.snap +0 -0
  3962. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__numbers.snap +0 -0
  3963. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__operators.snap +0 -0
  3964. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string.snap +0 -0
  3965. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string_continuation_with_mac_eol.snap +0 -0
  3966. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string_continuation_with_unix_eol.snap +0 -0
  3967. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__string_continuation_with_windows_eol.snap +0 -0
  3968. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__tet_too_low_dedent.snap +0 -0
  3969. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__triple_quoted_mac_eol.snap +0 -0
  3970. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__triple_quoted_unix_eol.snap +0 -0
  3971. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__lexer__tests__triple_quoted_windows_eol.snap +0 -0
  3972. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__backspace_alias.snap +0 -0
  3973. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__bell_alias.snap +0 -0
  3974. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__carriage_return_alias.snap +0 -0
  3975. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__character_tabulation_with_justification_alias.snap +0 -0
  3976. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__delete_alias.snap +0 -0
  3977. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__dont_panic_on_8_in_octal_escape.snap +0 -0
  3978. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__double_quoted_byte.snap +0 -0
  3979. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__escape_alias.snap +0 -0
  3980. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__escape_char_in_byte_literal.snap +0 -0
  3981. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__escape_octet.snap +0 -0
  3982. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__form_feed_alias.snap +0 -0
  3983. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_constant_range.snap +0 -0
  3984. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_escaped_character.snap +0 -0
  3985. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_escaped_newline.snap +0 -0
  3986. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_line_continuation.snap +0 -0
  3987. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_parse_self_documenting_base.snap +0 -0
  3988. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_parse_self_documenting_base_more.snap +0 -0
  3989. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_parse_self_documenting_format.snap +0 -0
  3990. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__fstring_unescaped_newline.snap +0 -0
  3991. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__hts_alias.snap +0 -0
  3992. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__invalid_byte_literal_error.snap +0 -0
  3993. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__invalid_unicode_literal.snap +0 -0
  3994. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__invalid_unicode_name_error.snap +0 -0
  3995. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__missing_unicode_lbrace_error.snap +0 -0
  3996. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__missing_unicode_rbrace_error.snap +0 -0
  3997. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_empty_fstring.snap +0 -0
  3998. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_1.snap +0 -0
  3999. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_2.snap +0 -0
  4000. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_3.snap +0 -0
  4001. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_f_string_concat_4.snap +0 -0
  4002. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring.snap +0 -0
  4003. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_equals.snap +0 -0
  4004. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_nested_concatenation_string_spec.snap +0 -0
  4005. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_nested_spec.snap +0 -0
  4006. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_nested_string_spec.snap +0 -0
  4007. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_not_equals.snap +0 -0
  4008. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_not_nested_spec.snap +0 -0
  4009. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_self_doc_prec_space.snap +0 -0
  4010. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_self_doc_trailing_space.snap +0 -0
  4011. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_fstring_yield_expr.snap +0 -0
  4012. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_string_concat.snap +0 -0
  4013. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_string_triple_quotes_with_kind.snap +0 -0
  4014. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_f_string_concat_1.snap +0 -0
  4015. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_f_string_concat_2.snap +0 -0
  4016. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_string_concat_1.snap +0 -0
  4017. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__parse_u_string_concat_2.snap +0 -0
  4018. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_byte_literal_1.snap +0 -0
  4019. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_byte_literal_2.snap +0 -0
  4020. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__raw_fstring.snap +0 -0
  4021. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__single_quoted_byte.snap +0 -0
  4022. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__string_parser_escaped_mac_eol.snap +0 -0
  4023. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__string_parser_escaped_unix_eol.snap +0 -0
  4024. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__string_parser_escaped_windows_eol.snap +0 -0
  4025. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/snapshots/ruff_python_parser__string__tests__triple_quoted_raw_fstring.snap +0 -0
  4026. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/string.rs +0 -0
  4027. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/token.rs +0 -0
  4028. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/token_set.rs +0 -0
  4029. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/token_source.rs +0 -0
  4030. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/src/typing.rs +0 -0
  4031. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/fixtures.rs +0 -0
  4032. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/generate_inline_tests.rs +0 -0
  4033. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_invalid_annotation.py.snap +0 -0
  4034. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_invalid_target.py.snap +0 -0
  4035. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_invalid_value.py.snap +0 -0
  4036. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_missing_rhs.py.snap +0 -0
  4037. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@ann_assign_stmt_type_alias_annotation.py.snap +0 -0
  4038. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@args_unparenthesized_generator.py.snap +0 -0
  4039. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_empty_msg.py.snap +0 -0
  4040. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_empty_test.py.snap +0 -0
  4041. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_invalid_msg_expr.py.snap +0 -0
  4042. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assert_invalid_test_expr.py.snap +0 -0
  4043. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_invalid_target.py.snap +0 -0
  4044. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_invalid_value_expr.py.snap +0 -0
  4045. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_keyword_target.py.snap +0 -0
  4046. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@assign_stmt_missing_rhs.py.snap +0 -0
  4047. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@async_unexpected_token.py.snap +0 -0
  4048. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@aug_assign_stmt_invalid_target.py.snap +0 -0
  4049. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@aug_assign_stmt_invalid_value.py.snap +0 -0
  4050. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@aug_assign_stmt_missing_rhs.py.snap +0 -0
  4051. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@case_expect_indented_block.py.snap +0 -0
  4052. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_def_empty_body.py.snap +0 -0
  4053. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_def_missing_name.py.snap +0 -0
  4054. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@class_def_unclosed_type_param_list.py.snap +0 -0
  4055. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@clause_expect_indented_block.py.snap +0 -0
  4056. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@clause_expect_single_statement.py.snap +0 -0
  4057. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_comma.py.snap +0 -0
  4058. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_comma_between_elements.py.snap +0 -0
  4059. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_element_between_commas.py.snap +0 -0
  4060. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comma_separated_missing_first_element.py.snap +0 -0
  4061. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@comprehension_missing_for_after_async.py.snap +0 -0
  4062. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_invalid_expression.py.snap +0 -0
  4063. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_missing_expression.py.snap +0 -0
  4064. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_missing_newline.py.snap +0 -0
  4065. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@decorator_unexpected_token.py.snap +0 -0
  4066. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@del_incomplete_target.py.snap +0 -0
  4067. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@del_stmt_empty.py.snap +0 -0
  4068. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@dotted_name_multiple_dots.py.snap +0 -0
  4069. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_invalid_expression.py.snap +0 -0
  4070. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_missing_as_name.py.snap +0 -0
  4071. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_missing_exception.py.snap +0 -0
  4072. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_missing_exception_and_as_name.py.snap +0 -0
  4073. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@except_stmt_unparenthesized_tuple.py.snap +0 -0
  4074. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__double_starred.py.snap +0 -0
  4075. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__duplicate_keyword_arguments.py.snap +0 -0
  4076. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__invalid_expression.py.snap +0 -0
  4077. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__invalid_keyword_expression.py.snap +0 -0
  4078. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__invalid_order.py.snap +0 -0
  4079. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__missing_argument.py.snap +0 -0
  4080. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__missing_comma.py.snap +0 -0
  4081. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__missing_expression.py.snap +0 -0
  4082. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__starred.py.snap +0 -0
  4083. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__unclosed_0.py.snap +0 -0
  4084. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__unclosed_1.py.snap +0 -0
  4085. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__arguments__unclosed_2.py.snap +0 -0
  4086. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__attribute__invalid_member.py.snap +0 -0
  4087. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__attribute__multiple_dots.py.snap +0 -0
  4088. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__attribute__no_member.py.snap +0 -0
  4089. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__await__no_expression_0.py.snap +0 -0
  4090. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__await__no_expression_1.py.snap +0 -0
  4091. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__await__recover.py.snap +0 -0
  4092. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__invalid_rhs_expression.py.snap +0 -0
  4093. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__missing_lhs.py.snap +0 -0
  4094. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__missing_rhs_0.py.snap +0 -0
  4095. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__missing_rhs_1.py.snap +0 -0
  4096. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__multiple_ops.py.snap +0 -0
  4097. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__named_expression.py.snap +0 -0
  4098. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bin_op__starred_expression.py.snap +0 -0
  4099. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__invalid_rhs_expression.py.snap +0 -0
  4100. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__missing_lhs.py.snap +0 -0
  4101. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__missing_rhs.py.snap +0 -0
  4102. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__named_expression.py.snap +0 -0
  4103. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__bool_op__starred_expression.py.snap +0 -0
  4104. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__invalid_order.py.snap +0 -0
  4105. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__invalid_rhs_expression.py.snap +0 -0
  4106. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_lhs.py.snap +0 -0
  4107. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_rhs_0.py.snap +0 -0
  4108. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_rhs_1.py.snap +0 -0
  4109. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__missing_rhs_2.py.snap +0 -0
  4110. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__multiple_equals.py.snap +0 -0
  4111. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__named_expression.py.snap +0 -0
  4112. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__compare__starred_expression.py.snap +0 -0
  4113. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__comprehension.py.snap +0 -0
  4114. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__double_star.py.snap +0 -0
  4115. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__double_star_comprehension.py.snap +0 -0
  4116. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__missing_closing_brace_0.py.snap +0 -0
  4117. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__missing_closing_brace_1.py.snap +0 -0
  4118. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__missing_closing_brace_2.py.snap +0 -0
  4119. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__named_expression_0.py.snap +0 -0
  4120. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__named_expression_1.py.snap +0 -0
  4121. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__dict__recover.py.snap +0 -0
  4122. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__emoji_identifiers.py.snap +0 -0
  4123. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__emoji_statement.py.snap +0 -0
  4124. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_orelse_expr_0.py.snap +0 -0
  4125. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_orelse_expr_1.py.snap +0 -0
  4126. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_test_expr_0.py.snap +0 -0
  4127. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__missing_test_expr_1.py.snap +0 -0
  4128. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__if__recover.py.snap +0 -0
  4129. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__lambda_default_parameters.py.snap +0 -0
  4130. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__lambda_duplicate_parameters.py.snap +0 -0
  4131. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__comprehension.py.snap +0 -0
  4132. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_0.py.snap +0 -0
  4133. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_1.py.snap +0 -0
  4134. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_2.py.snap +0 -0
  4135. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__missing_closing_bracket_3.py.snap +0 -0
  4136. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__recover.py.snap +0 -0
  4137. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__list__star_expression_precedence.py.snap +0 -0
  4138. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__invalid_target.py.snap +0 -0
  4139. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_0.py.snap +0 -0
  4140. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_1.py.snap +0 -0
  4141. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_2.py.snap +0 -0
  4142. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_3.py.snap +0 -0
  4143. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__named__missing_expression_4.py.snap +0 -0
  4144. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__generator.py.snap +0 -0
  4145. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_0.py.snap +0 -0
  4146. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_1.py.snap +0 -0
  4147. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_2.py.snap +0 -0
  4148. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__missing_closing_paren_3.py.snap +0 -0
  4149. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__parenthesized.py.snap +0 -0
  4150. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__tuple.py.snap +0 -0
  4151. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__parenthesized__tuple_starred_expr.py.snap +0 -0
  4152. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__comprehension.py.snap +0 -0
  4153. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_0.py.snap +0 -0
  4154. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_1.py.snap +0 -0
  4155. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_2.py.snap +0 -0
  4156. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__missing_closing_curly_brace_3.py.snap +0 -0
  4157. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__recover.py.snap +0 -0
  4158. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__set__star_expression_precedence.py.snap +0 -0
  4159. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__subscript__invalid_slice_element.py.snap +0 -0
  4160. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__subscript__unclosed_slice_0.py.snap +0 -0
  4161. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__subscript__unclosed_slice_1.py.snap +0 -0
  4162. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary.py.snap +0 -0
  4163. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary__named_expression.py.snap +0 -0
  4164. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary__no_expression_0.py.snap +0 -0
  4165. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__unary__no_expression_1.py.snap +0 -0
  4166. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield__named_expression.py.snap +0 -0
  4167. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield__star_expression.py.snap +0 -0
  4168. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield_from__starred_expression.py.snap +0 -0
  4169. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@expressions__yield_from__unparenthesized.py.snap +0 -0
  4170. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_empty_expression.py.snap +0 -0
  4171. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_invalid_conversion_flag_name_tok.py.snap +0 -0
  4172. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_invalid_conversion_flag_other_tok.py.snap +0 -0
  4173. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_invalid_starred_expr.py.snap +0 -0
  4174. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_lambda_without_parentheses.py.snap +0 -0
  4175. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_unclosed_lbrace.py.snap +0 -0
  4176. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@f_string_unclosed_lbrace_in_format_spec.py.snap +0 -0
  4177. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_iter_expr.py.snap +0 -0
  4178. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_target.py.snap +0 -0
  4179. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_target_binary_expr.py.snap +0 -0
  4180. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_invalid_target_in_keyword.py.snap +0 -0
  4181. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_missing_in_keyword.py.snap +0 -0
  4182. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_missing_iter.py.snap +0 -0
  4183. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@for_stmt_missing_target.py.snap +0 -0
  4184. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_dotted_names.py.snap +0 -0
  4185. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_empty_names.py.snap +0 -0
  4186. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_missing_module.py.snap +0 -0
  4187. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_missing_rpar.py.snap +0 -0
  4188. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_star_with_other_names.py.snap +0 -0
  4189. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@from_import_unparenthesized_trailing_comma.py.snap +0 -0
  4190. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_empty_body.py.snap +0 -0
  4191. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_invalid_return_expr.py.snap +0 -0
  4192. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_missing_identifier.py.snap +0 -0
  4193. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_missing_return_type.py.snap +0 -0
  4194. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_unclosed_parameter_list.py.snap +0 -0
  4195. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_unclosed_type_param_list.py.snap +0 -0
  4196. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@function_def_unparenthesized_return_types.py.snap +0 -0
  4197. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@global_stmt_empty.py.snap +0 -0
  4198. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@global_stmt_expression.py.snap +0 -0
  4199. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@global_stmt_trailing_comma.py.snap +0 -0
  4200. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_elif_missing_colon.py.snap +0 -0
  4201. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_empty_body.py.snap +0 -0
  4202. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_invalid_elif_test_expr.py.snap +0 -0
  4203. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_invalid_test_expr.py.snap +0 -0
  4204. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_missing_colon.py.snap +0 -0
  4205. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_missing_test.py.snap +0 -0
  4206. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@if_stmt_misspelled_elif.py.snap +0 -0
  4207. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@implicitly_concatenated_unterminated_string.py.snap +0 -0
  4208. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@implicitly_concatenated_unterminated_string_multiline.py.snap +0 -0
  4209. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_alias_missing_asname.py.snap +0 -0
  4210. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_empty.py.snap +0 -0
  4211. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_parenthesized_names.py.snap +0 -0
  4212. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_star_import.py.snap +0 -0
  4213. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@import_stmt_trailing_comma.py.snap +0 -0
  4214. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_byte_literal.py.snap +0 -0
  4215. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_del_target.py.snap +0 -0
  4216. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_fstring_literal_element.py.snap +0 -0
  4217. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@invalid_string_literal.py.snap +0 -0
  4218. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@lambda_body_with_starred_expr.py.snap +0 -0
  4219. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@lambda_body_with_yield_expr.py.snap +0 -0
  4220. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_classify_as_keyword.py.snap +0 -0
  4221. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_classify_as_keyword_or_identifier.py.snap +0 -0
  4222. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_expected_colon.py.snap +0 -0
  4223. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_expect_indented_block.py.snap +0 -0
  4224. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_expected_case_block.py.snap +0 -0
  4225. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_invalid_guard_expr.py.snap +0 -0
  4226. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_invalid_subject_expr.py.snap +0 -0
  4227. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_missing_guard_expr.py.snap +0 -0
  4228. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_missing_pattern.py.snap +0 -0
  4229. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_no_newline_before_case.py.snap +0 -0
  4230. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@match_stmt_single_starred_subject.py.snap +0 -0
  4231. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@mixed_bytes_and_non_bytes_literals.py.snap +0 -0
  4232. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@multiple_clauses_on_same_line.py.snap +0 -0
  4233. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@node_range_with_gaps.py.snap +0 -0
  4234. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_stmt_empty.py.snap +0 -0
  4235. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_stmt_expression.py.snap +0 -0
  4236. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@nonlocal_stmt_trailing_comma.py.snap +0 -0
  4237. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_missing_annotation.py.snap +0 -0
  4238. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_missing_default.py.snap +0 -0
  4239. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_invalid_annotation.py.snap +0 -0
  4240. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_invalid_default.py.snap +0 -0
  4241. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@param_with_invalid_star_annotation.py.snap +0 -0
  4242. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_duplicate_names.py.snap +0 -0
  4243. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_expected_after_star_separator.py.snap +0 -0
  4244. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_kwarg_after_star_separator.py.snap +0 -0
  4245. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_kwargs.py.snap +0 -0
  4246. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_slash_separator.py.snap +0 -0
  4247. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_star_separator.py.snap +0 -0
  4248. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_multiple_varargs.py.snap +0 -0
  4249. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_no_arg_before_slash.py.snap +0 -0
  4250. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_non_default_after_default.py.snap +0 -0
  4251. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_star_after_slash.py.snap +0 -0
  4252. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_star_separator_after_star_param.py.snap +0 -0
  4253. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_var_keyword_with_default.py.snap +0 -0
  4254. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@params_var_positional_with_default.py.snap +0 -0
  4255. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_from_without_exc.py.snap +0 -0
  4256. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_invalid_cause.py.snap +0 -0
  4257. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_invalid_exc.py.snap +0 -0
  4258. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_unparenthesized_tuple_cause.py.snap +0 -0
  4259. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@raise_stmt_unparenthesized_tuple_exc.py.snap +0 -0
  4260. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lex_logical_token.py.snap +0 -0
  4261. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lex_logical_token_mac_eol.py.snap +0 -0
  4262. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lex_logical_token_windows_eol.py.snap +0 -0
  4263. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__fstring_format_spec_1.py.snap +0 -0
  4264. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__line_continuation_1.py.snap +0 -0
  4265. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__line_continuation_windows_eol.py.snap +0 -0
  4266. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__triple_quoted_fstring_1.py.snap +0 -0
  4267. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__triple_quoted_fstring_2.py.snap +0 -0
  4268. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@re_lexing__triple_quoted_fstring_3.py.snap +0 -0
  4269. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@return_stmt_invalid_expr.py.snap +0 -0
  4270. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_and_compound_stmt_on_same_line.py.snap +0 -0
  4271. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_and_compound_stmt_on_same_line_in_block.py.snap +0 -0
  4272. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_stmts_on_same_line.py.snap +0 -0
  4273. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@simple_stmts_on_same_line_in_block.py.snap +0 -0
  4274. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__function_type_parameters.py.snap +0 -0
  4275. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__if_extra_closing_parentheses.py.snap +0 -0
  4276. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__if_extra_indent.py.snap +0 -0
  4277. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__invalid_assignment_targets.py.snap +0 -0
  4278. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__invalid_augmented_assignment_target.py.snap +0 -0
  4279. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_0.py.snap +0 -0
  4280. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_1.py.snap +0 -0
  4281. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_2.py.snap +0 -0
  4282. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_3.py.snap +0 -0
  4283. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__as_pattern_4.py.snap +0 -0
  4284. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__invalid_class_pattern.py.snap +0 -0
  4285. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__invalid_lhs_or_rhs_pattern.py.snap +0 -0
  4286. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__invalid_mapping_pattern.py.snap +0 -0
  4287. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__star_pattern_usage.py.snap +0 -0
  4288. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__match__unary_add_usage.py.snap +0 -0
  4289. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__ambiguous_lpar_with_items.py.snap +0 -0
  4290. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__empty_with_items.py.snap +0 -0
  4291. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__unclosed_ambiguous_lpar.py.snap +0 -0
  4292. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__unclosed_ambiguous_lpar_eof.py.snap +0 -0
  4293. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@statements__with__unparenthesized_with_items.py.snap +0 -0
  4294. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_invalid_order.py.snap +0 -0
  4295. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_missing_except_finally.py.snap +0 -0
  4296. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_misspelled_except.py.snap +0 -0
  4297. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@try_stmt_mixed_except_kind.py.snap +0 -0
  4298. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_alias_incomplete_stmt.py.snap +0 -0
  4299. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_alias_invalid_value_expr.py.snap +0 -0
  4300. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_invalid_bound_expr.py.snap +0 -0
  4301. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_missing_bound.py.snap +0 -0
  4302. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_param_spec_bound.py.snap +0 -0
  4303. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_param_spec_invalid_default_expr.py.snap +0 -0
  4304. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_param_spec_missing_default.py.snap +0 -0
  4305. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_invalid_default_expr.py.snap +0 -0
  4306. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_missing_default.py.snap +0 -0
  4307. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_tuple_bound.py.snap +0 -0
  4308. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_tuple_invalid_default_expr.py.snap +0 -0
  4309. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_param_type_var_tuple_missing_default.py.snap +0 -0
  4310. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@type_params_empty.py.snap +0 -0
  4311. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@unterminated_fstring_newline_recovery.py.snap +0 -0
  4312. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@while_stmt_invalid_test_expr.py.snap +0 -0
  4313. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@while_stmt_missing_colon.py.snap +0 -0
  4314. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@while_stmt_missing_test.py.snap +0 -0
  4315. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@with_items_parenthesized_missing_colon.py.snap +0 -0
  4316. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/invalid_syntax@with_items_parenthesized_missing_comma.py.snap +0 -0
  4317. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@ambiguous_lpar_with_items_binary_expr.py.snap +0 -0
  4318. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@ambiguous_lpar_with_items_if_expr.py.snap +0 -0
  4319. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@ann_assign_stmt_simple_target.py.snap +0 -0
  4320. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@args_unparenthesized_generator.py.snap +0 -0
  4321. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@assign_targets_terminator.py.snap +0 -0
  4322. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@async_for_statement.py.snap +0 -0
  4323. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@async_function_definition.py.snap +0 -0
  4324. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@async_with_statement.py.snap +0 -0
  4325. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@class_def_arguments.py.snap +0 -0
  4326. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@comma_separated_regular_list_terminator.py.snap +0 -0
  4327. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@decorator_async_function.py.snap +0 -0
  4328. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@del_targets_terminator.py.snap +0 -0
  4329. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@dotted_name_normalized_spaces.py.snap +0 -0
  4330. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@except_stmt_as_name_soft_keyword.py.snap +0 -0
  4331. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__arguments.py.snap +0 -0
  4332. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__attribute.py.snap +0 -0
  4333. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__await.py.snap +0 -0
  4334. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__bin_op.py.snap +0 -0
  4335. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__bool_op.py.snap +0 -0
  4336. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__call.py.snap +0 -0
  4337. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__compare.py.snap +0 -0
  4338. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__dictionary.py.snap +0 -0
  4339. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__dictionary_comprehension.py.snap +0 -0
  4340. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__f_string.py.snap +0 -0
  4341. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__generator.py.snap +0 -0
  4342. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__if.py.snap +0 -0
  4343. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__lambda.py.snap +0 -0
  4344. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__list.py.snap +0 -0
  4345. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__list_comprehension.py.snap +0 -0
  4346. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__name.py.snap +0 -0
  4347. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__named.py.snap +0 -0
  4348. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__number_literal.py.snap +0 -0
  4349. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__parenthesized.py.snap +0 -0
  4350. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__set.py.snap +0 -0
  4351. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__set_comprehension.py.snap +0 -0
  4352. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__slice.py.snap +0 -0
  4353. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__starred.py.snap +0 -0
  4354. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__string.py.snap +0 -0
  4355. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__subscript.py.snap +0 -0
  4356. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__tuple.py.snap +0 -0
  4357. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__unary_op.py.snap +0 -0
  4358. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__yield.py.snap +0 -0
  4359. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@expressions__yield_from.py.snap +0 -0
  4360. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@for_in_target_valid_expr.py.snap +0 -0
  4361. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@from_import_no_space.py.snap +0 -0
  4362. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@from_import_soft_keyword_module_name.py.snap +0 -0
  4363. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@from_import_stmt_terminator.py.snap +0 -0
  4364. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@fstring_format_spec_terminator.py.snap +0 -0
  4365. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_def_parameter_range.py.snap +0 -0
  4366. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_def_parenthesized_return_types.py.snap +0 -0
  4367. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@function_def_valid_return_expr.py.snap +0 -0
  4368. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@global_stmt.py.snap +0 -0
  4369. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@import_as_name_soft_keyword.py.snap +0 -0
  4370. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@import_stmt_terminator.py.snap +0 -0
  4371. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@lambda_with_no_parameters.py.snap +0 -0
  4372. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@lambda_with_valid_body.py.snap +0 -0
  4373. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_as_pattern.py.snap +0 -0
  4374. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_as_pattern_soft_keyword.py.snap +0 -0
  4375. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_attr_pattern_soft_keyword.py.snap +0 -0
  4376. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_identifier_1.py.snap +0 -0
  4377. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_identifier_2.py.snap +0 -0
  4378. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_keyword_1.py.snap +0 -0
  4379. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_keyword_2.py.snap +0 -0
  4380. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_classify_as_keyword_or_identifier.py.snap +0 -0
  4381. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_sequence_pattern_parentheses_terminator.py.snap +0 -0
  4382. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_sequence_pattern_terminator.py.snap +0 -0
  4383. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_stmt_subject_expr.py.snap +0 -0
  4384. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@match_stmt_valid_guard_expr.py.snap +0 -0
  4385. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@nonlocal_stmt.py.snap +0 -0
  4386. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@other__atom.py.snap +0 -0
  4387. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@other__decorator.py.snap +0 -0
  4388. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_annotation.py.snap +0 -0
  4389. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_default.py.snap +0 -0
  4390. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@param_with_star_annotation.py.snap +0 -0
  4391. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@params_non_default_after_star.py.snap +0 -0
  4392. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@params_seen_keyword_only_param_after_star.py.snap +0 -0
  4393. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@simple_stmts_in_block.py.snap +0 -0
  4394. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@simple_stmts_with_semicolons.py.snap +0 -0
  4395. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__ambiguous_lpar_with_items.py.snap +0 -0
  4396. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__annotated_assignment.py.snap +0 -0
  4397. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__assert.py.snap +0 -0
  4398. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__assignment.py.snap +0 -0
  4399. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__augmented_assignment.py.snap +0 -0
  4400. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__class.py.snap +0 -0
  4401. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__delete.py.snap +0 -0
  4402. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__for.py.snap +0 -0
  4403. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__from_import.py.snap +0 -0
  4404. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__function.py.snap +0 -0
  4405. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__if.py.snap +0 -0
  4406. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__import.py.snap +0 -0
  4407. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__match.py.snap +0 -0
  4408. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__raise.py.snap +0 -0
  4409. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__return.py.snap +0 -0
  4410. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__simple.py.snap +0 -0
  4411. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__try.py.snap +0 -0
  4412. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__type.py.snap +0 -0
  4413. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__while.py.snap +0 -0
  4414. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@statement__with.py.snap +0 -0
  4415. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_param_spec.py.snap +0 -0
  4416. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_type_var.py.snap +0 -0
  4417. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_parser/tests/snapshots/valid_syntax@type_param_type_var_tuple.py.snap +0 -0
  4418. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/Cargo.toml +0 -0
  4419. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/analyze/function_type.rs +0 -0
  4420. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/analyze/imports.rs +0 -0
  4421. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/analyze/logging.rs +0 -0
  4422. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/analyze/mod.rs +0 -0
  4423. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/analyze/terminal.rs +0 -0
  4424. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/analyze/type_inference.rs +0 -0
  4425. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/analyze/visibility.rs +0 -0
  4426. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/binding.rs +0 -0
  4427. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/branches.rs +0 -0
  4428. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/context.rs +0 -0
  4429. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/definition.rs +0 -0
  4430. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/globals.rs +0 -0
  4431. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/lib.rs +0 -0
  4432. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/model/all.rs +0 -0
  4433. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/model.rs +0 -0
  4434. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/reference.rs +0 -0
  4435. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/scope.rs +0 -0
  4436. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_semantic/src/star_import.rs +0 -0
  4437. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/Cargo.toml +0 -0
  4438. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/builtins.rs +0 -0
  4439. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/future.rs +0 -0
  4440. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/identifiers.rs +0 -0
  4441. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/keyword.rs +0 -0
  4442. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/lib.rs +0 -0
  4443. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/logging.rs +0 -0
  4444. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/open_mode.rs +0 -0
  4445. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/path.rs +0 -0
  4446. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/str.rs +0 -0
  4447. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/sys/builtin_modules.rs +0 -0
  4448. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/sys/known_stdlib.rs +0 -0
  4449. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/sys/mod.rs +0 -0
  4450. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_stdlib/src/typing.rs +0 -0
  4451. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_trivia/Cargo.toml +0 -0
  4452. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_trivia/src/comment_ranges.rs +0 -0
  4453. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_trivia/src/comments.rs +0 -0
  4454. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_trivia/src/cursor.rs +0 -0
  4455. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_trivia/src/lib.rs +0 -0
  4456. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_trivia/src/pragmas.rs +0 -0
  4457. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_trivia/src/textwrap.rs +0 -0
  4458. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_trivia/src/tokenizer.rs +0 -0
  4459. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_python_trivia/src/whitespace.rs +0 -0
  4460. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/CONTRIBUTING.md +0 -0
  4461. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/Cargo.toml +0 -0
  4462. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/README.md +0 -0
  4463. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/assets/nativeServer.png +0 -0
  4464. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/docs/MIGRATION.md +0 -0
  4465. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/docs/setup/HELIX.md +0 -0
  4466. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/docs/setup/KATE.md +0 -0
  4467. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/docs/setup/NEOVIM.md +0 -0
  4468. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/docs/setup/VIM.md +0 -0
  4469. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/resources/test/fixtures/pandas_html.py +0 -0
  4470. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/resources/test/fixtures/settings/empty.json +0 -0
  4471. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/resources/test/fixtures/settings/empty_multiple_workspace.json +0 -0
  4472. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/resources/test/fixtures/settings/global_only.json +0 -0
  4473. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/resources/test/fixtures/settings/vs_code_initialization_options.json +0 -0
  4474. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/resources/test/fixtures/tensorflow_test_notebook.ipynb +0 -0
  4475. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/edit/notebook.rs +0 -0
  4476. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/edit/range.rs +0 -0
  4477. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/edit/replacement.rs +0 -0
  4478. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/edit/text_document.rs +0 -0
  4479. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/edit.rs +0 -0
  4480. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/format.rs +0 -0
  4481. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/lib.rs +0 -0
  4482. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/lint.rs +0 -0
  4483. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/logging.rs +0 -0
  4484. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/message.rs +0 -0
  4485. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/resolve.rs +0 -0
  4486. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/diagnostics.rs +0 -0
  4487. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/notifications/cancel.rs +0 -0
  4488. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/notifications/did_change.rs +0 -0
  4489. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/notifications/did_change_configuration.rs +0 -0
  4490. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/notifications/did_change_notebook.rs +0 -0
  4491. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/notifications/did_change_watched_files.rs +0 -0
  4492. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/notifications/did_change_workspace.rs +0 -0
  4493. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/notifications/did_close.rs +0 -0
  4494. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/notifications/did_close_notebook.rs +0 -0
  4495. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/notifications/did_open.rs +0 -0
  4496. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/notifications/did_open_notebook.rs +0 -0
  4497. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/notifications.rs +0 -0
  4498. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/requests/code_action.rs +0 -0
  4499. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/requests/code_action_resolve.rs +0 -0
  4500. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/requests/diagnostic.rs +0 -0
  4501. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/requests/execute_command.rs +0 -0
  4502. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/requests/format.rs +0 -0
  4503. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/requests/format_range.rs +0 -0
  4504. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/requests/hover.rs +0 -0
  4505. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/requests.rs +0 -0
  4506. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api/traits.rs +0 -0
  4507. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/api.rs +0 -0
  4508. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/client.rs +0 -0
  4509. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/connection.rs +0 -0
  4510. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/schedule/task.rs +0 -0
  4511. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/schedule/thread/pool.rs +0 -0
  4512. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/schedule/thread/priority.rs +0 -0
  4513. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/schedule/thread.rs +0 -0
  4514. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server/schedule.rs +0 -0
  4515. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/server.rs +0 -0
  4516. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/session/capabilities.rs +0 -0
  4517. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/session/index.rs +0 -0
  4518. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/session/settings.rs +0 -0
  4519. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/src/session.rs +0 -0
  4520. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/tests/document.rs +0 -0
  4521. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/tests/notebook.rs +0 -0
  4522. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/tests/snapshots/document__delete_lines_pandas_html.snap +0 -0
  4523. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/tests/snapshots/notebook__changed_notebook.snap +0 -0
  4524. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_server/tests/snapshots/notebook__initial_notebook.snap +0 -0
  4525. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_source_file/Cargo.toml +0 -0
  4526. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_source_file/src/lib.rs +0 -0
  4527. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_source_file/src/line_index.rs +0 -0
  4528. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_source_file/src/line_ranges.rs +0 -0
  4529. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_source_file/src/newlines.rs +0 -0
  4530. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_text_size/Cargo.toml +0 -0
  4531. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_text_size/src/lib.rs +0 -0
  4532. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_text_size/src/schemars_impls.rs +0 -0
  4533. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_text_size/src/serde_impls.rs +0 -0
  4534. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_text_size/src/size.rs +0 -0
  4535. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_text_size/src/traits.rs +0 -0
  4536. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_text_size/tests/auto_traits.rs +0 -0
  4537. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_text_size/tests/constructors.rs +0 -0
  4538. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_text_size/tests/indexing.rs +0 -0
  4539. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_text_size/tests/main.rs +0 -0
  4540. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_text_size/tests/serde.rs +0 -0
  4541. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_workspace/Cargo.toml +0 -0
  4542. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_workspace/src/lib.rs +0 -0
  4543. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_workspace/src/options_base.rs +0 -0
  4544. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_workspace/src/pyproject.rs +0 -0
  4545. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_workspace/src/resolver.rs +0 -0
  4546. {ruff-0.9.2 → ruff-0.9.4}/crates/ruff_workspace/src/settings.rs +0 -0
  4547. {ruff-0.9.2 → ruff-0.9.4}/python/ruff/__init__.py +0 -0
  4548. {ruff-0.9.2 → ruff-0.9.4}/python/ruff/__main__.py +0 -0
  4549. {ruff-0.9.2 → ruff-0.9.4}/rust-toolchain.toml +0 -0
ruff-0.9.4/Cargo.lock ADDED
@@ -0,0 +1,4792 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
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.6"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
95
+ dependencies = [
96
+ "utf8parse",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "anstyle-query"
101
+ version = "1.1.2"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
104
+ dependencies = [
105
+ "windows-sys 0.59.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.7"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
126
+ dependencies = [
127
+ "anstyle",
128
+ "once_cell",
129
+ "windows-sys 0.59.0",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "anyhow"
134
+ version = "1.0.95"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
137
+
138
+ [[package]]
139
+ name = "append-only-vec"
140
+ version = "0.1.7"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "7992085ec035cfe96992dd31bfd495a2ebd31969bb95f624471cb6c0b349e571"
143
+
144
+ [[package]]
145
+ name = "arc-swap"
146
+ version = "1.7.1"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
149
+
150
+ [[package]]
151
+ name = "argfile"
152
+ version = "0.2.1"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "0a1cc0ba69de57db40674c66f7cf2caee3981ddef084388482c95c0e2133e5e8"
155
+ dependencies = [
156
+ "fs-err",
157
+ "os_str_bytes",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "arrayvec"
162
+ version = "0.7.6"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
165
+
166
+ [[package]]
167
+ name = "assert_fs"
168
+ version = "1.1.2"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "7efdb1fdb47602827a342857666feb372712cbc64b414172bd6b167a02927674"
171
+ dependencies = [
172
+ "anstyle",
173
+ "doc-comment",
174
+ "globwalk",
175
+ "predicates",
176
+ "predicates-core",
177
+ "predicates-tree",
178
+ "tempfile",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "autocfg"
183
+ version = "1.4.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
186
+
187
+ [[package]]
188
+ name = "base64"
189
+ version = "0.13.1"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
192
+
193
+ [[package]]
194
+ name = "base64"
195
+ version = "0.22.1"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
198
+
199
+ [[package]]
200
+ name = "bincode"
201
+ version = "1.3.3"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
204
+ dependencies = [
205
+ "serde",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "bitflags"
210
+ version = "1.3.2"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
213
+
214
+ [[package]]
215
+ name = "bitflags"
216
+ version = "2.8.0"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
219
+
220
+ [[package]]
221
+ name = "block-buffer"
222
+ version = "0.10.4"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
225
+ dependencies = [
226
+ "generic-array",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "boxcar"
231
+ version = "0.2.8"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "2721c3c5a6f0e7f7e607125d963fedeb765f545f67adc9d71ed934693881eb42"
234
+
235
+ [[package]]
236
+ name = "bstr"
237
+ version = "1.11.3"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
240
+ dependencies = [
241
+ "memchr",
242
+ "regex-automata 0.4.9",
243
+ "serde",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "bumpalo"
248
+ version = "3.16.0"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
251
+
252
+ [[package]]
253
+ name = "byteorder"
254
+ version = "1.5.0"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
257
+
258
+ [[package]]
259
+ name = "cachedir"
260
+ version = "0.3.1"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "4703f3937077db8fa35bee3c8789343c1aec2585f0146f09d658d4ccc0e8d873"
263
+ dependencies = [
264
+ "tempfile",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "camino"
269
+ version = "1.1.9"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
272
+ dependencies = [
273
+ "serde",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "cast"
278
+ version = "0.3.0"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
281
+
282
+ [[package]]
283
+ name = "castaway"
284
+ version = "0.2.3"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
287
+ dependencies = [
288
+ "rustversion",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "cc"
293
+ version = "1.2.10"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
296
+ dependencies = [
297
+ "jobserver",
298
+ "libc",
299
+ "shlex",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "cfg-if"
304
+ version = "1.0.0"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
307
+
308
+ [[package]]
309
+ name = "cfg_aliases"
310
+ version = "0.2.1"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
313
+
314
+ [[package]]
315
+ name = "chic"
316
+ version = "1.2.2"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "a5b5db619f3556839cb2223ae86ff3f9a09da2c5013be42bc9af08c9589bf70c"
319
+ dependencies = [
320
+ "annotate-snippets",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "chrono"
325
+ version = "0.4.39"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
328
+ dependencies = [
329
+ "android-tzdata",
330
+ "iana-time-zone",
331
+ "num-traits",
332
+ "windows-targets 0.52.6",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "ciborium"
337
+ version = "0.2.2"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
340
+ dependencies = [
341
+ "ciborium-io",
342
+ "ciborium-ll",
343
+ "serde",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "ciborium-io"
348
+ version = "0.2.2"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
351
+
352
+ [[package]]
353
+ name = "ciborium-ll"
354
+ version = "0.2.2"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
357
+ dependencies = [
358
+ "ciborium-io",
359
+ "half",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "clap"
364
+ version = "4.5.27"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "769b0145982b4b48713e01ec42d61614425f27b7058bda7180a3a41f30104796"
367
+ dependencies = [
368
+ "clap_builder",
369
+ "clap_derive",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "clap_builder"
374
+ version = "4.5.27"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "1b26884eb4b57140e4d2d93652abfa49498b938b3c9179f9fc487b0acc3edad7"
377
+ dependencies = [
378
+ "anstream",
379
+ "anstyle",
380
+ "clap_lex",
381
+ "strsim",
382
+ "terminal_size",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "clap_complete"
387
+ version = "4.5.42"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "33a7e468e750fa4b6be660e8b5651ad47372e8fb114030b594c2d75d48c5ffd0"
390
+ dependencies = [
391
+ "clap",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "clap_complete_command"
396
+ version = "0.6.1"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "da8e198c052315686d36371e8a3c5778b7852fc75cc313e4e11eeb7a644a1b62"
399
+ dependencies = [
400
+ "clap",
401
+ "clap_complete",
402
+ "clap_complete_nushell",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "clap_complete_nushell"
407
+ version = "4.5.5"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "c6a8b1593457dfc2fe539002b795710d022dc62a65bf15023f039f9760c7b18a"
410
+ dependencies = [
411
+ "clap",
412
+ "clap_complete",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "clap_derive"
417
+ version = "4.5.24"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
420
+ dependencies = [
421
+ "heck",
422
+ "proc-macro2",
423
+ "quote",
424
+ "syn 2.0.96",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "clap_lex"
429
+ version = "0.7.4"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
432
+
433
+ [[package]]
434
+ name = "clearscreen"
435
+ version = "4.0.1"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "8c41dc435a7b98e4608224bbf65282309f5403719df9113621b30f8b6f74e2f4"
438
+ dependencies = [
439
+ "nix",
440
+ "terminfo",
441
+ "thiserror 2.0.11",
442
+ "which",
443
+ "windows-sys 0.59.0",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "codspeed"
448
+ version = "2.7.2"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "450a0e9df9df1c154156f4344f99d8f6f6e69d0fc4de96ef6e2e68b2ec3bce97"
451
+ dependencies = [
452
+ "colored 2.2.0",
453
+ "libc",
454
+ "serde_json",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "codspeed-criterion-compat"
459
+ version = "2.7.2"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "8eb1a6cb9c20e177fde58cdef97c1c7c9264eb1424fe45c4fccedc2fb078a569"
462
+ dependencies = [
463
+ "codspeed",
464
+ "colored 2.2.0",
465
+ "criterion",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "colorchoice"
470
+ version = "1.0.3"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
473
+
474
+ [[package]]
475
+ name = "colored"
476
+ version = "2.2.0"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
479
+ dependencies = [
480
+ "lazy_static",
481
+ "windows-sys 0.48.0",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "colored"
486
+ version = "3.0.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
489
+ dependencies = [
490
+ "windows-sys 0.48.0",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "compact_str"
495
+ version = "0.8.1"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
498
+ dependencies = [
499
+ "castaway",
500
+ "cfg-if",
501
+ "itoa",
502
+ "rustversion",
503
+ "ryu",
504
+ "serde",
505
+ "static_assertions",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "console"
510
+ version = "0.15.10"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b"
513
+ dependencies = [
514
+ "encode_unicode",
515
+ "libc",
516
+ "once_cell",
517
+ "unicode-width 0.2.0",
518
+ "windows-sys 0.59.0",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "console_error_panic_hook"
523
+ version = "0.1.7"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
526
+ dependencies = [
527
+ "cfg-if",
528
+ "wasm-bindgen",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "console_log"
533
+ version = "1.0.0"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "be8aed40e4edbf4d3b4431ab260b63fdc40f5780a4766824329ea0f1eefe3c0f"
536
+ dependencies = [
537
+ "log",
538
+ "web-sys",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "core-foundation-sys"
543
+ version = "0.8.7"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
546
+
547
+ [[package]]
548
+ name = "countme"
549
+ version = "3.0.1"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
552
+ dependencies = [
553
+ "dashmap 5.5.3",
554
+ "once_cell",
555
+ "rustc-hash 1.1.0",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "cpufeatures"
560
+ version = "0.2.17"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
563
+ dependencies = [
564
+ "libc",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "crc32fast"
569
+ version = "1.4.2"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
572
+ dependencies = [
573
+ "cfg-if",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "criterion"
578
+ version = "0.5.1"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
581
+ dependencies = [
582
+ "anes",
583
+ "cast",
584
+ "ciborium",
585
+ "clap",
586
+ "criterion-plot",
587
+ "is-terminal",
588
+ "itertools 0.10.5",
589
+ "num-traits",
590
+ "once_cell",
591
+ "oorandom",
592
+ "regex",
593
+ "serde",
594
+ "serde_derive",
595
+ "serde_json",
596
+ "tinytemplate",
597
+ "walkdir",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "criterion-plot"
602
+ version = "0.5.0"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
605
+ dependencies = [
606
+ "cast",
607
+ "itertools 0.10.5",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "crossbeam"
612
+ version = "0.8.4"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
615
+ dependencies = [
616
+ "crossbeam-channel",
617
+ "crossbeam-deque",
618
+ "crossbeam-epoch",
619
+ "crossbeam-queue",
620
+ "crossbeam-utils",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "crossbeam-channel"
625
+ version = "0.5.14"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
628
+ dependencies = [
629
+ "crossbeam-utils",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "crossbeam-deque"
634
+ version = "0.8.6"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
637
+ dependencies = [
638
+ "crossbeam-epoch",
639
+ "crossbeam-utils",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "crossbeam-epoch"
644
+ version = "0.9.18"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
647
+ dependencies = [
648
+ "crossbeam-utils",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "crossbeam-queue"
653
+ version = "0.3.12"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
656
+ dependencies = [
657
+ "crossbeam-utils",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "crossbeam-utils"
662
+ version = "0.8.21"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
665
+
666
+ [[package]]
667
+ name = "crunchy"
668
+ version = "0.2.3"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
671
+
672
+ [[package]]
673
+ name = "crypto-common"
674
+ version = "0.1.6"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
677
+ dependencies = [
678
+ "generic-array",
679
+ "typenum",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "ctrlc"
684
+ version = "3.4.5"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "90eeab0aa92f3f9b4e87f258c72b139c207d251f9cbc1080a0086b86a8870dd3"
687
+ dependencies = [
688
+ "nix",
689
+ "windows-sys 0.59.0",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "darling"
694
+ version = "0.20.10"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
697
+ dependencies = [
698
+ "darling_core",
699
+ "darling_macro",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "darling_core"
704
+ version = "0.20.10"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
707
+ dependencies = [
708
+ "fnv",
709
+ "ident_case",
710
+ "proc-macro2",
711
+ "quote",
712
+ "strsim",
713
+ "syn 2.0.96",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "darling_macro"
718
+ version = "0.20.10"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
721
+ dependencies = [
722
+ "darling_core",
723
+ "quote",
724
+ "syn 2.0.96",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "dashmap"
729
+ version = "5.5.3"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
732
+ dependencies = [
733
+ "cfg-if",
734
+ "hashbrown 0.14.5",
735
+ "lock_api",
736
+ "once_cell",
737
+ "parking_lot_core",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "dashmap"
742
+ version = "6.1.0"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
745
+ dependencies = [
746
+ "cfg-if",
747
+ "crossbeam-utils",
748
+ "hashbrown 0.14.5",
749
+ "lock_api",
750
+ "once_cell",
751
+ "parking_lot_core",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "diff"
756
+ version = "0.1.13"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
759
+
760
+ [[package]]
761
+ name = "difflib"
762
+ version = "0.4.0"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
765
+
766
+ [[package]]
767
+ name = "digest"
768
+ version = "0.10.7"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
771
+ dependencies = [
772
+ "block-buffer",
773
+ "crypto-common",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "dir-test"
778
+ version = "0.4.1"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "62c013fe825864f3e4593f36426c1fa7a74f5603f13ca8d1af7a990c1cd94a79"
781
+ dependencies = [
782
+ "dir-test-macros",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "dir-test-macros"
787
+ version = "0.4.1"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "d42f54d7b4a6bc2400fe5b338e35d1a335787585375322f49c5d5fe7b243da7e"
790
+ dependencies = [
791
+ "glob",
792
+ "proc-macro2",
793
+ "quote",
794
+ "syn 2.0.96",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "dirs"
799
+ version = "5.0.1"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
802
+ dependencies = [
803
+ "dirs-sys",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "dirs-sys"
808
+ version = "0.4.1"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
811
+ dependencies = [
812
+ "libc",
813
+ "option-ext",
814
+ "redox_users",
815
+ "windows-sys 0.48.0",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "displaydoc"
820
+ version = "0.2.5"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
823
+ dependencies = [
824
+ "proc-macro2",
825
+ "quote",
826
+ "syn 2.0.96",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "doc-comment"
831
+ version = "0.3.3"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
834
+
835
+ [[package]]
836
+ name = "drop_bomb"
837
+ version = "0.1.5"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
840
+
841
+ [[package]]
842
+ name = "dunce"
843
+ version = "1.0.5"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
846
+
847
+ [[package]]
848
+ name = "dyn-clone"
849
+ version = "1.0.17"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
852
+
853
+ [[package]]
854
+ name = "either"
855
+ version = "1.13.0"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
858
+
859
+ [[package]]
860
+ name = "encode_unicode"
861
+ version = "1.0.0"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
864
+
865
+ [[package]]
866
+ name = "env_filter"
867
+ version = "0.1.3"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
870
+ dependencies = [
871
+ "log",
872
+ "regex",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "env_home"
877
+ version = "0.1.0"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
880
+
881
+ [[package]]
882
+ name = "env_logger"
883
+ version = "0.11.6"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0"
886
+ dependencies = [
887
+ "anstream",
888
+ "anstyle",
889
+ "env_filter",
890
+ "humantime",
891
+ "log",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "equivalent"
896
+ version = "1.0.1"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
899
+
900
+ [[package]]
901
+ name = "errno"
902
+ version = "0.3.10"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
905
+ dependencies = [
906
+ "libc",
907
+ "windows-sys 0.52.0",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "escape8259"
912
+ version = "0.5.3"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "5692dd7b5a1978a5aeb0ce83b7655c58ca8efdcb79d21036ea249da95afec2c6"
915
+
916
+ [[package]]
917
+ name = "escargot"
918
+ version = "0.5.13"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "05a3ac187a16b5382fef8c69fd1bad123c67b7cf3932240a2d43dcdd32cded88"
921
+ dependencies = [
922
+ "log",
923
+ "once_cell",
924
+ "serde",
925
+ "serde_json",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "etcetera"
930
+ version = "0.8.0"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
933
+ dependencies = [
934
+ "cfg-if",
935
+ "home",
936
+ "windows-sys 0.48.0",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "fastrand"
941
+ version = "2.3.0"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
944
+
945
+ [[package]]
946
+ name = "fern"
947
+ version = "0.7.1"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29"
950
+ dependencies = [
951
+ "log",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "filetime"
956
+ version = "0.2.25"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
959
+ dependencies = [
960
+ "cfg-if",
961
+ "libc",
962
+ "libredox",
963
+ "windows-sys 0.59.0",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "flate2"
968
+ version = "1.0.35"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
971
+ dependencies = [
972
+ "crc32fast",
973
+ "miniz_oxide",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "fnv"
978
+ version = "1.0.7"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
981
+
982
+ [[package]]
983
+ name = "form_urlencoded"
984
+ version = "1.2.1"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
987
+ dependencies = [
988
+ "percent-encoding",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "fs-err"
993
+ version = "2.11.0"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
996
+ dependencies = [
997
+ "autocfg",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "fsevent-sys"
1002
+ version = "4.1.0"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
1005
+ dependencies = [
1006
+ "libc",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "generic-array"
1011
+ version = "0.14.7"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1014
+ dependencies = [
1015
+ "typenum",
1016
+ "version_check",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "getopts"
1021
+ version = "0.2.21"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
1024
+ dependencies = [
1025
+ "unicode-width 0.1.14",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "getrandom"
1030
+ version = "0.2.15"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
1033
+ dependencies = [
1034
+ "cfg-if",
1035
+ "js-sys",
1036
+ "libc",
1037
+ "wasi",
1038
+ "wasm-bindgen",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "glob"
1043
+ version = "0.3.2"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1046
+
1047
+ [[package]]
1048
+ name = "globset"
1049
+ version = "0.4.15"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19"
1052
+ dependencies = [
1053
+ "aho-corasick",
1054
+ "bstr",
1055
+ "log",
1056
+ "regex-automata 0.4.9",
1057
+ "regex-syntax 0.8.5",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "globwalk"
1062
+ version = "0.9.1"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
1065
+ dependencies = [
1066
+ "bitflags 2.8.0",
1067
+ "ignore",
1068
+ "walkdir",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "half"
1073
+ version = "2.4.1"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
1076
+ dependencies = [
1077
+ "cfg-if",
1078
+ "crunchy",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "hashbrown"
1083
+ version = "0.14.5"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1086
+ dependencies = [
1087
+ "ahash",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "hashbrown"
1092
+ version = "0.15.2"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1095
+
1096
+ [[package]]
1097
+ name = "hashlink"
1098
+ version = "0.9.1"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
1101
+ dependencies = [
1102
+ "hashbrown 0.14.5",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "heck"
1107
+ version = "0.5.0"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1110
+
1111
+ [[package]]
1112
+ name = "hermit-abi"
1113
+ version = "0.3.9"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1116
+
1117
+ [[package]]
1118
+ name = "hermit-abi"
1119
+ version = "0.4.0"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
1122
+
1123
+ [[package]]
1124
+ name = "home"
1125
+ version = "0.5.9"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
1128
+ dependencies = [
1129
+ "windows-sys 0.52.0",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "html-escape"
1134
+ version = "0.2.13"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
1137
+ dependencies = [
1138
+ "utf8-width",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "humantime"
1143
+ version = "2.1.0"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
1146
+
1147
+ [[package]]
1148
+ name = "iana-time-zone"
1149
+ version = "0.1.61"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
1152
+ dependencies = [
1153
+ "android_system_properties",
1154
+ "core-foundation-sys",
1155
+ "iana-time-zone-haiku",
1156
+ "js-sys",
1157
+ "wasm-bindgen",
1158
+ "windows-core",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "iana-time-zone-haiku"
1163
+ version = "0.1.2"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1166
+ dependencies = [
1167
+ "cc",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "icu_collections"
1172
+ version = "1.5.0"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1175
+ dependencies = [
1176
+ "displaydoc",
1177
+ "yoke",
1178
+ "zerofrom",
1179
+ "zerovec",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "icu_locid"
1184
+ version = "1.5.0"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1187
+ dependencies = [
1188
+ "displaydoc",
1189
+ "litemap",
1190
+ "tinystr",
1191
+ "writeable",
1192
+ "zerovec",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "icu_locid_transform"
1197
+ version = "1.5.0"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1200
+ dependencies = [
1201
+ "displaydoc",
1202
+ "icu_locid",
1203
+ "icu_locid_transform_data",
1204
+ "icu_provider",
1205
+ "tinystr",
1206
+ "zerovec",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "icu_locid_transform_data"
1211
+ version = "1.5.0"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1214
+
1215
+ [[package]]
1216
+ name = "icu_normalizer"
1217
+ version = "1.5.0"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1220
+ dependencies = [
1221
+ "displaydoc",
1222
+ "icu_collections",
1223
+ "icu_normalizer_data",
1224
+ "icu_properties",
1225
+ "icu_provider",
1226
+ "smallvec",
1227
+ "utf16_iter",
1228
+ "utf8_iter",
1229
+ "write16",
1230
+ "zerovec",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "icu_normalizer_data"
1235
+ version = "1.5.0"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1238
+
1239
+ [[package]]
1240
+ name = "icu_properties"
1241
+ version = "1.5.1"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1244
+ dependencies = [
1245
+ "displaydoc",
1246
+ "icu_collections",
1247
+ "icu_locid_transform",
1248
+ "icu_properties_data",
1249
+ "icu_provider",
1250
+ "tinystr",
1251
+ "zerovec",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "icu_properties_data"
1256
+ version = "1.5.0"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1259
+
1260
+ [[package]]
1261
+ name = "icu_provider"
1262
+ version = "1.5.0"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1265
+ dependencies = [
1266
+ "displaydoc",
1267
+ "icu_locid",
1268
+ "icu_provider_macros",
1269
+ "stable_deref_trait",
1270
+ "tinystr",
1271
+ "writeable",
1272
+ "yoke",
1273
+ "zerofrom",
1274
+ "zerovec",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "icu_provider_macros"
1279
+ version = "1.5.0"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1282
+ dependencies = [
1283
+ "proc-macro2",
1284
+ "quote",
1285
+ "syn 2.0.96",
1286
+ ]
1287
+
1288
+ [[package]]
1289
+ name = "ident_case"
1290
+ version = "1.0.1"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1293
+
1294
+ [[package]]
1295
+ name = "idna"
1296
+ version = "1.0.3"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1299
+ dependencies = [
1300
+ "idna_adapter",
1301
+ "smallvec",
1302
+ "utf8_iter",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "idna_adapter"
1307
+ version = "1.2.0"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1310
+ dependencies = [
1311
+ "icu_normalizer",
1312
+ "icu_properties",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "ignore"
1317
+ version = "0.4.23"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b"
1320
+ dependencies = [
1321
+ "crossbeam-deque",
1322
+ "globset",
1323
+ "log",
1324
+ "memchr",
1325
+ "regex-automata 0.4.9",
1326
+ "same-file",
1327
+ "walkdir",
1328
+ "winapi-util",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "imara-diff"
1333
+ version = "0.1.7"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "fc9da1a252bd44cd341657203722352efc9bc0c847d06ea6d2dc1cd1135e0a01"
1336
+ dependencies = [
1337
+ "ahash",
1338
+ "hashbrown 0.14.5",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "imperative"
1343
+ version = "1.0.6"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "29a1f6526af721f9aec9ceed7ab8ebfca47f3399d08b80056c2acca3fcb694a9"
1346
+ dependencies = [
1347
+ "phf",
1348
+ "rust-stemmers",
1349
+ ]
1350
+
1351
+ [[package]]
1352
+ name = "indexmap"
1353
+ version = "2.7.1"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
1356
+ dependencies = [
1357
+ "equivalent",
1358
+ "hashbrown 0.15.2",
1359
+ "serde",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "indicatif"
1364
+ version = "0.17.9"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281"
1367
+ dependencies = [
1368
+ "console",
1369
+ "number_prefix",
1370
+ "portable-atomic",
1371
+ "unicode-width 0.2.0",
1372
+ "vt100",
1373
+ "web-time",
1374
+ ]
1375
+
1376
+ [[package]]
1377
+ name = "indoc"
1378
+ version = "2.0.5"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
1381
+
1382
+ [[package]]
1383
+ name = "inotify"
1384
+ version = "0.11.0"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
1387
+ dependencies = [
1388
+ "bitflags 2.8.0",
1389
+ "inotify-sys",
1390
+ "libc",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "inotify-sys"
1395
+ version = "0.1.5"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1398
+ dependencies = [
1399
+ "libc",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "insta"
1404
+ version = "1.42.1"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "71c1b125e30d93896b365e156c33dadfffab45ee8400afcbba4752f59de08a86"
1407
+ dependencies = [
1408
+ "console",
1409
+ "globset",
1410
+ "linked-hash-map",
1411
+ "once_cell",
1412
+ "pest",
1413
+ "pest_derive",
1414
+ "pin-project",
1415
+ "regex",
1416
+ "ron",
1417
+ "serde",
1418
+ "similar",
1419
+ "walkdir",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "insta-cmd"
1424
+ version = "0.6.0"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "ffeeefa927925cced49ccb01bf3e57c9d4cd132df21e576eb9415baeab2d3de6"
1427
+ dependencies = [
1428
+ "insta",
1429
+ "serde",
1430
+ "serde_json",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "is-docker"
1435
+ version = "0.2.0"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
1438
+ dependencies = [
1439
+ "once_cell",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "is-macro"
1444
+ version = "0.3.7"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
1447
+ dependencies = [
1448
+ "heck",
1449
+ "proc-macro2",
1450
+ "quote",
1451
+ "syn 2.0.96",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "is-terminal"
1456
+ version = "0.4.15"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "e19b23d53f35ce9f56aebc7d1bb4e6ac1e9c0db7ac85c8d1760c04379edced37"
1459
+ dependencies = [
1460
+ "hermit-abi 0.4.0",
1461
+ "libc",
1462
+ "windows-sys 0.52.0",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "is-wsl"
1467
+ version = "0.4.0"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
1470
+ dependencies = [
1471
+ "is-docker",
1472
+ "once_cell",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "is_terminal_polyfill"
1477
+ version = "1.70.1"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1480
+
1481
+ [[package]]
1482
+ name = "itertools"
1483
+ version = "0.10.5"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1486
+ dependencies = [
1487
+ "either",
1488
+ ]
1489
+
1490
+ [[package]]
1491
+ name = "itertools"
1492
+ version = "0.13.0"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1495
+ dependencies = [
1496
+ "either",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "itertools"
1501
+ version = "0.14.0"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1504
+ dependencies = [
1505
+ "either",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "itoa"
1510
+ version = "1.0.14"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1513
+
1514
+ [[package]]
1515
+ name = "jobserver"
1516
+ version = "0.1.32"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1519
+ dependencies = [
1520
+ "libc",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "jod-thread"
1525
+ version = "0.1.2"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "8b23360e99b8717f20aaa4598f5a6541efbe30630039fbc7706cf954a87947ae"
1528
+
1529
+ [[package]]
1530
+ name = "js-sys"
1531
+ version = "0.3.77"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1534
+ dependencies = [
1535
+ "once_cell",
1536
+ "wasm-bindgen",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "kqueue"
1541
+ version = "1.0.8"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
1544
+ dependencies = [
1545
+ "kqueue-sys",
1546
+ "libc",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "kqueue-sys"
1551
+ version = "1.0.4"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
1554
+ dependencies = [
1555
+ "bitflags 1.3.2",
1556
+ "libc",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "lazy_static"
1561
+ version = "1.5.0"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1564
+
1565
+ [[package]]
1566
+ name = "libc"
1567
+ version = "0.2.169"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
1570
+
1571
+ [[package]]
1572
+ name = "libcst"
1573
+ version = "1.6.0"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "649801a698a649791541a3125d396d5db065ed7cea53faca3652b0179394922a"
1576
+ dependencies = [
1577
+ "chic",
1578
+ "libcst_derive",
1579
+ "memchr",
1580
+ "paste",
1581
+ "peg",
1582
+ "regex",
1583
+ "thiserror 1.0.69",
1584
+ ]
1585
+
1586
+ [[package]]
1587
+ name = "libcst_derive"
1588
+ version = "1.6.0"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "3bf66548c351bcaed792ef3e2b430cc840fbde504e09da6b29ed114ca60dcd4b"
1591
+ dependencies = [
1592
+ "quote",
1593
+ "syn 2.0.96",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "libmimalloc-sys"
1598
+ version = "0.1.39"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "23aa6811d3bd4deb8a84dde645f943476d13b248d818edcf8ce0b2f37f036b44"
1601
+ dependencies = [
1602
+ "cc",
1603
+ "libc",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "libredox"
1608
+ version = "0.1.3"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1611
+ dependencies = [
1612
+ "bitflags 2.8.0",
1613
+ "libc",
1614
+ "redox_syscall",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "libtest-mimic"
1619
+ version = "0.7.3"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "cc0bda45ed5b3a2904262c1bb91e526127aa70e7ef3758aba2ef93cf896b9b58"
1622
+ dependencies = [
1623
+ "clap",
1624
+ "escape8259",
1625
+ "termcolor",
1626
+ "threadpool",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "linked-hash-map"
1631
+ version = "0.5.6"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1634
+
1635
+ [[package]]
1636
+ name = "linux-raw-sys"
1637
+ version = "0.4.15"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1640
+
1641
+ [[package]]
1642
+ name = "litemap"
1643
+ version = "0.7.4"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
1646
+
1647
+ [[package]]
1648
+ name = "lock_api"
1649
+ version = "0.4.12"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1652
+ dependencies = [
1653
+ "autocfg",
1654
+ "scopeguard",
1655
+ ]
1656
+
1657
+ [[package]]
1658
+ name = "log"
1659
+ version = "0.4.25"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
1662
+
1663
+ [[package]]
1664
+ name = "lsp-server"
1665
+ version = "0.7.8"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "9462c4dc73e17f971ec1f171d44bfffb72e65a130117233388a0ebc7ec5656f9"
1668
+ dependencies = [
1669
+ "crossbeam-channel",
1670
+ "log",
1671
+ "serde",
1672
+ "serde_derive",
1673
+ "serde_json",
1674
+ ]
1675
+
1676
+ [[package]]
1677
+ name = "lsp-types"
1678
+ version = "0.95.1"
1679
+ source = "git+https://github.com/astral-sh/lsp-types.git?rev=3512a9f#3512a9f33eadc5402cfab1b8f7340824c8ca1439"
1680
+ dependencies = [
1681
+ "bitflags 1.3.2",
1682
+ "serde",
1683
+ "serde_json",
1684
+ "serde_repr",
1685
+ "url",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "matchers"
1690
+ version = "0.1.0"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1693
+ dependencies = [
1694
+ "regex-automata 0.1.10",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "matches"
1699
+ version = "0.1.10"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
1702
+
1703
+ [[package]]
1704
+ name = "matchit"
1705
+ version = "0.8.6"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "2f926ade0c4e170215ae43342bf13b9310a437609c81f29f86c5df6657582ef9"
1708
+
1709
+ [[package]]
1710
+ name = "memchr"
1711
+ version = "2.7.4"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1714
+
1715
+ [[package]]
1716
+ name = "mimalloc"
1717
+ version = "0.1.43"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "68914350ae34959d83f732418d51e2427a794055d0b9529f48259ac07af65633"
1720
+ dependencies = [
1721
+ "libmimalloc-sys",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "minicov"
1726
+ version = "0.3.7"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
1729
+ dependencies = [
1730
+ "cc",
1731
+ "walkdir",
1732
+ ]
1733
+
1734
+ [[package]]
1735
+ name = "minimal-lexical"
1736
+ version = "0.2.1"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1739
+
1740
+ [[package]]
1741
+ name = "miniz_oxide"
1742
+ version = "0.8.3"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
1745
+ dependencies = [
1746
+ "adler2",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "mio"
1751
+ version = "1.0.3"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1754
+ dependencies = [
1755
+ "libc",
1756
+ "log",
1757
+ "wasi",
1758
+ "windows-sys 0.52.0",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "natord"
1763
+ version = "1.0.9"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "308d96db8debc727c3fd9744aac51751243420e46edf401010908da7f8d5e57c"
1766
+
1767
+ [[package]]
1768
+ name = "newtype-uuid"
1769
+ version = "1.2.1"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "ee3224f0e8be7c2a1ebc77ef9c3eecb90f55c6594399ee825de964526b3c9056"
1772
+ dependencies = [
1773
+ "uuid",
1774
+ ]
1775
+
1776
+ [[package]]
1777
+ name = "nix"
1778
+ version = "0.29.0"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1781
+ dependencies = [
1782
+ "bitflags 2.8.0",
1783
+ "cfg-if",
1784
+ "cfg_aliases",
1785
+ "libc",
1786
+ ]
1787
+
1788
+ [[package]]
1789
+ name = "nom"
1790
+ version = "7.1.3"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1793
+ dependencies = [
1794
+ "memchr",
1795
+ "minimal-lexical",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "normalize-line-endings"
1800
+ version = "0.3.0"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
1803
+
1804
+ [[package]]
1805
+ name = "notify"
1806
+ version = "8.0.0"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
1809
+ dependencies = [
1810
+ "bitflags 2.8.0",
1811
+ "filetime",
1812
+ "fsevent-sys",
1813
+ "inotify",
1814
+ "kqueue",
1815
+ "libc",
1816
+ "log",
1817
+ "mio",
1818
+ "notify-types",
1819
+ "walkdir",
1820
+ "windows-sys 0.59.0",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "notify-types"
1825
+ version = "2.0.0"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
1828
+
1829
+ [[package]]
1830
+ name = "nu-ansi-term"
1831
+ version = "0.46.0"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1834
+ dependencies = [
1835
+ "overload",
1836
+ "winapi",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "nu-ansi-term"
1841
+ version = "0.50.1"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
1844
+ dependencies = [
1845
+ "windows-sys 0.52.0",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "num-traits"
1850
+ version = "0.2.19"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1853
+ dependencies = [
1854
+ "autocfg",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "num_cpus"
1859
+ version = "1.16.0"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1862
+ dependencies = [
1863
+ "hermit-abi 0.3.9",
1864
+ "libc",
1865
+ ]
1866
+
1867
+ [[package]]
1868
+ name = "number_prefix"
1869
+ version = "0.4.0"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1872
+
1873
+ [[package]]
1874
+ name = "once_cell"
1875
+ version = "1.20.2"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
1878
+
1879
+ [[package]]
1880
+ name = "oorandom"
1881
+ version = "11.1.4"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
1884
+
1885
+ [[package]]
1886
+ name = "option-ext"
1887
+ version = "0.2.0"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1890
+
1891
+ [[package]]
1892
+ name = "ordermap"
1893
+ version = "0.5.5"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "c55fdf45a2b1e929e3656d404395767e05c98b6ebd8157eb31e370077d545160"
1896
+ dependencies = [
1897
+ "indexmap",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "os_pipe"
1902
+ version = "1.2.1"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "5ffd2b0a5634335b135d5728d84c5e0fd726954b87111f7506a61c502280d982"
1905
+ dependencies = [
1906
+ "libc",
1907
+ "windows-sys 0.59.0",
1908
+ ]
1909
+
1910
+ [[package]]
1911
+ name = "os_str_bytes"
1912
+ version = "7.0.0"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "7ac44c994af577c799b1b4bd80dc214701e349873ad894d6cdf96f4f7526e0b9"
1915
+ dependencies = [
1916
+ "memchr",
1917
+ ]
1918
+
1919
+ [[package]]
1920
+ name = "overload"
1921
+ version = "0.1.1"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1924
+
1925
+ [[package]]
1926
+ name = "parking_lot"
1927
+ version = "0.12.3"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1930
+ dependencies = [
1931
+ "lock_api",
1932
+ "parking_lot_core",
1933
+ ]
1934
+
1935
+ [[package]]
1936
+ name = "parking_lot_core"
1937
+ version = "0.9.10"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1940
+ dependencies = [
1941
+ "cfg-if",
1942
+ "libc",
1943
+ "redox_syscall",
1944
+ "smallvec",
1945
+ "windows-targets 0.52.6",
1946
+ ]
1947
+
1948
+ [[package]]
1949
+ name = "paste"
1950
+ version = "1.0.15"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1953
+
1954
+ [[package]]
1955
+ name = "path-absolutize"
1956
+ version = "3.1.1"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5"
1959
+ dependencies = [
1960
+ "path-dedot",
1961
+ ]
1962
+
1963
+ [[package]]
1964
+ name = "path-dedot"
1965
+ version = "3.1.1"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397"
1968
+ dependencies = [
1969
+ "once_cell",
1970
+ ]
1971
+
1972
+ [[package]]
1973
+ name = "path-slash"
1974
+ version = "0.2.1"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
1977
+
1978
+ [[package]]
1979
+ name = "pathdiff"
1980
+ version = "0.2.3"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
1983
+
1984
+ [[package]]
1985
+ name = "peg"
1986
+ version = "0.8.4"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "295283b02df346d1ef66052a757869b2876ac29a6bb0ac3f5f7cd44aebe40e8f"
1989
+ dependencies = [
1990
+ "peg-macros",
1991
+ "peg-runtime",
1992
+ ]
1993
+
1994
+ [[package]]
1995
+ name = "peg-macros"
1996
+ version = "0.8.4"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "bdad6a1d9cf116a059582ce415d5f5566aabcd4008646779dab7fdc2a9a9d426"
1999
+ dependencies = [
2000
+ "peg-runtime",
2001
+ "proc-macro2",
2002
+ "quote",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "peg-runtime"
2007
+ version = "0.8.3"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "e3aeb8f54c078314c2065ee649a7241f46b9d8e418e1a9581ba0546657d7aa3a"
2010
+
2011
+ [[package]]
2012
+ name = "pep440_rs"
2013
+ version = "0.7.3"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "31095ca1f396e3de32745f42b20deef7bc09077f918b085307e8eab6ddd8fb9c"
2016
+ dependencies = [
2017
+ "once_cell",
2018
+ "serde",
2019
+ "unicode-width 0.2.0",
2020
+ "unscanny",
2021
+ "version-ranges",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "pep508_rs"
2026
+ version = "0.9.2"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "faee7227064121fcadcd2ff788ea26f0d8f2bd23a0574da11eca23bc935bcc05"
2029
+ dependencies = [
2030
+ "boxcar",
2031
+ "indexmap",
2032
+ "itertools 0.13.0",
2033
+ "once_cell",
2034
+ "pep440_rs",
2035
+ "regex",
2036
+ "rustc-hash 2.1.0",
2037
+ "serde",
2038
+ "smallvec",
2039
+ "thiserror 1.0.69",
2040
+ "unicode-width 0.2.0",
2041
+ "url",
2042
+ "urlencoding",
2043
+ "version-ranges",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "percent-encoding"
2048
+ version = "2.3.1"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2051
+
2052
+ [[package]]
2053
+ name = "pest"
2054
+ version = "2.7.15"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
2057
+ dependencies = [
2058
+ "memchr",
2059
+ "thiserror 2.0.11",
2060
+ "ucd-trie",
2061
+ ]
2062
+
2063
+ [[package]]
2064
+ name = "pest_derive"
2065
+ version = "2.7.15"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
2068
+ dependencies = [
2069
+ "pest",
2070
+ "pest_generator",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "pest_generator"
2075
+ version = "2.7.15"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
2078
+ dependencies = [
2079
+ "pest",
2080
+ "pest_meta",
2081
+ "proc-macro2",
2082
+ "quote",
2083
+ "syn 2.0.96",
2084
+ ]
2085
+
2086
+ [[package]]
2087
+ name = "pest_meta"
2088
+ version = "2.7.15"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
2091
+ dependencies = [
2092
+ "once_cell",
2093
+ "pest",
2094
+ "sha2",
2095
+ ]
2096
+
2097
+ [[package]]
2098
+ name = "phf"
2099
+ version = "0.11.3"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2102
+ dependencies = [
2103
+ "phf_shared",
2104
+ ]
2105
+
2106
+ [[package]]
2107
+ name = "phf_codegen"
2108
+ version = "0.11.3"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
2111
+ dependencies = [
2112
+ "phf_generator",
2113
+ "phf_shared",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "phf_generator"
2118
+ version = "0.11.3"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2121
+ dependencies = [
2122
+ "phf_shared",
2123
+ "rand",
2124
+ ]
2125
+
2126
+ [[package]]
2127
+ name = "phf_shared"
2128
+ version = "0.11.3"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2131
+ dependencies = [
2132
+ "siphasher",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "pin-project"
2137
+ version = "1.1.8"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916"
2140
+ dependencies = [
2141
+ "pin-project-internal",
2142
+ ]
2143
+
2144
+ [[package]]
2145
+ name = "pin-project-internal"
2146
+ version = "1.1.8"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb"
2149
+ dependencies = [
2150
+ "proc-macro2",
2151
+ "quote",
2152
+ "syn 2.0.96",
2153
+ ]
2154
+
2155
+ [[package]]
2156
+ name = "pin-project-lite"
2157
+ version = "0.2.16"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2160
+
2161
+ [[package]]
2162
+ name = "pkg-config"
2163
+ version = "0.3.31"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
2166
+
2167
+ [[package]]
2168
+ name = "portable-atomic"
2169
+ version = "1.10.0"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
2172
+
2173
+ [[package]]
2174
+ name = "ppv-lite86"
2175
+ version = "0.2.20"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
2178
+ dependencies = [
2179
+ "zerocopy",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "predicates"
2184
+ version = "3.1.3"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
2187
+ dependencies = [
2188
+ "anstyle",
2189
+ "difflib",
2190
+ "predicates-core",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "predicates-core"
2195
+ version = "1.0.9"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
2198
+
2199
+ [[package]]
2200
+ name = "predicates-tree"
2201
+ version = "1.0.12"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
2204
+ dependencies = [
2205
+ "predicates-core",
2206
+ "termtree",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "pretty_assertions"
2211
+ version = "1.4.1"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
2214
+ dependencies = [
2215
+ "diff",
2216
+ "yansi",
2217
+ ]
2218
+
2219
+ [[package]]
2220
+ name = "proc-macro2"
2221
+ version = "1.0.93"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
2224
+ dependencies = [
2225
+ "unicode-ident",
2226
+ ]
2227
+
2228
+ [[package]]
2229
+ name = "pyproject-toml"
2230
+ version = "0.13.4"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "643af57c3f36ba90a8b53e972727d8092f7408a9ebfbaf4c3d2c17b07c58d835"
2233
+ dependencies = [
2234
+ "indexmap",
2235
+ "pep440_rs",
2236
+ "pep508_rs",
2237
+ "serde",
2238
+ "thiserror 1.0.69",
2239
+ "toml",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "quick-junit"
2244
+ version = "0.5.1"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "3ed1a693391a16317257103ad06a88c6529ac640846021da7c435a06fffdacd7"
2247
+ dependencies = [
2248
+ "chrono",
2249
+ "indexmap",
2250
+ "newtype-uuid",
2251
+ "quick-xml",
2252
+ "strip-ansi-escapes",
2253
+ "thiserror 2.0.11",
2254
+ "uuid",
2255
+ ]
2256
+
2257
+ [[package]]
2258
+ name = "quick-xml"
2259
+ version = "0.37.2"
2260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2261
+ checksum = "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003"
2262
+ dependencies = [
2263
+ "memchr",
2264
+ ]
2265
+
2266
+ [[package]]
2267
+ name = "quickcheck"
2268
+ version = "1.0.3"
2269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2270
+ checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
2271
+ dependencies = [
2272
+ "rand",
2273
+ ]
2274
+
2275
+ [[package]]
2276
+ name = "quickcheck_macros"
2277
+ version = "1.0.0"
2278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2279
+ checksum = "b22a693222d716a9587786f37ac3f6b4faedb5b80c23914e7303ff5a1d8016e9"
2280
+ dependencies = [
2281
+ "proc-macro2",
2282
+ "quote",
2283
+ "syn 1.0.109",
2284
+ ]
2285
+
2286
+ [[package]]
2287
+ name = "quote"
2288
+ version = "1.0.38"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
2291
+ dependencies = [
2292
+ "proc-macro2",
2293
+ ]
2294
+
2295
+ [[package]]
2296
+ name = "rand"
2297
+ version = "0.8.5"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2300
+ dependencies = [
2301
+ "libc",
2302
+ "rand_chacha",
2303
+ "rand_core",
2304
+ ]
2305
+
2306
+ [[package]]
2307
+ name = "rand_chacha"
2308
+ version = "0.3.1"
2309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2310
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2311
+ dependencies = [
2312
+ "ppv-lite86",
2313
+ "rand_core",
2314
+ ]
2315
+
2316
+ [[package]]
2317
+ name = "rand_core"
2318
+ version = "0.6.4"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2321
+ dependencies = [
2322
+ "getrandom",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "rayon"
2327
+ version = "1.10.0"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2330
+ dependencies = [
2331
+ "either",
2332
+ "rayon-core",
2333
+ ]
2334
+
2335
+ [[package]]
2336
+ name = "rayon-core"
2337
+ version = "1.12.1"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2340
+ dependencies = [
2341
+ "crossbeam-deque",
2342
+ "crossbeam-utils",
2343
+ ]
2344
+
2345
+ [[package]]
2346
+ name = "red_knot"
2347
+ version = "0.0.0"
2348
+ dependencies = [
2349
+ "anyhow",
2350
+ "chrono",
2351
+ "clap",
2352
+ "colored 3.0.0",
2353
+ "countme",
2354
+ "crossbeam",
2355
+ "ctrlc",
2356
+ "filetime",
2357
+ "insta",
2358
+ "insta-cmd",
2359
+ "rayon",
2360
+ "red_knot_project",
2361
+ "red_knot_python_semantic",
2362
+ "red_knot_server",
2363
+ "regex",
2364
+ "ruff_db",
2365
+ "ruff_python_trivia",
2366
+ "salsa",
2367
+ "tempfile",
2368
+ "toml",
2369
+ "tracing",
2370
+ "tracing-flame",
2371
+ "tracing-subscriber",
2372
+ "tracing-tree",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "red_knot_project"
2377
+ version = "0.0.0"
2378
+ dependencies = [
2379
+ "anyhow",
2380
+ "crossbeam",
2381
+ "glob",
2382
+ "insta",
2383
+ "notify",
2384
+ "pep440_rs",
2385
+ "rayon",
2386
+ "red_knot_python_semantic",
2387
+ "red_knot_vendored",
2388
+ "ruff_cache",
2389
+ "ruff_db",
2390
+ "ruff_macros",
2391
+ "ruff_python_ast",
2392
+ "ruff_text_size",
2393
+ "rustc-hash 2.1.0",
2394
+ "salsa",
2395
+ "serde",
2396
+ "thiserror 2.0.11",
2397
+ "toml",
2398
+ "tracing",
2399
+ ]
2400
+
2401
+ [[package]]
2402
+ name = "red_knot_python_semantic"
2403
+ version = "0.0.0"
2404
+ dependencies = [
2405
+ "anyhow",
2406
+ "bitflags 2.8.0",
2407
+ "camino",
2408
+ "compact_str",
2409
+ "countme",
2410
+ "dir-test",
2411
+ "drop_bomb",
2412
+ "hashbrown 0.15.2",
2413
+ "indexmap",
2414
+ "insta",
2415
+ "itertools 0.14.0",
2416
+ "memchr",
2417
+ "ordermap",
2418
+ "quickcheck",
2419
+ "quickcheck_macros",
2420
+ "red_knot_test",
2421
+ "red_knot_vendored",
2422
+ "ruff_db",
2423
+ "ruff_index",
2424
+ "ruff_macros",
2425
+ "ruff_python_ast",
2426
+ "ruff_python_literal",
2427
+ "ruff_python_parser",
2428
+ "ruff_python_stdlib",
2429
+ "ruff_python_trivia",
2430
+ "ruff_source_file",
2431
+ "ruff_text_size",
2432
+ "rustc-hash 2.1.0",
2433
+ "salsa",
2434
+ "serde",
2435
+ "smallvec",
2436
+ "static_assertions",
2437
+ "tempfile",
2438
+ "test-case",
2439
+ "thiserror 2.0.11",
2440
+ "tracing",
2441
+ ]
2442
+
2443
+ [[package]]
2444
+ name = "red_knot_server"
2445
+ version = "0.0.0"
2446
+ dependencies = [
2447
+ "anyhow",
2448
+ "crossbeam",
2449
+ "jod-thread",
2450
+ "libc",
2451
+ "lsp-server",
2452
+ "lsp-types",
2453
+ "red_knot_project",
2454
+ "ruff_db",
2455
+ "ruff_notebook",
2456
+ "ruff_python_ast",
2457
+ "ruff_source_file",
2458
+ "ruff_text_size",
2459
+ "rustc-hash 2.1.0",
2460
+ "serde",
2461
+ "serde_json",
2462
+ "shellexpand",
2463
+ "tracing",
2464
+ "tracing-subscriber",
2465
+ ]
2466
+
2467
+ [[package]]
2468
+ name = "red_knot_test"
2469
+ version = "0.0.0"
2470
+ dependencies = [
2471
+ "anyhow",
2472
+ "camino",
2473
+ "colored 3.0.0",
2474
+ "memchr",
2475
+ "red_knot_python_semantic",
2476
+ "red_knot_vendored",
2477
+ "regex",
2478
+ "ruff_db",
2479
+ "ruff_index",
2480
+ "ruff_python_trivia",
2481
+ "ruff_source_file",
2482
+ "ruff_text_size",
2483
+ "rustc-hash 2.1.0",
2484
+ "salsa",
2485
+ "serde",
2486
+ "smallvec",
2487
+ "toml",
2488
+ ]
2489
+
2490
+ [[package]]
2491
+ name = "red_knot_vendored"
2492
+ version = "0.0.0"
2493
+ dependencies = [
2494
+ "path-slash",
2495
+ "ruff_db",
2496
+ "walkdir",
2497
+ "zip",
2498
+ ]
2499
+
2500
+ [[package]]
2501
+ name = "red_knot_wasm"
2502
+ version = "0.0.0"
2503
+ dependencies = [
2504
+ "console_error_panic_hook",
2505
+ "console_log",
2506
+ "js-sys",
2507
+ "log",
2508
+ "red_knot_project",
2509
+ "red_knot_python_semantic",
2510
+ "ruff_db",
2511
+ "ruff_notebook",
2512
+ "wasm-bindgen",
2513
+ "wasm-bindgen-test",
2514
+ ]
2515
+
2516
+ [[package]]
2517
+ name = "redox_syscall"
2518
+ version = "0.5.8"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
2521
+ dependencies = [
2522
+ "bitflags 2.8.0",
2523
+ ]
2524
+
2525
+ [[package]]
2526
+ name = "redox_users"
2527
+ version = "0.4.6"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2530
+ dependencies = [
2531
+ "getrandom",
2532
+ "libredox",
2533
+ "thiserror 1.0.69",
2534
+ ]
2535
+
2536
+ [[package]]
2537
+ name = "regex"
2538
+ version = "1.11.1"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2541
+ dependencies = [
2542
+ "aho-corasick",
2543
+ "memchr",
2544
+ "regex-automata 0.4.9",
2545
+ "regex-syntax 0.8.5",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "regex-automata"
2550
+ version = "0.1.10"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2553
+ dependencies = [
2554
+ "regex-syntax 0.6.29",
2555
+ ]
2556
+
2557
+ [[package]]
2558
+ name = "regex-automata"
2559
+ version = "0.4.9"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2562
+ dependencies = [
2563
+ "aho-corasick",
2564
+ "memchr",
2565
+ "regex-syntax 0.8.5",
2566
+ ]
2567
+
2568
+ [[package]]
2569
+ name = "regex-syntax"
2570
+ version = "0.6.29"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2573
+
2574
+ [[package]]
2575
+ name = "regex-syntax"
2576
+ version = "0.8.5"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2579
+
2580
+ [[package]]
2581
+ name = "ring"
2582
+ version = "0.17.8"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2585
+ dependencies = [
2586
+ "cc",
2587
+ "cfg-if",
2588
+ "getrandom",
2589
+ "libc",
2590
+ "spin",
2591
+ "untrusted",
2592
+ "windows-sys 0.52.0",
2593
+ ]
2594
+
2595
+ [[package]]
2596
+ name = "ron"
2597
+ version = "0.7.1"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
2600
+ dependencies = [
2601
+ "base64 0.13.1",
2602
+ "bitflags 1.3.2",
2603
+ "serde",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "ruff"
2608
+ version = "0.9.4"
2609
+ dependencies = [
2610
+ "anyhow",
2611
+ "argfile",
2612
+ "assert_fs",
2613
+ "bincode",
2614
+ "bitflags 2.8.0",
2615
+ "cachedir",
2616
+ "chrono",
2617
+ "clap",
2618
+ "clap_complete_command",
2619
+ "clearscreen",
2620
+ "colored 3.0.0",
2621
+ "filetime",
2622
+ "globwalk",
2623
+ "ignore",
2624
+ "indoc",
2625
+ "insta",
2626
+ "insta-cmd",
2627
+ "is-macro",
2628
+ "itertools 0.14.0",
2629
+ "log",
2630
+ "mimalloc",
2631
+ "notify",
2632
+ "path-absolutize",
2633
+ "rayon",
2634
+ "regex",
2635
+ "ruff_cache",
2636
+ "ruff_db",
2637
+ "ruff_diagnostics",
2638
+ "ruff_graph",
2639
+ "ruff_linter",
2640
+ "ruff_macros",
2641
+ "ruff_notebook",
2642
+ "ruff_python_ast",
2643
+ "ruff_python_formatter",
2644
+ "ruff_server",
2645
+ "ruff_source_file",
2646
+ "ruff_text_size",
2647
+ "ruff_workspace",
2648
+ "rustc-hash 2.1.0",
2649
+ "serde",
2650
+ "serde_json",
2651
+ "shellexpand",
2652
+ "strum",
2653
+ "tempfile",
2654
+ "test-case",
2655
+ "thiserror 2.0.11",
2656
+ "tikv-jemallocator",
2657
+ "toml",
2658
+ "tracing",
2659
+ "walkdir",
2660
+ "wild",
2661
+ ]
2662
+
2663
+ [[package]]
2664
+ name = "ruff_annotate_snippets"
2665
+ version = "0.1.0"
2666
+ dependencies = [
2667
+ "anstream",
2668
+ "anstyle",
2669
+ "memchr",
2670
+ "ruff_annotate_snippets",
2671
+ "serde",
2672
+ "snapbox",
2673
+ "toml",
2674
+ "tryfn",
2675
+ "unicode-width 0.2.0",
2676
+ ]
2677
+
2678
+ [[package]]
2679
+ name = "ruff_benchmark"
2680
+ version = "0.0.0"
2681
+ dependencies = [
2682
+ "codspeed-criterion-compat",
2683
+ "criterion",
2684
+ "mimalloc",
2685
+ "rayon",
2686
+ "red_knot_project",
2687
+ "red_knot_python_semantic",
2688
+ "ruff_db",
2689
+ "ruff_linter",
2690
+ "ruff_python_ast",
2691
+ "ruff_python_formatter",
2692
+ "ruff_python_parser",
2693
+ "ruff_python_trivia",
2694
+ "rustc-hash 2.1.0",
2695
+ "serde",
2696
+ "serde_json",
2697
+ "tikv-jemallocator",
2698
+ "ureq",
2699
+ "url",
2700
+ ]
2701
+
2702
+ [[package]]
2703
+ name = "ruff_cache"
2704
+ version = "0.0.0"
2705
+ dependencies = [
2706
+ "filetime",
2707
+ "glob",
2708
+ "globset",
2709
+ "itertools 0.14.0",
2710
+ "regex",
2711
+ "ruff_macros",
2712
+ "seahash",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "ruff_db"
2717
+ version = "0.0.0"
2718
+ dependencies = [
2719
+ "camino",
2720
+ "countme",
2721
+ "dashmap 6.1.0",
2722
+ "dunce",
2723
+ "filetime",
2724
+ "glob",
2725
+ "ignore",
2726
+ "insta",
2727
+ "matchit",
2728
+ "path-slash",
2729
+ "ruff_cache",
2730
+ "ruff_notebook",
2731
+ "ruff_python_ast",
2732
+ "ruff_python_parser",
2733
+ "ruff_python_trivia",
2734
+ "ruff_source_file",
2735
+ "ruff_text_size",
2736
+ "rustc-hash 2.1.0",
2737
+ "salsa",
2738
+ "serde",
2739
+ "tempfile",
2740
+ "thiserror 2.0.11",
2741
+ "tracing",
2742
+ "tracing-subscriber",
2743
+ "tracing-tree",
2744
+ "web-time",
2745
+ "zip",
2746
+ ]
2747
+
2748
+ [[package]]
2749
+ name = "ruff_dev"
2750
+ version = "0.0.0"
2751
+ dependencies = [
2752
+ "anyhow",
2753
+ "clap",
2754
+ "ignore",
2755
+ "imara-diff",
2756
+ "indicatif",
2757
+ "indoc",
2758
+ "itertools 0.14.0",
2759
+ "libcst",
2760
+ "pretty_assertions",
2761
+ "rayon",
2762
+ "regex",
2763
+ "ruff",
2764
+ "ruff_diagnostics",
2765
+ "ruff_formatter",
2766
+ "ruff_linter",
2767
+ "ruff_notebook",
2768
+ "ruff_python_ast",
2769
+ "ruff_python_codegen",
2770
+ "ruff_python_formatter",
2771
+ "ruff_python_parser",
2772
+ "ruff_python_trivia",
2773
+ "ruff_workspace",
2774
+ "schemars",
2775
+ "serde",
2776
+ "serde_json",
2777
+ "similar",
2778
+ "strum",
2779
+ "tempfile",
2780
+ "toml",
2781
+ "tracing",
2782
+ "tracing-indicatif",
2783
+ "tracing-subscriber",
2784
+ ]
2785
+
2786
+ [[package]]
2787
+ name = "ruff_diagnostics"
2788
+ version = "0.0.0"
2789
+ dependencies = [
2790
+ "anyhow",
2791
+ "is-macro",
2792
+ "log",
2793
+ "ruff_text_size",
2794
+ "serde",
2795
+ ]
2796
+
2797
+ [[package]]
2798
+ name = "ruff_formatter"
2799
+ version = "0.0.0"
2800
+ dependencies = [
2801
+ "drop_bomb",
2802
+ "ruff_cache",
2803
+ "ruff_macros",
2804
+ "ruff_text_size",
2805
+ "rustc-hash 2.1.0",
2806
+ "schemars",
2807
+ "serde",
2808
+ "static_assertions",
2809
+ "tracing",
2810
+ "unicode-width 0.2.0",
2811
+ ]
2812
+
2813
+ [[package]]
2814
+ name = "ruff_graph"
2815
+ version = "0.1.0"
2816
+ dependencies = [
2817
+ "anyhow",
2818
+ "clap",
2819
+ "red_knot_python_semantic",
2820
+ "ruff_cache",
2821
+ "ruff_db",
2822
+ "ruff_linter",
2823
+ "ruff_macros",
2824
+ "ruff_python_ast",
2825
+ "ruff_python_parser",
2826
+ "salsa",
2827
+ "schemars",
2828
+ "serde",
2829
+ "zip",
2830
+ ]
2831
+
2832
+ [[package]]
2833
+ name = "ruff_index"
2834
+ version = "0.0.0"
2835
+ dependencies = [
2836
+ "ruff_macros",
2837
+ "static_assertions",
2838
+ ]
2839
+
2840
+ [[package]]
2841
+ name = "ruff_linter"
2842
+ version = "0.9.4"
2843
+ dependencies = [
2844
+ "aho-corasick",
2845
+ "anyhow",
2846
+ "bitflags 2.8.0",
2847
+ "chrono",
2848
+ "clap",
2849
+ "colored 3.0.0",
2850
+ "fern",
2851
+ "glob",
2852
+ "globset",
2853
+ "imperative",
2854
+ "insta",
2855
+ "is-macro",
2856
+ "is-wsl",
2857
+ "itertools 0.14.0",
2858
+ "libcst",
2859
+ "log",
2860
+ "memchr",
2861
+ "natord",
2862
+ "path-absolutize",
2863
+ "pathdiff",
2864
+ "pep440_rs",
2865
+ "pyproject-toml",
2866
+ "quick-junit",
2867
+ "regex",
2868
+ "ruff_annotate_snippets",
2869
+ "ruff_cache",
2870
+ "ruff_diagnostics",
2871
+ "ruff_index",
2872
+ "ruff_macros",
2873
+ "ruff_notebook",
2874
+ "ruff_python_ast",
2875
+ "ruff_python_codegen",
2876
+ "ruff_python_index",
2877
+ "ruff_python_literal",
2878
+ "ruff_python_parser",
2879
+ "ruff_python_semantic",
2880
+ "ruff_python_stdlib",
2881
+ "ruff_python_trivia",
2882
+ "ruff_source_file",
2883
+ "ruff_text_size",
2884
+ "rustc-hash 2.1.0",
2885
+ "schemars",
2886
+ "serde",
2887
+ "serde_json",
2888
+ "similar",
2889
+ "smallvec",
2890
+ "strum",
2891
+ "strum_macros",
2892
+ "test-case",
2893
+ "thiserror 2.0.11",
2894
+ "toml",
2895
+ "typed-arena",
2896
+ "unicode-normalization",
2897
+ "unicode-width 0.2.0",
2898
+ "unicode_names2",
2899
+ "url",
2900
+ ]
2901
+
2902
+ [[package]]
2903
+ name = "ruff_macros"
2904
+ version = "0.0.0"
2905
+ dependencies = [
2906
+ "itertools 0.14.0",
2907
+ "proc-macro2",
2908
+ "quote",
2909
+ "ruff_python_trivia",
2910
+ "syn 2.0.96",
2911
+ ]
2912
+
2913
+ [[package]]
2914
+ name = "ruff_notebook"
2915
+ version = "0.0.0"
2916
+ dependencies = [
2917
+ "anyhow",
2918
+ "itertools 0.14.0",
2919
+ "rand",
2920
+ "ruff_diagnostics",
2921
+ "ruff_source_file",
2922
+ "ruff_text_size",
2923
+ "serde",
2924
+ "serde_json",
2925
+ "serde_with",
2926
+ "test-case",
2927
+ "thiserror 2.0.11",
2928
+ "uuid",
2929
+ ]
2930
+
2931
+ [[package]]
2932
+ name = "ruff_python_ast"
2933
+ version = "0.0.0"
2934
+ dependencies = [
2935
+ "aho-corasick",
2936
+ "bitflags 2.8.0",
2937
+ "compact_str",
2938
+ "is-macro",
2939
+ "itertools 0.14.0",
2940
+ "memchr",
2941
+ "ruff_cache",
2942
+ "ruff_macros",
2943
+ "ruff_python_trivia",
2944
+ "ruff_source_file",
2945
+ "ruff_text_size",
2946
+ "rustc-hash 2.1.0",
2947
+ "schemars",
2948
+ "serde",
2949
+ ]
2950
+
2951
+ [[package]]
2952
+ name = "ruff_python_ast_integration_tests"
2953
+ version = "0.0.0"
2954
+ dependencies = [
2955
+ "insta",
2956
+ "ruff_python_ast",
2957
+ "ruff_python_parser",
2958
+ "ruff_python_trivia",
2959
+ "ruff_text_size",
2960
+ ]
2961
+
2962
+ [[package]]
2963
+ name = "ruff_python_codegen"
2964
+ version = "0.0.0"
2965
+ dependencies = [
2966
+ "ruff_python_ast",
2967
+ "ruff_python_literal",
2968
+ "ruff_python_parser",
2969
+ "ruff_source_file",
2970
+ "ruff_text_size",
2971
+ ]
2972
+
2973
+ [[package]]
2974
+ name = "ruff_python_formatter"
2975
+ version = "0.0.0"
2976
+ dependencies = [
2977
+ "anyhow",
2978
+ "clap",
2979
+ "countme",
2980
+ "insta",
2981
+ "itertools 0.14.0",
2982
+ "memchr",
2983
+ "regex",
2984
+ "ruff_cache",
2985
+ "ruff_formatter",
2986
+ "ruff_macros",
2987
+ "ruff_python_ast",
2988
+ "ruff_python_parser",
2989
+ "ruff_python_trivia",
2990
+ "ruff_source_file",
2991
+ "ruff_text_size",
2992
+ "rustc-hash 2.1.0",
2993
+ "schemars",
2994
+ "serde",
2995
+ "serde_json",
2996
+ "similar",
2997
+ "smallvec",
2998
+ "static_assertions",
2999
+ "thiserror 2.0.11",
3000
+ "tracing",
3001
+ ]
3002
+
3003
+ [[package]]
3004
+ name = "ruff_python_index"
3005
+ version = "0.0.0"
3006
+ dependencies = [
3007
+ "ruff_python_ast",
3008
+ "ruff_python_parser",
3009
+ "ruff_python_trivia",
3010
+ "ruff_source_file",
3011
+ "ruff_text_size",
3012
+ ]
3013
+
3014
+ [[package]]
3015
+ name = "ruff_python_literal"
3016
+ version = "0.0.0"
3017
+ dependencies = [
3018
+ "bitflags 2.8.0",
3019
+ "itertools 0.14.0",
3020
+ "ruff_python_ast",
3021
+ "unic-ucd-category",
3022
+ ]
3023
+
3024
+ [[package]]
3025
+ name = "ruff_python_parser"
3026
+ version = "0.0.0"
3027
+ dependencies = [
3028
+ "anyhow",
3029
+ "bitflags 2.8.0",
3030
+ "bstr",
3031
+ "compact_str",
3032
+ "insta",
3033
+ "memchr",
3034
+ "ruff_annotate_snippets",
3035
+ "ruff_python_ast",
3036
+ "ruff_python_trivia",
3037
+ "ruff_source_file",
3038
+ "ruff_text_size",
3039
+ "rustc-hash 2.1.0",
3040
+ "static_assertions",
3041
+ "unicode-ident",
3042
+ "unicode-normalization",
3043
+ "unicode_names2",
3044
+ "walkdir",
3045
+ ]
3046
+
3047
+ [[package]]
3048
+ name = "ruff_python_resolver"
3049
+ version = "0.0.0"
3050
+ dependencies = [
3051
+ "env_logger",
3052
+ "insta",
3053
+ "log",
3054
+ "tempfile",
3055
+ ]
3056
+
3057
+ [[package]]
3058
+ name = "ruff_python_semantic"
3059
+ version = "0.0.0"
3060
+ dependencies = [
3061
+ "bitflags 2.8.0",
3062
+ "is-macro",
3063
+ "ruff_cache",
3064
+ "ruff_index",
3065
+ "ruff_macros",
3066
+ "ruff_python_ast",
3067
+ "ruff_python_parser",
3068
+ "ruff_python_stdlib",
3069
+ "ruff_text_size",
3070
+ "rustc-hash 2.1.0",
3071
+ "schemars",
3072
+ "serde",
3073
+ "smallvec",
3074
+ ]
3075
+
3076
+ [[package]]
3077
+ name = "ruff_python_stdlib"
3078
+ version = "0.0.0"
3079
+ dependencies = [
3080
+ "bitflags 2.8.0",
3081
+ "unicode-ident",
3082
+ ]
3083
+
3084
+ [[package]]
3085
+ name = "ruff_python_trivia"
3086
+ version = "0.0.0"
3087
+ dependencies = [
3088
+ "itertools 0.14.0",
3089
+ "ruff_source_file",
3090
+ "ruff_text_size",
3091
+ "unicode-ident",
3092
+ ]
3093
+
3094
+ [[package]]
3095
+ name = "ruff_python_trivia_integration_tests"
3096
+ version = "0.0.0"
3097
+ dependencies = [
3098
+ "insta",
3099
+ "ruff_python_parser",
3100
+ "ruff_python_trivia",
3101
+ "ruff_text_size",
3102
+ ]
3103
+
3104
+ [[package]]
3105
+ name = "ruff_server"
3106
+ version = "0.2.2"
3107
+ dependencies = [
3108
+ "anyhow",
3109
+ "crossbeam",
3110
+ "ignore",
3111
+ "insta",
3112
+ "jod-thread",
3113
+ "libc",
3114
+ "lsp-server",
3115
+ "lsp-types",
3116
+ "regex",
3117
+ "ruff_diagnostics",
3118
+ "ruff_formatter",
3119
+ "ruff_linter",
3120
+ "ruff_notebook",
3121
+ "ruff_python_ast",
3122
+ "ruff_python_codegen",
3123
+ "ruff_python_formatter",
3124
+ "ruff_python_index",
3125
+ "ruff_python_parser",
3126
+ "ruff_source_file",
3127
+ "ruff_text_size",
3128
+ "ruff_workspace",
3129
+ "rustc-hash 2.1.0",
3130
+ "serde",
3131
+ "serde_json",
3132
+ "shellexpand",
3133
+ "thiserror 2.0.11",
3134
+ "tracing",
3135
+ "tracing-subscriber",
3136
+ ]
3137
+
3138
+ [[package]]
3139
+ name = "ruff_source_file"
3140
+ version = "0.0.0"
3141
+ dependencies = [
3142
+ "memchr",
3143
+ "ruff_text_size",
3144
+ "serde",
3145
+ ]
3146
+
3147
+ [[package]]
3148
+ name = "ruff_text_size"
3149
+ version = "0.0.0"
3150
+ dependencies = [
3151
+ "schemars",
3152
+ "serde",
3153
+ "serde_test",
3154
+ "static_assertions",
3155
+ ]
3156
+
3157
+ [[package]]
3158
+ name = "ruff_wasm"
3159
+ version = "0.9.4"
3160
+ dependencies = [
3161
+ "console_error_panic_hook",
3162
+ "console_log",
3163
+ "js-sys",
3164
+ "log",
3165
+ "ruff_formatter",
3166
+ "ruff_linter",
3167
+ "ruff_python_ast",
3168
+ "ruff_python_codegen",
3169
+ "ruff_python_formatter",
3170
+ "ruff_python_index",
3171
+ "ruff_python_parser",
3172
+ "ruff_python_trivia",
3173
+ "ruff_source_file",
3174
+ "ruff_text_size",
3175
+ "ruff_workspace",
3176
+ "serde",
3177
+ "serde-wasm-bindgen",
3178
+ "wasm-bindgen",
3179
+ "wasm-bindgen-test",
3180
+ ]
3181
+
3182
+ [[package]]
3183
+ name = "ruff_workspace"
3184
+ version = "0.0.0"
3185
+ dependencies = [
3186
+ "anyhow",
3187
+ "colored 3.0.0",
3188
+ "etcetera",
3189
+ "glob",
3190
+ "globset",
3191
+ "ignore",
3192
+ "is-macro",
3193
+ "itertools 0.14.0",
3194
+ "log",
3195
+ "matchit",
3196
+ "path-absolutize",
3197
+ "path-slash",
3198
+ "pep440_rs",
3199
+ "regex",
3200
+ "ruff_cache",
3201
+ "ruff_formatter",
3202
+ "ruff_graph",
3203
+ "ruff_linter",
3204
+ "ruff_macros",
3205
+ "ruff_python_ast",
3206
+ "ruff_python_formatter",
3207
+ "ruff_python_semantic",
3208
+ "ruff_python_stdlib",
3209
+ "ruff_source_file",
3210
+ "rustc-hash 2.1.0",
3211
+ "schemars",
3212
+ "serde",
3213
+ "shellexpand",
3214
+ "strum",
3215
+ "tempfile",
3216
+ "toml",
3217
+ ]
3218
+
3219
+ [[package]]
3220
+ name = "rust-stemmers"
3221
+ version = "1.2.0"
3222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3223
+ checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
3224
+ dependencies = [
3225
+ "serde",
3226
+ "serde_derive",
3227
+ ]
3228
+
3229
+ [[package]]
3230
+ name = "rustc-hash"
3231
+ version = "1.1.0"
3232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3233
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
3234
+
3235
+ [[package]]
3236
+ name = "rustc-hash"
3237
+ version = "2.1.0"
3238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3239
+ checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
3240
+
3241
+ [[package]]
3242
+ name = "rustix"
3243
+ version = "0.38.44"
3244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3245
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
3246
+ dependencies = [
3247
+ "bitflags 2.8.0",
3248
+ "errno",
3249
+ "libc",
3250
+ "linux-raw-sys",
3251
+ "windows-sys 0.52.0",
3252
+ ]
3253
+
3254
+ [[package]]
3255
+ name = "rustls"
3256
+ version = "0.23.21"
3257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3258
+ checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8"
3259
+ dependencies = [
3260
+ "log",
3261
+ "once_cell",
3262
+ "ring",
3263
+ "rustls-pki-types",
3264
+ "rustls-webpki",
3265
+ "subtle",
3266
+ "zeroize",
3267
+ ]
3268
+
3269
+ [[package]]
3270
+ name = "rustls-pki-types"
3271
+ version = "1.10.1"
3272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3273
+ checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37"
3274
+
3275
+ [[package]]
3276
+ name = "rustls-webpki"
3277
+ version = "0.102.8"
3278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3279
+ checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
3280
+ dependencies = [
3281
+ "ring",
3282
+ "rustls-pki-types",
3283
+ "untrusted",
3284
+ ]
3285
+
3286
+ [[package]]
3287
+ name = "rustversion"
3288
+ version = "1.0.19"
3289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3290
+ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
3291
+
3292
+ [[package]]
3293
+ name = "ryu"
3294
+ version = "1.0.18"
3295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3296
+ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
3297
+
3298
+ [[package]]
3299
+ name = "salsa"
3300
+ version = "0.18.0"
3301
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=88a1d7774d78f048fbd77d40abca9ebd729fd1f0#88a1d7774d78f048fbd77d40abca9ebd729fd1f0"
3302
+ dependencies = [
3303
+ "append-only-vec",
3304
+ "arc-swap",
3305
+ "crossbeam",
3306
+ "dashmap 6.1.0",
3307
+ "hashlink",
3308
+ "indexmap",
3309
+ "parking_lot",
3310
+ "rayon",
3311
+ "rustc-hash 2.1.0",
3312
+ "salsa-macro-rules",
3313
+ "salsa-macros",
3314
+ "smallvec",
3315
+ "tracing",
3316
+ ]
3317
+
3318
+ [[package]]
3319
+ name = "salsa-macro-rules"
3320
+ version = "0.1.0"
3321
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=88a1d7774d78f048fbd77d40abca9ebd729fd1f0#88a1d7774d78f048fbd77d40abca9ebd729fd1f0"
3322
+
3323
+ [[package]]
3324
+ name = "salsa-macros"
3325
+ version = "0.18.0"
3326
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=88a1d7774d78f048fbd77d40abca9ebd729fd1f0#88a1d7774d78f048fbd77d40abca9ebd729fd1f0"
3327
+ dependencies = [
3328
+ "heck",
3329
+ "proc-macro2",
3330
+ "quote",
3331
+ "syn 2.0.96",
3332
+ "synstructure",
3333
+ ]
3334
+
3335
+ [[package]]
3336
+ name = "same-file"
3337
+ version = "1.0.6"
3338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3339
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3340
+ dependencies = [
3341
+ "winapi-util",
3342
+ ]
3343
+
3344
+ [[package]]
3345
+ name = "schemars"
3346
+ version = "0.8.21"
3347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3348
+ checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92"
3349
+ dependencies = [
3350
+ "dyn-clone",
3351
+ "schemars_derive",
3352
+ "serde",
3353
+ "serde_json",
3354
+ ]
3355
+
3356
+ [[package]]
3357
+ name = "schemars_derive"
3358
+ version = "0.8.21"
3359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3360
+ checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e"
3361
+ dependencies = [
3362
+ "proc-macro2",
3363
+ "quote",
3364
+ "serde_derive_internals",
3365
+ "syn 2.0.96",
3366
+ ]
3367
+
3368
+ [[package]]
3369
+ name = "scopeguard"
3370
+ version = "1.2.0"
3371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3372
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3373
+
3374
+ [[package]]
3375
+ name = "seahash"
3376
+ version = "4.1.0"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
3379
+
3380
+ [[package]]
3381
+ name = "serde"
3382
+ version = "1.0.217"
3383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3384
+ checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
3385
+ dependencies = [
3386
+ "serde_derive",
3387
+ ]
3388
+
3389
+ [[package]]
3390
+ name = "serde-wasm-bindgen"
3391
+ version = "0.6.5"
3392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3393
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
3394
+ dependencies = [
3395
+ "js-sys",
3396
+ "serde",
3397
+ "wasm-bindgen",
3398
+ ]
3399
+
3400
+ [[package]]
3401
+ name = "serde_derive"
3402
+ version = "1.0.217"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
3405
+ dependencies = [
3406
+ "proc-macro2",
3407
+ "quote",
3408
+ "syn 2.0.96",
3409
+ ]
3410
+
3411
+ [[package]]
3412
+ name = "serde_derive_internals"
3413
+ version = "0.29.1"
3414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3415
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
3416
+ dependencies = [
3417
+ "proc-macro2",
3418
+ "quote",
3419
+ "syn 2.0.96",
3420
+ ]
3421
+
3422
+ [[package]]
3423
+ name = "serde_json"
3424
+ version = "1.0.137"
3425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3426
+ checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b"
3427
+ dependencies = [
3428
+ "itoa",
3429
+ "memchr",
3430
+ "ryu",
3431
+ "serde",
3432
+ ]
3433
+
3434
+ [[package]]
3435
+ name = "serde_repr"
3436
+ version = "0.1.19"
3437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3438
+ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
3439
+ dependencies = [
3440
+ "proc-macro2",
3441
+ "quote",
3442
+ "syn 2.0.96",
3443
+ ]
3444
+
3445
+ [[package]]
3446
+ name = "serde_spanned"
3447
+ version = "0.6.8"
3448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3449
+ checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
3450
+ dependencies = [
3451
+ "serde",
3452
+ ]
3453
+
3454
+ [[package]]
3455
+ name = "serde_test"
3456
+ version = "1.0.177"
3457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+ checksum = "7f901ee573cab6b3060453d2d5f0bae4e6d628c23c0a962ff9b5f1d7c8d4f1ed"
3459
+ dependencies = [
3460
+ "serde",
3461
+ ]
3462
+
3463
+ [[package]]
3464
+ name = "serde_with"
3465
+ version = "3.12.0"
3466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3467
+ checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
3468
+ dependencies = [
3469
+ "serde",
3470
+ "serde_derive",
3471
+ "serde_with_macros",
3472
+ ]
3473
+
3474
+ [[package]]
3475
+ name = "serde_with_macros"
3476
+ version = "3.12.0"
3477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3478
+ checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
3479
+ dependencies = [
3480
+ "darling",
3481
+ "proc-macro2",
3482
+ "quote",
3483
+ "syn 2.0.96",
3484
+ ]
3485
+
3486
+ [[package]]
3487
+ name = "sha2"
3488
+ version = "0.10.8"
3489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3490
+ checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
3491
+ dependencies = [
3492
+ "cfg-if",
3493
+ "cpufeatures",
3494
+ "digest",
3495
+ ]
3496
+
3497
+ [[package]]
3498
+ name = "sharded-slab"
3499
+ version = "0.1.7"
3500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3501
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3502
+ dependencies = [
3503
+ "lazy_static",
3504
+ ]
3505
+
3506
+ [[package]]
3507
+ name = "shellexpand"
3508
+ version = "3.1.0"
3509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3510
+ checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
3511
+ dependencies = [
3512
+ "dirs",
3513
+ ]
3514
+
3515
+ [[package]]
3516
+ name = "shlex"
3517
+ version = "1.3.0"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3520
+
3521
+ [[package]]
3522
+ name = "similar"
3523
+ version = "2.7.0"
3524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3525
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
3526
+
3527
+ [[package]]
3528
+ name = "siphasher"
3529
+ version = "1.0.1"
3530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3531
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3532
+
3533
+ [[package]]
3534
+ name = "smallvec"
3535
+ version = "1.13.2"
3536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3537
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
3538
+
3539
+ [[package]]
3540
+ name = "snapbox"
3541
+ version = "0.6.21"
3542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3543
+ checksum = "96dcfc4581e3355d70ac2ee14cfdf81dce3d85c85f1ed9e2c1d3013f53b3436b"
3544
+ dependencies = [
3545
+ "anstream",
3546
+ "anstyle",
3547
+ "anstyle-svg",
3548
+ "escargot",
3549
+ "libc",
3550
+ "normalize-line-endings",
3551
+ "os_pipe",
3552
+ "serde_json",
3553
+ "similar",
3554
+ "snapbox-macros",
3555
+ "wait-timeout",
3556
+ "windows-sys 0.59.0",
3557
+ ]
3558
+
3559
+ [[package]]
3560
+ name = "snapbox-macros"
3561
+ version = "0.3.10"
3562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3563
+ checksum = "16569f53ca23a41bb6f62e0a5084aa1661f4814a67fa33696a79073e03a664af"
3564
+ dependencies = [
3565
+ "anstream",
3566
+ ]
3567
+
3568
+ [[package]]
3569
+ name = "spin"
3570
+ version = "0.9.8"
3571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3572
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3573
+
3574
+ [[package]]
3575
+ name = "stable_deref_trait"
3576
+ version = "1.2.0"
3577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3578
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3579
+
3580
+ [[package]]
3581
+ name = "static_assertions"
3582
+ version = "1.1.0"
3583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3584
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3585
+
3586
+ [[package]]
3587
+ name = "strip-ansi-escapes"
3588
+ version = "0.2.1"
3589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+ checksum = "2a8f8038e7e7969abb3f1b7c2a811225e9296da208539e0f79c5251d6cac0025"
3591
+ dependencies = [
3592
+ "vte 0.14.1",
3593
+ ]
3594
+
3595
+ [[package]]
3596
+ name = "strsim"
3597
+ version = "0.11.1"
3598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3599
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3600
+
3601
+ [[package]]
3602
+ name = "strum"
3603
+ version = "0.26.3"
3604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3605
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
3606
+ dependencies = [
3607
+ "strum_macros",
3608
+ ]
3609
+
3610
+ [[package]]
3611
+ name = "strum_macros"
3612
+ version = "0.26.4"
3613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3614
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
3615
+ dependencies = [
3616
+ "heck",
3617
+ "proc-macro2",
3618
+ "quote",
3619
+ "rustversion",
3620
+ "syn 2.0.96",
3621
+ ]
3622
+
3623
+ [[package]]
3624
+ name = "subtle"
3625
+ version = "2.6.1"
3626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3627
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3628
+
3629
+ [[package]]
3630
+ name = "syn"
3631
+ version = "1.0.109"
3632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3633
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3634
+ dependencies = [
3635
+ "proc-macro2",
3636
+ "quote",
3637
+ "unicode-ident",
3638
+ ]
3639
+
3640
+ [[package]]
3641
+ name = "syn"
3642
+ version = "2.0.96"
3643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3644
+ checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
3645
+ dependencies = [
3646
+ "proc-macro2",
3647
+ "quote",
3648
+ "unicode-ident",
3649
+ ]
3650
+
3651
+ [[package]]
3652
+ name = "synstructure"
3653
+ version = "0.13.1"
3654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3655
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3656
+ dependencies = [
3657
+ "proc-macro2",
3658
+ "quote",
3659
+ "syn 2.0.96",
3660
+ ]
3661
+
3662
+ [[package]]
3663
+ name = "tempfile"
3664
+ version = "3.15.0"
3665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3666
+ checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
3667
+ dependencies = [
3668
+ "cfg-if",
3669
+ "fastrand",
3670
+ "getrandom",
3671
+ "once_cell",
3672
+ "rustix",
3673
+ "windows-sys 0.52.0",
3674
+ ]
3675
+
3676
+ [[package]]
3677
+ name = "termcolor"
3678
+ version = "1.4.1"
3679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3680
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
3681
+ dependencies = [
3682
+ "winapi-util",
3683
+ ]
3684
+
3685
+ [[package]]
3686
+ name = "terminal_size"
3687
+ version = "0.4.1"
3688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3689
+ checksum = "5352447f921fda68cf61b4101566c0bdb5104eff6804d0678e5227580ab6a4e9"
3690
+ dependencies = [
3691
+ "rustix",
3692
+ "windows-sys 0.59.0",
3693
+ ]
3694
+
3695
+ [[package]]
3696
+ name = "terminfo"
3697
+ version = "0.9.0"
3698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3699
+ checksum = "d4ea810f0692f9f51b382fff5893887bb4580f5fa246fde546e0b13e7fcee662"
3700
+ dependencies = [
3701
+ "fnv",
3702
+ "nom",
3703
+ "phf",
3704
+ "phf_codegen",
3705
+ ]
3706
+
3707
+ [[package]]
3708
+ name = "termtree"
3709
+ version = "0.5.1"
3710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3711
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3712
+
3713
+ [[package]]
3714
+ name = "test-case"
3715
+ version = "3.3.1"
3716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3717
+ checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8"
3718
+ dependencies = [
3719
+ "test-case-macros",
3720
+ ]
3721
+
3722
+ [[package]]
3723
+ name = "test-case-core"
3724
+ version = "3.3.1"
3725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3726
+ checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
3727
+ dependencies = [
3728
+ "cfg-if",
3729
+ "proc-macro2",
3730
+ "quote",
3731
+ "syn 2.0.96",
3732
+ ]
3733
+
3734
+ [[package]]
3735
+ name = "test-case-macros"
3736
+ version = "3.3.1"
3737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3738
+ checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
3739
+ dependencies = [
3740
+ "proc-macro2",
3741
+ "quote",
3742
+ "syn 2.0.96",
3743
+ "test-case-core",
3744
+ ]
3745
+
3746
+ [[package]]
3747
+ name = "thiserror"
3748
+ version = "1.0.69"
3749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3750
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3751
+ dependencies = [
3752
+ "thiserror-impl 1.0.69",
3753
+ ]
3754
+
3755
+ [[package]]
3756
+ name = "thiserror"
3757
+ version = "2.0.11"
3758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3759
+ checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
3760
+ dependencies = [
3761
+ "thiserror-impl 2.0.11",
3762
+ ]
3763
+
3764
+ [[package]]
3765
+ name = "thiserror-impl"
3766
+ version = "1.0.69"
3767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3768
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3769
+ dependencies = [
3770
+ "proc-macro2",
3771
+ "quote",
3772
+ "syn 2.0.96",
3773
+ ]
3774
+
3775
+ [[package]]
3776
+ name = "thiserror-impl"
3777
+ version = "2.0.11"
3778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3779
+ checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
3780
+ dependencies = [
3781
+ "proc-macro2",
3782
+ "quote",
3783
+ "syn 2.0.96",
3784
+ ]
3785
+
3786
+ [[package]]
3787
+ name = "thread_local"
3788
+ version = "1.1.8"
3789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3790
+ checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
3791
+ dependencies = [
3792
+ "cfg-if",
3793
+ "once_cell",
3794
+ ]
3795
+
3796
+ [[package]]
3797
+ name = "threadpool"
3798
+ version = "1.8.1"
3799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3800
+ checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
3801
+ dependencies = [
3802
+ "num_cpus",
3803
+ ]
3804
+
3805
+ [[package]]
3806
+ name = "tikv-jemalloc-sys"
3807
+ version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
3808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3809
+ checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d"
3810
+ dependencies = [
3811
+ "cc",
3812
+ "libc",
3813
+ ]
3814
+
3815
+ [[package]]
3816
+ name = "tikv-jemallocator"
3817
+ version = "0.6.0"
3818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3819
+ checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865"
3820
+ dependencies = [
3821
+ "libc",
3822
+ "tikv-jemalloc-sys",
3823
+ ]
3824
+
3825
+ [[package]]
3826
+ name = "tinystr"
3827
+ version = "0.7.6"
3828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3829
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3830
+ dependencies = [
3831
+ "displaydoc",
3832
+ "zerovec",
3833
+ ]
3834
+
3835
+ [[package]]
3836
+ name = "tinytemplate"
3837
+ version = "1.2.1"
3838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3839
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3840
+ dependencies = [
3841
+ "serde",
3842
+ "serde_json",
3843
+ ]
3844
+
3845
+ [[package]]
3846
+ name = "tinyvec"
3847
+ version = "1.8.1"
3848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3849
+ checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
3850
+ dependencies = [
3851
+ "tinyvec_macros",
3852
+ ]
3853
+
3854
+ [[package]]
3855
+ name = "tinyvec_macros"
3856
+ version = "0.1.1"
3857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3858
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3859
+
3860
+ [[package]]
3861
+ name = "toml"
3862
+ version = "0.8.19"
3863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3864
+ checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
3865
+ dependencies = [
3866
+ "serde",
3867
+ "serde_spanned",
3868
+ "toml_datetime",
3869
+ "toml_edit",
3870
+ ]
3871
+
3872
+ [[package]]
3873
+ name = "toml_datetime"
3874
+ version = "0.6.8"
3875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3876
+ checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
3877
+ dependencies = [
3878
+ "serde",
3879
+ ]
3880
+
3881
+ [[package]]
3882
+ name = "toml_edit"
3883
+ version = "0.22.22"
3884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3885
+ checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
3886
+ dependencies = [
3887
+ "indexmap",
3888
+ "serde",
3889
+ "serde_spanned",
3890
+ "toml_datetime",
3891
+ "winnow",
3892
+ ]
3893
+
3894
+ [[package]]
3895
+ name = "tracing"
3896
+ version = "0.1.41"
3897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3898
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3899
+ dependencies = [
3900
+ "log",
3901
+ "pin-project-lite",
3902
+ "tracing-attributes",
3903
+ "tracing-core",
3904
+ ]
3905
+
3906
+ [[package]]
3907
+ name = "tracing-attributes"
3908
+ version = "0.1.28"
3909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3910
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3911
+ dependencies = [
3912
+ "proc-macro2",
3913
+ "quote",
3914
+ "syn 2.0.96",
3915
+ ]
3916
+
3917
+ [[package]]
3918
+ name = "tracing-core"
3919
+ version = "0.1.33"
3920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3921
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3922
+ dependencies = [
3923
+ "once_cell",
3924
+ "valuable",
3925
+ ]
3926
+
3927
+ [[package]]
3928
+ name = "tracing-flame"
3929
+ version = "0.2.0"
3930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3931
+ checksum = "0bae117ee14789185e129aaee5d93750abe67fdc5a9a62650452bfe4e122a3a9"
3932
+ dependencies = [
3933
+ "lazy_static",
3934
+ "tracing",
3935
+ "tracing-subscriber",
3936
+ ]
3937
+
3938
+ [[package]]
3939
+ name = "tracing-indicatif"
3940
+ version = "0.3.9"
3941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3942
+ checksum = "8201ca430e0cd893ef978226fd3516c06d9c494181c8bf4e5b32e30ed4b40aa1"
3943
+ dependencies = [
3944
+ "indicatif",
3945
+ "tracing",
3946
+ "tracing-core",
3947
+ "tracing-subscriber",
3948
+ ]
3949
+
3950
+ [[package]]
3951
+ name = "tracing-log"
3952
+ version = "0.2.0"
3953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3954
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3955
+ dependencies = [
3956
+ "log",
3957
+ "once_cell",
3958
+ "tracing-core",
3959
+ ]
3960
+
3961
+ [[package]]
3962
+ name = "tracing-subscriber"
3963
+ version = "0.3.19"
3964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3965
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
3966
+ dependencies = [
3967
+ "matchers",
3968
+ "nu-ansi-term 0.46.0",
3969
+ "once_cell",
3970
+ "regex",
3971
+ "sharded-slab",
3972
+ "smallvec",
3973
+ "thread_local",
3974
+ "tracing",
3975
+ "tracing-core",
3976
+ "tracing-log",
3977
+ ]
3978
+
3979
+ [[package]]
3980
+ name = "tracing-tree"
3981
+ version = "0.4.0"
3982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3983
+ checksum = "f459ca79f1b0d5f71c54ddfde6debfc59c8b6eeb46808ae492077f739dc7b49c"
3984
+ dependencies = [
3985
+ "nu-ansi-term 0.50.1",
3986
+ "tracing-core",
3987
+ "tracing-log",
3988
+ "tracing-subscriber",
3989
+ ]
3990
+
3991
+ [[package]]
3992
+ name = "tryfn"
3993
+ version = "0.2.3"
3994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3995
+ checksum = "5fe242ee9e646acec9ab73a5c540e8543ed1b107f0ce42be831e0775d423c396"
3996
+ dependencies = [
3997
+ "ignore",
3998
+ "libtest-mimic",
3999
+ "snapbox",
4000
+ ]
4001
+
4002
+ [[package]]
4003
+ name = "typed-arena"
4004
+ version = "2.0.2"
4005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4006
+ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
4007
+
4008
+ [[package]]
4009
+ name = "typenum"
4010
+ version = "1.17.0"
4011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4012
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
4013
+
4014
+ [[package]]
4015
+ name = "ucd-trie"
4016
+ version = "0.1.7"
4017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4018
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
4019
+
4020
+ [[package]]
4021
+ name = "unic-char-property"
4022
+ version = "0.9.0"
4023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4024
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
4025
+ dependencies = [
4026
+ "unic-char-range",
4027
+ ]
4028
+
4029
+ [[package]]
4030
+ name = "unic-char-range"
4031
+ version = "0.9.0"
4032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4033
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
4034
+
4035
+ [[package]]
4036
+ name = "unic-common"
4037
+ version = "0.9.0"
4038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4039
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
4040
+
4041
+ [[package]]
4042
+ name = "unic-ucd-category"
4043
+ version = "0.9.0"
4044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4045
+ checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0"
4046
+ dependencies = [
4047
+ "matches",
4048
+ "unic-char-property",
4049
+ "unic-char-range",
4050
+ "unic-ucd-version",
4051
+ ]
4052
+
4053
+ [[package]]
4054
+ name = "unic-ucd-version"
4055
+ version = "0.9.0"
4056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4057
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
4058
+ dependencies = [
4059
+ "unic-common",
4060
+ ]
4061
+
4062
+ [[package]]
4063
+ name = "unicode-ident"
4064
+ version = "1.0.15"
4065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4066
+ checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243"
4067
+
4068
+ [[package]]
4069
+ name = "unicode-normalization"
4070
+ version = "0.1.24"
4071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4072
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
4073
+ dependencies = [
4074
+ "tinyvec",
4075
+ ]
4076
+
4077
+ [[package]]
4078
+ name = "unicode-width"
4079
+ version = "0.1.14"
4080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4081
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
4082
+
4083
+ [[package]]
4084
+ name = "unicode-width"
4085
+ version = "0.2.0"
4086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4087
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
4088
+
4089
+ [[package]]
4090
+ name = "unicode_names2"
4091
+ version = "1.3.0"
4092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4093
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
4094
+ dependencies = [
4095
+ "phf",
4096
+ "unicode_names2_generator",
4097
+ ]
4098
+
4099
+ [[package]]
4100
+ name = "unicode_names2_generator"
4101
+ version = "1.3.0"
4102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4103
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
4104
+ dependencies = [
4105
+ "getopts",
4106
+ "log",
4107
+ "phf_codegen",
4108
+ "rand",
4109
+ ]
4110
+
4111
+ [[package]]
4112
+ name = "unscanny"
4113
+ version = "0.1.0"
4114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4115
+ checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47"
4116
+
4117
+ [[package]]
4118
+ name = "untrusted"
4119
+ version = "0.9.0"
4120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4121
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4122
+
4123
+ [[package]]
4124
+ name = "ureq"
4125
+ version = "2.12.1"
4126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4127
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
4128
+ dependencies = [
4129
+ "base64 0.22.1",
4130
+ "flate2",
4131
+ "log",
4132
+ "once_cell",
4133
+ "rustls",
4134
+ "rustls-pki-types",
4135
+ "url",
4136
+ "webpki-roots",
4137
+ ]
4138
+
4139
+ [[package]]
4140
+ name = "url"
4141
+ version = "2.5.4"
4142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4143
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
4144
+ dependencies = [
4145
+ "form_urlencoded",
4146
+ "idna",
4147
+ "percent-encoding",
4148
+ "serde",
4149
+ ]
4150
+
4151
+ [[package]]
4152
+ name = "urlencoding"
4153
+ version = "2.1.3"
4154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4155
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
4156
+
4157
+ [[package]]
4158
+ name = "utf16_iter"
4159
+ version = "1.0.5"
4160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4161
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
4162
+
4163
+ [[package]]
4164
+ name = "utf8-width"
4165
+ version = "0.1.7"
4166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4167
+ checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
4168
+
4169
+ [[package]]
4170
+ name = "utf8_iter"
4171
+ version = "1.0.4"
4172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4173
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4174
+
4175
+ [[package]]
4176
+ name = "utf8parse"
4177
+ version = "0.2.2"
4178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4179
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4180
+
4181
+ [[package]]
4182
+ name = "uuid"
4183
+ version = "1.12.1"
4184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4185
+ checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b"
4186
+ dependencies = [
4187
+ "getrandom",
4188
+ "rand",
4189
+ "uuid-macro-internal",
4190
+ "wasm-bindgen",
4191
+ ]
4192
+
4193
+ [[package]]
4194
+ name = "uuid-macro-internal"
4195
+ version = "1.12.1"
4196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4197
+ checksum = "f8a86d88347b61a0e17b9908a67efcc594130830bf1045653784358dd023e294"
4198
+ dependencies = [
4199
+ "proc-macro2",
4200
+ "quote",
4201
+ "syn 2.0.96",
4202
+ ]
4203
+
4204
+ [[package]]
4205
+ name = "valuable"
4206
+ version = "0.1.1"
4207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4208
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
4209
+
4210
+ [[package]]
4211
+ name = "version-ranges"
4212
+ version = "0.1.1"
4213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4214
+ checksum = "f8d079415ceb2be83fc355adbadafe401307d5c309c7e6ade6638e6f9f42f42d"
4215
+ dependencies = [
4216
+ "smallvec",
4217
+ ]
4218
+
4219
+ [[package]]
4220
+ name = "version_check"
4221
+ version = "0.9.5"
4222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4223
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4224
+
4225
+ [[package]]
4226
+ name = "vt100"
4227
+ version = "0.15.2"
4228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4229
+ checksum = "84cd863bf0db7e392ba3bd04994be3473491b31e66340672af5d11943c6274de"
4230
+ dependencies = [
4231
+ "itoa",
4232
+ "log",
4233
+ "unicode-width 0.1.14",
4234
+ "vte 0.11.1",
4235
+ ]
4236
+
4237
+ [[package]]
4238
+ name = "vte"
4239
+ version = "0.11.1"
4240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4241
+ checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197"
4242
+ dependencies = [
4243
+ "arrayvec",
4244
+ "utf8parse",
4245
+ "vte_generate_state_changes",
4246
+ ]
4247
+
4248
+ [[package]]
4249
+ name = "vte"
4250
+ version = "0.14.1"
4251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4252
+ checksum = "231fdcd7ef3037e8330d8e17e61011a2c244126acc0a982f4040ac3f9f0bc077"
4253
+ dependencies = [
4254
+ "memchr",
4255
+ ]
4256
+
4257
+ [[package]]
4258
+ name = "vte_generate_state_changes"
4259
+ version = "0.1.2"
4260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4261
+ checksum = "2e369bee1b05d510a7b4ed645f5faa90619e05437111783ea5848f28d97d3c2e"
4262
+ dependencies = [
4263
+ "proc-macro2",
4264
+ "quote",
4265
+ ]
4266
+
4267
+ [[package]]
4268
+ name = "wait-timeout"
4269
+ version = "0.2.0"
4270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4271
+ checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
4272
+ dependencies = [
4273
+ "libc",
4274
+ ]
4275
+
4276
+ [[package]]
4277
+ name = "walkdir"
4278
+ version = "2.5.0"
4279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4280
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4281
+ dependencies = [
4282
+ "same-file",
4283
+ "winapi-util",
4284
+ ]
4285
+
4286
+ [[package]]
4287
+ name = "wasi"
4288
+ version = "0.11.0+wasi-snapshot-preview1"
4289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4290
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
4291
+
4292
+ [[package]]
4293
+ name = "wasm-bindgen"
4294
+ version = "0.2.100"
4295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4296
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
4297
+ dependencies = [
4298
+ "cfg-if",
4299
+ "once_cell",
4300
+ "rustversion",
4301
+ "wasm-bindgen-macro",
4302
+ ]
4303
+
4304
+ [[package]]
4305
+ name = "wasm-bindgen-backend"
4306
+ version = "0.2.100"
4307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4308
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
4309
+ dependencies = [
4310
+ "bumpalo",
4311
+ "log",
4312
+ "proc-macro2",
4313
+ "quote",
4314
+ "syn 2.0.96",
4315
+ "wasm-bindgen-shared",
4316
+ ]
4317
+
4318
+ [[package]]
4319
+ name = "wasm-bindgen-futures"
4320
+ version = "0.4.50"
4321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4322
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
4323
+ dependencies = [
4324
+ "cfg-if",
4325
+ "js-sys",
4326
+ "once_cell",
4327
+ "wasm-bindgen",
4328
+ "web-sys",
4329
+ ]
4330
+
4331
+ [[package]]
4332
+ name = "wasm-bindgen-macro"
4333
+ version = "0.2.100"
4334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4335
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
4336
+ dependencies = [
4337
+ "quote",
4338
+ "wasm-bindgen-macro-support",
4339
+ ]
4340
+
4341
+ [[package]]
4342
+ name = "wasm-bindgen-macro-support"
4343
+ version = "0.2.100"
4344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4345
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
4346
+ dependencies = [
4347
+ "proc-macro2",
4348
+ "quote",
4349
+ "syn 2.0.96",
4350
+ "wasm-bindgen-backend",
4351
+ "wasm-bindgen-shared",
4352
+ ]
4353
+
4354
+ [[package]]
4355
+ name = "wasm-bindgen-shared"
4356
+ version = "0.2.100"
4357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4358
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
4359
+ dependencies = [
4360
+ "unicode-ident",
4361
+ ]
4362
+
4363
+ [[package]]
4364
+ name = "wasm-bindgen-test"
4365
+ version = "0.3.50"
4366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4367
+ checksum = "66c8d5e33ca3b6d9fa3b4676d774c5778031d27a578c2b007f905acf816152c3"
4368
+ dependencies = [
4369
+ "js-sys",
4370
+ "minicov",
4371
+ "wasm-bindgen",
4372
+ "wasm-bindgen-futures",
4373
+ "wasm-bindgen-test-macro",
4374
+ ]
4375
+
4376
+ [[package]]
4377
+ name = "wasm-bindgen-test-macro"
4378
+ version = "0.3.50"
4379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4380
+ checksum = "17d5042cc5fa009658f9a7333ef24291b1291a25b6382dd68862a7f3b969f69b"
4381
+ dependencies = [
4382
+ "proc-macro2",
4383
+ "quote",
4384
+ "syn 2.0.96",
4385
+ ]
4386
+
4387
+ [[package]]
4388
+ name = "web-sys"
4389
+ version = "0.3.77"
4390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4391
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
4392
+ dependencies = [
4393
+ "js-sys",
4394
+ "wasm-bindgen",
4395
+ ]
4396
+
4397
+ [[package]]
4398
+ name = "web-time"
4399
+ version = "1.1.0"
4400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4401
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4402
+ dependencies = [
4403
+ "js-sys",
4404
+ "wasm-bindgen",
4405
+ ]
4406
+
4407
+ [[package]]
4408
+ name = "webpki-roots"
4409
+ version = "0.26.7"
4410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4411
+ checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e"
4412
+ dependencies = [
4413
+ "rustls-pki-types",
4414
+ ]
4415
+
4416
+ [[package]]
4417
+ name = "which"
4418
+ version = "7.0.1"
4419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4420
+ checksum = "fb4a9e33648339dc1642b0e36e21b3385e6148e289226f657c809dee59df5028"
4421
+ dependencies = [
4422
+ "either",
4423
+ "env_home",
4424
+ "rustix",
4425
+ "winsafe",
4426
+ ]
4427
+
4428
+ [[package]]
4429
+ name = "wild"
4430
+ version = "2.2.1"
4431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4432
+ checksum = "a3131afc8c575281e1e80f36ed6a092aa502c08b18ed7524e86fbbb12bb410e1"
4433
+ dependencies = [
4434
+ "glob",
4435
+ ]
4436
+
4437
+ [[package]]
4438
+ name = "winapi"
4439
+ version = "0.3.9"
4440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4441
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4442
+ dependencies = [
4443
+ "winapi-i686-pc-windows-gnu",
4444
+ "winapi-x86_64-pc-windows-gnu",
4445
+ ]
4446
+
4447
+ [[package]]
4448
+ name = "winapi-i686-pc-windows-gnu"
4449
+ version = "0.4.0"
4450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4451
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4452
+
4453
+ [[package]]
4454
+ name = "winapi-util"
4455
+ version = "0.1.9"
4456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4457
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
4458
+ dependencies = [
4459
+ "windows-sys 0.48.0",
4460
+ ]
4461
+
4462
+ [[package]]
4463
+ name = "winapi-x86_64-pc-windows-gnu"
4464
+ version = "0.4.0"
4465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4466
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4467
+
4468
+ [[package]]
4469
+ name = "windows-core"
4470
+ version = "0.52.0"
4471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4472
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
4473
+ dependencies = [
4474
+ "windows-targets 0.52.6",
4475
+ ]
4476
+
4477
+ [[package]]
4478
+ name = "windows-sys"
4479
+ version = "0.48.0"
4480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4481
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4482
+ dependencies = [
4483
+ "windows-targets 0.48.5",
4484
+ ]
4485
+
4486
+ [[package]]
4487
+ name = "windows-sys"
4488
+ version = "0.52.0"
4489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4490
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4491
+ dependencies = [
4492
+ "windows-targets 0.52.6",
4493
+ ]
4494
+
4495
+ [[package]]
4496
+ name = "windows-sys"
4497
+ version = "0.59.0"
4498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4499
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4500
+ dependencies = [
4501
+ "windows-targets 0.52.6",
4502
+ ]
4503
+
4504
+ [[package]]
4505
+ name = "windows-targets"
4506
+ version = "0.48.5"
4507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4508
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4509
+ dependencies = [
4510
+ "windows_aarch64_gnullvm 0.48.5",
4511
+ "windows_aarch64_msvc 0.48.5",
4512
+ "windows_i686_gnu 0.48.5",
4513
+ "windows_i686_msvc 0.48.5",
4514
+ "windows_x86_64_gnu 0.48.5",
4515
+ "windows_x86_64_gnullvm 0.48.5",
4516
+ "windows_x86_64_msvc 0.48.5",
4517
+ ]
4518
+
4519
+ [[package]]
4520
+ name = "windows-targets"
4521
+ version = "0.52.6"
4522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4523
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4524
+ dependencies = [
4525
+ "windows_aarch64_gnullvm 0.52.6",
4526
+ "windows_aarch64_msvc 0.52.6",
4527
+ "windows_i686_gnu 0.52.6",
4528
+ "windows_i686_gnullvm",
4529
+ "windows_i686_msvc 0.52.6",
4530
+ "windows_x86_64_gnu 0.52.6",
4531
+ "windows_x86_64_gnullvm 0.52.6",
4532
+ "windows_x86_64_msvc 0.52.6",
4533
+ ]
4534
+
4535
+ [[package]]
4536
+ name = "windows_aarch64_gnullvm"
4537
+ version = "0.48.5"
4538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4539
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4540
+
4541
+ [[package]]
4542
+ name = "windows_aarch64_gnullvm"
4543
+ version = "0.52.6"
4544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4545
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4546
+
4547
+ [[package]]
4548
+ name = "windows_aarch64_msvc"
4549
+ version = "0.48.5"
4550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4551
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4552
+
4553
+ [[package]]
4554
+ name = "windows_aarch64_msvc"
4555
+ version = "0.52.6"
4556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4557
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4558
+
4559
+ [[package]]
4560
+ name = "windows_i686_gnu"
4561
+ version = "0.48.5"
4562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4563
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4564
+
4565
+ [[package]]
4566
+ name = "windows_i686_gnu"
4567
+ version = "0.52.6"
4568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4569
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4570
+
4571
+ [[package]]
4572
+ name = "windows_i686_gnullvm"
4573
+ version = "0.52.6"
4574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4575
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4576
+
4577
+ [[package]]
4578
+ name = "windows_i686_msvc"
4579
+ version = "0.48.5"
4580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4581
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4582
+
4583
+ [[package]]
4584
+ name = "windows_i686_msvc"
4585
+ version = "0.52.6"
4586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4587
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4588
+
4589
+ [[package]]
4590
+ name = "windows_x86_64_gnu"
4591
+ version = "0.48.5"
4592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4593
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4594
+
4595
+ [[package]]
4596
+ name = "windows_x86_64_gnu"
4597
+ version = "0.52.6"
4598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4599
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4600
+
4601
+ [[package]]
4602
+ name = "windows_x86_64_gnullvm"
4603
+ version = "0.48.5"
4604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4605
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4606
+
4607
+ [[package]]
4608
+ name = "windows_x86_64_gnullvm"
4609
+ version = "0.52.6"
4610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4611
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4612
+
4613
+ [[package]]
4614
+ name = "windows_x86_64_msvc"
4615
+ version = "0.48.5"
4616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4617
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4618
+
4619
+ [[package]]
4620
+ name = "windows_x86_64_msvc"
4621
+ version = "0.52.6"
4622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4623
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4624
+
4625
+ [[package]]
4626
+ name = "winnow"
4627
+ version = "0.6.24"
4628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4629
+ checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a"
4630
+ dependencies = [
4631
+ "memchr",
4632
+ ]
4633
+
4634
+ [[package]]
4635
+ name = "winsafe"
4636
+ version = "0.0.19"
4637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4638
+ checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
4639
+
4640
+ [[package]]
4641
+ name = "write16"
4642
+ version = "1.0.0"
4643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4644
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4645
+
4646
+ [[package]]
4647
+ name = "writeable"
4648
+ version = "0.5.5"
4649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4650
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4651
+
4652
+ [[package]]
4653
+ name = "yansi"
4654
+ version = "1.0.1"
4655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4656
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4657
+
4658
+ [[package]]
4659
+ name = "yoke"
4660
+ version = "0.7.5"
4661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4662
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4663
+ dependencies = [
4664
+ "serde",
4665
+ "stable_deref_trait",
4666
+ "yoke-derive",
4667
+ "zerofrom",
4668
+ ]
4669
+
4670
+ [[package]]
4671
+ name = "yoke-derive"
4672
+ version = "0.7.5"
4673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4674
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4675
+ dependencies = [
4676
+ "proc-macro2",
4677
+ "quote",
4678
+ "syn 2.0.96",
4679
+ "synstructure",
4680
+ ]
4681
+
4682
+ [[package]]
4683
+ name = "zerocopy"
4684
+ version = "0.7.35"
4685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4686
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4687
+ dependencies = [
4688
+ "byteorder",
4689
+ "zerocopy-derive",
4690
+ ]
4691
+
4692
+ [[package]]
4693
+ name = "zerocopy-derive"
4694
+ version = "0.7.35"
4695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4696
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4697
+ dependencies = [
4698
+ "proc-macro2",
4699
+ "quote",
4700
+ "syn 2.0.96",
4701
+ ]
4702
+
4703
+ [[package]]
4704
+ name = "zerofrom"
4705
+ version = "0.1.5"
4706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4707
+ checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
4708
+ dependencies = [
4709
+ "zerofrom-derive",
4710
+ ]
4711
+
4712
+ [[package]]
4713
+ name = "zerofrom-derive"
4714
+ version = "0.1.5"
4715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4716
+ checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
4717
+ dependencies = [
4718
+ "proc-macro2",
4719
+ "quote",
4720
+ "syn 2.0.96",
4721
+ "synstructure",
4722
+ ]
4723
+
4724
+ [[package]]
4725
+ name = "zeroize"
4726
+ version = "1.8.1"
4727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4728
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4729
+
4730
+ [[package]]
4731
+ name = "zerovec"
4732
+ version = "0.10.4"
4733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4734
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4735
+ dependencies = [
4736
+ "yoke",
4737
+ "zerofrom",
4738
+ "zerovec-derive",
4739
+ ]
4740
+
4741
+ [[package]]
4742
+ name = "zerovec-derive"
4743
+ version = "0.10.3"
4744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4745
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4746
+ dependencies = [
4747
+ "proc-macro2",
4748
+ "quote",
4749
+ "syn 2.0.96",
4750
+ ]
4751
+
4752
+ [[package]]
4753
+ name = "zip"
4754
+ version = "0.6.6"
4755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4756
+ checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
4757
+ dependencies = [
4758
+ "byteorder",
4759
+ "crc32fast",
4760
+ "crossbeam-utils",
4761
+ "flate2",
4762
+ "zstd",
4763
+ ]
4764
+
4765
+ [[package]]
4766
+ name = "zstd"
4767
+ version = "0.11.2+zstd.1.5.2"
4768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4769
+ checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
4770
+ dependencies = [
4771
+ "zstd-safe",
4772
+ ]
4773
+
4774
+ [[package]]
4775
+ name = "zstd-safe"
4776
+ version = "5.0.2+zstd.1.5.2"
4777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4778
+ checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
4779
+ dependencies = [
4780
+ "libc",
4781
+ "zstd-sys",
4782
+ ]
4783
+
4784
+ [[package]]
4785
+ name = "zstd-sys"
4786
+ version = "2.0.13+zstd.1.5.6"
4787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4788
+ checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
4789
+ dependencies = [
4790
+ "cc",
4791
+ "pkg-config",
4792
+ ]