pyscythe 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (252) hide show
  1. pyscythe-0.1.0/Cargo.lock +2819 -0
  2. pyscythe-0.1.0/Cargo.toml +91 -0
  3. pyscythe-0.1.0/PKG-INFO +154 -0
  4. pyscythe-0.1.0/README.md +135 -0
  5. pyscythe-0.1.0/crates/pyscythe_cli/Cargo.toml +34 -0
  6. pyscythe-0.1.0/crates/pyscythe_cli/src/git.rs +72 -0
  7. pyscythe-0.1.0/crates/pyscythe_cli/src/main.rs +588 -0
  8. pyscythe-0.1.0/crates/pyscythe_cli/src/render.rs +227 -0
  9. pyscythe-0.1.0/crates/pyscythe_cli/src/sarif.rs +82 -0
  10. pyscythe-0.1.0/crates/pyscythe_cli/tests/boundaries.rs +89 -0
  11. pyscythe-0.1.0/crates/pyscythe_cli/tests/ci.rs +289 -0
  12. pyscythe-0.1.0/crates/pyscythe_cli/tests/cycles.rs +86 -0
  13. pyscythe-0.1.0/crates/pyscythe_cli/tests/dead_code.rs +509 -0
  14. pyscythe-0.1.0/crates/pyscythe_cli/tests/deps.rs +208 -0
  15. pyscythe-0.1.0/crates/pyscythe_cli/tests/dupes.rs +72 -0
  16. pyscythe-0.1.0/crates/pyscythe_cli/tests/fix.rs +152 -0
  17. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/aliased_import/pkg/__init__.py +0 -0
  18. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/aliased_import/pkg/__main__.py +1 -0
  19. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/aliased_import/pkg/a.py +9 -0
  20. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/aliased_import/pkg/b.py +5 -0
  21. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/aliased_import/pyproject.toml +4 -0
  22. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/all_used/pkg/__init__.py +0 -0
  23. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/all_used/pkg/__main__.py +3 -0
  24. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/all_used/pkg/core.py +2 -0
  25. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/all_used/pyproject.toml +4 -0
  26. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/boundaries/app/__init__.py +0 -0
  27. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/boundaries/app/__main__.py +3 -0
  28. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/boundaries/app/api/__init__.py +0 -0
  29. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/boundaries/app/api/routes.py +9 -0
  30. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/boundaries/app/domain/__init__.py +0 -0
  31. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/boundaries/app/domain/order.py +13 -0
  32. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/boundaries/app/services/__init__.py +0 -0
  33. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/boundaries/app/services/orders.py +6 -0
  34. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/boundaries/app/util.py +2 -0
  35. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/boundaries/pyproject.toml +11 -0
  36. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/configured/pkg/__init__.py +0 -0
  37. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/configured/pkg/__main__.py +2 -0
  38. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/configured/pkg/lib.py +10 -0
  39. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/configured/pkg/worker.py +2 -0
  40. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/configured/pyproject.toml +9 -0
  41. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/configured/scripts/oneoff.py +5 -0
  42. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/cycles/pkg/__init__.py +0 -0
  43. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/cycles/pkg/__main__.py +4 -0
  44. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/cycles/pkg/a.py +5 -0
  45. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/cycles/pkg/b.py +9 -0
  46. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/cycles/pkg/c.py +12 -0
  47. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/cycles/pkg/d.py +9 -0
  48. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/cycles/pyproject.toml +4 -0
  49. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/decorated/pkg/__init__.py +0 -0
  50. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/decorated/pkg/__main__.py +3 -0
  51. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/decorated/pkg/server.py +27 -0
  52. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/decorated/pyproject.toml +4 -0
  53. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/deps/pkg/__init__.py +0 -0
  54. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/deps/pkg/__main__.py +1 -0
  55. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/deps/pkg/app.py +5 -0
  56. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/deps/pyproject.toml +8 -0
  57. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/django_settings/config/__init__.py +0 -0
  58. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/django_settings/config/django/__init__.py +0 -0
  59. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/django_settings/config/django/base.py +6 -0
  60. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/django_settings/config/django/production.py +3 -0
  61. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/django_settings/config/settings/__init__.py +0 -0
  62. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/django_settings/config/settings/celery.py +5 -0
  63. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/django_settings/manage.py +8 -0
  64. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/django_settings/pyproject.toml +4 -0
  65. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/django_settings/shop/__init__.py +0 -0
  66. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/django_settings/shop/admin.py +11 -0
  67. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/django_settings/shop/managers.py +6 -0
  68. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/django_settings/shop/models.py +4 -0
  69. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/dupes/pkg/__init__.py +0 -0
  70. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/dupes/pkg/__main__.py +4 -0
  71. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/dupes/pkg/first.py +14 -0
  72. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/dupes/pkg/second.py +18 -0
  73. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/dupes/pyproject.toml +4 -0
  74. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/fix_imports/pkg/__init__.py +0 -0
  75. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/fix_imports/pkg/__main__.py +3 -0
  76. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/fix_imports/pkg/util.py +11 -0
  77. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/fix_imports/pyproject.toml +4 -0
  78. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/frameworks/pkg/__init__.py +0 -0
  79. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/frameworks/pkg/app.py +11 -0
  80. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/frameworks/pkg/cli.py +15 -0
  81. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/frameworks/pkg/routes.py +17 -0
  82. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/frameworks/pkg/tasks.py +6 -0
  83. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/frameworks/pyproject.toml +7 -0
  84. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/frameworks/tests/conftest.py +6 -0
  85. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/frameworks/tests/test_routes.py +10 -0
  86. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/health/pkg/__init__.py +0 -0
  87. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/health/pkg/__main__.py +3 -0
  88. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/health/pkg/tangled.py +26 -0
  89. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/health/pyproject.toml +4 -0
  90. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/library/docs/conf.py +1 -0
  91. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/library/lib/__init__.py +11 -0
  92. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/library/lib/core.py +10 -0
  93. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/library/lib/core.pyi +4 -0
  94. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/library/pyproject.toml +7 -0
  95. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/library/tests/test_core.py +17 -0
  96. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/lookalike/pkg/__init__.py +0 -0
  97. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/lookalike/pkg/__main__.py +1 -0
  98. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/lookalike/pkg/handlers.py +6 -0
  99. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/lookalike/pkg/local_router.py +9 -0
  100. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/lookalike/pyproject.toml +4 -0
  101. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/methods/pkg/__init__.py +0 -0
  102. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/methods/pkg/__main__.py +4 -0
  103. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/methods/pkg/app.py +10 -0
  104. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/methods/pkg/widget.py +58 -0
  105. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/methods/pyproject.toml +4 -0
  106. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/methods/tests/test_widget.py +12 -0
  107. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/monorepo/.venv/lib/python3.12/site-packages/six-1.16.0.dist-info/METADATA +3 -0
  108. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/monorepo/.venv/lib/python3.12/site-packages/six-1.16.0.dist-info/RECORD +2 -0
  109. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/monorepo/.venv/lib/python3.12/site-packages/six.py +1 -0
  110. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/monorepo/.venv/pyvenv.cfg +3 -0
  111. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/monorepo/backend/app/__init__.py +0 -0
  112. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/monorepo/backend/app/main.py +3 -0
  113. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/monorepo/backend/pyproject.toml +5 -0
  114. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/monorepo/pyproject.toml +4 -0
  115. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/monorepo/scripts/tool.py +3 -0
  116. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/notebook/pkg/__init__.py +0 -0
  117. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/notebook/pyproject.toml +4 -0
  118. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/notebook/scratch.ipynb +14 -0
  119. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/orm_models/pkg/__init__.py +0 -0
  120. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/orm_models/pkg/tables.py +20 -0
  121. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/orm_models/pyproject.toml +4 -0
  122. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/pytest_config/pyproject.toml +9 -0
  123. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/pytest_config/tests/__init__.py +0 -0
  124. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/pytest_config/tests/check_thing.py +11 -0
  125. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/pytest_config/tests/test_stale.py +2 -0
  126. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/reexport/pkg/__init__.py +3 -0
  127. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/reexport/pkg/__main__.py +3 -0
  128. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/reexport/pkg/impl.py +4 -0
  129. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/reexport/pyproject.toml +7 -0
  130. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/registry/pkg/__init__.py +0 -0
  131. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/registry/pkg/__main__.py +1 -0
  132. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/registry/pkg/plugins.py +14 -0
  133. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/registry/pyproject.toml +4 -0
  134. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/requirements_txt/.venv/lib/python3.12/site-packages/six-1.16.0.dist-info/METADATA +3 -0
  135. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/requirements_txt/.venv/lib/python3.12/site-packages/six-1.16.0.dist-info/RECORD +2 -0
  136. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/requirements_txt/.venv/lib/python3.12/site-packages/six.py +1 -0
  137. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/requirements_txt/.venv/pyvenv.cfg +3 -0
  138. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/requirements_txt/pkg/__init__.py +0 -0
  139. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/requirements_txt/pkg/__main__.py +1 -0
  140. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/requirements_txt/pkg/app.py +3 -0
  141. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/requirements_txt/requirements/base.txt +2 -0
  142. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/requirements_txt/requirements/local.txt +2 -0
  143. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/requirements_txt/requirements.txt +1 -0
  144. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/setup_py/.venv/lib/python3.12/site-packages/six-1.16.0.dist-info/METADATA +3 -0
  145. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/setup_py/.venv/lib/python3.12/site-packages/six-1.16.0.dist-info/RECORD +2 -0
  146. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/setup_py/.venv/lib/python3.12/site-packages/six.py +1 -0
  147. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/setup_py/.venv/pyvenv.cfg +3 -0
  148. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/setup_py/pkg/__init__.py +0 -0
  149. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/setup_py/pkg/__main__.py +1 -0
  150. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/setup_py/pkg/app.py +3 -0
  151. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/setup_py/setup.py +3 -0
  152. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/simple_unused/pkg/__init__.py +0 -0
  153. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/simple_unused/pkg/__main__.py +3 -0
  154. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/simple_unused/pkg/app.py +5 -0
  155. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/simple_unused/pkg/helpers.py +14 -0
  156. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/simple_unused/pyproject.toml +4 -0
  157. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_deps/.venv/lib/python3.12/site-packages/corsheaders/__init__.py +0 -0
  158. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_deps/.venv/lib/python3.12/site-packages/django_cors_headers-4.9.0.dist-info/METADATA +3 -0
  159. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_deps/.venv/lib/python3.12/site-packages/django_cors_headers-4.9.0.dist-info/RECORD +3 -0
  160. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_deps/.venv/lib/python3.12/site-packages/whitenoise/__init__.py +0 -0
  161. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_deps/.venv/lib/python3.12/site-packages/whitenoise/middleware.py +2 -0
  162. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_deps/.venv/pyvenv.cfg +3 -0
  163. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_deps/pkg/__init__.py +0 -0
  164. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_deps/pkg/__main__.py +1 -0
  165. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_deps/pkg/settings.py +2 -0
  166. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_deps/pyproject.toml +5 -0
  167. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_refs/pkg/__init__.py +0 -0
  168. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_refs/pkg/__main__.py +3 -0
  169. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_refs/pkg/config.py +2 -0
  170. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_refs/pkg/middleware.py +6 -0
  171. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_refs/pkg/tasks.py +2 -0
  172. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/string_refs/pyproject.toml +4 -0
  173. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/suppressed/pkg/__init__.py +0 -0
  174. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/suppressed/pkg/__main__.py +3 -0
  175. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/suppressed/pkg/legacy.py +5 -0
  176. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/suppressed/pkg/mod.py +20 -0
  177. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/suppressed/pyproject.toml +4 -0
  178. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/transitive_deps/.venv/lib/python3.12/site-packages/fastapi/__init__.py +0 -0
  179. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/transitive_deps/.venv/lib/python3.12/site-packages/fastapi-0.115.0.dist-info/METADATA +5 -0
  180. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/transitive_deps/.venv/lib/python3.12/site-packages/fastapi-0.115.0.dist-info/RECORD +2 -0
  181. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/transitive_deps/.venv/lib/python3.12/site-packages/starlette/__init__.py +0 -0
  182. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/transitive_deps/.venv/lib/python3.12/site-packages/starlette-0.46.0.dist-info/METADATA +3 -0
  183. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/transitive_deps/.venv/lib/python3.12/site-packages/starlette-0.46.0.dist-info/RECORD +2 -0
  184. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/transitive_deps/.venv/pyvenv.cfg +3 -0
  185. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/transitive_deps/pkg/__init__.py +0 -0
  186. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/transitive_deps/pkg/__main__.py +1 -0
  187. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/transitive_deps/pkg/main.py +4 -0
  188. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/transitive_deps/pyproject.toml +5 -0
  189. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/gunicorn.conf.py +1 -0
  190. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/hook-pkg.py +1 -0
  191. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/hooks/post_gen.py +1 -0
  192. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/migrations/env.py +5 -0
  193. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/migrations/versions/001_init.py +5 -0
  194. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/pkg/__init__.py +0 -0
  195. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/pkg/__main__.py +3 -0
  196. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/pkg/orphan.py +6 -0
  197. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/pkg/used.py +2 -0
  198. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/pyproject.toml +4 -0
  199. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/scripts/backfill.py +6 -0
  200. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/tests/__init__.py +0 -0
  201. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/tests/data/addon.py +2 -0
  202. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/tests/helpers.py +2 -0
  203. pyscythe-0.1.0/crates/pyscythe_cli/tests/fixtures/unused_file/tests/test_thing.py +5 -0
  204. pyscythe-0.1.0/crates/pyscythe_cli/tests/health.rs +67 -0
  205. pyscythe-0.1.0/crates/pyscythe_core/Cargo.toml +21 -0
  206. pyscythe-0.1.0/crates/pyscythe_core/src/baseline.rs +185 -0
  207. pyscythe-0.1.0/crates/pyscythe_core/src/boundaries.rs +486 -0
  208. pyscythe-0.1.0/crates/pyscythe_core/src/config.rs +497 -0
  209. pyscythe-0.1.0/crates/pyscythe_core/src/cycles.rs +450 -0
  210. pyscythe-0.1.0/crates/pyscythe_core/src/dead_code.rs +1253 -0
  211. pyscythe-0.1.0/crates/pyscythe_core/src/deps.rs +587 -0
  212. pyscythe-0.1.0/crates/pyscythe_core/src/dupes.rs +490 -0
  213. pyscythe-0.1.0/crates/pyscythe_core/src/edit.rs +45 -0
  214. pyscythe-0.1.0/crates/pyscythe_core/src/finding.rs +282 -0
  215. pyscythe-0.1.0/crates/pyscythe_core/src/fix.rs +318 -0
  216. pyscythe-0.1.0/crates/pyscythe_core/src/graph.rs +103 -0
  217. pyscythe-0.1.0/crates/pyscythe_core/src/health.rs +363 -0
  218. pyscythe-0.1.0/crates/pyscythe_core/src/index.rs +316 -0
  219. pyscythe-0.1.0/crates/pyscythe_core/src/keep.rs +216 -0
  220. pyscythe-0.1.0/crates/pyscythe_core/src/lib.rs +30 -0
  221. pyscythe-0.1.0/crates/pyscythe_core/src/manifest.rs +156 -0
  222. pyscythe-0.1.0/crates/pyscythe_core/src/metrics.rs +36 -0
  223. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/airflow.rs +93 -0
  224. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/alembic.rs +88 -0
  225. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/celery.rs +84 -0
  226. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/click.rs +67 -0
  227. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/django.rs +339 -0
  228. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/entry_points.rs +60 -0
  229. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/fastapi.rs +102 -0
  230. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/flask.rs +111 -0
  231. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/mod.rs +274 -0
  232. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/pydantic.rs +48 -0
  233. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/pytest.rs +266 -0
  234. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/python.rs +164 -0
  235. pyscythe-0.1.0/crates/pyscythe_core/src/plugins/sqlalchemy.rs +140 -0
  236. pyscythe-0.1.0/crates/pyscythe_core/src/report.rs +216 -0
  237. pyscythe-0.1.0/crates/pyscythe_core/src/source.rs +185 -0
  238. pyscythe-0.1.0/crates/pyscythe_core/src/symbol.rs +285 -0
  239. pyscythe-0.1.0/crates/pyscythe_core/src/testing.rs +551 -0
  240. pyscythe-0.1.0/crates/pyscythe_core/src/tokens.rs +23 -0
  241. pyscythe-0.1.0/crates/pyscythe_metrics/Cargo.toml +20 -0
  242. pyscythe-0.1.0/crates/pyscythe_metrics/src/lib.rs +878 -0
  243. pyscythe-0.1.0/crates/pyscythe_pyproject/Cargo.toml +22 -0
  244. pyscythe-0.1.0/crates/pyscythe_pyproject/src/lib.rs +1114 -0
  245. pyscythe-0.1.0/crates/pyscythe_pyproject/src/pytest_config.rs +189 -0
  246. pyscythe-0.1.0/crates/pyscythe_ty/Cargo.toml +32 -0
  247. pyscythe-0.1.0/crates/pyscythe_ty/src/declarations.rs +298 -0
  248. pyscythe-0.1.0/crates/pyscythe_ty/src/distributions.rs +194 -0
  249. pyscythe-0.1.0/crates/pyscythe_ty/src/inheritance.rs +260 -0
  250. pyscythe-0.1.0/crates/pyscythe_ty/src/lib.rs +620 -0
  251. pyscythe-0.1.0/crates/pyscythe_ty/src/reference_index.rs +610 -0
  252. pyscythe-0.1.0/pyproject.toml +32 -0
@@ -0,0 +1,2819 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "1.0.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys 0.61.2",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys 0.61.2",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anyhow"
72
+ version = "1.0.104"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
75
+
76
+ [[package]]
77
+ name = "ar_archive_writer"
78
+ version = "0.5.3"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "73cd58deff2140a0a8eae87e417bd01db68a33e148aa93d1e8cd837e55e312b6"
81
+ dependencies = [
82
+ "object",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "arc-swap"
87
+ version = "1.9.2"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b"
90
+ dependencies = [
91
+ "rustversion",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "arrayvec"
96
+ version = "0.7.8"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
99
+
100
+ [[package]]
101
+ name = "assert_cmd"
102
+ version = "2.2.2"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
105
+ dependencies = [
106
+ "anstyle",
107
+ "bstr",
108
+ "libc",
109
+ "predicates",
110
+ "predicates-core",
111
+ "predicates-tree",
112
+ "wait-timeout",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "attribute-derive"
117
+ version = "0.10.5"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
120
+ dependencies = [
121
+ "attribute-derive-macro",
122
+ "derive-where",
123
+ "manyhow",
124
+ "proc-macro2",
125
+ "quote",
126
+ "syn 2.0.119",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "attribute-derive-macro"
131
+ version = "0.10.5"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
134
+ dependencies = [
135
+ "collection_literals",
136
+ "interpolator",
137
+ "manyhow",
138
+ "proc-macro-utils",
139
+ "proc-macro2",
140
+ "quote",
141
+ "quote-use",
142
+ "syn 2.0.119",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "autocfg"
147
+ version = "1.5.1"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
150
+
151
+ [[package]]
152
+ name = "bitflags"
153
+ version = "2.13.1"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
156
+
157
+ [[package]]
158
+ name = "bitvec"
159
+ version = "1.1.1"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
162
+ dependencies = [
163
+ "funty",
164
+ "radium",
165
+ "tap",
166
+ "wyz",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "boxcar"
171
+ version = "0.2.14"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
174
+
175
+ [[package]]
176
+ name = "bstr"
177
+ version = "1.13.1"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
180
+ dependencies = [
181
+ "memchr",
182
+ "regex-automata",
183
+ "serde_core",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "bumpalo"
188
+ version = "3.20.3"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
191
+
192
+ [[package]]
193
+ name = "camino"
194
+ version = "1.2.5"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "bb1307f12aa967b5a58416e87b3653360e0fd614a016b6e970db08fecbb1b80d"
197
+ dependencies = [
198
+ "serde_core",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "castaway"
203
+ version = "0.2.4"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
206
+ dependencies = [
207
+ "rustversion",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "cc"
212
+ version = "1.4.5"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "005ec2760ca554fae18df7a11195552ec576cd665632a881bc011d5bb2fd4d80"
215
+ dependencies = [
216
+ "find-msvc-tools",
217
+ "jobserver",
218
+ "libc",
219
+ "shlex",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "cfg-if"
224
+ version = "1.0.4"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
227
+
228
+ [[package]]
229
+ name = "chacha20"
230
+ version = "0.10.2"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
233
+ dependencies = [
234
+ "cfg-if",
235
+ "cpufeatures",
236
+ "rand_core 0.10.1",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "char_str"
241
+ version = "0.0.2"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "576ba56f6ca18ebb069d0d07260407171712aff4dfe15ee3f8982dc16a455bcf"
244
+ dependencies = [
245
+ "castaway",
246
+ "get-size2",
247
+ "itoa",
248
+ "ryu",
249
+ "serde_core",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "clap"
254
+ version = "4.6.6"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
257
+ dependencies = [
258
+ "clap_builder",
259
+ "clap_derive",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "clap_builder"
264
+ version = "4.6.6"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
267
+ dependencies = [
268
+ "anstream",
269
+ "anstyle",
270
+ "clap_lex",
271
+ "strsim",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "clap_derive"
276
+ version = "4.6.4"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
279
+ dependencies = [
280
+ "heck",
281
+ "proc-macro2",
282
+ "quote",
283
+ "syn 3.0.5",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "clap_lex"
288
+ version = "1.1.0"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
291
+
292
+ [[package]]
293
+ name = "collection_literals"
294
+ version = "1.0.3"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
297
+
298
+ [[package]]
299
+ name = "colorchoice"
300
+ version = "1.0.5"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
303
+
304
+ [[package]]
305
+ name = "colored"
306
+ version = "3.1.1"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
309
+ dependencies = [
310
+ "windows-sys 0.61.2",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "compact_str"
315
+ version = "0.10.0"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "79fcda08c33bb58b97008b2cdada6622500e949e060f5913361763121abd2416"
318
+ dependencies = [
319
+ "castaway",
320
+ "cfg-if",
321
+ "itoa",
322
+ "serde",
323
+ "static_assertions",
324
+ "zmij",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "cpufeatures"
329
+ version = "0.3.1"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
332
+ dependencies = [
333
+ "libc",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "crc32fast"
338
+ version = "1.5.1"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
341
+ dependencies = [
342
+ "cfg-if",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "crossbeam"
347
+ version = "0.8.5"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "e71406cd8807725f7ac2f999a4cdd32e98f829fdf65f528343cebf945e41df1e"
350
+ dependencies = [
351
+ "crossbeam-channel",
352
+ "crossbeam-deque",
353
+ "crossbeam-epoch",
354
+ "crossbeam-queue",
355
+ "crossbeam-utils",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "crossbeam-channel"
360
+ version = "0.5.17"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "98b0cc327b5bc766e7fda9c9260cc0fa81b43a8e240440422dff70788e3f9ef1"
363
+ dependencies = [
364
+ "crossbeam-utils",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "crossbeam-deque"
369
+ version = "0.8.8"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "622f3fc73690be383c7214310406f28a90e6edeadc3cea882f9d71e495b9711a"
372
+ dependencies = [
373
+ "crossbeam-epoch",
374
+ "crossbeam-utils",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "crossbeam-epoch"
379
+ version = "0.9.21"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "dc74980687109a3b14c72fd458107bf0baa1da1a1a805e178d15501ba9b86d9d"
382
+ dependencies = [
383
+ "crossbeam-utils",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "crossbeam-queue"
388
+ version = "0.3.14"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "03e8bd762f7479489c70ed6c768ddca99d7296857de437a68dcb2a94365b3fae"
391
+ dependencies = [
392
+ "crossbeam-utils",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "crossbeam-utils"
397
+ version = "0.8.23"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
400
+
401
+ [[package]]
402
+ name = "dashmap"
403
+ version = "6.2.1"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
406
+ dependencies = [
407
+ "cfg-if",
408
+ "crossbeam-utils",
409
+ "hashbrown 0.14.5",
410
+ "lock_api",
411
+ "once_cell",
412
+ "parking_lot_core",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "derive-where"
417
+ version = "1.6.1"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
420
+ dependencies = [
421
+ "proc-macro2",
422
+ "quote",
423
+ "syn 2.0.119",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "difflib"
428
+ version = "0.4.0"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
431
+
432
+ [[package]]
433
+ name = "dirs"
434
+ version = "6.0.0"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
437
+ dependencies = [
438
+ "dirs-sys",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "dirs-sys"
443
+ version = "0.5.0"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
446
+ dependencies = [
447
+ "libc",
448
+ "option-ext",
449
+ "redox_users",
450
+ "windows-sys 0.61.2",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "displaydoc"
455
+ version = "0.2.7"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
458
+ dependencies = [
459
+ "proc-macro2",
460
+ "quote",
461
+ "syn 3.0.5",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "drop_bomb"
466
+ version = "0.1.5"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
469
+
470
+ [[package]]
471
+ name = "dunce"
472
+ version = "1.0.5"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
475
+
476
+ [[package]]
477
+ name = "either"
478
+ version = "1.18.0"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
481
+
482
+ [[package]]
483
+ name = "equivalent"
484
+ version = "1.0.2"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
487
+
488
+ [[package]]
489
+ name = "etcetera"
490
+ version = "0.11.0"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "de48cc4d1c1d97a20fd819def54b890cadde72ed3ad0c614822a0a433361be96"
493
+ dependencies = [
494
+ "cfg-if",
495
+ "windows-sys 0.61.2",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "filetime"
500
+ version = "0.2.29"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
503
+ dependencies = [
504
+ "cfg-if",
505
+ "libc",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "find-msvc-tools"
510
+ version = "0.1.12"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
513
+
514
+ [[package]]
515
+ name = "float-cmp"
516
+ version = "0.10.0"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
519
+ dependencies = [
520
+ "num-traits",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "foldhash"
525
+ version = "0.2.0"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
528
+
529
+ [[package]]
530
+ name = "fsevent-sys"
531
+ version = "4.1.0"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
534
+ dependencies = [
535
+ "libc",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "funty"
540
+ version = "2.0.0"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
543
+
544
+ [[package]]
545
+ name = "futures-core"
546
+ version = "0.3.34"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
549
+
550
+ [[package]]
551
+ name = "futures-task"
552
+ version = "0.3.34"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
555
+
556
+ [[package]]
557
+ name = "futures-util"
558
+ version = "0.3.34"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
561
+ dependencies = [
562
+ "futures-core",
563
+ "futures-task",
564
+ "pin-project-lite",
565
+ "slab",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "get-size-derive2"
570
+ version = "0.10.3"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "c736d226c32e496b8377813b52269e11ad3a48d8373b68862d0364f04fd1229d"
573
+ dependencies = [
574
+ "attribute-derive",
575
+ "quote",
576
+ "syn 2.0.119",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "get-size2"
581
+ version = "0.10.3"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "b411f34418305908ab15a82ff78958c2a9aee9a272b2a2e663836b20a4e4b9d3"
584
+ dependencies = [
585
+ "compact_str",
586
+ "get-size-derive2",
587
+ "hashbrown 0.17.1",
588
+ "indexmap",
589
+ "ordermap",
590
+ "parking_lot",
591
+ "smallvec",
592
+ "thin-vec",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "getopts"
597
+ version = "0.2.24"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
600
+ dependencies = [
601
+ "unicode-width",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "getrandom"
606
+ version = "0.2.17"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
609
+ dependencies = [
610
+ "cfg-if",
611
+ "libc",
612
+ "wasi",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "getrandom"
617
+ version = "0.4.3"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
620
+ dependencies = [
621
+ "cfg-if",
622
+ "libc",
623
+ "r-efi",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "glob"
628
+ version = "0.3.4"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
631
+
632
+ [[package]]
633
+ name = "globset"
634
+ version = "0.4.20"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "07c34a9410465b45bd9787443bc7370f37735bad04b0f0cd57ff1a3186c98988"
637
+ dependencies = [
638
+ "aho-corasick",
639
+ "bstr",
640
+ "log",
641
+ "regex-automata",
642
+ "regex-syntax",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "hashbrown"
647
+ version = "0.14.5"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
650
+
651
+ [[package]]
652
+ name = "hashbrown"
653
+ version = "0.17.1"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
656
+ dependencies = [
657
+ "allocator-api2",
658
+ "equivalent",
659
+ "foldhash",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "hashlink"
664
+ version = "0.12.1"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "32069d97bb81e38fa67eab65e3393bf804bb85969f2bc06bf13f64aef5aba248"
667
+ dependencies = [
668
+ "hashbrown 0.17.1",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "heck"
673
+ version = "0.5.0"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
676
+
677
+ [[package]]
678
+ name = "icu_collections"
679
+ version = "2.3.0"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
682
+ dependencies = [
683
+ "displaydoc",
684
+ "potential_utf",
685
+ "utf8_iter",
686
+ "yoke",
687
+ "zerofrom",
688
+ "zerovec",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "icu_locale_core"
693
+ version = "2.3.0"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
696
+ dependencies = [
697
+ "displaydoc",
698
+ "litemap",
699
+ "tinystr",
700
+ "writeable",
701
+ "zerovec",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "icu_properties"
706
+ version = "2.3.0"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
709
+ dependencies = [
710
+ "displaydoc",
711
+ "icu_collections",
712
+ "icu_locale_core",
713
+ "icu_properties_data",
714
+ "icu_provider",
715
+ "zerotrie",
716
+ "zerovec",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "icu_properties_data"
721
+ version = "2.3.0"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
724
+
725
+ [[package]]
726
+ name = "icu_provider"
727
+ version = "2.3.1"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
730
+ dependencies = [
731
+ "displaydoc",
732
+ "icu_locale_core",
733
+ "writeable",
734
+ "yoke",
735
+ "zerofrom",
736
+ "zerotrie",
737
+ "zerovec",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "ignore"
742
+ version = "0.4.33"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "00b69833ed729dc5aa7d19541d96d6cf8e9137194207a04916d658e43168402f"
745
+ dependencies = [
746
+ "crossbeam-deque",
747
+ "globset",
748
+ "log",
749
+ "memchr",
750
+ "regex-automata",
751
+ "same-file",
752
+ "walkdir",
753
+ "winapi-util",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "indexmap"
758
+ version = "2.14.2"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
761
+ dependencies = [
762
+ "equivalent",
763
+ "hashbrown 0.17.1",
764
+ "serde",
765
+ "serde_core",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "inotify"
770
+ version = "0.11.5"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "4cc00ea907cab49550b7da656f80ebb97be1b997d931fbcd28d39734e17ce592"
773
+ dependencies = [
774
+ "bitflags",
775
+ "inotify-sys",
776
+ "libc",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "inotify-sys"
781
+ version = "0.1.8"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "c033f80b2c113cdf91ab7a33faa9cbc014726dcad99880c8609af2a370edf37d"
784
+ dependencies = [
785
+ "libc",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "interpolator"
790
+ version = "0.5.0"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
793
+
794
+ [[package]]
795
+ name = "intrusive-collections"
796
+ version = "0.10.3"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "4275b20e6057cd7733fd8df8a5a31701e4fe44497dad0f3fa0e1c4fb971506be"
799
+
800
+ [[package]]
801
+ name = "inventory"
802
+ version = "0.3.24"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
805
+ dependencies = [
806
+ "rustversion",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "is-macro"
811
+ version = "0.3.8"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "8267aa6001e25494f3015f9663bbd88a18240c74483afa5f0934a1b3e4c388e9"
814
+ dependencies = [
815
+ "heck",
816
+ "proc-macro2",
817
+ "quote",
818
+ "syn 2.0.119",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "is_terminal_polyfill"
823
+ version = "1.70.2"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
826
+
827
+ [[package]]
828
+ name = "itertools"
829
+ version = "0.15.0"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
832
+ dependencies = [
833
+ "either",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "itoa"
838
+ version = "1.0.18"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
841
+
842
+ [[package]]
843
+ name = "jobserver"
844
+ version = "0.1.35"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
847
+ dependencies = [
848
+ "getrandom 0.4.3",
849
+ "libc",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "js-sys"
854
+ version = "0.3.105"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
857
+ dependencies = [
858
+ "cfg-if",
859
+ "futures-util",
860
+ "wasm-bindgen",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "kqueue"
865
+ version = "1.2.1"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "8d763e5b24120b4ddf50de6c92308156765aabfbbccebf401da7cff2d70a41ea"
868
+ dependencies = [
869
+ "kqueue-sys",
870
+ "libc",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "kqueue-sys"
875
+ version = "1.1.2"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
878
+ dependencies = [
879
+ "bitflags",
880
+ "libc",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "libc"
885
+ version = "0.2.189"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
888
+
889
+ [[package]]
890
+ name = "libredox"
891
+ version = "0.1.23"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "8d8f1ea3f21fd3405dcaf6c9b5c1630af9afc422d9073ea39c5f6d6c772e08ed"
894
+ dependencies = [
895
+ "libc",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "litemap"
900
+ version = "0.8.3"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
903
+
904
+ [[package]]
905
+ name = "lock_api"
906
+ version = "0.4.14"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
909
+ dependencies = [
910
+ "scopeguard",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "log"
915
+ version = "0.4.34"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
918
+
919
+ [[package]]
920
+ name = "manyhow"
921
+ version = "0.11.4"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
924
+ dependencies = [
925
+ "manyhow-macros",
926
+ "proc-macro2",
927
+ "quote",
928
+ "syn 2.0.119",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "manyhow-macros"
933
+ version = "0.11.4"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
936
+ dependencies = [
937
+ "proc-macro-utils",
938
+ "proc-macro2",
939
+ "quote",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "matchit"
944
+ version = "0.9.2"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "8863b587001c1b9a8a4e36008cebc6b3612cb1226fe2de94858e06092687b608"
947
+
948
+ [[package]]
949
+ name = "memchr"
950
+ version = "2.8.3"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
953
+
954
+ [[package]]
955
+ name = "mio"
956
+ version = "1.2.3"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "4b18443e9c262bfe8fa82f51666e2642c53393f7e5c27b3e1aeab922cff5b9d8"
959
+ dependencies = [
960
+ "libc",
961
+ "log",
962
+ "wasi",
963
+ "windows-sys 0.61.2",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "normalize-line-endings"
968
+ version = "0.3.0"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
971
+
972
+ [[package]]
973
+ name = "notify"
974
+ version = "8.2.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
977
+ dependencies = [
978
+ "bitflags",
979
+ "fsevent-sys",
980
+ "inotify",
981
+ "kqueue",
982
+ "libc",
983
+ "log",
984
+ "mio",
985
+ "notify-types",
986
+ "walkdir",
987
+ "windows-sys 0.60.2",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "notify-types"
992
+ version = "2.1.0"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
995
+ dependencies = [
996
+ "bitflags",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "num-traits"
1001
+ version = "0.2.19"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1004
+ dependencies = [
1005
+ "autocfg",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "object"
1010
+ version = "0.39.1"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
1013
+ dependencies = [
1014
+ "memchr",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "once_cell"
1019
+ version = "1.21.4"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1022
+
1023
+ [[package]]
1024
+ name = "once_cell_polyfill"
1025
+ version = "1.70.2"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1028
+
1029
+ [[package]]
1030
+ name = "option-ext"
1031
+ version = "0.2.0"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1034
+
1035
+ [[package]]
1036
+ name = "ordermap"
1037
+ version = "1.2.2"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "16a756ddcdeb6c0efc8927bdf0ed112885815a35ba350472a467be5104f01ca1"
1040
+ dependencies = [
1041
+ "indexmap",
1042
+ "serde",
1043
+ "serde_core",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "parking_lot"
1048
+ version = "0.12.5"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1051
+ dependencies = [
1052
+ "lock_api",
1053
+ "parking_lot_core",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "parking_lot_core"
1058
+ version = "0.9.12"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1061
+ dependencies = [
1062
+ "cfg-if",
1063
+ "libc",
1064
+ "redox_syscall",
1065
+ "smallvec",
1066
+ "windows-link",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "path-slash"
1071
+ version = "0.2.1"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
1074
+
1075
+ [[package]]
1076
+ name = "pathdiff"
1077
+ version = "0.2.3"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
1080
+
1081
+ [[package]]
1082
+ name = "pep440_rs"
1083
+ version = "0.7.3"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "31095ca1f396e3de32745f42b20deef7bc09077f918b085307e8eab6ddd8fb9c"
1086
+ dependencies = [
1087
+ "once_cell",
1088
+ "serde",
1089
+ "unicode-width",
1090
+ "unscanny",
1091
+ "version-ranges",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "phf"
1096
+ version = "0.11.3"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1099
+ dependencies = [
1100
+ "phf_shared",
1101
+ ]
1102
+
1103
+ [[package]]
1104
+ name = "phf_codegen"
1105
+ version = "0.11.3"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1108
+ dependencies = [
1109
+ "phf_generator",
1110
+ "phf_shared",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "phf_generator"
1115
+ version = "0.11.3"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1118
+ dependencies = [
1119
+ "phf_shared",
1120
+ "rand 0.8.8",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "phf_shared"
1125
+ version = "0.11.3"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1128
+ dependencies = [
1129
+ "siphasher",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "pin-project-lite"
1134
+ version = "0.2.17"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1137
+
1138
+ [[package]]
1139
+ name = "pkg-config"
1140
+ version = "0.3.34"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
1143
+
1144
+ [[package]]
1145
+ name = "portable-atomic"
1146
+ version = "1.15.0"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
1149
+
1150
+ [[package]]
1151
+ name = "potential_utf"
1152
+ version = "0.1.6"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
1155
+ dependencies = [
1156
+ "zerovec",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "ppv-lite86"
1161
+ version = "0.2.21"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1164
+ dependencies = [
1165
+ "zerocopy",
1166
+ ]
1167
+
1168
+ [[package]]
1169
+ name = "predicates"
1170
+ version = "3.1.4"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
1173
+ dependencies = [
1174
+ "anstyle",
1175
+ "difflib",
1176
+ "float-cmp",
1177
+ "normalize-line-endings",
1178
+ "predicates-core",
1179
+ "regex",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "predicates-core"
1184
+ version = "1.0.10"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
1187
+
1188
+ [[package]]
1189
+ name = "predicates-tree"
1190
+ version = "1.0.13"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
1193
+ dependencies = [
1194
+ "predicates-core",
1195
+ "termtree",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "proc-macro-utils"
1200
+ version = "0.10.0"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
1203
+ dependencies = [
1204
+ "proc-macro2",
1205
+ "quote",
1206
+ "smallvec",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "proc-macro2"
1211
+ version = "1.0.107"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1214
+ dependencies = [
1215
+ "unicode-ident",
1216
+ ]
1217
+
1218
+ [[package]]
1219
+ name = "psm"
1220
+ version = "0.1.32"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "4dcd034599e63b970727f70d79e02d62390a4a84f7c6b827c27c46d5ac3fa622"
1223
+ dependencies = [
1224
+ "ar_archive_writer",
1225
+ "cc",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "pyscythe"
1230
+ version = "0.1.0"
1231
+ dependencies = [
1232
+ "anyhow",
1233
+ "assert_cmd",
1234
+ "camino",
1235
+ "clap",
1236
+ "predicates",
1237
+ "pyscythe_core",
1238
+ "pyscythe_metrics",
1239
+ "pyscythe_pyproject",
1240
+ "pyscythe_ty",
1241
+ "serde_json",
1242
+ "similar",
1243
+ "thiserror",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "pyscythe_core"
1248
+ version = "0.1.0"
1249
+ dependencies = [
1250
+ "camino",
1251
+ "globset",
1252
+ "serde",
1253
+ "serde_json",
1254
+ "thiserror",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "pyscythe_metrics"
1259
+ version = "0.1.0"
1260
+ dependencies = [
1261
+ "pyscythe_core",
1262
+ "ruff_python_ast",
1263
+ "ruff_python_parser",
1264
+ "ruff_source_file",
1265
+ "ruff_text_size",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "pyscythe_pyproject"
1270
+ version = "0.1.0"
1271
+ dependencies = [
1272
+ "camino",
1273
+ "pyscythe_core",
1274
+ "ruff_python_ast",
1275
+ "ruff_python_parser",
1276
+ "serde",
1277
+ "thiserror",
1278
+ "toml",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "pyscythe_ty"
1283
+ version = "0.1.0"
1284
+ dependencies = [
1285
+ "anyhow",
1286
+ "camino",
1287
+ "pyscythe_core",
1288
+ "pyscythe_metrics",
1289
+ "rayon",
1290
+ "ruff_db",
1291
+ "ruff_python_ast",
1292
+ "ruff_python_stdlib",
1293
+ "ruff_text_size",
1294
+ "rustc-hash",
1295
+ "thiserror",
1296
+ "ty_ide",
1297
+ "ty_module_resolver",
1298
+ "ty_project",
1299
+ "ty_python_core",
1300
+ "ty_python_semantic",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "quote"
1305
+ version = "1.0.47"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1308
+ dependencies = [
1309
+ "proc-macro2",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "quote-use"
1314
+ version = "0.8.4"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
1317
+ dependencies = [
1318
+ "quote",
1319
+ "quote-use-macros",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "quote-use-macros"
1324
+ version = "0.8.4"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
1327
+ dependencies = [
1328
+ "proc-macro-utils",
1329
+ "proc-macro2",
1330
+ "quote",
1331
+ "syn 2.0.119",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "r-efi"
1336
+ version = "6.0.0"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1339
+
1340
+ [[package]]
1341
+ name = "radium"
1342
+ version = "0.7.0"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1345
+
1346
+ [[package]]
1347
+ name = "rand"
1348
+ version = "0.8.8"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
1351
+ dependencies = [
1352
+ "libc",
1353
+ "rand_chacha",
1354
+ "rand_core 0.6.4",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "rand"
1359
+ version = "0.10.2"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
1362
+ dependencies = [
1363
+ "chacha20",
1364
+ "rand_core 0.10.1",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "rand_chacha"
1369
+ version = "0.3.1"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1372
+ dependencies = [
1373
+ "ppv-lite86",
1374
+ "rand_core 0.6.4",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "rand_core"
1379
+ version = "0.6.4"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1382
+ dependencies = [
1383
+ "getrandom 0.2.17",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "rand_core"
1388
+ version = "0.10.1"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1391
+
1392
+ [[package]]
1393
+ name = "rayon"
1394
+ version = "1.12.0"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1397
+ dependencies = [
1398
+ "either",
1399
+ "rayon-core",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "rayon-core"
1404
+ version = "1.13.0"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1407
+ dependencies = [
1408
+ "crossbeam-deque",
1409
+ "crossbeam-utils",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "redox_syscall"
1414
+ version = "0.5.18"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1417
+ dependencies = [
1418
+ "bitflags",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "redox_users"
1423
+ version = "0.5.2"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1426
+ dependencies = [
1427
+ "getrandom 0.2.17",
1428
+ "libredox",
1429
+ "thiserror",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "regex"
1434
+ version = "1.13.1"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1437
+ dependencies = [
1438
+ "aho-corasick",
1439
+ "memchr",
1440
+ "regex-automata",
1441
+ "regex-syntax",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "regex-automata"
1446
+ version = "0.4.18"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1449
+ dependencies = [
1450
+ "aho-corasick",
1451
+ "memchr",
1452
+ "regex-syntax",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "regex-syntax"
1457
+ version = "0.8.11"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1460
+
1461
+ [[package]]
1462
+ name = "ruff_annotate_snippets"
1463
+ version = "0.0.12"
1464
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1465
+ dependencies = [
1466
+ "anstyle",
1467
+ "memchr",
1468
+ "unicode-width",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "ruff_cache"
1473
+ version = "0.0.12"
1474
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1475
+ dependencies = [
1476
+ "char_str",
1477
+ "filetime",
1478
+ "glob",
1479
+ "globset",
1480
+ "itertools",
1481
+ "regex",
1482
+ "seahash",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "ruff_db"
1487
+ version = "0.0.12"
1488
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1489
+ dependencies = [
1490
+ "anstyle",
1491
+ "arc-swap",
1492
+ "camino",
1493
+ "compact_str",
1494
+ "dashmap",
1495
+ "dunce",
1496
+ "etcetera",
1497
+ "filetime",
1498
+ "get-size2",
1499
+ "ignore",
1500
+ "matchit",
1501
+ "path-slash",
1502
+ "pathdiff",
1503
+ "ruff_annotate_snippets",
1504
+ "ruff_cache",
1505
+ "ruff_diagnostics",
1506
+ "ruff_memory_usage",
1507
+ "ruff_notebook",
1508
+ "ruff_python_ast",
1509
+ "ruff_python_parser",
1510
+ "ruff_python_trivia",
1511
+ "ruff_source_file",
1512
+ "ruff_text_size",
1513
+ "rustc-hash",
1514
+ "salsa",
1515
+ "same-file",
1516
+ "serde",
1517
+ "serde_json",
1518
+ "similar",
1519
+ "supports-hyperlinks",
1520
+ "thiserror",
1521
+ "tracing",
1522
+ "ty_static",
1523
+ "web-time",
1524
+ "which",
1525
+ "zip",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "ruff_diagnostics"
1530
+ version = "0.0.12"
1531
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1532
+ dependencies = [
1533
+ "get-size2",
1534
+ "is-macro",
1535
+ "ruff_text_size",
1536
+ "serde",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "ruff_index"
1541
+ version = "0.0.12"
1542
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1543
+ dependencies = [
1544
+ "get-size2",
1545
+ "ruff_macros",
1546
+ "salsa",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "ruff_macros"
1551
+ version = "0.0.12"
1552
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1553
+ dependencies = [
1554
+ "heck",
1555
+ "itertools",
1556
+ "proc-macro2",
1557
+ "quote",
1558
+ "regex",
1559
+ "ruff_python_trivia",
1560
+ "syn 3.0.5",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "ruff_memory_usage"
1565
+ version = "0.0.12"
1566
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1567
+ dependencies = [
1568
+ "get-size2",
1569
+ ]
1570
+
1571
+ [[package]]
1572
+ name = "ruff_notebook"
1573
+ version = "0.0.12"
1574
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1575
+ dependencies = [
1576
+ "anyhow",
1577
+ "rand 0.10.2",
1578
+ "ruff_diagnostics",
1579
+ "ruff_source_file",
1580
+ "ruff_text_size",
1581
+ "serde",
1582
+ "serde_json",
1583
+ "thiserror",
1584
+ "uuid",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "ruff_options_metadata"
1589
+ version = "0.0.12"
1590
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1591
+
1592
+ [[package]]
1593
+ name = "ruff_python_ast"
1594
+ version = "0.0.12"
1595
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1596
+ dependencies = [
1597
+ "aho-corasick",
1598
+ "arrayvec",
1599
+ "bitflags",
1600
+ "char_str",
1601
+ "compact_str",
1602
+ "get-size2",
1603
+ "is-macro",
1604
+ "memchr",
1605
+ "ruff_cache",
1606
+ "ruff_python_trivia",
1607
+ "ruff_source_file",
1608
+ "ruff_text_size",
1609
+ "rustc-hash",
1610
+ "salsa",
1611
+ "serde",
1612
+ "thin-vec",
1613
+ "thiserror",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "ruff_python_codegen"
1618
+ version = "0.0.12"
1619
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1620
+ dependencies = [
1621
+ "ruff_python_ast",
1622
+ "ruff_python_literal",
1623
+ "ruff_python_parser",
1624
+ "ruff_source_file",
1625
+ "ruff_text_size",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "ruff_python_edits"
1630
+ version = "0.0.12"
1631
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1632
+ dependencies = [
1633
+ "ruff_python_ast",
1634
+ "ruff_source_file",
1635
+ "ruff_text_size",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "ruff_python_importer"
1640
+ version = "0.0.12"
1641
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1642
+ dependencies = [
1643
+ "anyhow",
1644
+ "ruff_diagnostics",
1645
+ "ruff_python_ast",
1646
+ "ruff_python_codegen",
1647
+ "ruff_python_trivia",
1648
+ "ruff_source_file",
1649
+ "ruff_text_size",
1650
+ ]
1651
+
1652
+ [[package]]
1653
+ name = "ruff_python_literal"
1654
+ version = "0.0.12"
1655
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1656
+ dependencies = [
1657
+ "bitflags",
1658
+ "icu_properties",
1659
+ "itertools",
1660
+ "ruff_python_ast",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "ruff_python_parser"
1665
+ version = "0.0.12"
1666
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1667
+ dependencies = [
1668
+ "bitflags",
1669
+ "bstr",
1670
+ "drop_bomb",
1671
+ "get-size2",
1672
+ "memchr",
1673
+ "ruff_python_ast",
1674
+ "ruff_python_trivia",
1675
+ "ruff_text_size",
1676
+ "rustc-hash",
1677
+ "stacker",
1678
+ "static_assertions",
1679
+ "thin-vec",
1680
+ "unicode-ident",
1681
+ "unicode-normalization",
1682
+ "unicode_names2",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "ruff_python_stdlib"
1687
+ version = "0.0.12"
1688
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1689
+ dependencies = [
1690
+ "bitflags",
1691
+ "unicode-ident",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "ruff_python_trivia"
1696
+ version = "0.0.12"
1697
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1698
+ dependencies = [
1699
+ "itertools",
1700
+ "ruff_source_file",
1701
+ "ruff_text_size",
1702
+ "rustc-hash",
1703
+ "unicode-ident",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "ruff_ranged_value"
1708
+ version = "0.0.12"
1709
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1710
+ dependencies = [
1711
+ "get-size2",
1712
+ "ruff_db",
1713
+ "ruff_python_ast",
1714
+ "ruff_text_size",
1715
+ "serde",
1716
+ "toml",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "ruff_source_file"
1721
+ version = "0.0.12"
1722
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1723
+ dependencies = [
1724
+ "get-size2",
1725
+ "memchr",
1726
+ "ruff_text_size",
1727
+ "serde",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "ruff_text_size"
1732
+ version = "0.0.12"
1733
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
1734
+ dependencies = [
1735
+ "get-size2",
1736
+ "serde",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "rustc-hash"
1741
+ version = "2.1.3"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1744
+
1745
+ [[package]]
1746
+ name = "rustversion"
1747
+ version = "1.0.23"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1750
+
1751
+ [[package]]
1752
+ name = "ryu"
1753
+ version = "1.0.23"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1756
+
1757
+ [[package]]
1758
+ name = "salsa"
1759
+ version = "0.28.2"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "cf0e374215cd2db2b5c75d7b3a99cb0cc052c0595335dfdefc03d4eb08f4aa81"
1762
+ dependencies = [
1763
+ "boxcar",
1764
+ "compact_str",
1765
+ "crossbeam-queue",
1766
+ "crossbeam-utils",
1767
+ "hashbrown 0.17.1",
1768
+ "hashlink",
1769
+ "indexmap",
1770
+ "intrusive-collections",
1771
+ "inventory",
1772
+ "ordermap",
1773
+ "parking_lot",
1774
+ "portable-atomic",
1775
+ "rustc-hash",
1776
+ "salsa-macro-rules",
1777
+ "salsa-macros",
1778
+ "smallvec",
1779
+ "thin-vec",
1780
+ "tracing",
1781
+ "typeid",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "salsa-macro-rules"
1786
+ version = "0.28.2"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "85f4b7d4405540bbd6d4ffa52d4322d983f3781954d3073067ac1bdb028459b3"
1789
+
1790
+ [[package]]
1791
+ name = "salsa-macros"
1792
+ version = "0.28.2"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "445be2bfbb2f67cb663225ecd7bc5a25370c0250fca30f9d8cbad9a913650370"
1795
+ dependencies = [
1796
+ "proc-macro2",
1797
+ "quote",
1798
+ "syn 3.0.5",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "same-file"
1803
+ version = "1.0.6"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1806
+ dependencies = [
1807
+ "winapi-util",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "scopeguard"
1812
+ version = "1.2.0"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1815
+
1816
+ [[package]]
1817
+ name = "seahash"
1818
+ version = "4.1.0"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1821
+
1822
+ [[package]]
1823
+ name = "serde"
1824
+ version = "1.0.229"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1827
+ dependencies = [
1828
+ "serde_core",
1829
+ "serde_derive",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "serde_core"
1834
+ version = "1.0.229"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1837
+ dependencies = [
1838
+ "serde_derive",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "serde_derive"
1843
+ version = "1.0.229"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1846
+ dependencies = [
1847
+ "proc-macro2",
1848
+ "quote",
1849
+ "syn 3.0.5",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "serde_json"
1854
+ version = "1.0.151"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1857
+ dependencies = [
1858
+ "itoa",
1859
+ "memchr",
1860
+ "serde",
1861
+ "serde_core",
1862
+ "zmij",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "serde_spanned"
1867
+ version = "1.1.1"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1870
+ dependencies = [
1871
+ "serde_core",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "shellexpand"
1876
+ version = "3.1.2"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "32824fab5e16e6c4d86dc1ba84489390419a39f97699852b66480bb87d297ed8"
1879
+ dependencies = [
1880
+ "dirs",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "shlex"
1885
+ version = "2.0.1"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1888
+
1889
+ [[package]]
1890
+ name = "similar"
1891
+ version = "3.2.0"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "4f66ca1f7aca2474dc10c942eb22feffc897735f54cd1db90138c2fddb490987"
1894
+ dependencies = [
1895
+ "bstr",
1896
+ ]
1897
+
1898
+ [[package]]
1899
+ name = "siphasher"
1900
+ version = "1.0.3"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1903
+
1904
+ [[package]]
1905
+ name = "slab"
1906
+ version = "0.4.12"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1909
+
1910
+ [[package]]
1911
+ name = "smallvec"
1912
+ version = "1.16.0"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "b9be42f50aa861c555654aa3a37f52f4b1074bacf4e48fe0ef7fa584e80f1f0f"
1915
+
1916
+ [[package]]
1917
+ name = "stable_deref_trait"
1918
+ version = "1.2.1"
1919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1920
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1921
+
1922
+ [[package]]
1923
+ name = "stacker"
1924
+ version = "0.1.25"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "707f49d46706bacf8a2b00d51dace3f9de527c13eec3778f570c411f89e69967"
1927
+ dependencies = [
1928
+ "cc",
1929
+ "cfg-if",
1930
+ "libc",
1931
+ "psm",
1932
+ "windows-sys 0.61.2",
1933
+ ]
1934
+
1935
+ [[package]]
1936
+ name = "static_assertions"
1937
+ version = "1.1.0"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1940
+
1941
+ [[package]]
1942
+ name = "strsim"
1943
+ version = "0.11.1"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1946
+
1947
+ [[package]]
1948
+ name = "strum"
1949
+ version = "0.28.0"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
1952
+ dependencies = [
1953
+ "strum_macros",
1954
+ ]
1955
+
1956
+ [[package]]
1957
+ name = "strum_macros"
1958
+ version = "0.28.0"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
1961
+ dependencies = [
1962
+ "heck",
1963
+ "proc-macro2",
1964
+ "quote",
1965
+ "syn 2.0.119",
1966
+ ]
1967
+
1968
+ [[package]]
1969
+ name = "supports-hyperlinks"
1970
+ version = "3.2.0"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "e396b6523b11ccb83120b115a0b7366de372751aa6edf19844dfb13a6af97e91"
1973
+
1974
+ [[package]]
1975
+ name = "syn"
1976
+ version = "2.0.119"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1979
+ dependencies = [
1980
+ "proc-macro2",
1981
+ "quote",
1982
+ "unicode-ident",
1983
+ ]
1984
+
1985
+ [[package]]
1986
+ name = "syn"
1987
+ version = "3.0.5"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
1990
+ dependencies = [
1991
+ "proc-macro2",
1992
+ "quote",
1993
+ "unicode-ident",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "synstructure"
1998
+ version = "0.13.2"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2001
+ dependencies = [
2002
+ "proc-macro2",
2003
+ "quote",
2004
+ "syn 2.0.119",
2005
+ ]
2006
+
2007
+ [[package]]
2008
+ name = "tap"
2009
+ version = "1.0.1"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2012
+
2013
+ [[package]]
2014
+ name = "termtree"
2015
+ version = "0.5.1"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
2018
+
2019
+ [[package]]
2020
+ name = "thin-vec"
2021
+ version = "0.2.19"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "79def32ffcd477db1ff26f76dab9e3a91f0bd42a85ca96577089b24623056f9d"
2024
+ dependencies = [
2025
+ "serde",
2026
+ ]
2027
+
2028
+ [[package]]
2029
+ name = "thiserror"
2030
+ version = "2.0.20"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
2033
+ dependencies = [
2034
+ "thiserror-impl",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "thiserror-impl"
2039
+ version = "2.0.20"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
2042
+ dependencies = [
2043
+ "proc-macro2",
2044
+ "quote",
2045
+ "syn 3.0.5",
2046
+ ]
2047
+
2048
+ [[package]]
2049
+ name = "tinystr"
2050
+ version = "0.8.4"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
2053
+ dependencies = [
2054
+ "displaydoc",
2055
+ "zerovec",
2056
+ ]
2057
+
2058
+ [[package]]
2059
+ name = "tinyvec"
2060
+ version = "1.13.2"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "4cf0ded5c4e56918d8f8a339e1bb67d038d3bc6d144ac407904015ba2e4cde9b"
2063
+ dependencies = [
2064
+ "tinyvec_macros",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "tinyvec_macros"
2069
+ version = "0.1.1"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2072
+
2073
+ [[package]]
2074
+ name = "toml"
2075
+ version = "1.1.5+spec-1.1.0"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "12c0ba9680044b4ce98d391a62094047eada0d64860b80166c39f4a6b5640785"
2078
+ dependencies = [
2079
+ "indexmap",
2080
+ "serde_core",
2081
+ "serde_spanned",
2082
+ "toml_datetime",
2083
+ "toml_parser",
2084
+ "toml_writer",
2085
+ "winnow",
2086
+ ]
2087
+
2088
+ [[package]]
2089
+ name = "toml_datetime"
2090
+ version = "1.1.1+spec-1.1.0"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2093
+ dependencies = [
2094
+ "serde_core",
2095
+ ]
2096
+
2097
+ [[package]]
2098
+ name = "toml_parser"
2099
+ version = "1.1.3+spec-1.1.0"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
2102
+ dependencies = [
2103
+ "winnow",
2104
+ ]
2105
+
2106
+ [[package]]
2107
+ name = "toml_writer"
2108
+ version = "1.1.2+spec-1.1.0"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
2111
+
2112
+ [[package]]
2113
+ name = "tracing"
2114
+ version = "0.1.44"
2115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2116
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2117
+ dependencies = [
2118
+ "pin-project-lite",
2119
+ "tracing-attributes",
2120
+ "tracing-core",
2121
+ ]
2122
+
2123
+ [[package]]
2124
+ name = "tracing-attributes"
2125
+ version = "0.1.31"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2128
+ dependencies = [
2129
+ "proc-macro2",
2130
+ "quote",
2131
+ "syn 2.0.119",
2132
+ ]
2133
+
2134
+ [[package]]
2135
+ name = "tracing-core"
2136
+ version = "0.1.36"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2139
+ dependencies = [
2140
+ "once_cell",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "ty_combine"
2145
+ version = "0.0.12"
2146
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
2147
+ dependencies = [
2148
+ "ordermap",
2149
+ "ruff_db",
2150
+ "ruff_python_ast",
2151
+ "ruff_ranged_value",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "ty_ide"
2156
+ version = "0.0.0"
2157
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
2158
+ dependencies = [
2159
+ "bitflags",
2160
+ "compact_str",
2161
+ "get-size2",
2162
+ "indexmap",
2163
+ "itertools",
2164
+ "rayon",
2165
+ "regex",
2166
+ "ruff_db",
2167
+ "ruff_diagnostics",
2168
+ "ruff_index",
2169
+ "ruff_memory_usage",
2170
+ "ruff_python_ast",
2171
+ "ruff_python_codegen",
2172
+ "ruff_python_importer",
2173
+ "ruff_python_literal",
2174
+ "ruff_python_stdlib",
2175
+ "ruff_python_trivia",
2176
+ "ruff_source_file",
2177
+ "ruff_text_size",
2178
+ "rustc-hash",
2179
+ "salsa",
2180
+ "smallvec",
2181
+ "strum",
2182
+ "strum_macros",
2183
+ "toml_parser",
2184
+ "tracing",
2185
+ "ty_module_resolver",
2186
+ "ty_project",
2187
+ "ty_python_core",
2188
+ "ty_python_semantic",
2189
+ "ty_vendored",
2190
+ ]
2191
+
2192
+ [[package]]
2193
+ name = "ty_module_resolver"
2194
+ version = "0.0.12"
2195
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
2196
+ dependencies = [
2197
+ "anyhow",
2198
+ "camino",
2199
+ "compact_str",
2200
+ "get-size2",
2201
+ "ordermap",
2202
+ "regex",
2203
+ "regex-syntax",
2204
+ "ruff_db",
2205
+ "ruff_memory_usage",
2206
+ "ruff_python_ast",
2207
+ "ruff_python_stdlib",
2208
+ "rustc-hash",
2209
+ "salsa",
2210
+ "strum",
2211
+ "strum_macros",
2212
+ "thiserror",
2213
+ "tracing",
2214
+ ]
2215
+
2216
+ [[package]]
2217
+ name = "ty_project"
2218
+ version = "0.0.0"
2219
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
2220
+ dependencies = [
2221
+ "anyhow",
2222
+ "bitvec",
2223
+ "camino",
2224
+ "colored",
2225
+ "compact_str",
2226
+ "crossbeam",
2227
+ "get-size2",
2228
+ "globset",
2229
+ "notify",
2230
+ "ordermap",
2231
+ "parking_lot",
2232
+ "pep440_rs",
2233
+ "rayon",
2234
+ "regex",
2235
+ "regex-automata",
2236
+ "ruff_cache",
2237
+ "ruff_db",
2238
+ "ruff_macros",
2239
+ "ruff_memory_usage",
2240
+ "ruff_options_metadata",
2241
+ "ruff_python_ast",
2242
+ "ruff_ranged_value",
2243
+ "ruff_text_size",
2244
+ "rustc-hash",
2245
+ "salsa",
2246
+ "serde",
2247
+ "serde_json",
2248
+ "shellexpand",
2249
+ "strum",
2250
+ "strum_macros",
2251
+ "thiserror",
2252
+ "toml",
2253
+ "tracing",
2254
+ "ty_combine",
2255
+ "ty_module_resolver",
2256
+ "ty_python_core",
2257
+ "ty_python_semantic",
2258
+ "ty_static",
2259
+ "ty_vendored",
2260
+ ]
2261
+
2262
+ [[package]]
2263
+ name = "ty_python_core"
2264
+ version = "0.0.12"
2265
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
2266
+ dependencies = [
2267
+ "bitflags",
2268
+ "bitvec",
2269
+ "char_str",
2270
+ "get-size2",
2271
+ "hashbrown 0.17.1",
2272
+ "itertools",
2273
+ "ruff_db",
2274
+ "ruff_index",
2275
+ "ruff_macros",
2276
+ "ruff_memory_usage",
2277
+ "ruff_python_ast",
2278
+ "ruff_python_parser",
2279
+ "ruff_text_size",
2280
+ "rustc-hash",
2281
+ "salsa",
2282
+ "serde",
2283
+ "smallvec",
2284
+ "static_assertions",
2285
+ "thin-vec",
2286
+ "tracing",
2287
+ "ty_combine",
2288
+ "ty_module_resolver",
2289
+ "ty_site_packages",
2290
+ "ty_vendored",
2291
+ ]
2292
+
2293
+ [[package]]
2294
+ name = "ty_python_semantic"
2295
+ version = "0.0.12"
2296
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
2297
+ dependencies = [
2298
+ "bitflags",
2299
+ "char_str",
2300
+ "compact_str",
2301
+ "drop_bomb",
2302
+ "get-size2",
2303
+ "indexmap",
2304
+ "itertools",
2305
+ "memchr",
2306
+ "ordermap",
2307
+ "rayon",
2308
+ "ruff_db",
2309
+ "ruff_diagnostics",
2310
+ "ruff_index",
2311
+ "ruff_macros",
2312
+ "ruff_memory_usage",
2313
+ "ruff_python_ast",
2314
+ "ruff_python_edits",
2315
+ "ruff_python_literal",
2316
+ "ruff_python_parser",
2317
+ "ruff_python_stdlib",
2318
+ "ruff_python_trivia",
2319
+ "ruff_source_file",
2320
+ "ruff_text_size",
2321
+ "rustc-hash",
2322
+ "salsa",
2323
+ "serde",
2324
+ "smallvec",
2325
+ "static_assertions",
2326
+ "strum",
2327
+ "strum_macros",
2328
+ "thiserror",
2329
+ "tracing",
2330
+ "ty_module_resolver",
2331
+ "ty_python_core",
2332
+ "ty_site_packages",
2333
+ "ty_static",
2334
+ ]
2335
+
2336
+ [[package]]
2337
+ name = "ty_site_packages"
2338
+ version = "0.0.12"
2339
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
2340
+ dependencies = [
2341
+ "camino",
2342
+ "colored",
2343
+ "get-size2",
2344
+ "indexmap",
2345
+ "ruff_annotate_snippets",
2346
+ "ruff_db",
2347
+ "ruff_python_ast",
2348
+ "ruff_python_trivia",
2349
+ "ruff_source_file",
2350
+ "ruff_text_size",
2351
+ "strum",
2352
+ "strum_macros",
2353
+ "tracing",
2354
+ "ty_static",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "ty_static"
2359
+ version = "0.0.12"
2360
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
2361
+ dependencies = [
2362
+ "ruff_macros",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "ty_vendored"
2367
+ version = "0.0.12"
2368
+ source = "git+https://github.com/astral-sh/ruff?rev=689a33fd36eae4537c93e62014fa7ba89bcc3213#689a33fd36eae4537c93e62014fa7ba89bcc3213"
2369
+ dependencies = [
2370
+ "path-slash",
2371
+ "ruff_db",
2372
+ "static_assertions",
2373
+ "walkdir",
2374
+ "zip",
2375
+ ]
2376
+
2377
+ [[package]]
2378
+ name = "typed-path"
2379
+ version = "0.12.3"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
2382
+
2383
+ [[package]]
2384
+ name = "typeid"
2385
+ version = "1.0.3"
2386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2387
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
2388
+
2389
+ [[package]]
2390
+ name = "unicode-ident"
2391
+ version = "1.0.24"
2392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2393
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2394
+
2395
+ [[package]]
2396
+ name = "unicode-normalization"
2397
+ version = "0.1.25"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2400
+ dependencies = [
2401
+ "tinyvec",
2402
+ ]
2403
+
2404
+ [[package]]
2405
+ name = "unicode-width"
2406
+ version = "0.2.2"
2407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2408
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2409
+
2410
+ [[package]]
2411
+ name = "unicode_names2"
2412
+ version = "1.3.0"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
2415
+ dependencies = [
2416
+ "phf",
2417
+ "unicode_names2_generator",
2418
+ ]
2419
+
2420
+ [[package]]
2421
+ name = "unicode_names2_generator"
2422
+ version = "1.3.0"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
2425
+ dependencies = [
2426
+ "getopts",
2427
+ "log",
2428
+ "phf_codegen",
2429
+ "rand 0.8.8",
2430
+ ]
2431
+
2432
+ [[package]]
2433
+ name = "unscanny"
2434
+ version = "0.1.0"
2435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2436
+ checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47"
2437
+
2438
+ [[package]]
2439
+ name = "utf8_iter"
2440
+ version = "1.0.4"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2443
+
2444
+ [[package]]
2445
+ name = "utf8parse"
2446
+ version = "0.2.2"
2447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2448
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2449
+
2450
+ [[package]]
2451
+ name = "uuid"
2452
+ version = "1.26.0"
2453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2454
+ checksum = "b5772d71c9be8a8a6ac2117d949c5b224c1b72241bb611d9a3012edcf8af7812"
2455
+ dependencies = [
2456
+ "js-sys",
2457
+ "wasm-bindgen",
2458
+ ]
2459
+
2460
+ [[package]]
2461
+ name = "version-ranges"
2462
+ version = "0.1.3"
2463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2464
+ checksum = "31e9bd4e9c9ff6a2a9b5969462ba26216af3e010df0377dad8320ab515262ef8"
2465
+ dependencies = [
2466
+ "smallvec",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "wait-timeout"
2471
+ version = "0.2.1"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
2474
+ dependencies = [
2475
+ "libc",
2476
+ ]
2477
+
2478
+ [[package]]
2479
+ name = "walkdir"
2480
+ version = "2.5.0"
2481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2482
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2483
+ dependencies = [
2484
+ "same-file",
2485
+ "winapi-util",
2486
+ ]
2487
+
2488
+ [[package]]
2489
+ name = "wasi"
2490
+ version = "0.11.1+wasi-snapshot-preview1"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2493
+
2494
+ [[package]]
2495
+ name = "wasm-bindgen"
2496
+ version = "0.2.128"
2497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2498
+ checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
2499
+ dependencies = [
2500
+ "cfg-if",
2501
+ "once_cell",
2502
+ "rustversion",
2503
+ "wasm-bindgen-macro",
2504
+ "wasm-bindgen-shared",
2505
+ ]
2506
+
2507
+ [[package]]
2508
+ name = "wasm-bindgen-macro"
2509
+ version = "0.2.128"
2510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2511
+ checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
2512
+ dependencies = [
2513
+ "quote",
2514
+ "wasm-bindgen-macro-support",
2515
+ ]
2516
+
2517
+ [[package]]
2518
+ name = "wasm-bindgen-macro-support"
2519
+ version = "0.2.128"
2520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2521
+ checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
2522
+ dependencies = [
2523
+ "bumpalo",
2524
+ "proc-macro2",
2525
+ "quote",
2526
+ "syn 3.0.5",
2527
+ "wasm-bindgen-shared",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "wasm-bindgen-shared"
2532
+ version = "0.2.128"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
2535
+ dependencies = [
2536
+ "unicode-ident",
2537
+ ]
2538
+
2539
+ [[package]]
2540
+ name = "web-time"
2541
+ version = "1.1.0"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2544
+ dependencies = [
2545
+ "js-sys",
2546
+ "wasm-bindgen",
2547
+ ]
2548
+
2549
+ [[package]]
2550
+ name = "which"
2551
+ version = "8.0.6"
2552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2553
+ checksum = "bae2f2b2b816647a1cab1acc91f5bd20812d53cb344382635ec2181940c8034f"
2554
+ dependencies = [
2555
+ "libc",
2556
+ ]
2557
+
2558
+ [[package]]
2559
+ name = "winapi-util"
2560
+ version = "0.1.11"
2561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2562
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2563
+ dependencies = [
2564
+ "windows-sys 0.61.2",
2565
+ ]
2566
+
2567
+ [[package]]
2568
+ name = "windows-link"
2569
+ version = "0.2.1"
2570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2571
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2572
+
2573
+ [[package]]
2574
+ name = "windows-sys"
2575
+ version = "0.60.2"
2576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2577
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2578
+ dependencies = [
2579
+ "windows-targets",
2580
+ ]
2581
+
2582
+ [[package]]
2583
+ name = "windows-sys"
2584
+ version = "0.61.2"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2587
+ dependencies = [
2588
+ "windows-link",
2589
+ ]
2590
+
2591
+ [[package]]
2592
+ name = "windows-targets"
2593
+ version = "0.53.5"
2594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2595
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2596
+ dependencies = [
2597
+ "windows-link",
2598
+ "windows_aarch64_gnullvm",
2599
+ "windows_aarch64_msvc",
2600
+ "windows_i686_gnu",
2601
+ "windows_i686_gnullvm",
2602
+ "windows_i686_msvc",
2603
+ "windows_x86_64_gnu",
2604
+ "windows_x86_64_gnullvm",
2605
+ "windows_x86_64_msvc",
2606
+ ]
2607
+
2608
+ [[package]]
2609
+ name = "windows_aarch64_gnullvm"
2610
+ version = "0.53.1"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2613
+
2614
+ [[package]]
2615
+ name = "windows_aarch64_msvc"
2616
+ version = "0.53.1"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2619
+
2620
+ [[package]]
2621
+ name = "windows_i686_gnu"
2622
+ version = "0.53.1"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2625
+
2626
+ [[package]]
2627
+ name = "windows_i686_gnullvm"
2628
+ version = "0.53.1"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2631
+
2632
+ [[package]]
2633
+ name = "windows_i686_msvc"
2634
+ version = "0.53.1"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2637
+
2638
+ [[package]]
2639
+ name = "windows_x86_64_gnu"
2640
+ version = "0.53.1"
2641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2642
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2643
+
2644
+ [[package]]
2645
+ name = "windows_x86_64_gnullvm"
2646
+ version = "0.53.1"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2649
+
2650
+ [[package]]
2651
+ name = "windows_x86_64_msvc"
2652
+ version = "0.53.1"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2655
+
2656
+ [[package]]
2657
+ name = "winnow"
2658
+ version = "1.0.4"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
2661
+
2662
+ [[package]]
2663
+ name = "writeable"
2664
+ version = "0.6.4"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
2667
+
2668
+ [[package]]
2669
+ name = "wyz"
2670
+ version = "0.5.1"
2671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2672
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2673
+ dependencies = [
2674
+ "tap",
2675
+ ]
2676
+
2677
+ [[package]]
2678
+ name = "yoke"
2679
+ version = "0.8.3"
2680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2681
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2682
+ dependencies = [
2683
+ "stable_deref_trait",
2684
+ "yoke-derive",
2685
+ "zerofrom",
2686
+ ]
2687
+
2688
+ [[package]]
2689
+ name = "yoke-derive"
2690
+ version = "0.8.2"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2693
+ dependencies = [
2694
+ "proc-macro2",
2695
+ "quote",
2696
+ "syn 2.0.119",
2697
+ "synstructure",
2698
+ ]
2699
+
2700
+ [[package]]
2701
+ name = "zerocopy"
2702
+ version = "0.8.56"
2703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2704
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
2705
+ dependencies = [
2706
+ "zerocopy-derive",
2707
+ ]
2708
+
2709
+ [[package]]
2710
+ name = "zerocopy-derive"
2711
+ version = "0.8.56"
2712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2713
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
2714
+ dependencies = [
2715
+ "proc-macro2",
2716
+ "quote",
2717
+ "syn 2.0.119",
2718
+ ]
2719
+
2720
+ [[package]]
2721
+ name = "zerofrom"
2722
+ version = "0.1.8"
2723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2724
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2725
+ dependencies = [
2726
+ "zerofrom-derive",
2727
+ ]
2728
+
2729
+ [[package]]
2730
+ name = "zerofrom-derive"
2731
+ version = "0.1.7"
2732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2733
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2734
+ dependencies = [
2735
+ "proc-macro2",
2736
+ "quote",
2737
+ "syn 2.0.119",
2738
+ "synstructure",
2739
+ ]
2740
+
2741
+ [[package]]
2742
+ name = "zerotrie"
2743
+ version = "0.2.5"
2744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2745
+ checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
2746
+ dependencies = [
2747
+ "displaydoc",
2748
+ "yoke",
2749
+ "zerofrom",
2750
+ ]
2751
+
2752
+ [[package]]
2753
+ name = "zerovec"
2754
+ version = "0.11.8"
2755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2756
+ checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
2757
+ dependencies = [
2758
+ "yoke",
2759
+ "zerofrom",
2760
+ "zerovec-derive",
2761
+ ]
2762
+
2763
+ [[package]]
2764
+ name = "zerovec-derive"
2765
+ version = "0.11.6"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
2768
+ dependencies = [
2769
+ "proc-macro2",
2770
+ "quote",
2771
+ "syn 3.0.5",
2772
+ ]
2773
+
2774
+ [[package]]
2775
+ name = "zip"
2776
+ version = "8.6.0"
2777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2778
+ checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
2779
+ dependencies = [
2780
+ "crc32fast",
2781
+ "indexmap",
2782
+ "memchr",
2783
+ "typed-path",
2784
+ "zstd",
2785
+ ]
2786
+
2787
+ [[package]]
2788
+ name = "zmij"
2789
+ version = "1.0.23"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
2792
+
2793
+ [[package]]
2794
+ name = "zstd"
2795
+ version = "0.13.3"
2796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2797
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
2798
+ dependencies = [
2799
+ "zstd-safe",
2800
+ ]
2801
+
2802
+ [[package]]
2803
+ name = "zstd-safe"
2804
+ version = "7.3.0"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "64d80649ab6db9d9f6f9c80a40becd948eda4714a0a5ac8c4d157a32231c7882"
2807
+ dependencies = [
2808
+ "zstd-sys",
2809
+ ]
2810
+
2811
+ [[package]]
2812
+ name = "zstd-sys"
2813
+ version = "2.1.0+zstd.1.5.7"
2814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2815
+ checksum = "0ef0a8027ec3ee71300ab3bcbcd0393f434aa72b91ca6d635a39941deae8eea0"
2816
+ dependencies = [
2817
+ "cc",
2818
+ "pkg-config",
2819
+ ]