cribo 0.4.13__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 (298) hide show
  1. cribo-0.4.13/Cargo.lock +2839 -0
  2. cribo-0.4.13/Cargo.toml +184 -0
  3. cribo-0.4.13/LICENSE +30 -0
  4. cribo-0.4.13/PKG-INFO +563 -0
  5. cribo-0.4.13/README.md +536 -0
  6. cribo-0.4.13/crates/cribo/Cargo.toml +46 -0
  7. cribo-0.4.13/crates/cribo/benches/bundling.rs +281 -0
  8. cribo-0.4.13/crates/cribo/build.rs +15 -0
  9. cribo-0.4.13/crates/cribo/src/ast_rewriter.rs +2277 -0
  10. cribo-0.4.13/crates/cribo/src/bin/debug_analyzer.rs +20 -0
  11. cribo-0.4.13/crates/cribo/src/bundler.rs +1041 -0
  12. cribo-0.4.13/crates/cribo/src/combine.rs +75 -0
  13. cribo-0.4.13/crates/cribo/src/config.rs +292 -0
  14. cribo-0.4.13/crates/cribo/src/dependency_graph.rs +656 -0
  15. cribo-0.4.13/crates/cribo/src/dirs.rs +155 -0
  16. cribo-0.4.13/crates/cribo/src/emit.rs +2131 -0
  17. cribo-0.4.13/crates/cribo/src/lib.rs +14 -0
  18. cribo-0.4.13/crates/cribo/src/main.rs +109 -0
  19. cribo-0.4.13/crates/cribo/src/resolver.rs +841 -0
  20. cribo-0.4.13/crates/cribo/src/snapshots/cribo__emit__tests__extract_import_modules_snapshots.snap +37 -0
  21. cribo-0.4.13/crates/cribo/src/snapshots/cribo__emit__tests__extract_original_module_name_snapshots.snap +32 -0
  22. cribo-0.4.13/crates/cribo/src/snapshots/cribo__emit__tests__import_rewriting_snapshots.snap +59 -0
  23. cribo-0.4.13/crates/cribo/src/snapshots/cribo__emit__tests__logical_statement_indentation_snapshots.snap +34 -0
  24. cribo-0.4.13/crates/cribo/src/snapshots/cribo__unused_import_trimmer__tests__analyze_only_mode.snap +7 -0
  25. cribo-0.4.13/crates/cribo/src/snapshots/cribo__unused_import_trimmer__tests__basic_unused_import_trimming.snap +18 -0
  26. cribo-0.4.13/crates/cribo/src/snapshots/cribo__unused_import_trimmer__tests__complex_import_scenarios.snap +25 -0
  27. cribo-0.4.13/crates/cribo/src/snapshots/cribo__unused_import_trimmer__tests__custom_preserve_patterns.snap +15 -0
  28. cribo-0.4.13/crates/cribo/src/snapshots/cribo__unused_import_trimmer__tests__empty_import_statements_removed.snap +16 -0
  29. cribo-0.4.13/crates/cribo/src/snapshots/cribo__unused_import_trimmer__tests__future_imports_preserved.snap +14 -0
  30. cribo-0.4.13/crates/cribo/src/snapshots/cribo__unused_import_trimmer__tests__no_unused_imports.snap +15 -0
  31. cribo-0.4.13/crates/cribo/src/snapshots/cribo__unused_import_trimmer__tests__partial_import_trimming.snap +17 -0
  32. cribo-0.4.13/crates/cribo/src/snapshots/cribo__unused_imports_simple__tests__analyzer_independence_snapshots.snap +34 -0
  33. cribo-0.4.13/crates/cribo/src/snapshots/cribo__unused_imports_simple__tests__unused_import_detection_snapshots.snap +96 -0
  34. cribo-0.4.13/crates/cribo/src/unused_import_trimmer.rs +574 -0
  35. cribo-0.4.13/crates/cribo/src/unused_imports_simple.rs +1086 -0
  36. cribo-0.4.13/crates/cribo/src/util.rs +159 -0
  37. cribo-0.4.13/crates/cribo/tests/fixtures/alias_imports/test_alias_imports.py +15 -0
  38. cribo-0.4.13/crates/cribo/tests/fixtures/alias_imports/test_module.py +21 -0
  39. cribo-0.4.13/crates/cribo/tests/fixtures/alias_imports/test_simple_alias.py +13 -0
  40. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/alias_transformation_test/main.py +64 -0
  41. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/alias_transformation_test/utils/__init__.py +1 -0
  42. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/alias_transformation_test/utils/config_manager.py +14 -0
  43. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/alias_transformation_test/utils/data_processor.py +19 -0
  44. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/alias_transformation_test/utils/helpers.py +19 -0
  45. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/class_name_collision/entities.py +34 -0
  46. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/class_name_collision/expected_output.txt +5 -0
  47. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/class_name_collision/main.py +29 -0
  48. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/class_name_collision/models.py +34 -0
  49. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/function_name_collision/expected_output.txt +3 -0
  50. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/function_name_collision/main.py +24 -0
  51. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/function_name_collision/module_a.py +18 -0
  52. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/function_name_collision/module_b.py +18 -0
  53. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/happy_path/expected_output.txt +6 -0
  54. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/happy_path/main.py +35 -0
  55. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/happy_path/models/__init__.py +1 -0
  56. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/happy_path/models/user.py +43 -0
  57. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/happy_path/services/__init__.py +1 -0
  58. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/happy_path/services/database.py +53 -0
  59. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/happy_path/utils/__init__.py +1 -0
  60. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/happy_path/utils/helpers.py +25 -0
  61. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/regular_import_aliases/expected_output.txt +12 -0
  62. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/regular_import_aliases/main.py +71 -0
  63. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/regular_import_aliases/utils/config.py +8 -0
  64. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/regular_import_aliases/utils/helpers.py +16 -0
  65. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/variable_name_collision/config.py +12 -0
  66. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/variable_name_collision/constants.py +13 -0
  67. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/variable_name_collision/expected_output.txt +7 -0
  68. cribo-0.4.13/crates/cribo/tests/fixtures/ast_rewriting/variable_name_collision/main.py +25 -0
  69. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/all_variable_handling/conflict_module.py +17 -0
  70. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/all_variable_handling/main.py +25 -0
  71. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/all_variable_handling/nested_package/__init__.py +20 -0
  72. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/all_variable_handling/nested_package/submodule.py +18 -0
  73. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/all_variable_handling/nested_package/utils.py +12 -0
  74. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/all_variable_handling/simple_module.py +22 -0
  75. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/future_imports_basic/main.py +19 -0
  76. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/future_imports_basic/mypackage/__init__.py +5 -0
  77. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/future_imports_basic/mypackage/core.py +21 -0
  78. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/future_imports_basic/mypackage/submodule/__init__.py +3 -0
  79. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/future_imports_basic/mypackage/submodule/utils.py +24 -0
  80. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/future_imports_multiple/main.py +13 -0
  81. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/future_imports_multiple/module_a.py +5 -0
  82. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/future_imports_multiple/module_b.py +5 -0
  83. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/init_reexports/main.py +32 -0
  84. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/init_reexports/mypackage/__init__.py +25 -0
  85. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/init_reexports/mypackage/config.py +13 -0
  86. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/init_reexports/mypackage/data_processor.py +7 -0
  87. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/init_reexports/mypackage/formatter.py +5 -0
  88. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/init_reexports/mypackage/utils/__init__.py +9 -0
  89. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/init_reexports/mypackage/utils/constants.py +4 -0
  90. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/init_reexports/mypackage/utils/helper.py +5 -0
  91. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/late_future_imports/main.py +21 -0
  92. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/simple_math/calculator.py +8 -0
  93. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/simple_math/main.py +15 -0
  94. cribo-0.4.13/crates/cribo/tests/fixtures/bundling/simple_math/utils.py +3 -0
  95. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/class_level_cycles/admin_class.py +15 -0
  96. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/class_level_cycles/main.py +15 -0
  97. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/class_level_cycles/user_class.py +15 -0
  98. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/four_module_cycle/main.py +12 -0
  99. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/four_module_cycle/module_a.py +11 -0
  100. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/four_module_cycle/module_b.py +10 -0
  101. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/four_module_cycle/module_c.py +10 -0
  102. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/four_module_cycle/module_d.py +10 -0
  103. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/mixed_cycles/config_constants.py +7 -0
  104. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/mixed_cycles/constants_module.py +11 -0
  105. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/mixed_cycles/function_module.py +13 -0
  106. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/mixed_cycles/helper_module.py +9 -0
  107. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/mixed_cycles/main.py +14 -0
  108. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/package_level_cycles/main.py +12 -0
  109. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/package_level_cycles/pkg1/__init__.py +11 -0
  110. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/package_level_cycles/pkg2/__init__.py +12 -0
  111. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/relative_import_cycles/main.py +12 -0
  112. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/relative_import_cycles/services/__init__.py +1 -0
  113. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/relative_import_cycles/services/auth.py +12 -0
  114. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/relative_import_cycles/services/database.py +12 -0
  115. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/three_module_cycle/main.py +12 -0
  116. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/three_module_cycle/module_a.py +10 -0
  117. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/three_module_cycle/module_b.py +10 -0
  118. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/three_module_cycle/module_c.py +13 -0
  119. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/unresolvable_patterns/constants_a.py +9 -0
  120. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/unresolvable_patterns/constants_b.py +10 -0
  121. cribo-0.4.13/crates/cribo/tests/fixtures/circular_dependencies/unresolvable_patterns/main.py +11 -0
  122. cribo-0.4.13/crates/cribo/tests/fixtures/comprehensive_ast_rewrite/core/__init__.py +6 -0
  123. cribo-0.4.13/crates/cribo/tests/fixtures/comprehensive_ast_rewrite/core/database/__init__.py +6 -0
  124. cribo-0.4.13/crates/cribo/tests/fixtures/comprehensive_ast_rewrite/core/database/connection.py +68 -0
  125. cribo-0.4.13/crates/cribo/tests/fixtures/comprehensive_ast_rewrite/core/utils/__init__.py +5 -0
  126. cribo-0.4.13/crates/cribo/tests/fixtures/comprehensive_ast_rewrite/core/utils/helpers.py +111 -0
  127. cribo-0.4.13/crates/cribo/tests/fixtures/comprehensive_ast_rewrite/main.py +103 -0
  128. cribo-0.4.13/crates/cribo/tests/fixtures/comprehensive_ast_rewrite/models/__init__.py +8 -0
  129. cribo-0.4.13/crates/cribo/tests/fixtures/comprehensive_ast_rewrite/models/base.py +127 -0
  130. cribo-0.4.13/crates/cribo/tests/fixtures/comprehensive_ast_rewrite/models/user.py +188 -0
  131. cribo-0.4.13/crates/cribo/tests/fixtures/comprehensive_ast_rewrite/services/__init__.py +6 -0
  132. cribo-0.4.13/crates/cribo/tests/fixtures/comprehensive_ast_rewrite/services/auth/__init__.py +6 -0
  133. cribo-0.4.13/crates/cribo/tests/fixtures/comprehensive_ast_rewrite/services/auth/manager.py +148 -0
  134. cribo-0.4.13/crates/cribo/tests/fixtures/import_filtering/test_import_filtering.py +63 -0
  135. cribo-0.4.13/crates/cribo/tests/fixtures/import_filtering/test_rewrite_import.py +27 -0
  136. cribo-0.4.13/crates/cribo/tests/fixtures/mymodule.py +7 -0
  137. cribo-0.4.13/crates/cribo/tests/fixtures/outputs/test_alias_output.py +43 -0
  138. cribo-0.4.13/crates/cribo/tests/fixtures/outputs/test_output.py +101 -0
  139. cribo-0.4.13/crates/cribo/tests/fixtures/outputs/test_simple_alias_output.py +39 -0
  140. cribo-0.4.13/crates/cribo/tests/fixtures/pydantic_project/main.py +39 -0
  141. cribo-0.4.13/crates/cribo/tests/fixtures/pydantic_project/schemas/__init__.py +5 -0
  142. cribo-0.4.13/crates/cribo/tests/fixtures/pydantic_project/schemas/user.py +46 -0
  143. cribo-0.4.13/crates/cribo/tests/fixtures/pydantic_project/utils/__init__.py +5 -0
  144. cribo-0.4.13/crates/cribo/tests/fixtures/pydantic_project/utils/validation.py +26 -0
  145. cribo-0.4.13/crates/cribo/tests/fixtures/simple_project/main.py +18 -0
  146. cribo-0.4.13/crates/cribo/tests/fixtures/simple_project/models/__init__.py +5 -0
  147. cribo-0.4.13/crates/cribo/tests/fixtures/simple_project/models/user.py +21 -0
  148. cribo-0.4.13/crates/cribo/tests/fixtures/simple_project/utils/__init__.py +5 -0
  149. cribo-0.4.13/crates/cribo/tests/fixtures/simple_project/utils/helpers.py +21 -0
  150. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/__init__.py +5 -0
  151. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/circular_reference/first.py +1 -0
  152. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/circular_reference/hello +5 -0
  153. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/circular_reference/second.py +1 -0
  154. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import/greetings/__init__.py +1 -0
  155. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import/greetings/greeting.py +3 -0
  156. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import/greetings/messages.py +1 -0
  157. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import/hello +5 -0
  158. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_from_parent_package/greetings/__init__.py +1 -0
  159. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_from_parent_package/greetings/greeting/__init__.py +3 -0
  160. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_from_parent_package/greetings/messages.py +1 -0
  161. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_from_parent_package/hello +5 -0
  162. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_in_init/greetings/__init__.py +3 -0
  163. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_in_init/greetings/greeting.py +1 -0
  164. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_in_init/hello +5 -0
  165. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_single_dot/greetings/__init__.py +1 -0
  166. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_single_dot/greetings/greeting.py +5 -0
  167. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_single_dot/greetings/messages.py +1 -0
  168. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_single_dot/hello +5 -0
  169. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_single_dot_in_init/greetings/__init__.py +5 -0
  170. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_single_dot_in_init/greetings/greeting.py +1 -0
  171. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/explicit_relative_import_single_dot_in_init/hello +5 -0
  172. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/implicit_init_import/greetings/__init__.py +1 -0
  173. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/implicit_init_import/greetings/irrelevant.py +1 -0
  174. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/implicit_init_import/hello +5 -0
  175. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/import_from_as_module/greetings/__init__.py +0 -0
  176. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/import_from_as_module/greetings/greeting.py +1 -0
  177. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/import_from_as_module/hello +5 -0
  178. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/import_from_as_value/greeting.py +1 -0
  179. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/import_from_as_value/hello +5 -0
  180. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/imports_in_imported_modules/greetings/__init__.py +1 -0
  181. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/imports_in_imported_modules/greetings/english.py +1 -0
  182. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/imports_in_imported_modules/hello +5 -0
  183. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/module_with_triple_quotes/greeting.py +1 -0
  184. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/module_with_triple_quotes/hello +5 -0
  185. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/python_path_from_binary/hello +5 -0
  186. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/python_path_from_binary/packages/greetings/greeting.py +1 -0
  187. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_using_from_to_import_module/greetings/greeting.py +1 -0
  188. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_using_from_to_import_module/hello +5 -0
  189. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_using_from_to_import_multiple_modules/greetings/__init__.py +0 -0
  190. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_using_from_to_import_multiple_modules/greetings/greeting.py +1 -0
  191. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_using_from_to_import_multiple_modules/greetings/printer.py +2 -0
  192. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_using_from_to_import_multiple_modules/hello +5 -0
  193. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_using_from_to_import_multiple_values/greeting.py +5 -0
  194. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_using_from_to_import_multiple_values/hello +5 -0
  195. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_using_module_in_package/greetings/greeting.py +1 -0
  196. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_using_module_in_package/hello +5 -0
  197. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_using_stdlib_module_in_package/greeting.py +1 -0
  198. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_using_stdlib_module_in_package/hello +8 -0
  199. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_with_dynamic_import/greeting.py +1 -0
  200. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_with_dynamic_import/hello +7 -0
  201. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_with_single_local_from_import/greeting.py +1 -0
  202. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_with_single_local_from_import/hello +5 -0
  203. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_with_single_local_import/greeting.py +1 -0
  204. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_with_single_local_import/hello +5 -0
  205. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_with_single_local_import_of_package/greeting/__init__.py +1 -0
  206. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_with_single_local_import_of_package/hello +5 -0
  207. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/script_with_special_shebang/hello +5 -0
  208. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/single_file/hello +3 -0
  209. cribo-0.4.13/crates/cribo/tests/fixtures/stickytape_test_scripts/single_file_using_stdlib/hello +6 -0
  210. cribo-0.4.13/crates/cribo/tests/fixtures/test_edge_cases.py +26 -0
  211. cribo-0.4.13/crates/cribo/tests/fixtures/test_unused_imports/bundled.py +33 -0
  212. cribo-0.4.13/crates/cribo/tests/fixtures/test_unused_imports/main.py +31 -0
  213. cribo-0.4.13/crates/cribo/tests/fixtures/test_unused_imports/pyproject.toml +4 -0
  214. cribo-0.4.13/crates/cribo/tests/fixtures/test_unused_imports/simple_bundled.py +25 -0
  215. cribo-0.4.13/crates/cribo/tests/fixtures/test_unused_imports/simple_test.py +18 -0
  216. cribo-0.4.13/crates/cribo/tests/fixtures/test_unused_imports/utils.py +47 -0
  217. cribo-0.4.13/crates/cribo/tests/fixtures/test_working_example.py +89 -0
  218. cribo-0.4.13/crates/cribo/tests/integration_tests.rs +300 -0
  219. cribo-0.4.13/crates/cribo/tests/snapshots/integration_tests__dependency_graph.snap +13 -0
  220. cribo-0.4.13/crates/cribo/tests/snapshots/integration_tests__extract_edge_case_imports.snap +20 -0
  221. cribo-0.4.13/crates/cribo/tests/snapshots/integration_tests__module_resolution.snap +19 -0
  222. cribo-0.4.13/crates/cribo/tests/snapshots/integration_tests__requirements_generation.snap +65 -0
  223. cribo-0.4.13/crates/cribo/tests/snapshots/integration_tests__simple_project_bundling.snap +51 -0
  224. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_circular_reference.snap +17 -0
  225. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_explicit_relative_import.snap +22 -0
  226. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_explicit_relative_import_from_parent_package.snap +23 -0
  227. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_explicit_relative_import_in_init.snap +19 -0
  228. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_explicit_relative_import_single_dot.snap +23 -0
  229. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_explicit_relative_import_single_dot_in_init.snap +20 -0
  230. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_implicit_init_import.snap +19 -0
  231. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_import_from_as_module.snap +19 -0
  232. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_import_from_as_value.snap +14 -0
  233. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_imports_in_imported_modules.snap +15 -0
  234. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_module_with_triple_quotes.snap +15 -0
  235. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_script_using_from_to_import_module.snap +18 -0
  236. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_script_using_from_to_import_multiple_values.snap +15 -0
  237. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_script_using_module_in_package.snap +16 -0
  238. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_script_using_stdlib_module_in_package.snap +20 -0
  239. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_script_with_dynamic_import.snap +15 -0
  240. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_script_with_single_local_from_import.snap +13 -0
  241. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_script_with_single_local_import.snap +15 -0
  242. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_script_with_single_local_import_of_package.snap +15 -0
  243. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_script_with_special_shebang.snap +14 -0
  244. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_single_file.snap +10 -0
  245. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__bundled_single_file_using_stdlib.snap +14 -0
  246. cribo-0.4.13/crates/cribo/tests/snapshots/stickytape_compatibility_tests__comprehensive_bundling_results.snap +27 -0
  247. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__bundled_code@all_variable_handling.snap +61 -0
  248. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__bundled_code@future_imports_basic.snap +51 -0
  249. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__bundled_code@future_imports_multiple.snap +23 -0
  250. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__bundled_code@init_reexports.snap +65 -0
  251. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__bundled_code@late_future_imports.snap +19 -0
  252. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__bundled_code@relative_dot_import.snap +17 -0
  253. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__bundled_code@simple_math.snap +28 -0
  254. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__execution_results@all_variable_handling.snap +8 -0
  255. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__execution_results@future_imports_basic.snap +9 -0
  256. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__execution_results@future_imports_multiple.snap +9 -0
  257. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__execution_results@init_reexports.snap +8 -0
  258. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__execution_results@late_future_imports.snap +8 -0
  259. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__execution_results@relative_dot_import.snap +10 -0
  260. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__execution_results@simple_math.snap +9 -0
  261. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__ruff_lint_results@all_variable_handling.snap +9 -0
  262. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__ruff_lint_results@future_imports_basic.snap +9 -0
  263. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__ruff_lint_results@future_imports_multiple.snap +9 -0
  264. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__ruff_lint_results@init_reexports.snap +11 -0
  265. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__ruff_lint_results@late_future_imports.snap +9 -0
  266. cribo-0.4.13/crates/cribo/tests/snapshots/test_bundling_snapshots__ruff_lint_results@simple_math.snap +9 -0
  267. cribo-0.4.13/crates/cribo/tests/snapshots/test_circular_dependencies__class_level_cycles_bundled.snap +43 -0
  268. cribo-0.4.13/crates/cribo/tests/snapshots/test_circular_dependencies__class_level_cycles_error.snap +11 -0
  269. cribo-0.4.13/crates/cribo/tests/snapshots/test_circular_dependencies__four_module_cycle_bundled.snap +40 -0
  270. cribo-0.4.13/crates/cribo/tests/snapshots/test_circular_dependencies__four_module_cycle_error.snap +9 -0
  271. cribo-0.4.13/crates/cribo/tests/snapshots/test_circular_dependencies__mixed_cycles_error.snap +9 -0
  272. cribo-0.4.13/crates/cribo/tests/snapshots/test_circular_dependencies__package_level_cycles_bundled.snap +31 -0
  273. cribo-0.4.13/crates/cribo/tests/snapshots/test_circular_dependencies__package_level_cycles_error.snap +9 -0
  274. cribo-0.4.13/crates/cribo/tests/snapshots/test_circular_dependencies__relative_import_cycles_bundled.snap +32 -0
  275. cribo-0.4.13/crates/cribo/tests/snapshots/test_circular_dependencies__three_module_cycle_bundled.snap +34 -0
  276. cribo-0.4.13/crates/cribo/tests/snapshots/test_circular_dependencies__three_module_cycle_error.snap +9 -0
  277. cribo-0.4.13/crates/cribo/tests/snapshots/test_circular_dependencies__unresolvable_patterns_error.snap +9 -0
  278. cribo-0.4.13/crates/cribo/tests/snapshots/test_comprehensive_ast_rewrite__comprehensive_ast_rewrite_bundled.snap +542 -0
  279. cribo-0.4.13/crates/cribo/tests/stickytape_compatibility_tests.rs +376 -0
  280. cribo-0.4.13/crates/cribo/tests/test_alias_transformation.rs +233 -0
  281. cribo-0.4.13/crates/cribo/tests/test_ast_rewriting.rs +256 -0
  282. cribo-0.4.13/crates/cribo/tests/test_bundling_snapshots.rs +242 -0
  283. cribo-0.4.13/crates/cribo/tests/test_circular_dependencies.rs +1052 -0
  284. cribo-0.4.13/crates/cribo/tests/test_cli_stdout.rs +228 -0
  285. cribo-0.4.13/crates/cribo/tests/test_cli_verbose.rs +51 -0
  286. cribo-0.4.13/crates/cribo/tests/test_comprehensive_ast_rewrite.rs +282 -0
  287. cribo-0.4.13/crates/cribo/tests/test_dependency_graph_comprehensive.rs +367 -0
  288. cribo-0.4.13/crates/cribo/tests/test_future_imports.rs +259 -0
  289. cribo-0.4.13/crates/cribo/tests/test_python_version_config.rs +77 -0
  290. cribo-0.4.13/crates/cribo/tests/test_pythonpath_support.rs +321 -0
  291. cribo-0.4.13/crates/cribo/tests/test_regular_import_aliases.rs +292 -0
  292. cribo-0.4.13/crates/cribo/tests/test_relative_imports.rs +104 -0
  293. cribo-0.4.13/crates/cribo/tests/test_unused_imports_simple.rs +44 -0
  294. cribo-0.4.13/crates/cribo/tests/test_virtualenv_support.rs +900 -0
  295. cribo-0.4.13/pyproject.toml +49 -0
  296. cribo-0.4.13/python/cribo/__init__.py +11 -0
  297. cribo-0.4.13/python/cribo/__main__.py +27 -0
  298. cribo-0.4.13/python/cribo/py.typed +22 -0
@@ -0,0 +1,2839 @@
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.3"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
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 = "anes"
22
+ version = "0.1.6"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
25
+
26
+ [[package]]
27
+ name = "annotate-snippets"
28
+ version = "0.11.5"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4"
31
+ dependencies = [
32
+ "anstyle",
33
+ "unicode-width 0.2.0",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "anstream"
38
+ version = "0.6.19"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
41
+ dependencies = [
42
+ "anstyle",
43
+ "anstyle-parse",
44
+ "anstyle-query",
45
+ "anstyle-wincon",
46
+ "colorchoice",
47
+ "is_terminal_polyfill",
48
+ "utf8parse",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "anstyle"
53
+ version = "1.0.11"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
56
+
57
+ [[package]]
58
+ name = "anstyle-parse"
59
+ version = "0.2.7"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
62
+ dependencies = [
63
+ "utf8parse",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "anstyle-query"
68
+ version = "1.1.3"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
71
+ dependencies = [
72
+ "windows-sys",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "anstyle-wincon"
77
+ version = "3.0.9"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
80
+ dependencies = [
81
+ "anstyle",
82
+ "once_cell_polyfill",
83
+ "windows-sys",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "anyhow"
88
+ version = "1.0.98"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
91
+
92
+ [[package]]
93
+ name = "autocfg"
94
+ version = "1.4.0"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
97
+
98
+ [[package]]
99
+ name = "bitflags"
100
+ version = "2.9.1"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
103
+
104
+ [[package]]
105
+ name = "boxcar"
106
+ version = "0.2.12"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "66bb12751a83493ef4b8da1120451a262554e216a247f14b48cb5e8fe7ed8bdf"
109
+
110
+ [[package]]
111
+ name = "bstr"
112
+ version = "1.12.0"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
115
+ dependencies = [
116
+ "memchr",
117
+ "regex-automata",
118
+ "serde",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "bumpalo"
123
+ version = "3.18.1"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
126
+
127
+ [[package]]
128
+ name = "byteorder"
129
+ version = "1.5.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
132
+
133
+ [[package]]
134
+ name = "camino"
135
+ version = "1.1.10"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab"
138
+
139
+ [[package]]
140
+ name = "cast"
141
+ version = "0.3.0"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
144
+
145
+ [[package]]
146
+ name = "castaway"
147
+ version = "0.2.3"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
150
+ dependencies = [
151
+ "rustversion",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "cfg-if"
156
+ version = "1.0.0"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
159
+
160
+ [[package]]
161
+ name = "chrono"
162
+ version = "0.4.41"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
165
+ dependencies = [
166
+ "num-traits",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "ciborium"
171
+ version = "0.2.2"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
174
+ dependencies = [
175
+ "ciborium-io",
176
+ "ciborium-ll",
177
+ "serde",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "ciborium-io"
182
+ version = "0.2.2"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
185
+
186
+ [[package]]
187
+ name = "ciborium-ll"
188
+ version = "0.2.2"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
191
+ dependencies = [
192
+ "ciborium-io",
193
+ "half",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "clap"
198
+ version = "4.5.39"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "fd60e63e9be68e5fb56422e397cf9baddded06dae1d2e523401542383bc72a9f"
201
+ dependencies = [
202
+ "clap_builder",
203
+ "clap_derive",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "clap_builder"
208
+ version = "4.5.39"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "89cc6392a1f72bbeb820d71f32108f61fdaf18bc526e1d23954168a67759ef51"
211
+ dependencies = [
212
+ "anstream",
213
+ "anstyle",
214
+ "clap_lex",
215
+ "strsim",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "clap_derive"
220
+ version = "4.5.32"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
223
+ dependencies = [
224
+ "heck",
225
+ "proc-macro2",
226
+ "quote",
227
+ "syn",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "clap_lex"
232
+ version = "0.7.4"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
235
+
236
+ [[package]]
237
+ name = "colorchoice"
238
+ version = "1.0.4"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
241
+
242
+ [[package]]
243
+ name = "colored"
244
+ version = "3.0.0"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
247
+ dependencies = [
248
+ "windows-sys",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "compact_str"
253
+ version = "0.9.0"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
256
+ dependencies = [
257
+ "castaway",
258
+ "cfg-if",
259
+ "itoa",
260
+ "rustversion",
261
+ "ryu",
262
+ "serde",
263
+ "static_assertions",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "console"
268
+ version = "0.15.11"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
271
+ dependencies = [
272
+ "encode_unicode",
273
+ "libc",
274
+ "once_cell",
275
+ "windows-sys",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "countme"
280
+ version = "3.0.1"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
283
+
284
+ [[package]]
285
+ name = "cow-utils"
286
+ version = "0.1.3"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
289
+
290
+ [[package]]
291
+ name = "crc32fast"
292
+ version = "1.4.2"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
295
+ dependencies = [
296
+ "cfg-if",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "cribo"
301
+ version = "0.4.13"
302
+ dependencies = [
303
+ "anyhow",
304
+ "clap",
305
+ "cow-utils",
306
+ "criterion",
307
+ "env_logger",
308
+ "etcetera",
309
+ "indexmap",
310
+ "insta",
311
+ "log",
312
+ "once_cell",
313
+ "petgraph",
314
+ "regex",
315
+ "ruff_linter",
316
+ "ruff_python_ast",
317
+ "ruff_python_codegen",
318
+ "ruff_python_parser",
319
+ "ruff_python_stdlib",
320
+ "ruff_python_trivia",
321
+ "ruff_text_size",
322
+ "serde",
323
+ "serial_test",
324
+ "tempfile",
325
+ "toml",
326
+ "walkdir",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "criterion"
331
+ version = "0.6.0"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "3bf7af66b0989381bd0be551bd7cc91912a655a58c6918420c9527b1fd8b4679"
334
+ dependencies = [
335
+ "anes",
336
+ "cast",
337
+ "ciborium",
338
+ "clap",
339
+ "criterion-plot",
340
+ "itertools 0.13.0",
341
+ "num-traits",
342
+ "oorandom",
343
+ "plotters",
344
+ "rayon",
345
+ "regex",
346
+ "serde",
347
+ "serde_json",
348
+ "tinytemplate",
349
+ "walkdir",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "criterion-plot"
354
+ version = "0.5.0"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
357
+ dependencies = [
358
+ "cast",
359
+ "itertools 0.10.5",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "crossbeam-deque"
364
+ version = "0.8.6"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
367
+ dependencies = [
368
+ "crossbeam-epoch",
369
+ "crossbeam-utils",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "crossbeam-epoch"
374
+ version = "0.9.18"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
377
+ dependencies = [
378
+ "crossbeam-utils",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "crossbeam-queue"
383
+ version = "0.3.12"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
386
+ dependencies = [
387
+ "crossbeam-utils",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "crossbeam-utils"
392
+ version = "0.8.21"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
395
+
396
+ [[package]]
397
+ name = "crunchy"
398
+ version = "0.2.3"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
401
+
402
+ [[package]]
403
+ name = "darling"
404
+ version = "0.20.11"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
407
+ dependencies = [
408
+ "darling_core",
409
+ "darling_macro",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "darling_core"
414
+ version = "0.20.11"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
417
+ dependencies = [
418
+ "fnv",
419
+ "ident_case",
420
+ "proc-macro2",
421
+ "quote",
422
+ "strsim",
423
+ "syn",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "darling_macro"
428
+ version = "0.20.11"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
431
+ dependencies = [
432
+ "darling_core",
433
+ "quote",
434
+ "syn",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "dashmap"
439
+ version = "6.1.0"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
442
+ dependencies = [
443
+ "cfg-if",
444
+ "crossbeam-utils",
445
+ "hashbrown 0.14.5",
446
+ "lock_api",
447
+ "once_cell",
448
+ "parking_lot_core",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "displaydoc"
453
+ version = "0.2.5"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
456
+ dependencies = [
457
+ "proc-macro2",
458
+ "quote",
459
+ "syn",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "dunce"
464
+ version = "1.0.5"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
467
+
468
+ [[package]]
469
+ name = "either"
470
+ version = "1.15.0"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
473
+
474
+ [[package]]
475
+ name = "encode_unicode"
476
+ version = "1.0.0"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
479
+
480
+ [[package]]
481
+ name = "env_filter"
482
+ version = "0.1.3"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
485
+ dependencies = [
486
+ "log",
487
+ "regex",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "env_logger"
492
+ version = "0.11.8"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
495
+ dependencies = [
496
+ "anstream",
497
+ "anstyle",
498
+ "env_filter",
499
+ "jiff",
500
+ "log",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "equivalent"
505
+ version = "1.0.2"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
508
+
509
+ [[package]]
510
+ name = "errno"
511
+ version = "0.3.12"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
514
+ dependencies = [
515
+ "libc",
516
+ "windows-sys",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "etcetera"
521
+ version = "0.10.0"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "26c7b13d0780cb82722fd59f6f57f925e143427e4a75313a6c77243bf5326ae6"
524
+ dependencies = [
525
+ "cfg-if",
526
+ "home",
527
+ "windows-sys",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "fastrand"
532
+ version = "2.3.0"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
535
+
536
+ [[package]]
537
+ name = "fern"
538
+ version = "0.7.1"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29"
541
+ dependencies = [
542
+ "log",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "filetime"
547
+ version = "0.2.25"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
550
+ dependencies = [
551
+ "cfg-if",
552
+ "libc",
553
+ "libredox",
554
+ "windows-sys",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "fixedbitset"
559
+ version = "0.5.7"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
562
+
563
+ [[package]]
564
+ name = "fnv"
565
+ version = "1.0.7"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
568
+
569
+ [[package]]
570
+ name = "foldhash"
571
+ version = "0.1.5"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
574
+
575
+ [[package]]
576
+ name = "form_urlencoded"
577
+ version = "1.2.1"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
580
+ dependencies = [
581
+ "percent-encoding",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "futures"
586
+ version = "0.3.31"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
589
+ dependencies = [
590
+ "futures-channel",
591
+ "futures-core",
592
+ "futures-executor",
593
+ "futures-io",
594
+ "futures-sink",
595
+ "futures-task",
596
+ "futures-util",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "futures-channel"
601
+ version = "0.3.31"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
604
+ dependencies = [
605
+ "futures-core",
606
+ "futures-sink",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "futures-core"
611
+ version = "0.3.31"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
614
+
615
+ [[package]]
616
+ name = "futures-executor"
617
+ version = "0.3.31"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
620
+ dependencies = [
621
+ "futures-core",
622
+ "futures-task",
623
+ "futures-util",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "futures-io"
628
+ version = "0.3.31"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
631
+
632
+ [[package]]
633
+ name = "futures-sink"
634
+ version = "0.3.31"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
637
+
638
+ [[package]]
639
+ name = "futures-task"
640
+ version = "0.3.31"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
643
+
644
+ [[package]]
645
+ name = "futures-util"
646
+ version = "0.3.31"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
649
+ dependencies = [
650
+ "futures-channel",
651
+ "futures-core",
652
+ "futures-io",
653
+ "futures-sink",
654
+ "futures-task",
655
+ "memchr",
656
+ "pin-project-lite",
657
+ "pin-utils",
658
+ "slab",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "getopts"
663
+ version = "0.2.21"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
666
+ dependencies = [
667
+ "unicode-width 0.1.14",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "getrandom"
672
+ version = "0.2.16"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
675
+ dependencies = [
676
+ "cfg-if",
677
+ "libc",
678
+ "wasi 0.11.0+wasi-snapshot-preview1",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "getrandom"
683
+ version = "0.3.3"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
686
+ dependencies = [
687
+ "cfg-if",
688
+ "libc",
689
+ "r-efi",
690
+ "wasi 0.14.2+wasi-0.2.4",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "glob"
695
+ version = "0.3.2"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
698
+
699
+ [[package]]
700
+ name = "globset"
701
+ version = "0.4.16"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
704
+ dependencies = [
705
+ "aho-corasick",
706
+ "bstr",
707
+ "log",
708
+ "regex-automata",
709
+ "regex-syntax",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "half"
714
+ version = "2.6.0"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
717
+ dependencies = [
718
+ "cfg-if",
719
+ "crunchy",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "hashbrown"
724
+ version = "0.14.5"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
727
+
728
+ [[package]]
729
+ name = "hashbrown"
730
+ version = "0.15.4"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
733
+ dependencies = [
734
+ "allocator-api2",
735
+ "equivalent",
736
+ "foldhash",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "hashlink"
741
+ version = "0.10.0"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
744
+ dependencies = [
745
+ "hashbrown 0.15.4",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "heck"
750
+ version = "0.5.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
753
+
754
+ [[package]]
755
+ name = "home"
756
+ version = "0.5.11"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
759
+ dependencies = [
760
+ "windows-sys",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "icu_collections"
765
+ version = "2.0.0"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
768
+ dependencies = [
769
+ "displaydoc",
770
+ "potential_utf",
771
+ "yoke",
772
+ "zerofrom",
773
+ "zerovec",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "icu_locale_core"
778
+ version = "2.0.0"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
781
+ dependencies = [
782
+ "displaydoc",
783
+ "litemap",
784
+ "tinystr",
785
+ "writeable",
786
+ "zerovec",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "icu_normalizer"
791
+ version = "2.0.0"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
794
+ dependencies = [
795
+ "displaydoc",
796
+ "icu_collections",
797
+ "icu_normalizer_data",
798
+ "icu_properties",
799
+ "icu_provider",
800
+ "smallvec",
801
+ "zerovec",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "icu_normalizer_data"
806
+ version = "2.0.0"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
809
+
810
+ [[package]]
811
+ name = "icu_properties"
812
+ version = "2.0.1"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
815
+ dependencies = [
816
+ "displaydoc",
817
+ "icu_collections",
818
+ "icu_locale_core",
819
+ "icu_properties_data",
820
+ "icu_provider",
821
+ "potential_utf",
822
+ "zerotrie",
823
+ "zerovec",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "icu_properties_data"
828
+ version = "2.0.1"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
831
+
832
+ [[package]]
833
+ name = "icu_provider"
834
+ version = "2.0.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
837
+ dependencies = [
838
+ "displaydoc",
839
+ "icu_locale_core",
840
+ "stable_deref_trait",
841
+ "tinystr",
842
+ "writeable",
843
+ "yoke",
844
+ "zerofrom",
845
+ "zerotrie",
846
+ "zerovec",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "ident_case"
851
+ version = "1.0.1"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
854
+
855
+ [[package]]
856
+ name = "idna"
857
+ version = "1.0.3"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
860
+ dependencies = [
861
+ "idna_adapter",
862
+ "smallvec",
863
+ "utf8_iter",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "idna_adapter"
868
+ version = "1.2.1"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
871
+ dependencies = [
872
+ "icu_normalizer",
873
+ "icu_properties",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "imperative"
878
+ version = "1.0.6"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "29a1f6526af721f9aec9ceed7ab8ebfca47f3399d08b80056c2acca3fcb694a9"
881
+ dependencies = [
882
+ "phf",
883
+ "rust-stemmers",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "indexmap"
888
+ version = "2.9.0"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
891
+ dependencies = [
892
+ "equivalent",
893
+ "hashbrown 0.15.4",
894
+ "serde",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "insta"
899
+ version = "1.43.1"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "154934ea70c58054b556dd430b99a98c2a7ff5309ac9891597e339b5c28f4371"
902
+ dependencies = [
903
+ "console",
904
+ "once_cell",
905
+ "regex",
906
+ "similar",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "is-docker"
911
+ version = "0.2.0"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
914
+ dependencies = [
915
+ "once_cell",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "is-macro"
920
+ version = "0.3.7"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
923
+ dependencies = [
924
+ "heck",
925
+ "proc-macro2",
926
+ "quote",
927
+ "syn",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "is-wsl"
932
+ version = "0.4.0"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
935
+ dependencies = [
936
+ "is-docker",
937
+ "once_cell",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "is_terminal_polyfill"
942
+ version = "1.70.1"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
945
+
946
+ [[package]]
947
+ name = "itertools"
948
+ version = "0.10.5"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
951
+ dependencies = [
952
+ "either",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "itertools"
957
+ version = "0.13.0"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
960
+ dependencies = [
961
+ "either",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "itertools"
966
+ version = "0.14.0"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
969
+ dependencies = [
970
+ "either",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "itoa"
975
+ version = "1.0.15"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
978
+
979
+ [[package]]
980
+ name = "jiff"
981
+ version = "0.2.14"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "a194df1107f33c79f4f93d02c80798520551949d59dfad22b6157048a88cca93"
984
+ dependencies = [
985
+ "jiff-static",
986
+ "jiff-tzdb-platform",
987
+ "log",
988
+ "portable-atomic",
989
+ "portable-atomic-util",
990
+ "serde",
991
+ "windows-sys",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "jiff-static"
996
+ version = "0.2.14"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "6c6e1db7ed32c6c71b759497fae34bf7933636f75a251b9e736555da426f6442"
999
+ dependencies = [
1000
+ "proc-macro2",
1001
+ "quote",
1002
+ "syn",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "jiff-tzdb"
1007
+ version = "0.1.4"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "c1283705eb0a21404d2bfd6eef2a7593d240bc42a0bdb39db0ad6fa2ec026524"
1010
+
1011
+ [[package]]
1012
+ name = "jiff-tzdb-platform"
1013
+ version = "0.1.3"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
1016
+ dependencies = [
1017
+ "jiff-tzdb",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "js-sys"
1022
+ version = "0.3.77"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1025
+ dependencies = [
1026
+ "once_cell",
1027
+ "wasm-bindgen",
1028
+ ]
1029
+
1030
+ [[package]]
1031
+ name = "libc"
1032
+ version = "0.2.172"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1035
+
1036
+ [[package]]
1037
+ name = "libcst"
1038
+ version = "1.8.0"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "3ac076e37f8fe6bcddbb6c3282897e6e9498b254907ccbfc806dc8f9f1491f02"
1041
+ dependencies = [
1042
+ "annotate-snippets",
1043
+ "libcst_derive",
1044
+ "memchr",
1045
+ "paste",
1046
+ "peg",
1047
+ "regex",
1048
+ "thiserror 2.0.12",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "libcst_derive"
1053
+ version = "1.8.0"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "9cf4a12c744a301b216c4f0cb73542709ab15e6dadbb06966ac05864109d05da"
1056
+ dependencies = [
1057
+ "quote",
1058
+ "syn",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "libredox"
1063
+ version = "0.1.3"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1066
+ dependencies = [
1067
+ "bitflags",
1068
+ "libc",
1069
+ "redox_syscall",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "linux-raw-sys"
1074
+ version = "0.9.4"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1077
+
1078
+ [[package]]
1079
+ name = "litemap"
1080
+ version = "0.8.0"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1083
+
1084
+ [[package]]
1085
+ name = "lock_api"
1086
+ version = "0.4.13"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1089
+ dependencies = [
1090
+ "autocfg",
1091
+ "scopeguard",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "log"
1096
+ version = "0.4.27"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1099
+
1100
+ [[package]]
1101
+ name = "matches"
1102
+ version = "0.1.10"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
1105
+
1106
+ [[package]]
1107
+ name = "matchit"
1108
+ version = "0.8.6"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "2f926ade0c4e170215ae43342bf13b9310a437609c81f29f86c5df6657582ef9"
1111
+
1112
+ [[package]]
1113
+ name = "memchr"
1114
+ version = "2.7.4"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1117
+
1118
+ [[package]]
1119
+ name = "natord"
1120
+ version = "1.0.9"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "308d96db8debc727c3fd9744aac51751243420e46edf401010908da7f8d5e57c"
1123
+
1124
+ [[package]]
1125
+ name = "newtype-uuid"
1126
+ version = "1.2.2"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "a8ba303c7a8f8fdee1fe1513cfd918f50f1c69bf65c91b39217bfc2b2af5c081"
1129
+ dependencies = [
1130
+ "uuid",
1131
+ ]
1132
+
1133
+ [[package]]
1134
+ name = "num-traits"
1135
+ version = "0.2.19"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1138
+ dependencies = [
1139
+ "autocfg",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "once_cell"
1144
+ version = "1.21.3"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1147
+
1148
+ [[package]]
1149
+ name = "once_cell_polyfill"
1150
+ version = "1.70.1"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1153
+
1154
+ [[package]]
1155
+ name = "oorandom"
1156
+ version = "11.1.5"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1159
+
1160
+ [[package]]
1161
+ name = "parking_lot"
1162
+ version = "0.12.4"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1165
+ dependencies = [
1166
+ "lock_api",
1167
+ "parking_lot_core",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "parking_lot_core"
1172
+ version = "0.9.11"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1175
+ dependencies = [
1176
+ "cfg-if",
1177
+ "libc",
1178
+ "redox_syscall",
1179
+ "smallvec",
1180
+ "windows-targets",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "paste"
1185
+ version = "1.0.15"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1188
+
1189
+ [[package]]
1190
+ name = "path-absolutize"
1191
+ version = "3.1.1"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5"
1194
+ dependencies = [
1195
+ "path-dedot",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "path-dedot"
1200
+ version = "3.1.1"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397"
1203
+ dependencies = [
1204
+ "once_cell",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "path-slash"
1209
+ version = "0.2.1"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
1212
+
1213
+ [[package]]
1214
+ name = "pathdiff"
1215
+ version = "0.2.3"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
1218
+
1219
+ [[package]]
1220
+ name = "peg"
1221
+ version = "0.8.5"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "9928cfca101b36ec5163e70049ee5368a8a1c3c6efc9ca9c5f9cc2f816152477"
1224
+ dependencies = [
1225
+ "peg-macros",
1226
+ "peg-runtime",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "peg-macros"
1231
+ version = "0.8.5"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "6298ab04c202fa5b5d52ba03269fb7b74550b150323038878fe6c372d8280f71"
1234
+ dependencies = [
1235
+ "peg-runtime",
1236
+ "proc-macro2",
1237
+ "quote",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "peg-runtime"
1242
+ version = "0.8.5"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "132dca9b868d927b35b5dd728167b2dee150eb1ad686008fc71ccb298b776fca"
1245
+
1246
+ [[package]]
1247
+ name = "pep440_rs"
1248
+ version = "0.7.3"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "31095ca1f396e3de32745f42b20deef7bc09077f918b085307e8eab6ddd8fb9c"
1251
+ dependencies = [
1252
+ "once_cell",
1253
+ "serde",
1254
+ "unicode-width 0.2.0",
1255
+ "unscanny",
1256
+ "version-ranges",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "pep508_rs"
1261
+ version = "0.9.2"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "faee7227064121fcadcd2ff788ea26f0d8f2bd23a0574da11eca23bc935bcc05"
1264
+ dependencies = [
1265
+ "boxcar",
1266
+ "indexmap",
1267
+ "itertools 0.13.0",
1268
+ "once_cell",
1269
+ "pep440_rs",
1270
+ "regex",
1271
+ "rustc-hash",
1272
+ "serde",
1273
+ "smallvec",
1274
+ "thiserror 1.0.69",
1275
+ "unicode-width 0.2.0",
1276
+ "url",
1277
+ "urlencoding",
1278
+ "version-ranges",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "percent-encoding"
1283
+ version = "2.3.1"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1286
+
1287
+ [[package]]
1288
+ name = "petgraph"
1289
+ version = "0.8.2"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "54acf3a685220b533e437e264e4d932cfbdc4cc7ec0cd232ed73c08d03b8a7ca"
1292
+ dependencies = [
1293
+ "fixedbitset",
1294
+ "hashbrown 0.15.4",
1295
+ "indexmap",
1296
+ "serde",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "phf"
1301
+ version = "0.11.3"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1304
+ dependencies = [
1305
+ "phf_shared",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "phf_codegen"
1310
+ version = "0.11.3"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1313
+ dependencies = [
1314
+ "phf_generator",
1315
+ "phf_shared",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "phf_generator"
1320
+ version = "0.11.3"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1323
+ dependencies = [
1324
+ "phf_shared",
1325
+ "rand 0.8.5",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "phf_shared"
1330
+ version = "0.11.3"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1333
+ dependencies = [
1334
+ "siphasher",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "pin-project-lite"
1339
+ version = "0.2.16"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1342
+
1343
+ [[package]]
1344
+ name = "pin-utils"
1345
+ version = "0.1.0"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1348
+
1349
+ [[package]]
1350
+ name = "plotters"
1351
+ version = "0.3.7"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1354
+ dependencies = [
1355
+ "num-traits",
1356
+ "plotters-backend",
1357
+ "plotters-svg",
1358
+ "wasm-bindgen",
1359
+ "web-sys",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "plotters-backend"
1364
+ version = "0.3.7"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1367
+
1368
+ [[package]]
1369
+ name = "plotters-svg"
1370
+ version = "0.3.7"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1373
+ dependencies = [
1374
+ "plotters-backend",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "portable-atomic"
1379
+ version = "1.11.1"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1382
+
1383
+ [[package]]
1384
+ name = "portable-atomic-util"
1385
+ version = "0.2.4"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1388
+ dependencies = [
1389
+ "portable-atomic",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "potential_utf"
1394
+ version = "0.1.2"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
1397
+ dependencies = [
1398
+ "zerovec",
1399
+ ]
1400
+
1401
+ [[package]]
1402
+ name = "ppv-lite86"
1403
+ version = "0.2.21"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1406
+ dependencies = [
1407
+ "zerocopy",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "proc-macro2"
1412
+ version = "1.0.95"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1415
+ dependencies = [
1416
+ "unicode-ident",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "pyproject-toml"
1421
+ version = "0.13.4"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "643af57c3f36ba90a8b53e972727d8092f7408a9ebfbaf4c3d2c17b07c58d835"
1424
+ dependencies = [
1425
+ "indexmap",
1426
+ "pep440_rs",
1427
+ "pep508_rs",
1428
+ "serde",
1429
+ "thiserror 1.0.69",
1430
+ "toml",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "quick-junit"
1435
+ version = "0.5.1"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "3ed1a693391a16317257103ad06a88c6529ac640846021da7c435a06fffdacd7"
1438
+ dependencies = [
1439
+ "chrono",
1440
+ "indexmap",
1441
+ "newtype-uuid",
1442
+ "quick-xml",
1443
+ "strip-ansi-escapes",
1444
+ "thiserror 2.0.12",
1445
+ "uuid",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "quick-xml"
1450
+ version = "0.37.5"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
1453
+ dependencies = [
1454
+ "memchr",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "quote"
1459
+ version = "1.0.40"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1462
+ dependencies = [
1463
+ "proc-macro2",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "r-efi"
1468
+ version = "5.2.0"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
1471
+
1472
+ [[package]]
1473
+ name = "rand"
1474
+ version = "0.8.5"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1477
+ dependencies = [
1478
+ "libc",
1479
+ "rand_chacha 0.3.1",
1480
+ "rand_core 0.6.4",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "rand"
1485
+ version = "0.9.1"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
1488
+ dependencies = [
1489
+ "rand_chacha 0.9.0",
1490
+ "rand_core 0.9.3",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "rand_chacha"
1495
+ version = "0.3.1"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1498
+ dependencies = [
1499
+ "ppv-lite86",
1500
+ "rand_core 0.6.4",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "rand_chacha"
1505
+ version = "0.9.0"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1508
+ dependencies = [
1509
+ "ppv-lite86",
1510
+ "rand_core 0.9.3",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "rand_core"
1515
+ version = "0.6.4"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1518
+ dependencies = [
1519
+ "getrandom 0.2.16",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "rand_core"
1524
+ version = "0.9.3"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1527
+ dependencies = [
1528
+ "getrandom 0.3.3",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "rayon"
1533
+ version = "1.10.0"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
1536
+ dependencies = [
1537
+ "either",
1538
+ "rayon-core",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "rayon-core"
1543
+ version = "1.12.1"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
1546
+ dependencies = [
1547
+ "crossbeam-deque",
1548
+ "crossbeam-utils",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "redox_syscall"
1553
+ version = "0.5.12"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
1556
+ dependencies = [
1557
+ "bitflags",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "regex"
1562
+ version = "1.11.1"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1565
+ dependencies = [
1566
+ "aho-corasick",
1567
+ "memchr",
1568
+ "regex-automata",
1569
+ "regex-syntax",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "regex-automata"
1574
+ version = "0.4.9"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1577
+ dependencies = [
1578
+ "aho-corasick",
1579
+ "memchr",
1580
+ "regex-syntax",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "regex-syntax"
1585
+ version = "0.8.5"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1588
+
1589
+ [[package]]
1590
+ name = "ruff_annotate_snippets"
1591
+ version = "0.1.0"
1592
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1593
+ dependencies = [
1594
+ "anstyle",
1595
+ "memchr",
1596
+ "unicode-width 0.2.0",
1597
+ ]
1598
+
1599
+ [[package]]
1600
+ name = "ruff_cache"
1601
+ version = "0.0.0"
1602
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1603
+ dependencies = [
1604
+ "filetime",
1605
+ "glob",
1606
+ "globset",
1607
+ "itertools 0.14.0",
1608
+ "regex",
1609
+ "seahash",
1610
+ ]
1611
+
1612
+ [[package]]
1613
+ name = "ruff_db"
1614
+ version = "0.0.0"
1615
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1616
+ dependencies = [
1617
+ "anstyle",
1618
+ "camino",
1619
+ "countme",
1620
+ "dashmap",
1621
+ "dunce",
1622
+ "filetime",
1623
+ "glob",
1624
+ "matchit",
1625
+ "path-slash",
1626
+ "ruff_annotate_snippets",
1627
+ "ruff_notebook",
1628
+ "ruff_python_ast",
1629
+ "ruff_python_parser",
1630
+ "ruff_python_trivia",
1631
+ "ruff_source_file",
1632
+ "ruff_text_size",
1633
+ "rustc-hash",
1634
+ "salsa",
1635
+ "thiserror 2.0.12",
1636
+ "tracing",
1637
+ "web-time",
1638
+ "zip",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "ruff_diagnostics"
1643
+ version = "0.0.0"
1644
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1645
+ dependencies = [
1646
+ "is-macro",
1647
+ "ruff_text_size",
1648
+ "serde",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "ruff_index"
1653
+ version = "0.0.0"
1654
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1655
+ dependencies = [
1656
+ "ruff_macros",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "ruff_linter"
1661
+ version = "0.11.12"
1662
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1663
+ dependencies = [
1664
+ "aho-corasick",
1665
+ "anyhow",
1666
+ "bitflags",
1667
+ "colored",
1668
+ "fern",
1669
+ "glob",
1670
+ "globset",
1671
+ "imperative",
1672
+ "is-macro",
1673
+ "is-wsl",
1674
+ "itertools 0.14.0",
1675
+ "jiff",
1676
+ "libcst",
1677
+ "log",
1678
+ "memchr",
1679
+ "natord",
1680
+ "path-absolutize",
1681
+ "pathdiff",
1682
+ "pep440_rs",
1683
+ "pyproject-toml",
1684
+ "quick-junit",
1685
+ "regex",
1686
+ "ruff_annotate_snippets",
1687
+ "ruff_cache",
1688
+ "ruff_db",
1689
+ "ruff_diagnostics",
1690
+ "ruff_macros",
1691
+ "ruff_notebook",
1692
+ "ruff_python_ast",
1693
+ "ruff_python_codegen",
1694
+ "ruff_python_index",
1695
+ "ruff_python_literal",
1696
+ "ruff_python_parser",
1697
+ "ruff_python_semantic",
1698
+ "ruff_python_stdlib",
1699
+ "ruff_python_trivia",
1700
+ "ruff_source_file",
1701
+ "ruff_text_size",
1702
+ "rustc-hash",
1703
+ "serde",
1704
+ "serde_json",
1705
+ "similar",
1706
+ "smallvec",
1707
+ "strum",
1708
+ "strum_macros",
1709
+ "thiserror 2.0.12",
1710
+ "toml",
1711
+ "typed-arena",
1712
+ "unicode-normalization",
1713
+ "unicode-width 0.2.0",
1714
+ "unicode_names2",
1715
+ "url",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "ruff_macros"
1720
+ version = "0.0.0"
1721
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1722
+ dependencies = [
1723
+ "heck",
1724
+ "itertools 0.14.0",
1725
+ "proc-macro2",
1726
+ "quote",
1727
+ "ruff_python_trivia",
1728
+ "syn",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "ruff_notebook"
1733
+ version = "0.0.0"
1734
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1735
+ dependencies = [
1736
+ "anyhow",
1737
+ "itertools 0.14.0",
1738
+ "rand 0.9.1",
1739
+ "ruff_diagnostics",
1740
+ "ruff_source_file",
1741
+ "ruff_text_size",
1742
+ "serde",
1743
+ "serde_json",
1744
+ "serde_with",
1745
+ "thiserror 2.0.12",
1746
+ "uuid",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "ruff_python_ast"
1751
+ version = "0.0.0"
1752
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1753
+ dependencies = [
1754
+ "aho-corasick",
1755
+ "bitflags",
1756
+ "compact_str",
1757
+ "is-macro",
1758
+ "itertools 0.14.0",
1759
+ "memchr",
1760
+ "ruff_cache",
1761
+ "ruff_macros",
1762
+ "ruff_python_trivia",
1763
+ "ruff_source_file",
1764
+ "ruff_text_size",
1765
+ "rustc-hash",
1766
+ "serde",
1767
+ ]
1768
+
1769
+ [[package]]
1770
+ name = "ruff_python_codegen"
1771
+ version = "0.0.0"
1772
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1773
+ dependencies = [
1774
+ "ruff_python_ast",
1775
+ "ruff_python_literal",
1776
+ "ruff_python_parser",
1777
+ "ruff_source_file",
1778
+ "ruff_text_size",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "ruff_python_index"
1783
+ version = "0.0.0"
1784
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1785
+ dependencies = [
1786
+ "ruff_python_ast",
1787
+ "ruff_python_parser",
1788
+ "ruff_python_trivia",
1789
+ "ruff_source_file",
1790
+ "ruff_text_size",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "ruff_python_literal"
1795
+ version = "0.0.0"
1796
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1797
+ dependencies = [
1798
+ "bitflags",
1799
+ "itertools 0.14.0",
1800
+ "ruff_python_ast",
1801
+ "unic-ucd-category",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "ruff_python_parser"
1806
+ version = "0.0.0"
1807
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1808
+ dependencies = [
1809
+ "bitflags",
1810
+ "bstr",
1811
+ "compact_str",
1812
+ "memchr",
1813
+ "ruff_python_ast",
1814
+ "ruff_python_trivia",
1815
+ "ruff_text_size",
1816
+ "rustc-hash",
1817
+ "static_assertions",
1818
+ "unicode-ident",
1819
+ "unicode-normalization",
1820
+ "unicode_names2",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "ruff_python_semantic"
1825
+ version = "0.0.0"
1826
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1827
+ dependencies = [
1828
+ "bitflags",
1829
+ "is-macro",
1830
+ "ruff_cache",
1831
+ "ruff_index",
1832
+ "ruff_macros",
1833
+ "ruff_python_ast",
1834
+ "ruff_python_parser",
1835
+ "ruff_python_stdlib",
1836
+ "ruff_text_size",
1837
+ "rustc-hash",
1838
+ "smallvec",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "ruff_python_stdlib"
1843
+ version = "0.0.0"
1844
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1845
+ dependencies = [
1846
+ "bitflags",
1847
+ "unicode-ident",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "ruff_python_trivia"
1852
+ version = "0.0.0"
1853
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1854
+ dependencies = [
1855
+ "itertools 0.14.0",
1856
+ "ruff_source_file",
1857
+ "ruff_text_size",
1858
+ "unicode-ident",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "ruff_source_file"
1863
+ version = "0.0.0"
1864
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1865
+ dependencies = [
1866
+ "memchr",
1867
+ "ruff_text_size",
1868
+ "serde",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "ruff_text_size"
1873
+ version = "0.0.0"
1874
+ source = "git+https://github.com/astral-sh/ruff/?rev=0.11.12#aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"
1875
+ dependencies = [
1876
+ "serde",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "rust-stemmers"
1881
+ version = "1.2.0"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
1884
+ dependencies = [
1885
+ "serde",
1886
+ "serde_derive",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "rustc-hash"
1891
+ version = "2.1.1"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1894
+
1895
+ [[package]]
1896
+ name = "rustix"
1897
+ version = "1.0.7"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
1900
+ dependencies = [
1901
+ "bitflags",
1902
+ "errno",
1903
+ "libc",
1904
+ "linux-raw-sys",
1905
+ "windows-sys",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "rustversion"
1910
+ version = "1.0.21"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
1913
+
1914
+ [[package]]
1915
+ name = "ryu"
1916
+ version = "1.0.20"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1919
+
1920
+ [[package]]
1921
+ name = "salsa"
1922
+ version = "0.21.1"
1923
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=4818b15f3b7516555d39f5a41cb75970448bee4c#4818b15f3b7516555d39f5a41cb75970448bee4c"
1924
+ dependencies = [
1925
+ "boxcar",
1926
+ "crossbeam-queue",
1927
+ "dashmap",
1928
+ "hashbrown 0.15.4",
1929
+ "hashlink",
1930
+ "indexmap",
1931
+ "parking_lot",
1932
+ "portable-atomic",
1933
+ "rayon",
1934
+ "rustc-hash",
1935
+ "salsa-macro-rules",
1936
+ "salsa-macros",
1937
+ "smallvec",
1938
+ "thin-vec",
1939
+ "tracing",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "salsa-macro-rules"
1944
+ version = "0.21.1"
1945
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=4818b15f3b7516555d39f5a41cb75970448bee4c#4818b15f3b7516555d39f5a41cb75970448bee4c"
1946
+
1947
+ [[package]]
1948
+ name = "salsa-macros"
1949
+ version = "0.21.1"
1950
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=4818b15f3b7516555d39f5a41cb75970448bee4c#4818b15f3b7516555d39f5a41cb75970448bee4c"
1951
+ dependencies = [
1952
+ "heck",
1953
+ "proc-macro2",
1954
+ "quote",
1955
+ "syn",
1956
+ "synstructure",
1957
+ ]
1958
+
1959
+ [[package]]
1960
+ name = "same-file"
1961
+ version = "1.0.6"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1964
+ dependencies = [
1965
+ "winapi-util",
1966
+ ]
1967
+
1968
+ [[package]]
1969
+ name = "scc"
1970
+ version = "2.3.4"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "22b2d775fb28f245817589471dd49c5edf64237f4a19d10ce9a92ff4651a27f4"
1973
+ dependencies = [
1974
+ "sdd",
1975
+ ]
1976
+
1977
+ [[package]]
1978
+ name = "scopeguard"
1979
+ version = "1.2.0"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1982
+
1983
+ [[package]]
1984
+ name = "sdd"
1985
+ version = "3.0.8"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "584e070911c7017da6cb2eb0788d09f43d789029b5877d3e5ecc8acf86ceee21"
1988
+
1989
+ [[package]]
1990
+ name = "seahash"
1991
+ version = "4.1.0"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1994
+
1995
+ [[package]]
1996
+ name = "serde"
1997
+ version = "1.0.219"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2000
+ dependencies = [
2001
+ "serde_derive",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "serde_derive"
2006
+ version = "1.0.219"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2009
+ dependencies = [
2010
+ "proc-macro2",
2011
+ "quote",
2012
+ "syn",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "serde_json"
2017
+ version = "1.0.140"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
2020
+ dependencies = [
2021
+ "itoa",
2022
+ "memchr",
2023
+ "ryu",
2024
+ "serde",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "serde_spanned"
2029
+ version = "0.6.9"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2032
+ dependencies = [
2033
+ "serde",
2034
+ ]
2035
+
2036
+ [[package]]
2037
+ name = "serde_with"
2038
+ version = "3.12.0"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
2041
+ dependencies = [
2042
+ "serde",
2043
+ "serde_derive",
2044
+ "serde_with_macros",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "serde_with_macros"
2049
+ version = "3.12.0"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
2052
+ dependencies = [
2053
+ "darling",
2054
+ "proc-macro2",
2055
+ "quote",
2056
+ "syn",
2057
+ ]
2058
+
2059
+ [[package]]
2060
+ name = "serial_test"
2061
+ version = "3.2.0"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9"
2064
+ dependencies = [
2065
+ "futures",
2066
+ "log",
2067
+ "once_cell",
2068
+ "parking_lot",
2069
+ "scc",
2070
+ "serial_test_derive",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "serial_test_derive"
2075
+ version = "3.2.0"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef"
2078
+ dependencies = [
2079
+ "proc-macro2",
2080
+ "quote",
2081
+ "syn",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "similar"
2086
+ version = "2.7.0"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
2089
+
2090
+ [[package]]
2091
+ name = "siphasher"
2092
+ version = "1.0.1"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2095
+
2096
+ [[package]]
2097
+ name = "slab"
2098
+ version = "0.4.9"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2101
+ dependencies = [
2102
+ "autocfg",
2103
+ ]
2104
+
2105
+ [[package]]
2106
+ name = "smallvec"
2107
+ version = "1.15.1"
2108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2109
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2110
+
2111
+ [[package]]
2112
+ name = "stable_deref_trait"
2113
+ version = "1.2.0"
2114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2115
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2116
+
2117
+ [[package]]
2118
+ name = "static_assertions"
2119
+ version = "1.1.0"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2122
+
2123
+ [[package]]
2124
+ name = "strip-ansi-escapes"
2125
+ version = "0.2.1"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "2a8f8038e7e7969abb3f1b7c2a811225e9296da208539e0f79c5251d6cac0025"
2128
+ dependencies = [
2129
+ "vte",
2130
+ ]
2131
+
2132
+ [[package]]
2133
+ name = "strsim"
2134
+ version = "0.11.1"
2135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2136
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2137
+
2138
+ [[package]]
2139
+ name = "strum"
2140
+ version = "0.27.1"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
2143
+ dependencies = [
2144
+ "strum_macros",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "strum_macros"
2149
+ version = "0.27.1"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
2152
+ dependencies = [
2153
+ "heck",
2154
+ "proc-macro2",
2155
+ "quote",
2156
+ "rustversion",
2157
+ "syn",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "syn"
2162
+ version = "2.0.101"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
2165
+ dependencies = [
2166
+ "proc-macro2",
2167
+ "quote",
2168
+ "unicode-ident",
2169
+ ]
2170
+
2171
+ [[package]]
2172
+ name = "synstructure"
2173
+ version = "0.13.2"
2174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2175
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2176
+ dependencies = [
2177
+ "proc-macro2",
2178
+ "quote",
2179
+ "syn",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "tempfile"
2184
+ version = "3.20.0"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
2187
+ dependencies = [
2188
+ "fastrand",
2189
+ "getrandom 0.3.3",
2190
+ "once_cell",
2191
+ "rustix",
2192
+ "windows-sys",
2193
+ ]
2194
+
2195
+ [[package]]
2196
+ name = "thin-vec"
2197
+ version = "0.2.14"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
2200
+
2201
+ [[package]]
2202
+ name = "thiserror"
2203
+ version = "1.0.69"
2204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2205
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2206
+ dependencies = [
2207
+ "thiserror-impl 1.0.69",
2208
+ ]
2209
+
2210
+ [[package]]
2211
+ name = "thiserror"
2212
+ version = "2.0.12"
2213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2214
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
2215
+ dependencies = [
2216
+ "thiserror-impl 2.0.12",
2217
+ ]
2218
+
2219
+ [[package]]
2220
+ name = "thiserror-impl"
2221
+ version = "1.0.69"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2224
+ dependencies = [
2225
+ "proc-macro2",
2226
+ "quote",
2227
+ "syn",
2228
+ ]
2229
+
2230
+ [[package]]
2231
+ name = "thiserror-impl"
2232
+ version = "2.0.12"
2233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2235
+ dependencies = [
2236
+ "proc-macro2",
2237
+ "quote",
2238
+ "syn",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "tinystr"
2243
+ version = "0.8.1"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
2246
+ dependencies = [
2247
+ "displaydoc",
2248
+ "zerovec",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "tinytemplate"
2253
+ version = "1.2.1"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2256
+ dependencies = [
2257
+ "serde",
2258
+ "serde_json",
2259
+ ]
2260
+
2261
+ [[package]]
2262
+ name = "tinyvec"
2263
+ version = "1.9.0"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
2266
+ dependencies = [
2267
+ "tinyvec_macros",
2268
+ ]
2269
+
2270
+ [[package]]
2271
+ name = "tinyvec_macros"
2272
+ version = "0.1.1"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2275
+
2276
+ [[package]]
2277
+ name = "toml"
2278
+ version = "0.8.23"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2281
+ dependencies = [
2282
+ "serde",
2283
+ "serde_spanned",
2284
+ "toml_datetime",
2285
+ "toml_edit",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "toml_datetime"
2290
+ version = "0.6.11"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2293
+ dependencies = [
2294
+ "serde",
2295
+ ]
2296
+
2297
+ [[package]]
2298
+ name = "toml_edit"
2299
+ version = "0.22.27"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2302
+ dependencies = [
2303
+ "indexmap",
2304
+ "serde",
2305
+ "serde_spanned",
2306
+ "toml_datetime",
2307
+ "toml_write",
2308
+ "winnow",
2309
+ ]
2310
+
2311
+ [[package]]
2312
+ name = "toml_write"
2313
+ version = "0.1.2"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2316
+
2317
+ [[package]]
2318
+ name = "tracing"
2319
+ version = "0.1.41"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2322
+ dependencies = [
2323
+ "pin-project-lite",
2324
+ "tracing-attributes",
2325
+ "tracing-core",
2326
+ ]
2327
+
2328
+ [[package]]
2329
+ name = "tracing-attributes"
2330
+ version = "0.1.29"
2331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2332
+ checksum = "1b1ffbcf9c6f6b99d386e7444eb608ba646ae452a36b39737deb9663b610f662"
2333
+ dependencies = [
2334
+ "proc-macro2",
2335
+ "quote",
2336
+ "syn",
2337
+ ]
2338
+
2339
+ [[package]]
2340
+ name = "tracing-core"
2341
+ version = "0.1.34"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
2344
+ dependencies = [
2345
+ "once_cell",
2346
+ ]
2347
+
2348
+ [[package]]
2349
+ name = "typed-arena"
2350
+ version = "2.0.2"
2351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2352
+ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
2353
+
2354
+ [[package]]
2355
+ name = "unic-char-property"
2356
+ version = "0.9.0"
2357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2358
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
2359
+ dependencies = [
2360
+ "unic-char-range",
2361
+ ]
2362
+
2363
+ [[package]]
2364
+ name = "unic-char-range"
2365
+ version = "0.9.0"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
2368
+
2369
+ [[package]]
2370
+ name = "unic-common"
2371
+ version = "0.9.0"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
2374
+
2375
+ [[package]]
2376
+ name = "unic-ucd-category"
2377
+ version = "0.9.0"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0"
2380
+ dependencies = [
2381
+ "matches",
2382
+ "unic-char-property",
2383
+ "unic-char-range",
2384
+ "unic-ucd-version",
2385
+ ]
2386
+
2387
+ [[package]]
2388
+ name = "unic-ucd-version"
2389
+ version = "0.9.0"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
2392
+ dependencies = [
2393
+ "unic-common",
2394
+ ]
2395
+
2396
+ [[package]]
2397
+ name = "unicode-ident"
2398
+ version = "1.0.18"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2401
+
2402
+ [[package]]
2403
+ name = "unicode-normalization"
2404
+ version = "0.1.24"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
2407
+ dependencies = [
2408
+ "tinyvec",
2409
+ ]
2410
+
2411
+ [[package]]
2412
+ name = "unicode-width"
2413
+ version = "0.1.14"
2414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2415
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2416
+
2417
+ [[package]]
2418
+ name = "unicode-width"
2419
+ version = "0.2.0"
2420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2421
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
2422
+
2423
+ [[package]]
2424
+ name = "unicode_names2"
2425
+ version = "1.3.0"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
2428
+ dependencies = [
2429
+ "phf",
2430
+ "unicode_names2_generator",
2431
+ ]
2432
+
2433
+ [[package]]
2434
+ name = "unicode_names2_generator"
2435
+ version = "1.3.0"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
2438
+ dependencies = [
2439
+ "getopts",
2440
+ "log",
2441
+ "phf_codegen",
2442
+ "rand 0.8.5",
2443
+ ]
2444
+
2445
+ [[package]]
2446
+ name = "unscanny"
2447
+ version = "0.1.0"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47"
2450
+
2451
+ [[package]]
2452
+ name = "url"
2453
+ version = "2.5.4"
2454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2455
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
2456
+ dependencies = [
2457
+ "form_urlencoded",
2458
+ "idna",
2459
+ "percent-encoding",
2460
+ "serde",
2461
+ ]
2462
+
2463
+ [[package]]
2464
+ name = "urlencoding"
2465
+ version = "2.1.3"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2468
+
2469
+ [[package]]
2470
+ name = "utf8_iter"
2471
+ version = "1.0.4"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2474
+
2475
+ [[package]]
2476
+ name = "utf8parse"
2477
+ version = "0.2.2"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2480
+
2481
+ [[package]]
2482
+ name = "uuid"
2483
+ version = "1.17.0"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
2486
+ dependencies = [
2487
+ "getrandom 0.3.3",
2488
+ "js-sys",
2489
+ "rand 0.9.1",
2490
+ "uuid-macro-internal",
2491
+ "wasm-bindgen",
2492
+ ]
2493
+
2494
+ [[package]]
2495
+ name = "uuid-macro-internal"
2496
+ version = "1.17.0"
2497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2498
+ checksum = "26b682e8c381995ea03130e381928e0e005b7c9eb483c6c8682f50e07b33c2b7"
2499
+ dependencies = [
2500
+ "proc-macro2",
2501
+ "quote",
2502
+ "syn",
2503
+ ]
2504
+
2505
+ [[package]]
2506
+ name = "version-ranges"
2507
+ version = "0.1.1"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "f8d079415ceb2be83fc355adbadafe401307d5c309c7e6ade6638e6f9f42f42d"
2510
+ dependencies = [
2511
+ "smallvec",
2512
+ ]
2513
+
2514
+ [[package]]
2515
+ name = "vte"
2516
+ version = "0.14.1"
2517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2518
+ checksum = "231fdcd7ef3037e8330d8e17e61011a2c244126acc0a982f4040ac3f9f0bc077"
2519
+ dependencies = [
2520
+ "memchr",
2521
+ ]
2522
+
2523
+ [[package]]
2524
+ name = "walkdir"
2525
+ version = "2.5.0"
2526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2527
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2528
+ dependencies = [
2529
+ "same-file",
2530
+ "winapi-util",
2531
+ ]
2532
+
2533
+ [[package]]
2534
+ name = "wasi"
2535
+ version = "0.11.0+wasi-snapshot-preview1"
2536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2537
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2538
+
2539
+ [[package]]
2540
+ name = "wasi"
2541
+ version = "0.14.2+wasi-0.2.4"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
2544
+ dependencies = [
2545
+ "wit-bindgen-rt",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "wasm-bindgen"
2550
+ version = "0.2.100"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2553
+ dependencies = [
2554
+ "cfg-if",
2555
+ "once_cell",
2556
+ "rustversion",
2557
+ "wasm-bindgen-macro",
2558
+ ]
2559
+
2560
+ [[package]]
2561
+ name = "wasm-bindgen-backend"
2562
+ version = "0.2.100"
2563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2564
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2565
+ dependencies = [
2566
+ "bumpalo",
2567
+ "log",
2568
+ "proc-macro2",
2569
+ "quote",
2570
+ "syn",
2571
+ "wasm-bindgen-shared",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "wasm-bindgen-macro"
2576
+ version = "0.2.100"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2579
+ dependencies = [
2580
+ "quote",
2581
+ "wasm-bindgen-macro-support",
2582
+ ]
2583
+
2584
+ [[package]]
2585
+ name = "wasm-bindgen-macro-support"
2586
+ version = "0.2.100"
2587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2588
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2589
+ dependencies = [
2590
+ "proc-macro2",
2591
+ "quote",
2592
+ "syn",
2593
+ "wasm-bindgen-backend",
2594
+ "wasm-bindgen-shared",
2595
+ ]
2596
+
2597
+ [[package]]
2598
+ name = "wasm-bindgen-shared"
2599
+ version = "0.2.100"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2602
+ dependencies = [
2603
+ "unicode-ident",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "web-sys"
2608
+ version = "0.3.77"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
2611
+ dependencies = [
2612
+ "js-sys",
2613
+ "wasm-bindgen",
2614
+ ]
2615
+
2616
+ [[package]]
2617
+ name = "web-time"
2618
+ version = "1.1.0"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2621
+ dependencies = [
2622
+ "js-sys",
2623
+ "wasm-bindgen",
2624
+ ]
2625
+
2626
+ [[package]]
2627
+ name = "winapi-util"
2628
+ version = "0.1.9"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
2631
+ dependencies = [
2632
+ "windows-sys",
2633
+ ]
2634
+
2635
+ [[package]]
2636
+ name = "windows-sys"
2637
+ version = "0.59.0"
2638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2639
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2640
+ dependencies = [
2641
+ "windows-targets",
2642
+ ]
2643
+
2644
+ [[package]]
2645
+ name = "windows-targets"
2646
+ version = "0.52.6"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2649
+ dependencies = [
2650
+ "windows_aarch64_gnullvm",
2651
+ "windows_aarch64_msvc",
2652
+ "windows_i686_gnu",
2653
+ "windows_i686_gnullvm",
2654
+ "windows_i686_msvc",
2655
+ "windows_x86_64_gnu",
2656
+ "windows_x86_64_gnullvm",
2657
+ "windows_x86_64_msvc",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "windows_aarch64_gnullvm"
2662
+ version = "0.52.6"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2665
+
2666
+ [[package]]
2667
+ name = "windows_aarch64_msvc"
2668
+ version = "0.52.6"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2671
+
2672
+ [[package]]
2673
+ name = "windows_i686_gnu"
2674
+ version = "0.52.6"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2677
+
2678
+ [[package]]
2679
+ name = "windows_i686_gnullvm"
2680
+ version = "0.52.6"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2683
+
2684
+ [[package]]
2685
+ name = "windows_i686_msvc"
2686
+ version = "0.52.6"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2689
+
2690
+ [[package]]
2691
+ name = "windows_x86_64_gnu"
2692
+ version = "0.52.6"
2693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2694
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2695
+
2696
+ [[package]]
2697
+ name = "windows_x86_64_gnullvm"
2698
+ version = "0.52.6"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2701
+
2702
+ [[package]]
2703
+ name = "windows_x86_64_msvc"
2704
+ version = "0.52.6"
2705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2706
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2707
+
2708
+ [[package]]
2709
+ name = "winnow"
2710
+ version = "0.7.10"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
2713
+ dependencies = [
2714
+ "memchr",
2715
+ ]
2716
+
2717
+ [[package]]
2718
+ name = "wit-bindgen-rt"
2719
+ version = "0.39.0"
2720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
2722
+ dependencies = [
2723
+ "bitflags",
2724
+ ]
2725
+
2726
+ [[package]]
2727
+ name = "writeable"
2728
+ version = "0.6.1"
2729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2730
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
2731
+
2732
+ [[package]]
2733
+ name = "yoke"
2734
+ version = "0.8.0"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
2737
+ dependencies = [
2738
+ "serde",
2739
+ "stable_deref_trait",
2740
+ "yoke-derive",
2741
+ "zerofrom",
2742
+ ]
2743
+
2744
+ [[package]]
2745
+ name = "yoke-derive"
2746
+ version = "0.8.0"
2747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
2749
+ dependencies = [
2750
+ "proc-macro2",
2751
+ "quote",
2752
+ "syn",
2753
+ "synstructure",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "zerocopy"
2758
+ version = "0.8.25"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
2761
+ dependencies = [
2762
+ "zerocopy-derive",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "zerocopy-derive"
2767
+ version = "0.8.25"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
2770
+ dependencies = [
2771
+ "proc-macro2",
2772
+ "quote",
2773
+ "syn",
2774
+ ]
2775
+
2776
+ [[package]]
2777
+ name = "zerofrom"
2778
+ version = "0.1.6"
2779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2780
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2781
+ dependencies = [
2782
+ "zerofrom-derive",
2783
+ ]
2784
+
2785
+ [[package]]
2786
+ name = "zerofrom-derive"
2787
+ version = "0.1.6"
2788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2789
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2790
+ dependencies = [
2791
+ "proc-macro2",
2792
+ "quote",
2793
+ "syn",
2794
+ "synstructure",
2795
+ ]
2796
+
2797
+ [[package]]
2798
+ name = "zerotrie"
2799
+ version = "0.2.2"
2800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
2802
+ dependencies = [
2803
+ "displaydoc",
2804
+ "yoke",
2805
+ "zerofrom",
2806
+ ]
2807
+
2808
+ [[package]]
2809
+ name = "zerovec"
2810
+ version = "0.11.2"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
2813
+ dependencies = [
2814
+ "yoke",
2815
+ "zerofrom",
2816
+ "zerovec-derive",
2817
+ ]
2818
+
2819
+ [[package]]
2820
+ name = "zerovec-derive"
2821
+ version = "0.11.1"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
2824
+ dependencies = [
2825
+ "proc-macro2",
2826
+ "quote",
2827
+ "syn",
2828
+ ]
2829
+
2830
+ [[package]]
2831
+ name = "zip"
2832
+ version = "0.6.6"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
2835
+ dependencies = [
2836
+ "byteorder",
2837
+ "crc32fast",
2838
+ "crossbeam-utils",
2839
+ ]