zorilla 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (268) hide show
  1. zorilla-0.1.2/Cargo.lock +1007 -0
  2. zorilla-0.1.2/Cargo.toml +63 -0
  3. zorilla-0.1.2/LICENSE +21 -0
  4. zorilla-0.1.2/PKG-INFO +321 -0
  5. zorilla-0.1.2/README.md +293 -0
  6. zorilla-0.1.2/crates/zorilla-cli/Cargo.toml +27 -0
  7. zorilla-0.1.2/crates/zorilla-cli/src/main.rs +357 -0
  8. zorilla-0.1.2/crates/zorilla-cli/tests/cli_smoke.rs +821 -0
  9. zorilla-0.1.2/crates/zorilla-core/Cargo.toml +27 -0
  10. zorilla-0.1.2/crates/zorilla-core/src/ast.rs +1191 -0
  11. zorilla-0.1.2/crates/zorilla-core/src/changed_lines.rs +470 -0
  12. zorilla-0.1.2/crates/zorilla-core/src/config.rs +643 -0
  13. zorilla-0.1.2/crates/zorilla-core/src/discovery.rs +188 -0
  14. zorilla-0.1.2/crates/zorilla-core/src/lib.rs +326 -0
  15. zorilla-0.1.2/crates/zorilla-core/src/overview.rs +537 -0
  16. zorilla-0.1.2/crates/zorilla-core/src/parse.rs +59 -0
  17. zorilla-0.1.2/crates/zorilla-core/src/report.rs +677 -0
  18. zorilla-0.1.2/crates/zorilla-core/src/rules/mod.rs +90 -0
  19. zorilla-0.1.2/crates/zorilla-core/src/rules/registry.rs +67 -0
  20. zorilla-0.1.2/crates/zorilla-core/src/rules/zr001_conditional.rs +1290 -0
  21. zorilla-0.1.2/crates/zorilla-core/src/rules/zr002_sleep.rs +274 -0
  22. zorilla-0.1.2/crates/zorilla-core/src/rules/zr003_no_assertion.rs +442 -0
  23. zorilla-0.1.2/crates/zorilla-core/src/rules/zr004_assertion_roulette.rs +384 -0
  24. zorilla-0.1.2/crates/zorilla-core/src/rules/zr005_mystery_guest.rs +1541 -0
  25. zorilla-0.1.2/crates/zorilla-core/src/rules/zr006_patch_stack.rs +356 -0
  26. zorilla-0.1.2/crates/zorilla-core/src/rules/zr007_empty_test.rs +510 -0
  27. zorilla-0.1.2/crates/zorilla-core/src/rules/zr008_context_patch_stack.rs +472 -0
  28. zorilla-0.1.2/crates/zorilla-core/src/stats.rs +309 -0
  29. zorilla-0.1.2/crates/zorilla-core/src/suppress.rs +518 -0
  30. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/sarif/test_positive.py +6 -0
  31. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/sarif/test_positive.sarif.json +88 -0
  32. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_biston_textbook_reproducer.py +6 -0
  33. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_biston_textbook_reproducer.py.expected.json +1 -0
  34. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_class_decorated_pytest_mark_skip.py +5 -0
  35. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_class_decorated_pytest_mark_skip.py.expected.json +1 -0
  36. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_conditional_outside_test.py +12 -0
  37. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_conditional_outside_test.py.expected.json +1 -0
  38. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_cleanup_loop_in_assertless_test.py +15 -0
  39. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_cleanup_loop_in_assertless_test.py.expected.json +1 -0
  40. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_loop_assign_then_assert.py +7 -0
  41. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_loop_assign_then_assert.py.expected.json +1 -0
  42. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_loop_only_asserts.py +3 -0
  43. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_loop_only_asserts.py.expected.json +1 -0
  44. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_loop_with_comment_between_assignment_and_assert.py +13 -0
  45. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_loop_with_comment_between_assignment_and_assert.py.expected.json +1 -0
  46. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_with_assertRaises_wrapper.py +15 -0
  47. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_with_assertRaises_wrapper.py.expected.json +1 -0
  48. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_with_intervening_assignment.py +21 -0
  49. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_with_intervening_assignment.py.expected.json +1 -0
  50. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_with_subtest_wrapper.py +17 -0
  51. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_with_subtest_wrapper.py.expected.json +1 -0
  52. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_with_unittest_method.py +13 -0
  53. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_for_with_unittest_method.py.expected.json +1 -0
  54. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_nested.py +7 -0
  55. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_nested.py.expected.json +1 -0
  56. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_nested_def_with_if.py +8 -0
  57. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_nested_def_with_if.py.expected.json +1 -0
  58. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_no_conditional.py +8 -0
  59. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_no_conditional.py.expected.json +1 -0
  60. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_pytest_mark_skip.py +4 -0
  61. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_pytest_mark_skip.py.expected.json +1 -0
  62. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_pytest_mark_skip_with_reason.py +4 -0
  63. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_pytest_mark_skip_with_reason.py.expected.json +1 -0
  64. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_pytest_mark_xfail.py +5 -0
  65. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_pytest_mark_xfail.py.expected.json +1 -0
  66. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_try_finally.py +5 -0
  67. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_negative_try_finally.py.expected.json +1 -0
  68. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_for.py +5 -0
  69. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_for.py.expected.json +3 -0
  70. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_for_with_branching_inside_with.py +10 -0
  71. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_for_with_branching_inside_with.py.expected.json +3 -0
  72. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_for_with_branching_logic.py +5 -0
  73. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_for_with_branching_logic.py.expected.json +3 -0
  74. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_if.py +6 -0
  75. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_if.py.expected.json +3 -0
  76. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_match_statement.py +6 -0
  77. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_match_statement.py.expected.json +3 -0
  78. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_pytest_mark_skipif.py +4 -0
  79. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_pytest_mark_skipif.py.expected.json +3 -0
  80. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_try.py +6 -0
  81. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_try.py.expected.json +3 -0
  82. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_try_except.py +5 -0
  83. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_try_except.py.expected.json +3 -0
  84. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_while.py +5 -0
  85. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_positive_while.py.expected.json +3 -0
  86. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_suppression_placeholder.py +4 -0
  87. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr001/test_suppression_placeholder.py.expected.json +3 -0
  88. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr002/test_negative_no_sleep.py +6 -0
  89. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr002/test_negative_no_sleep.py.expected.json +1 -0
  90. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr002/test_negative_sleep_outside_test.py +9 -0
  91. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr002/test_negative_sleep_outside_test.py.expected.json +1 -0
  92. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr002/test_positive_asyncio_sleep.py +6 -0
  93. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr002/test_positive_asyncio_sleep.py.expected.json +3 -0
  94. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr002/test_positive_bare_sleep.py +6 -0
  95. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr002/test_positive_bare_sleep.py.expected.json +3 -0
  96. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr002/test_positive_multiple_sleeps.py +8 -0
  97. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr002/test_positive_multiple_sleeps.py.expected.json +4 -0
  98. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr002/test_positive_time_sleep.py +7 -0
  99. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr002/test_positive_time_sleep.py.expected.json +3 -0
  100. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_bare_assert.py +3 -0
  101. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_bare_assert.py.expected.json +1 -0
  102. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_class_decorated_pytest_mark_skip.py +4 -0
  103. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_class_decorated_pytest_mark_skip.py.expected.json +1 -0
  104. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_private_underscore_assert_helper.py +2 -0
  105. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_private_underscore_assert_helper.py.expected.json +1 -0
  106. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_pytest_mark_skip.py +3 -0
  107. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_pytest_mark_skip.py.expected.json +1 -0
  108. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_pytest_mark_skip_with_reason.py +3 -0
  109. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_pytest_mark_skip_with_reason.py.expected.json +1 -0
  110. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_pytest_mark_xfail.py +3 -0
  111. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_pytest_mark_xfail.py.expected.json +1 -0
  112. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_pytest_raises.py +11 -0
  113. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_pytest_raises.py.expected.json +1 -0
  114. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_underscore_assert_helper.py +2 -0
  115. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_underscore_assert_helper.py.expected.json +1 -0
  116. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_unittest_helper.py +9 -0
  117. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_negative_unittest_helper.py.expected.json +1 -0
  118. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_positive_call_chain_only.py +4 -0
  119. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_positive_call_chain_only.py.expected.json +3 -0
  120. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_positive_call_named_assertion_does_not_count.py +2 -0
  121. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_positive_call_named_assertion_does_not_count.py.expected.json +3 -0
  122. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_positive_method_on_class.py +4 -0
  123. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_positive_method_on_class.py.expected.json +3 -0
  124. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_positive_multiple_tests.py +10 -0
  125. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_positive_multiple_tests.py.expected.json +4 -0
  126. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_positive_no_assertion.py +3 -0
  127. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_positive_no_assertion.py.expected.json +3 -0
  128. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_positive_pytest_mark_skipif.py +3 -0
  129. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr003/test_positive_pytest_mark_skipif.py.expected.json +3 -0
  130. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_negative_class_decorated_pytest_mark_skip.py +8 -0
  131. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_negative_class_decorated_pytest_mark_skip.py.expected.json +1 -0
  132. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_negative_four_bare_asserts.py +5 -0
  133. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_negative_four_bare_asserts.py.expected.json +1 -0
  134. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_negative_message_asserts.py +7 -0
  135. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_negative_message_asserts.py.expected.json +1 -0
  136. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_negative_pytest_mark_skip.py +7 -0
  137. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_negative_pytest_mark_skip.py.expected.json +1 -0
  138. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_negative_pytest_mark_skip_with_reason.py +7 -0
  139. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_negative_pytest_mark_skip_with_reason.py.expected.json +1 -0
  140. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_negative_pytest_mark_xfail.py +7 -0
  141. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_negative_pytest_mark_xfail.py.expected.json +1 -0
  142. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_positive_five_bare_asserts.py +7 -0
  143. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_positive_five_bare_asserts.py.expected.json +3 -0
  144. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_positive_many_asserts.py +8 -0
  145. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_positive_many_asserts.py.expected.json +3 -0
  146. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_positive_method_on_class.py +8 -0
  147. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_positive_method_on_class.py.expected.json +3 -0
  148. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_positive_pytest_mark_skipif.py +7 -0
  149. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr004/test_positive_pytest_mark_skipif.py.expected.json +3 -0
  150. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_app_request.py +3 -0
  151. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_app_request.py.expected.json +1 -0
  152. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_assert_message.py +2 -0
  153. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_assert_message.py.expected.json +1 -0
  154. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_attribute_assignment_rhs.py +9 -0
  155. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_attribute_assignment_rhs.py.expected.json +1 -0
  156. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_authenticated_client_get.py +3 -0
  157. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_authenticated_client_get.py.expected.json +1 -0
  158. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_ftp_url.py +4 -0
  159. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_ftp_url.py.expected.json +1 -0
  160. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_header_assertion_in.py +7 -0
  161. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_header_assertion_in.py.expected.json +1 -0
  162. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_membership_assert_response_text.py +8 -0
  163. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_membership_assert_response_text.py.expected.json +1 -0
  164. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_mock_return_value.py +7 -0
  165. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_mock_return_value.py.expected.json +1 -0
  166. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_mock_side_effect.py +5 -0
  167. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_mock_side_effect.py.expected.json +1 -0
  168. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_pytest_fixture_url_data.py +23 -0
  169. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_pytest_fixture_url_data.py.expected.json +1 -0
  170. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_relative_path.py +3 -0
  171. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_relative_path.py.expected.json +1 -0
  172. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_self_async_client_post.py +4 -0
  173. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_self_async_client_post.py.expected.json +1 -0
  174. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_sql_comment.py +6 -0
  175. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_sql_comment.py.expected.json +1 -0
  176. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_suffix_match_admin_client.py +3 -0
  177. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_suffix_match_admin_client.py.expected.json +1 -0
  178. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_test_client_get_url.py +3 -0
  179. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_negative_test_client_get_url.py.expected.json +1 -0
  180. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_absolute_unix_path.py +3 -0
  181. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_absolute_unix_path.py.expected.json +3 -0
  182. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_home_path.py +3 -0
  183. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_home_path.py.expected.json +3 -0
  184. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_kwarg_url_still_fires.py +3 -0
  185. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_kwarg_url_still_fires.py.expected.json +3 -0
  186. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_multi_literals.py +4 -0
  187. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_multi_literals.py.expected.json +4 -0
  188. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_pytest_fixture_function_call.py +19 -0
  189. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_pytest_fixture_function_call.py.expected.json +1 -0
  190. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_receiver_not_in_heuristic.py +3 -0
  191. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_receiver_not_in_heuristic.py.expected.json +3 -0
  192. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_url.py +3 -0
  193. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_url.py.expected.json +3 -0
  194. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_windows_path.py +3 -0
  195. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr005/test_positive_windows_path.py.expected.json +3 -0
  196. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr006/test_negative_below_threshold.py +8 -0
  197. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr006/test_negative_below_threshold.py.expected.json +1 -0
  198. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr006/test_negative_helper_function.py +13 -0
  199. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr006/test_negative_helper_function.py.expected.json +1 -0
  200. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr006/test_positive_mixed_with_pytest_mark.py +11 -0
  201. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr006/test_positive_mixed_with_pytest_mark.py.expected.json +3 -0
  202. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr006/test_positive_mock_patch_variant.py +9 -0
  203. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr006/test_positive_mock_patch_variant.py.expected.json +3 -0
  204. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr006/test_positive_patch_variant.py +9 -0
  205. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr006/test_positive_patch_variant.py.expected.json +3 -0
  206. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr006/test_positive_unittest_mock_patch_variant.py +9 -0
  207. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr006/test_positive_unittest_mock_patch_variant.py.expected.json +3 -0
  208. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_class_decorated_pytest_mark_skip.py +4 -0
  209. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_class_decorated_pytest_mark_skip.py.expected.json +1 -0
  210. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_class_decorated_pytest_mark_xfail.py +4 -0
  211. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_class_decorated_pytest_mark_xfail.py.expected.json +1 -0
  212. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_docstring_plus_body.py +4 -0
  213. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_docstring_plus_body.py.expected.json +1 -0
  214. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_empty_helper.py +6 -0
  215. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_empty_helper.py.expected.json +1 -0
  216. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_pytest_mark_skip.py +3 -0
  217. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_pytest_mark_skip.py.expected.json +1 -0
  218. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_pytest_mark_skip_with_reason.py +3 -0
  219. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_pytest_mark_skip_with_reason.py.expected.json +1 -0
  220. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_pytest_mark_xfail.py +3 -0
  221. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_pytest_mark_xfail.py.expected.json +1 -0
  222. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_pytest_mark_xfail_strict.py +3 -0
  223. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_pytest_mark_xfail_strict.py.expected.json +1 -0
  224. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_real_assertion.py +2 -0
  225. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_negative_real_assertion.py.expected.json +1 -0
  226. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_class_decorated_pytest_mark_skipif.py +4 -0
  227. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_class_decorated_pytest_mark_skipif.py.expected.json +3 -0
  228. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_docstring.py +2 -0
  229. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_docstring.py.expected.json +3 -0
  230. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_ellipsis.py +2 -0
  231. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_ellipsis.py.expected.json +3 -0
  232. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_method_on_class.py +6 -0
  233. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_method_on_class.py.expected.json +3 -0
  234. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_pass.py +2 -0
  235. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_pass.py.expected.json +3 -0
  236. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_pytest_mark_skipif.py +3 -0
  237. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_pytest_mark_skipif.py.expected.json +3 -0
  238. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_user_skip_decorator.py +3 -0
  239. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr007/test_positive_user_skip_decorator.py.expected.json +3 -0
  240. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_negative_patch_object_not_counted.py +16 -0
  241. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_negative_patch_object_not_counted.py.expected.json +1 -0
  242. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_negative_three_with_patch.py +6 -0
  243. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_negative_three_with_patch.py.expected.json +1 -0
  244. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_negative_with_open_not_patch.py +6 -0
  245. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_negative_with_open_not_patch.py.expected.json +1 -0
  246. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_negative_with_patch_in_nested_def.py +14 -0
  247. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_negative_with_patch_in_nested_def.py.expected.json +1 -0
  248. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_positive_four_sequential_with_patch.py +9 -0
  249. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_positive_four_sequential_with_patch.py.expected.json +3 -0
  250. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_positive_mock_patch_variant.py +6 -0
  251. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_positive_mock_patch_variant.py.expected.json +3 -0
  252. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_positive_single_with_four_patches.py +6 -0
  253. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr008/test_positive_single_with_four_patches.py.expected.json +3 -0
  254. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr_suppress/test_ignore_all.py +8 -0
  255. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr_suppress/test_ignore_all.py.expected.json +3 -0
  256. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr_suppress/test_ignore_file.py +8 -0
  257. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr_suppress/test_ignore_file.py.expected.json +1 -0
  258. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr_suppress/test_ignore_file_specific_code.py +10 -0
  259. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr_suppress/test_ignore_file_specific_code.py.expected.json +4 -0
  260. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr_suppress/test_ignore_specific.py +8 -0
  261. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr_suppress/test_ignore_specific.py.expected.json +3 -0
  262. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr_suppress/test_ignore_wrong_code.py +3 -0
  263. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr_suppress/test_ignore_wrong_code.py.expected.json +3 -0
  264. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr_suppress/test_no_suppress.py +3 -0
  265. zorilla-0.1.2/crates/zorilla-core/tests/fixtures/zr_suppress/test_no_suppress.py.expected.json +3 -0
  266. zorilla-0.1.2/crates/zorilla-core/tests/fixtures.rs +213 -0
  267. zorilla-0.1.2/crates/zorilla-core/tests/sarif.rs +95 -0
  268. zorilla-0.1.2/pyproject.toml +45 -0
@@ -0,0 +1,1007 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anstream"
16
+ version = "1.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "1.0.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+ dependencies = [
50
+ "windows-sys",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.11"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anyhow"
66
+ version = "1.0.102"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
69
+
70
+ [[package]]
71
+ name = "assert_cmd"
72
+ version = "2.2.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "9a686bbee5efb88a82df0621b236e74d925f470e5445d3220a5648b892ec99c9"
75
+ dependencies = [
76
+ "anstyle",
77
+ "bstr",
78
+ "libc",
79
+ "predicates",
80
+ "predicates-core",
81
+ "predicates-tree",
82
+ "wait-timeout",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "autocfg"
87
+ version = "1.5.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
90
+
91
+ [[package]]
92
+ name = "bitflags"
93
+ version = "2.11.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
96
+
97
+ [[package]]
98
+ name = "bstr"
99
+ version = "1.12.1"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
102
+ dependencies = [
103
+ "memchr",
104
+ "regex-automata",
105
+ "serde",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "cc"
110
+ version = "1.2.60"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
113
+ dependencies = [
114
+ "find-msvc-tools",
115
+ "shlex",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "cfg-if"
120
+ version = "1.0.4"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
123
+
124
+ [[package]]
125
+ name = "clap"
126
+ version = "4.6.1"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
129
+ dependencies = [
130
+ "clap_builder",
131
+ "clap_derive",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "clap_builder"
136
+ version = "4.6.0"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
139
+ dependencies = [
140
+ "anstream",
141
+ "anstyle",
142
+ "clap_lex",
143
+ "strsim",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "clap_derive"
148
+ version = "4.6.1"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
151
+ dependencies = [
152
+ "heck",
153
+ "proc-macro2",
154
+ "quote",
155
+ "syn",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "clap_lex"
160
+ version = "1.1.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
163
+
164
+ [[package]]
165
+ name = "colorchoice"
166
+ version = "1.0.5"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
169
+
170
+ [[package]]
171
+ name = "console"
172
+ version = "0.16.3"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
175
+ dependencies = [
176
+ "encode_unicode",
177
+ "libc",
178
+ "windows-sys",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "crossbeam-deque"
183
+ version = "0.8.6"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
186
+ dependencies = [
187
+ "crossbeam-epoch",
188
+ "crossbeam-utils",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "crossbeam-epoch"
193
+ version = "0.9.18"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
196
+ dependencies = [
197
+ "crossbeam-utils",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "crossbeam-utils"
202
+ version = "0.8.21"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
205
+
206
+ [[package]]
207
+ name = "difflib"
208
+ version = "0.4.0"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
211
+
212
+ [[package]]
213
+ name = "either"
214
+ version = "1.15.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
217
+
218
+ [[package]]
219
+ name = "encode_unicode"
220
+ version = "1.0.0"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
223
+
224
+ [[package]]
225
+ name = "equivalent"
226
+ version = "1.0.2"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
229
+
230
+ [[package]]
231
+ name = "errno"
232
+ version = "0.3.14"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
235
+ dependencies = [
236
+ "libc",
237
+ "windows-sys",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "fastrand"
242
+ version = "2.4.1"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
245
+
246
+ [[package]]
247
+ name = "find-msvc-tools"
248
+ version = "0.1.9"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
251
+
252
+ [[package]]
253
+ name = "float-cmp"
254
+ version = "0.10.0"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
257
+ dependencies = [
258
+ "num-traits",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "foldhash"
263
+ version = "0.1.5"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
266
+
267
+ [[package]]
268
+ name = "getrandom"
269
+ version = "0.4.2"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
272
+ dependencies = [
273
+ "cfg-if",
274
+ "libc",
275
+ "r-efi",
276
+ "wasip2",
277
+ "wasip3",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "globset"
282
+ version = "0.4.18"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
285
+ dependencies = [
286
+ "aho-corasick",
287
+ "bstr",
288
+ "log",
289
+ "regex-automata",
290
+ "regex-syntax",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "hashbrown"
295
+ version = "0.15.5"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
298
+ dependencies = [
299
+ "foldhash",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "hashbrown"
304
+ version = "0.17.0"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
307
+
308
+ [[package]]
309
+ name = "heck"
310
+ version = "0.5.0"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
313
+
314
+ [[package]]
315
+ name = "id-arena"
316
+ version = "2.3.0"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
319
+
320
+ [[package]]
321
+ name = "ignore"
322
+ version = "0.4.25"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
325
+ dependencies = [
326
+ "crossbeam-deque",
327
+ "globset",
328
+ "log",
329
+ "memchr",
330
+ "regex-automata",
331
+ "same-file",
332
+ "walkdir",
333
+ "winapi-util",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "indexmap"
338
+ version = "2.14.0"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
341
+ dependencies = [
342
+ "equivalent",
343
+ "hashbrown 0.17.0",
344
+ "serde",
345
+ "serde_core",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "insta"
350
+ version = "1.47.2"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
353
+ dependencies = [
354
+ "console",
355
+ "once_cell",
356
+ "similar",
357
+ "tempfile",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "is_terminal_polyfill"
362
+ version = "1.70.2"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
365
+
366
+ [[package]]
367
+ name = "itoa"
368
+ version = "1.0.18"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
371
+
372
+ [[package]]
373
+ name = "leb128fmt"
374
+ version = "0.1.0"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
377
+
378
+ [[package]]
379
+ name = "libc"
380
+ version = "0.2.185"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
383
+
384
+ [[package]]
385
+ name = "linux-raw-sys"
386
+ version = "0.12.1"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
389
+
390
+ [[package]]
391
+ name = "log"
392
+ version = "0.4.29"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
395
+
396
+ [[package]]
397
+ name = "memchr"
398
+ version = "2.8.0"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
401
+
402
+ [[package]]
403
+ name = "normalize-line-endings"
404
+ version = "0.3.0"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
407
+
408
+ [[package]]
409
+ name = "num-traits"
410
+ version = "0.2.19"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
413
+ dependencies = [
414
+ "autocfg",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "once_cell"
419
+ version = "1.21.4"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
422
+
423
+ [[package]]
424
+ name = "once_cell_polyfill"
425
+ version = "1.70.2"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
428
+
429
+ [[package]]
430
+ name = "predicates"
431
+ version = "3.1.4"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
434
+ dependencies = [
435
+ "anstyle",
436
+ "difflib",
437
+ "float-cmp",
438
+ "normalize-line-endings",
439
+ "predicates-core",
440
+ "regex",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "predicates-core"
445
+ version = "1.0.10"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
448
+
449
+ [[package]]
450
+ name = "predicates-tree"
451
+ version = "1.0.13"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
454
+ dependencies = [
455
+ "predicates-core",
456
+ "termtree",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "prettyplease"
461
+ version = "0.2.37"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
464
+ dependencies = [
465
+ "proc-macro2",
466
+ "syn",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "proc-macro2"
471
+ version = "1.0.106"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
474
+ dependencies = [
475
+ "unicode-ident",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "quote"
480
+ version = "1.0.45"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
483
+ dependencies = [
484
+ "proc-macro2",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "r-efi"
489
+ version = "6.0.0"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
492
+
493
+ [[package]]
494
+ name = "rayon"
495
+ version = "1.12.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
498
+ dependencies = [
499
+ "either",
500
+ "rayon-core",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "rayon-core"
505
+ version = "1.13.0"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
508
+ dependencies = [
509
+ "crossbeam-deque",
510
+ "crossbeam-utils",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "regex"
515
+ version = "1.12.3"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
518
+ dependencies = [
519
+ "aho-corasick",
520
+ "memchr",
521
+ "regex-automata",
522
+ "regex-syntax",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "regex-automata"
527
+ version = "0.4.14"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
530
+ dependencies = [
531
+ "aho-corasick",
532
+ "memchr",
533
+ "regex-syntax",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "regex-syntax"
538
+ version = "0.8.10"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
541
+
542
+ [[package]]
543
+ name = "rustix"
544
+ version = "1.1.4"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
547
+ dependencies = [
548
+ "bitflags",
549
+ "errno",
550
+ "libc",
551
+ "linux-raw-sys",
552
+ "windows-sys",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "same-file"
557
+ version = "1.0.6"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
560
+ dependencies = [
561
+ "winapi-util",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "semver"
566
+ version = "1.0.28"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
569
+
570
+ [[package]]
571
+ name = "serde"
572
+ version = "1.0.228"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
575
+ dependencies = [
576
+ "serde_core",
577
+ "serde_derive",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "serde_core"
582
+ version = "1.0.228"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
585
+ dependencies = [
586
+ "serde_derive",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "serde_derive"
591
+ version = "1.0.228"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
594
+ dependencies = [
595
+ "proc-macro2",
596
+ "quote",
597
+ "syn",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "serde_json"
602
+ version = "1.0.149"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
605
+ dependencies = [
606
+ "indexmap",
607
+ "itoa",
608
+ "memchr",
609
+ "serde",
610
+ "serde_core",
611
+ "zmij",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "serde_spanned"
616
+ version = "1.1.1"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
619
+ dependencies = [
620
+ "serde_core",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "shlex"
625
+ version = "1.3.0"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
628
+
629
+ [[package]]
630
+ name = "similar"
631
+ version = "2.7.0"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
634
+
635
+ [[package]]
636
+ name = "streaming-iterator"
637
+ version = "0.1.9"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
640
+
641
+ [[package]]
642
+ name = "strsim"
643
+ version = "0.11.1"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
646
+
647
+ [[package]]
648
+ name = "syn"
649
+ version = "2.0.117"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
652
+ dependencies = [
653
+ "proc-macro2",
654
+ "quote",
655
+ "unicode-ident",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "tempfile"
660
+ version = "3.27.0"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
663
+ dependencies = [
664
+ "fastrand",
665
+ "getrandom",
666
+ "once_cell",
667
+ "rustix",
668
+ "windows-sys",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "termtree"
673
+ version = "0.5.1"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
676
+
677
+ [[package]]
678
+ name = "thiserror"
679
+ version = "2.0.18"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
682
+ dependencies = [
683
+ "thiserror-impl",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "thiserror-impl"
688
+ version = "2.0.18"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
691
+ dependencies = [
692
+ "proc-macro2",
693
+ "quote",
694
+ "syn",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "toml"
699
+ version = "1.1.2+spec-1.1.0"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
702
+ dependencies = [
703
+ "indexmap",
704
+ "serde_core",
705
+ "serde_spanned",
706
+ "toml_datetime",
707
+ "toml_parser",
708
+ "toml_writer",
709
+ "winnow",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "toml_datetime"
714
+ version = "1.1.1+spec-1.1.0"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
717
+ dependencies = [
718
+ "serde_core",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "toml_parser"
723
+ version = "1.1.2+spec-1.1.0"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
726
+ dependencies = [
727
+ "winnow",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "toml_writer"
732
+ version = "1.1.1+spec-1.1.0"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
735
+
736
+ [[package]]
737
+ name = "tree-sitter"
738
+ version = "0.26.8"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "887bd495d0582c5e3e0d8ece2233666169fa56a9644d172fc22ad179ab2d0538"
741
+ dependencies = [
742
+ "cc",
743
+ "regex",
744
+ "regex-syntax",
745
+ "serde_json",
746
+ "streaming-iterator",
747
+ "tree-sitter-language",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "tree-sitter-language"
752
+ version = "0.1.7"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "009994f150cc0cd50ff54917d5bc8bffe8cad10ca10d81c34da2ec421ae61782"
755
+
756
+ [[package]]
757
+ name = "tree-sitter-python"
758
+ version = "0.25.0"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "6bf85fd39652e740bf60f46f4cda9492c3a9ad75880575bf14960f775cb74a1c"
761
+ dependencies = [
762
+ "cc",
763
+ "tree-sitter-language",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "unicode-ident"
768
+ version = "1.0.24"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
771
+
772
+ [[package]]
773
+ name = "unicode-xid"
774
+ version = "0.2.6"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
777
+
778
+ [[package]]
779
+ name = "utf8parse"
780
+ version = "0.2.2"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
783
+
784
+ [[package]]
785
+ name = "wait-timeout"
786
+ version = "0.2.1"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
789
+ dependencies = [
790
+ "libc",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "walkdir"
795
+ version = "2.5.0"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
798
+ dependencies = [
799
+ "same-file",
800
+ "winapi-util",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "wasip2"
805
+ version = "1.0.2+wasi-0.2.9"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
808
+ dependencies = [
809
+ "wit-bindgen",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "wasip3"
814
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
817
+ dependencies = [
818
+ "wit-bindgen",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "wasm-encoder"
823
+ version = "0.244.0"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
826
+ dependencies = [
827
+ "leb128fmt",
828
+ "wasmparser",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "wasm-metadata"
833
+ version = "0.244.0"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
836
+ dependencies = [
837
+ "anyhow",
838
+ "indexmap",
839
+ "wasm-encoder",
840
+ "wasmparser",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "wasmparser"
845
+ version = "0.244.0"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
848
+ dependencies = [
849
+ "bitflags",
850
+ "hashbrown 0.15.5",
851
+ "indexmap",
852
+ "semver",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "winapi-util"
857
+ version = "0.1.11"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
860
+ dependencies = [
861
+ "windows-sys",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "windows-link"
866
+ version = "0.2.1"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
869
+
870
+ [[package]]
871
+ name = "windows-sys"
872
+ version = "0.61.2"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
875
+ dependencies = [
876
+ "windows-link",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "winnow"
881
+ version = "1.0.1"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
884
+
885
+ [[package]]
886
+ name = "wit-bindgen"
887
+ version = "0.51.0"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
890
+ dependencies = [
891
+ "wit-bindgen-rust-macro",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "wit-bindgen-core"
896
+ version = "0.51.0"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
899
+ dependencies = [
900
+ "anyhow",
901
+ "heck",
902
+ "wit-parser",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "wit-bindgen-rust"
907
+ version = "0.51.0"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
910
+ dependencies = [
911
+ "anyhow",
912
+ "heck",
913
+ "indexmap",
914
+ "prettyplease",
915
+ "syn",
916
+ "wasm-metadata",
917
+ "wit-bindgen-core",
918
+ "wit-component",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "wit-bindgen-rust-macro"
923
+ version = "0.51.0"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
926
+ dependencies = [
927
+ "anyhow",
928
+ "prettyplease",
929
+ "proc-macro2",
930
+ "quote",
931
+ "syn",
932
+ "wit-bindgen-core",
933
+ "wit-bindgen-rust",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "wit-component"
938
+ version = "0.244.0"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
941
+ dependencies = [
942
+ "anyhow",
943
+ "bitflags",
944
+ "indexmap",
945
+ "log",
946
+ "serde",
947
+ "serde_derive",
948
+ "serde_json",
949
+ "wasm-encoder",
950
+ "wasm-metadata",
951
+ "wasmparser",
952
+ "wit-parser",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "wit-parser"
957
+ version = "0.244.0"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
960
+ dependencies = [
961
+ "anyhow",
962
+ "id-arena",
963
+ "indexmap",
964
+ "log",
965
+ "semver",
966
+ "serde",
967
+ "serde_derive",
968
+ "serde_json",
969
+ "unicode-xid",
970
+ "wasmparser",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "zmij"
975
+ version = "1.0.21"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
978
+
979
+ [[package]]
980
+ name = "zorilla-cli"
981
+ version = "0.1.2"
982
+ dependencies = [
983
+ "anyhow",
984
+ "assert_cmd",
985
+ "clap",
986
+ "predicates",
987
+ "serde_json",
988
+ "tempfile",
989
+ "zorilla-core",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "zorilla-core"
994
+ version = "0.1.2"
995
+ dependencies = [
996
+ "globset",
997
+ "ignore",
998
+ "insta",
999
+ "rayon",
1000
+ "serde",
1001
+ "serde_json",
1002
+ "tempfile",
1003
+ "thiserror",
1004
+ "toml",
1005
+ "tree-sitter",
1006
+ "tree-sitter-python",
1007
+ ]