cribo 0.0.0.dev118__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 (1207) hide show
  1. cribo-0.0.0.dev118/Cargo.lock +3289 -0
  2. cribo-0.0.0.dev118/Cargo.toml +196 -0
  3. cribo-0.0.0.dev118/LICENSE +30 -0
  4. cribo-0.0.0.dev118/PKG-INFO +475 -0
  5. cribo-0.0.0.dev118/README.md +450 -0
  6. cribo-0.0.0.dev118/crates/cribo/Cargo.toml +69 -0
  7. cribo-0.0.0.dev118/crates/cribo/README.md +450 -0
  8. cribo-0.0.0.dev118/crates/cribo/benches/bundling.rs +173 -0
  9. cribo-0.0.0.dev118/crates/cribo/benches/ecosystem.rs +198 -0
  10. cribo-0.0.0.dev118/crates/cribo/build.rs +25 -0
  11. cribo-0.0.0.dev118/crates/cribo/src/analyzers/dependency_analyzer.rs +266 -0
  12. cribo-0.0.0.dev118/crates/cribo/src/analyzers/global_analyzer.rs +411 -0
  13. cribo-0.0.0.dev118/crates/cribo/src/analyzers/import_analyzer.rs +1175 -0
  14. cribo-0.0.0.dev118/crates/cribo/src/analyzers/mod.rs +16 -0
  15. cribo-0.0.0.dev118/crates/cribo/src/analyzers/module_classifier.rs +356 -0
  16. cribo-0.0.0.dev118/crates/cribo/src/analyzers/symbol_analyzer.rs +157 -0
  17. cribo-0.0.0.dev118/crates/cribo/src/analyzers/types.rs +160 -0
  18. cribo-0.0.0.dev118/crates/cribo/src/ast_builder/expressions.rs +469 -0
  19. cribo-0.0.0.dev118/crates/cribo/src/ast_builder/mod.rs +63 -0
  20. cribo-0.0.0.dev118/crates/cribo/src/ast_builder/module_attr_merge.rs +68 -0
  21. cribo-0.0.0.dev118/crates/cribo/src/ast_builder/module_wrapper.rs +110 -0
  22. cribo-0.0.0.dev118/crates/cribo/src/ast_builder/other.rs +49 -0
  23. cribo-0.0.0.dev118/crates/cribo/src/ast_builder/proxy_generator.rs +606 -0
  24. cribo-0.0.0.dev118/crates/cribo/src/ast_builder/statements.rs +430 -0
  25. cribo-0.0.0.dev118/crates/cribo/src/ast_indexer.rs +253 -0
  26. cribo-0.0.0.dev118/crates/cribo/src/code_generator/bundler.rs +4151 -0
  27. cribo-0.0.0.dev118/crates/cribo/src/code_generator/circular_deps.rs +116 -0
  28. cribo-0.0.0.dev118/crates/cribo/src/code_generator/context.rs +87 -0
  29. cribo-0.0.0.dev118/crates/cribo/src/code_generator/docstring_extractor.rs +250 -0
  30. cribo-0.0.0.dev118/crates/cribo/src/code_generator/expression_handlers.rs +1213 -0
  31. cribo-0.0.0.dev118/crates/cribo/src/code_generator/globals.rs +971 -0
  32. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_deduplicator.rs +748 -0
  33. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/expr_rewriter.rs +660 -0
  34. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/handlers/dynamic.rs +197 -0
  35. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/handlers/fallback.rs +5 -0
  36. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/handlers/inlined.rs +848 -0
  37. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/handlers/mod.rs +9 -0
  38. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/handlers/relative.rs +272 -0
  39. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/handlers/statements.rs +453 -0
  40. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/handlers/stdlib.rs +157 -0
  41. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/handlers/submodule.rs +353 -0
  42. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/handlers/wrapper.rs +1278 -0
  43. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/mod.rs +1753 -0
  44. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/state.rs +93 -0
  45. cribo-0.0.0.dev118/crates/cribo/src/code_generator/import_transformer/statement.rs +103 -0
  46. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/body_preparation.rs +297 -0
  47. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/cleanup.rs +107 -0
  48. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/finalization.rs +128 -0
  49. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/import_analysis.rs +251 -0
  50. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/import_transformation.rs +147 -0
  51. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/initialization.rs +116 -0
  52. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/mod.rs +61 -0
  53. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/orchestrator.rs +128 -0
  54. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/state.rs +69 -0
  55. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/statement_processing.rs +48 -0
  56. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/submodules.rs +233 -0
  57. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/wildcard_imports.rs +90 -0
  58. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/wrapper_globals.rs +101 -0
  59. cribo-0.0.0.dev118/crates/cribo/src/code_generator/init_function/wrapper_symbols.rs +52 -0
  60. cribo-0.0.0.dev118/crates/cribo/src/code_generator/inliner.rs +722 -0
  61. cribo-0.0.0.dev118/crates/cribo/src/code_generator/mod.rs +27 -0
  62. cribo-0.0.0.dev118/crates/cribo/src/code_generator/module_registry.rs +476 -0
  63. cribo-0.0.0.dev118/crates/cribo/src/code_generator/module_transformer.rs +2642 -0
  64. cribo-0.0.0.dev118/crates/cribo/src/code_generator/namespace_manager.rs +975 -0
  65. cribo-0.0.0.dev118/crates/cribo/src/code_generator/phases/classification.rs +255 -0
  66. cribo-0.0.0.dev118/crates/cribo/src/code_generator/phases/entry_module.rs +491 -0
  67. cribo-0.0.0.dev118/crates/cribo/src/code_generator/phases/initialization.rs +147 -0
  68. cribo-0.0.0.dev118/crates/cribo/src/code_generator/phases/mod.rs +17 -0
  69. cribo-0.0.0.dev118/crates/cribo/src/code_generator/phases/orchestrator.rs +211 -0
  70. cribo-0.0.0.dev118/crates/cribo/src/code_generator/phases/post_processing.rs +305 -0
  71. cribo-0.0.0.dev118/crates/cribo/src/code_generator/phases/processing.rs +719 -0
  72. cribo-0.0.0.dev118/crates/cribo/src/code_generator/symbol_source.rs +214 -0
  73. cribo-0.0.0.dev118/crates/cribo/src/combine.rs +76 -0
  74. cribo-0.0.0.dev118/crates/cribo/src/config.rs +435 -0
  75. cribo-0.0.0.dev118/crates/cribo/src/dependency_graph.rs +759 -0
  76. cribo-0.0.0.dev118/crates/cribo/src/dirs.rs +154 -0
  77. cribo-0.0.0.dev118/crates/cribo/src/graph_builder.rs +1767 -0
  78. cribo-0.0.0.dev118/crates/cribo/src/import_alias_tracker.rs +52 -0
  79. cribo-0.0.0.dev118/crates/cribo/src/import_rewriter.rs +557 -0
  80. cribo-0.0.0.dev118/crates/cribo/src/lib.rs +34 -0
  81. cribo-0.0.0.dev118/crates/cribo/src/main.rs +143 -0
  82. cribo-0.0.0.dev118/crates/cribo/src/orchestrator.rs +2015 -0
  83. cribo-0.0.0.dev118/crates/cribo/src/python/constants.rs +10 -0
  84. cribo-0.0.0.dev118/crates/cribo/src/python/mod.rs +8 -0
  85. cribo-0.0.0.dev118/crates/cribo/src/python/module_path.rs +184 -0
  86. cribo-0.0.0.dev118/crates/cribo/src/resolver.rs +2155 -0
  87. cribo-0.0.0.dev118/crates/cribo/src/side_effects.rs +63 -0
  88. cribo-0.0.0.dev118/crates/cribo/src/symbol_conflict_resolver.rs +585 -0
  89. cribo-0.0.0.dev118/crates/cribo/src/transformation_context.rs +91 -0
  90. cribo-0.0.0.dev118/crates/cribo/src/tree_shaking.rs +1331 -0
  91. cribo-0.0.0.dev118/crates/cribo/src/types.rs +12 -0
  92. cribo-0.0.0.dev118/crates/cribo/src/util.rs +95 -0
  93. cribo-0.0.0.dev118/crates/cribo/src/visitors/export_collector.rs +158 -0
  94. cribo-0.0.0.dev118/crates/cribo/src/visitors/import_discovery.rs +1040 -0
  95. cribo-0.0.0.dev118/crates/cribo/src/visitors/local_var_collector.rs +532 -0
  96. cribo-0.0.0.dev118/crates/cribo/src/visitors/mod.rs +22 -0
  97. cribo-0.0.0.dev118/crates/cribo/src/visitors/side_effect_detector.rs +769 -0
  98. cribo-0.0.0.dev118/crates/cribo/src/visitors/symbol_collector.rs +385 -0
  99. cribo-0.0.0.dev118/crates/cribo/src/visitors/symbol_usage_visitor.rs +446 -0
  100. cribo-0.0.0.dev118/crates/cribo/src/visitors/utils.rs +137 -0
  101. cribo-0.0.0.dev118/crates/cribo/src/visitors/variable_collector.rs +485 -0
  102. cribo-0.0.0.dev118/crates/cribo/tests/backup/.gitignore +1 -0
  103. cribo-0.0.0.dev118/crates/cribo/tests/backup/xfail_no_ops_multimodule_mixed/api/__init__.py +6 -0
  104. cribo-0.0.0.dev118/crates/cribo/tests/backup/xfail_no_ops_multimodule_mixed/api/server.py +201 -0
  105. cribo-0.0.0.dev118/crates/cribo/tests/backup/xfail_no_ops_multimodule_mixed/handlers/__init__.py +1 -0
  106. cribo-0.0.0.dev118/crates/cribo/tests/backup/xfail_no_ops_multimodule_mixed/handlers/request_handler.py +171 -0
  107. cribo-0.0.0.dev118/crates/cribo/tests/backup/xfail_no_ops_multimodule_mixed/lib/__init__.py +5 -0
  108. cribo-0.0.0.dev118/crates/cribo/tests/backup/xfail_no_ops_multimodule_mixed/lib/constants.py +57 -0
  109. cribo-0.0.0.dev118/crates/cribo/tests/backup/xfail_no_ops_multimodule_mixed/lib/utils.py +178 -0
  110. cribo-0.0.0.dev118/crates/cribo/tests/backup/xfail_no_ops_multimodule_mixed/main.py +231 -0
  111. cribo-0.0.0.dev118/crates/cribo/tests/common/mod.rs +65 -0
  112. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/IMPORT_PATTERNS_SUMMARY.md +280 -0
  113. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/alias_transformation_test/main.py +71 -0
  114. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/alias_transformation_test/utils/__init__.py +1 -0
  115. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/alias_transformation_test/utils/config_manager.py +14 -0
  116. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/alias_transformation_test/utils/data_processor.py +19 -0
  117. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/alias_transformation_test/utils/helpers.py +19 -0
  118. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/all_variable_handling/conflict_module.py +17 -0
  119. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/all_variable_handling/main.py +32 -0
  120. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/all_variable_handling/nested_package/__init__.py +20 -0
  121. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/all_variable_handling/nested_package/submodule.py +18 -0
  122. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/all_variable_handling/nested_package/utils.py +12 -0
  123. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/all_variable_handling/simple_module.py +22 -0
  124. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/all_variable_loop_reference/main.py +9 -0
  125. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/all_variable_loop_reference/mypkg/__init__.py +15 -0
  126. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/all_variable_loop_reference/mypkg/_internal.py +7 -0
  127. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewrite_parameter_shadow/main.py +102 -0
  128. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewrite_parameter_shadow/models.py +29 -0
  129. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_class_name_collision/entities.py +34 -0
  130. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_class_name_collision/main.py +34 -0
  131. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_class_name_collision/models.py +34 -0
  132. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_function_name_collision/main.py +24 -0
  133. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_function_name_collision/module_a.py +18 -0
  134. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_function_name_collision/module_b.py +18 -0
  135. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_global/main.py +38 -0
  136. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_global/module_global_keyword.py +33 -0
  137. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_global/module_globals_dict.py +47 -0
  138. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_global/module_mixed_patterns.py +68 -0
  139. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/__init__.py +10 -0
  140. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/core/__init__.py +6 -0
  141. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/core/database/__init__.py +5 -0
  142. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/core/database/connection.py +57 -0
  143. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/core/utils/__init__.py +5 -0
  144. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/core/utils/helpers.py +60 -0
  145. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/main.py +114 -0
  146. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/models/__init__.py +7 -0
  147. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/models/base.py +42 -0
  148. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/models/user.py +73 -0
  149. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/services/__init__.py +6 -0
  150. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/services/auth/__init__.py +6 -0
  151. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_globals_collision/services/auth/manager.py +66 -0
  152. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_happy_path/main.py +41 -0
  153. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_happy_path/models/__init__.py +1 -0
  154. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_happy_path/models/user.py +43 -0
  155. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_happy_path/services/__init__.py +1 -0
  156. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_happy_path/services/database.py +53 -0
  157. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_happy_path/utils/__init__.py +1 -0
  158. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_happy_path/utils/helpers.py +25 -0
  159. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/__init__.py +0 -0
  160. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/core/__init__.py +6 -0
  161. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/core/database/__init__.py +6 -0
  162. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/core/database/connection.py +73 -0
  163. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/core/utils/__init__.py +5 -0
  164. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/core/utils/helpers.py +111 -0
  165. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/main.py +113 -0
  166. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/models/__init__.py +8 -0
  167. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/models/base.py +145 -0
  168. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/models/user.py +207 -0
  169. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/services/__init__.py +6 -0
  170. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/services/auth/__init__.py +6 -0
  171. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_mixed_collisions/services/auth/manager.py +164 -0
  172. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_nested_namespace_import/greetings/__init__.py +2 -0
  173. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_nested_namespace_import/greetings/greeting/__init__.py +5 -0
  174. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_nested_namespace_import/main.py +7 -0
  175. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_regular_import_aliases/main.py +73 -0
  176. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_regular_import_aliases/utils/config.py +8 -0
  177. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_regular_import_aliases/utils/helpers.py +16 -0
  178. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/__init__.py +1 -0
  179. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/core/__init__.py +1 -0
  180. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/core/database/__init__.py +1 -0
  181. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/core/database/connection.py +74 -0
  182. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/core/utils/__init__.py +1 -0
  183. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/core/utils/helpers.py +111 -0
  184. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/main.py +112 -0
  185. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/models/__init__.py +1 -0
  186. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/models/base.py +146 -0
  187. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/models/user.py +215 -0
  188. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/services/__init__.py +1 -0
  189. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/services/auth/__init__.py +1 -0
  190. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_symbols_collision/services/auth/manager.py +165 -0
  191. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_variable_name_collision/config.py +12 -0
  192. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_variable_name_collision/constants.py +13 -0
  193. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/ast_rewriting_variable_name_collision/main.py +32 -0
  194. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/builtin_types/compat_module.py +26 -0
  195. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/builtin_types/main.py +15 -0
  196. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/builtin_types_circular/main.py +16 -0
  197. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/builtin_types_circular/pkg/__init__.py +15 -0
  198. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/builtin_types_circular/pkg/__version__.py +3 -0
  199. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/builtin_types_circular/pkg/_internal_utils.py +17 -0
  200. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/builtin_types_circular/pkg/certs.py +4 -0
  201. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/builtin_types_circular/pkg/compat.py +20 -0
  202. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/builtin_types_circular/pkg/models.py +11 -0
  203. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/builtin_types_circular/pkg/sessions.py +18 -0
  204. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/builtin_types_circular/pkg/utils.py +35 -0
  205. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_dep_with_version_module/main.py +8 -0
  206. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_dep_with_version_module/package/__init__.py +12 -0
  207. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_dep_with_version_module/package/__version__.py +5 -0
  208. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_dep_with_version_module/package/module_a.py +12 -0
  209. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_deps_with_stdlib_name_conflict/main.py +24 -0
  210. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_deps_with_stdlib_name_conflict/pkg/__init__.py +8 -0
  211. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_deps_with_stdlib_name_conflict/pkg/abc.py +32 -0
  212. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_deps_with_stdlib_name_conflict/pkg/color.py +46 -0
  213. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_deps_with_stdlib_name_conflict/pkg/console.py +50 -0
  214. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_deps_with_stdlib_name_conflict/pkg/pretty.py +33 -0
  215. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_deps_with_stdlib_name_conflict/pkg/style.py +31 -0
  216. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_import_from_init/main.py +3 -0
  217. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_import_from_init/rich/__init__.py +5 -0
  218. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_import_from_init/rich/console.py +1 -0
  219. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_import_from_init/rich/jupyter.py +1 -0
  220. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_import_function_reference/main.py +14 -0
  221. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_import_function_reference/pkg/__init__.py +6 -0
  222. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_import_function_reference/pkg/adapters.py +19 -0
  223. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_import_function_reference/pkg/auth.py +23 -0
  224. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_import_function_reference/pkg/models.py +18 -0
  225. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_import_function_reference/pkg/utils.py +13 -0
  226. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_symbol_usage/main.py +12 -0
  227. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_symbol_usage/module_a.py +15 -0
  228. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/circular_symbol_usage/module_b.py +20 -0
  229. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/collections_abc_wrapper/compat.py +9 -0
  230. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/collections_abc_wrapper/main.py +10 -0
  231. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/collections_abc_wrapper/structures.py +25 -0
  232. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/conditional_exports/compat_module.py +60 -0
  233. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/conditional_exports/exceptions_module.py +20 -0
  234. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/conditional_exports/main.py +41 -0
  235. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/conditional_imports/conditional_module.py +52 -0
  236. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/conditional_imports/main.py +41 -0
  237. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/conditional_imports/try_except_module.py +49 -0
  238. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_attribute_import/main.py +7 -0
  239. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_attribute_import/mypackage/__init__.py +9 -0
  240. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_attribute_import/mypackage/__version__.py +4 -0
  241. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_attribute_import/mypackage/core.py +14 -0
  242. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_attribute_import/mypackage/utils.py +11 -0
  243. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_import_attribute/main.py +9 -0
  244. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_import_attribute/my_package/__init__.py +1 -0
  245. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_import_attribute/my_package/__version__.py +6 -0
  246. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_import_attribute/my_package/utils.py +12 -0
  247. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_inheritance/another_auth.py +11 -0
  248. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_inheritance/auth.py +12 -0
  249. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_inheritance/main.py +23 -0
  250. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_module_inheritance/proxy.py +19 -0
  251. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_package_mixed_import/core/__init__.py +46 -0
  252. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_package_mixed_import/core/database/__init__.py +50 -0
  253. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_package_mixed_import/core/database/connection.py +82 -0
  254. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_package_mixed_import/core/utils/__init__.py +1 -0
  255. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_package_mixed_import/core/utils/config.py +24 -0
  256. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_package_mixed_import/core/utils/helpers.py +11 -0
  257. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_package_mixed_import/core/version.py +3 -0
  258. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_package_mixed_import/main.py +84 -0
  259. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_package_mixed_import/models/__init__.py +66 -0
  260. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_package_mixed_import/models/base.py +19 -0
  261. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/cross_package_mixed_import/models/user.py +10 -0
  262. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/directory_entry_empty/readme.txt +2 -0
  263. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/directory_entry_init/__init__.py +9 -0
  264. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/directory_entry_main/__init__.py +4 -0
  265. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/directory_entry_main/__main__.py +10 -0
  266. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/early_module_reference/bundled.py +56 -0
  267. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/early_module_reference/main.py +11 -0
  268. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/early_module_reference/mypkg/__init__.py +4 -0
  269. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/early_module_reference/mypkg/api.py +18 -0
  270. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/early_module_reference/mypkg/sessions.py +26 -0
  271. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/entry_module_circular_import/child_with_init.py +37 -0
  272. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/entry_module_circular_import/main.py +19 -0
  273. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/file_deduplication_basic/app/__init__.py +1 -0
  274. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/file_deduplication_basic/app/utils.py +9 -0
  275. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/file_deduplication_basic/main.py +17 -0
  276. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_attribute_access/main.py +21 -0
  277. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_attribute_access/mymodule/__init__.py +5 -0
  278. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_attribute_access/mymodule/compat.py +7 -0
  279. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_attribute_access/mymodule/exceptions.py +16 -0
  280. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_from_parent_init/main.py +23 -0
  281. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_from_parent_init/parent/__init__.py +21 -0
  282. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_from_parent_init/parent/another.py +8 -0
  283. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_from_parent_init/parent/base.py +8 -0
  284. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_from_parent_init/parent/child.py +20 -0
  285. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_from_parent_init/parent/subpkg/__init__.py +5 -0
  286. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_from_parent_init/parent/subpkg/submodule.py +8 -0
  287. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_import_before_init/main.py +12 -0
  288. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_import_before_init/mypkg/__init__.py +4 -0
  289. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_import_before_init/mypkg/compat.py +16 -0
  290. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_import_before_init/mypkg/exceptions.py +22 -0
  291. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_import_before_init/mypkg/utils.py +8 -0
  292. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_in_exception/main.py +30 -0
  293. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_in_exception/myrequests/__init__.py +9 -0
  294. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_in_exception/myrequests/compat.py +15 -0
  295. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_pkg/main.py +8 -0
  296. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_pkg/pkg/__init__.py +10 -0
  297. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_pkg/pkg/compat.py +10 -0
  298. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_pkg/pkg/core.py +18 -0
  299. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_requests_compat/main.py +16 -0
  300. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_requests_compat/myrequests/__init__.py +22 -0
  301. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_requests_compat/myrequests/compat.py +38 -0
  302. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_requests_compat/myrequests/cookies.py +33 -0
  303. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_requests_compat/myrequests/exceptions.py +22 -0
  304. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/forward_reference_requests_compat/myrequests/utils.py +21 -0
  305. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/fstring_globals_lifting/main.py +49 -0
  306. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/fstring_module_globals/main.py +22 -0
  307. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/fstring_module_globals/worker.py +38 -0
  308. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/function_level_module_import/main.py +14 -0
  309. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/function_level_module_import/utils/__init__.py +1 -0
  310. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/function_level_module_import/utils/calculator.py +11 -0
  311. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/future_imports_basic/main.py +19 -0
  312. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/future_imports_basic/mypackage/__init__.py +5 -0
  313. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/future_imports_basic/mypackage/core.py +25 -0
  314. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/future_imports_basic/mypackage/submodule/__init__.py +3 -0
  315. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/future_imports_basic/mypackage/submodule/utils.py +24 -0
  316. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/future_imports_multiple/main.py +13 -0
  317. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/future_imports_multiple/module_a.py +5 -0
  318. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/future_imports_multiple/module_b.py +5 -0
  319. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/import_shadowing/main.py +30 -0
  320. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/import_shadowing/package_a/__init__.py +1 -0
  321. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/import_shadowing/package_a/processor.py +8 -0
  322. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/import_shadowing/package_a/utils.py +3 -0
  323. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/import_shadowing/package_b/__init__.py +1 -0
  324. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/import_shadowing/package_b/processor.py +8 -0
  325. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/import_shadowing/package_b/utils.py +3 -0
  326. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/import_shadowing/utils.py +3 -0
  327. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_deduplication/main.py +37 -0
  328. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_deduplication/mymodule.py +4 -0
  329. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_deduplication/package/__init__.py +2 -0
  330. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_deduplication/package/submodule.py +3 -0
  331. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_deduplication/test_complete_picture.py +110 -0
  332. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_deduplication/test_edge_cases.py +121 -0
  333. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_deduplication/test_parent_registration.py +69 -0
  334. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_deduplication/test_paths.py +47 -0
  335. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_deduplication/test_sys_modules.py +76 -0
  336. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_edge_cases/main.py +13 -0
  337. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_edge_cases/my-module.py +7 -0
  338. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_static/2024-config.py +19 -0
  339. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_static/api-client.py +18 -0
  340. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_static/class.py +18 -0
  341. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_static/data-processor.py +16 -0
  342. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_static/def.py +19 -0
  343. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_static/for.py +21 -0
  344. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_static/main.py +62 -0
  345. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_static_renaming/bar.py +16 -0
  346. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_static_renaming/foo.py +12 -0
  347. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/importlib_static_renaming/main.py +41 -0
  348. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/init_reexports/main.py +32 -0
  349. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/init_reexports/mypackage/__init__.py +25 -0
  350. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/init_reexports/mypackage/config.py +15 -0
  351. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/init_reexports/mypackage/data_processor.py +8 -0
  352. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/init_reexports/mypackage/formatter.py +6 -0
  353. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/init_reexports/mypackage/utils/__init__.py +9 -0
  354. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/init_reexports/mypackage/utils/constants.py +4 -0
  355. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/init_reexports/mypackage/utils/helper.py +6 -0
  356. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_collision/main.py +10 -0
  357. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_collision/pkg/__init__.py +25 -0
  358. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_collision/pkg/submodule.py +22 -0
  359. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_entry_init/__init__.py +38 -0
  360. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_entry_init/loader.py +25 -0
  361. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_entry_simple/loader.py +25 -0
  362. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_entry_simple/main.py +38 -0
  363. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_init/main.py +9 -0
  364. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_init/yaml_pkg/__init__.py +8 -0
  365. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_init/yaml_pkg/base.py +11 -0
  366. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_init/yaml_pkg/meta.py +10 -0
  367. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_init_alias/main.py +6 -0
  368. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_init_alias/yaml_pkg/__init__.py +6 -0
  369. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_init_alias/yaml_pkg/base.py +10 -0
  370. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_init_alias/yaml_pkg/meta.py +7 -0
  371. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_renamed/main.py +30 -0
  372. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_renamed/yaml_module/__init__.py +53 -0
  373. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_renamed/yaml_module/loader.py +14 -0
  374. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_renamed/yaml_module/other.py +16 -0
  375. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_wildcard/main.py +9 -0
  376. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_wildcard/wildcard_pkg/__init__.py +2 -0
  377. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_wildcard/wildcard_pkg/base.py +14 -0
  378. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_forward_ref_wildcard/wildcard_pkg/meta.py +7 -0
  379. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_ordering_collision/main.py +37 -0
  380. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_ordering_collision/module_a.py +19 -0
  381. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_ordering_collision/module_b.py +19 -0
  382. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_renamed_forward_ref/base.py +16 -0
  383. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_renamed_forward_ref/main.py +22 -0
  384. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_renamed_forward_ref/other.py +16 -0
  385. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_with_wildcard_imports/main.py +44 -0
  386. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_with_wildcard_imports/yaml_pkg/__init__.py +43 -0
  387. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_with_wildcard_imports/yaml_pkg/dumper.py +15 -0
  388. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/metaclass_with_wildcard_imports/yaml_pkg/loader.py +31 -0
  389. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/mixed_import_patterns/app.py +46 -0
  390. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/mixed_import_patterns/config.py +52 -0
  391. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/mixed_import_patterns/logger.py +42 -0
  392. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/mixed_import_patterns/main.py +37 -0
  393. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/mixed_import_patterns/utils.py +15 -0
  394. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_attribute_fstring/main.py +4 -0
  395. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_attribute_fstring/mypackage/__init__.py +2 -0
  396. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_attribute_fstring/mypackage/constants.py +3 -0
  397. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_attribute_fstring/mypackage/utils.py +6 -0
  398. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_first_resolution/foo/__init__.py +5 -0
  399. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_first_resolution/foo.py +5 -0
  400. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_first_resolution/main.py +6 -0
  401. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_setattr_with_circular_deps/main.py +11 -0
  402. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_setattr_with_circular_deps/pkg/__init__.py +27 -0
  403. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_setattr_with_circular_deps/pkg/_client.py +19 -0
  404. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_setattr_with_circular_deps/pkg/_main.py +9 -0
  405. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_setattr_with_circular_deps/pkg/_models.py +18 -0
  406. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_setattr_with_circular_deps/pkg/_types.py +17 -0
  407. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_side_effects_circular_order/main.py +3 -0
  408. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_side_effects_circular_order/my_package/__init__.py +4 -0
  409. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_side_effects_circular_order/my_package/mod_a.py +3 -0
  410. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_side_effects_circular_order/my_package/mod_b.py +9 -0
  411. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_side_effects_circular_order/my_package/mod_c.py +7 -0
  412. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/module_side_effects_circular_order/my_package/mod_l.py +1 -0
  413. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/multiline_strings/docstring_module.py +138 -0
  414. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/multiline_strings/main.py +134 -0
  415. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/multiline_strings/side_effect_module.py +38 -0
  416. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/multiline_strings/strings_inline.py +31 -0
  417. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_attribute_reference/main.py +11 -0
  418. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_attribute_reference/mypkg/__init__.py +7 -0
  419. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_attribute_reference/mypkg/compat.py +18 -0
  420. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_attribute_reference/mypkg/exceptions.py +20 -0
  421. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_forward_reference/main.py +11 -0
  422. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_forward_reference/mypkg/__init__.py +1 -0
  423. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_forward_reference/mypkg/compat.py +4 -0
  424. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_forward_reference/mypkg/exceptions.py +14 -0
  425. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_pkg_no_init/main.py +3 -0
  426. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_pkg_no_init/pkg/submodule.py +1 -0
  427. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_simple_test/main.py +7 -0
  428. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_simple_test/mymodule/__init__.py +1 -0
  429. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/namespace_simple_test/mymodule/utils.py +8 -0
  430. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/o4-IMPORT_PATTERNS_SUMMARY.md +333 -0
  431. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/package_relative_import_reexport/main.py +15 -0
  432. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/package_relative_import_reexport/pkg/__init__.py +1 -0
  433. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/package_relative_import_reexport/pkg/definitions.py +13 -0
  434. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/package_relative_import_reexport/pkg/module_with_sideeffects.py +16 -0
  435. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pandera-polars/main.py +62 -0
  436. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pandera-polars/schema.py +7 -0
  437. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/parent_child_circular/foo/__init__.py +19 -0
  438. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/parent_child_circular/foo/boo.py +20 -0
  439. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/parent_child_circular/foo/zoo.py +16 -0
  440. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/parent_child_circular/main.py +17 -0
  441. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/private_module_vars/main.py +17 -0
  442. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/private_module_vars/pkg/__init__.py +1 -0
  443. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/private_module_vars/pkg/_internal.py +24 -0
  444. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/private_module_vars/pkg/consumer.py +28 -0
  445. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pydantic_project/main.py +37 -0
  446. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pydantic_project/schemas/__init__.py +5 -0
  447. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pydantic_project/schemas/user.py +51 -0
  448. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pydantic_project/utils/__init__.py +5 -0
  449. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pydantic_project/utils/validation.py +29 -0
  450. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_class_level_cycles/admin_class.py +15 -0
  451. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_class_level_cycles/main.py +15 -0
  452. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_class_level_cycles/user_class.py +15 -0
  453. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_four_module_cycle/main.py +12 -0
  454. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_four_module_cycle/module_a.py +11 -0
  455. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_four_module_cycle/module_b.py +10 -0
  456. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_four_module_cycle/module_c.py +10 -0
  457. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_four_module_cycle/module_d.py +10 -0
  458. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_mixed_cycles/config_constants.py +7 -0
  459. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_mixed_cycles/constants_module.py +11 -0
  460. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_mixed_cycles/function_module.py +13 -0
  461. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_mixed_cycles/helper_module.py +9 -0
  462. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_mixed_cycles/main.py +14 -0
  463. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_package_level_cycles/main.py +12 -0
  464. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_package_level_cycles/pkg1/__init__.py +11 -0
  465. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_package_level_cycles/pkg2/__init__.py +12 -0
  466. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_relative_import_cycles/main.py +12 -0
  467. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_relative_import_cycles/services/__init__.py +1 -0
  468. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_relative_import_cycles/services/auth.py +12 -0
  469. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_relative_import_cycles/services/database.py +12 -0
  470. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_three_module_cycle/main.py +12 -0
  471. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_three_module_cycle/module_a.py +10 -0
  472. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_three_module_cycle/module_b.py +10 -0
  473. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_three_module_cycle/module_c.py +13 -0
  474. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_unresolvable_patterns/constants_a.py +9 -0
  475. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_unresolvable_patterns/constants_b.py +10 -0
  476. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/pyfail_unresolvable_patterns/main.py +11 -0
  477. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/side_effect_preservation/external_plugin.py +12 -0
  478. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/side_effect_preservation/main.py +28 -0
  479. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/side_effect_preservation/state.py +15 -0
  480. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/side_effect_preservation/utils.py +11 -0
  481. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_math/calculator.py +8 -0
  482. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_math/main.py +15 -0
  483. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_math/utils.py +3 -0
  484. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_nested_handler/boo.py +2 -0
  485. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_nested_handler/foo.py +2 -0
  486. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_nested_handler/main.py +12 -0
  487. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_project/main.py +20 -0
  488. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_project/models/__init__.py +5 -0
  489. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_project/models/user.py +23 -0
  490. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_project/utils/__init__.py +5 -0
  491. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_project/utils/helpers.py +24 -0
  492. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_treeshaking_inlining/main.py +13 -0
  493. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_treeshaking_inlining/speaking.py +59 -0
  494. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_two_dots/foo/__init__.py +1 -0
  495. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_two_dots/foo/boo/__init__.py +0 -0
  496. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_two_dots/foo/boo/__main__.py +5 -0
  497. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_two_dots/foo/zoo.py +1 -0
  498. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/simple_two_dots/main.py +4 -0
  499. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_alike_locals/main.py +97 -0
  500. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_decorator/main.py +16 -0
  501. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_decorator/mypackage/__init__.py +7 -0
  502. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_decorator/mypackage/utils.py +27 -0
  503. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_hoisting_aliases/file_utils.py +38 -0
  504. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_hoisting_aliases/logger.py +41 -0
  505. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_hoisting_aliases/main.py +19 -0
  506. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_module_import/helper.py +30 -0
  507. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_module_import/main.py +6 -0
  508. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_module_name_collision/main.py +16 -0
  509. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_module_name_collision/mypkg/__init__.py +6 -0
  510. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_module_name_collision/mypkg/abc.py +18 -0
  511. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_module_name_collision/mypkg/console.py +28 -0
  512. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_module_name_conflict/main.py +6 -0
  513. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_module_name_conflict/mypackage/__init__.py +4 -0
  514. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_module_name_conflict/mypackage/abc.py +14 -0
  515. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_name_collision/main.py +9 -0
  516. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_name_collision/mypackage/__init__.py +1 -0
  517. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_name_collision/mypackage/abc.py +11 -0
  518. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_name_collision/mypackage/pretty.py +8 -0
  519. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_name_conflict_ordering/complex_pkg/__init__.py +11 -0
  520. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_name_conflict_ordering/complex_pkg/abc.py +14 -0
  521. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_name_conflict_ordering/complex_pkg/console.py +23 -0
  522. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_name_conflict_ordering/main.py +10 -0
  523. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_wildcard_imports/main.py +43 -0
  524. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stdlib_wildcard_imports/myhelper.py +8 -0
  525. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_circular_reference/first.py +1 -0
  526. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_circular_reference/main.py +5 -0
  527. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_circular_reference/second.py +1 -0
  528. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import/greetings/__init__.py +0 -0
  529. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import/greetings/greeting.py +3 -0
  530. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import/greetings/messages.py +1 -0
  531. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import/main.py +5 -0
  532. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_from_parent_package/greetings/__init__.py +0 -0
  533. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_from_parent_package/greetings/greeting/__init__.py +3 -0
  534. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_from_parent_package/greetings/messages.py +1 -0
  535. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_from_parent_package/main.py +5 -0
  536. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_in_init/greetings/__init__.py +3 -0
  537. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_in_init/greetings/greeting.py +1 -0
  538. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_in_init/main.py +5 -0
  539. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_single_dot/greetings/__init__.py +0 -0
  540. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_single_dot/greetings/greeting.py +5 -0
  541. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_single_dot/greetings/messages.py +1 -0
  542. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_single_dot/main.py +5 -0
  543. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_single_dot_in_init/greetings/__init__.py +5 -0
  544. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_single_dot_in_init/greetings/greeting.py +1 -0
  545. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_explicit_relative_import_single_dot_in_init/main.py +5 -0
  546. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_implicit_init_import/greetings/__init__.py +1 -0
  547. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_implicit_init_import/greetings/irrelevant.py +0 -0
  548. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_implicit_init_import/main.py +5 -0
  549. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_import_from_as_module/greetings/__init__.py +0 -0
  550. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_import_from_as_module/greetings/greeting.py +1 -0
  551. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_import_from_as_module/main.py +5 -0
  552. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_import_from_as_value/greeting.py +1 -0
  553. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_import_from_as_value/main.py +5 -0
  554. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_imports_in_imported_modules/greetings/__init__.py +1 -0
  555. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_imports_in_imported_modules/greetings/english.py +1 -0
  556. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_imports_in_imported_modules/main.py +5 -0
  557. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_module_with_triple_quotes/greeting.py +1 -0
  558. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_module_with_triple_quotes/main.py +5 -0
  559. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_using_from_to_import_module/greetings/config.py +1 -0
  560. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_using_from_to_import_module/greetings/greeting.py +7 -0
  561. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_using_from_to_import_module/main.py +6 -0
  562. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_using_from_to_import_multiple_values/greeting.py +5 -0
  563. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_using_from_to_import_multiple_values/main.py +5 -0
  564. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_using_module_in_package/greetings/greeting.py +1 -0
  565. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_using_module_in_package/main.py +5 -0
  566. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_using_stdlib_module_in_package/greeting.py +1 -0
  567. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_using_stdlib_module_in_package/main.py +8 -0
  568. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_with_dynamic_import/greeting.py +1 -0
  569. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_with_dynamic_import/main.py +7 -0
  570. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_with_single_local_from_import/greeting.py +1 -0
  571. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_with_single_local_from_import/main.py +5 -0
  572. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_with_single_local_import/greeting.py +1 -0
  573. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_with_single_local_import/main.py +5 -0
  574. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_with_single_local_import_of_package/greeting/__init__.py +1 -0
  575. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_with_single_local_import_of_package/main.py +5 -0
  576. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_script_with_special_shebang/main.py +5 -0
  577. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_single_file/main.py +3 -0
  578. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/stickytape_single_file_using_stdlib/main.py +5 -0
  579. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/submodule_imports_parent_function/main.py +13 -0
  580. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/submodule_imports_parent_function/pkg/__init__.py +17 -0
  581. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/submodule_imports_parent_function/pkg/submodule.py +13 -0
  582. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symbol_collision_inheritance/auth_module.py +46 -0
  583. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symbol_collision_inheritance/colliding_module.py +17 -0
  584. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symbol_collision_inheritance/main.py +18 -0
  585. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symbol_usage_optimization/main.py +13 -0
  586. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symbol_usage_optimization/submodule/__init__.py +14 -0
  587. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symbol_usage_optimization/submodule/helpers.py +18 -0
  588. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symlink_circular_dependency/main.py +17 -0
  589. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symlink_circular_dependency/moduleA.py +18 -0
  590. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symlink_circular_dependency/moduleB.py +7 -0
  591. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symlink_circular_dependency/moduleC.py +18 -0
  592. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symlink_multi_circular/link_c.py +39 -0
  593. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symlink_multi_circular/link_d.py +49 -0
  594. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symlink_multi_circular/link_e.py +39 -0
  595. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symlink_multi_circular/main.py +14 -0
  596. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symlink_multi_circular/real_a.py +39 -0
  597. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/symlink_multi_circular/real_b.py +49 -0
  598. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/test_all_exports/main.py +26 -0
  599. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/test_all_exports/utils.py +34 -0
  600. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/test_forward_reference/helper.py +3 -0
  601. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/test_forward_reference/main.py +16 -0
  602. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/tree_shake_side_effect_import/main.py +8 -0
  603. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/tree_shake_side_effect_import/mypackage/__init__.py +8 -0
  604. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/tree_shake_side_effect_import/mypackage/exceptions.py +13 -0
  605. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/tree_shake_side_effect_import/mypackage/utils.py +23 -0
  606. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/try_except_function_export/main.py +7 -0
  607. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/try_except_function_export/test_module.py +20 -0
  608. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/type_checking_imports/README.md +53 -0
  609. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/type_checking_imports/advanced.py +38 -0
  610. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/type_checking_imports/main.py +17 -0
  611. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/type_checking_imports/module_a.py +6 -0
  612. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/type_checking_imports/module_b.py +11 -0
  613. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/type_checking_imports/module_c.py +13 -0
  614. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/version_import_complex/main.py +8 -0
  615. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/version_import_complex/mypackage/__init__.py +6 -0
  616. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/version_import_complex/mypackage/__version__.py +4 -0
  617. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/version_import_complex/mypackage/utils.py +8 -0
  618. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/version_import_with_init_functions/main.py +9 -0
  619. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/version_import_with_init_functions/mypackage/__init__.py +6 -0
  620. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/version_import_with_init_functions/mypackage/__version__.py +4 -0
  621. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/version_import_with_init_functions/mypackage/utils.py +8 -0
  622. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_all_setattr/main.py +9 -0
  623. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_all_setattr/package/__init__.py +14 -0
  624. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_all_setattr/package/_subpackage/__init__.py +9 -0
  625. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_all_setattr/package/_subpackage/module_a.py +8 -0
  626. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_all_setattr/package/_subpackage/module_b.py +6 -0
  627. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_imports/__init__.py +1 -0
  628. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_imports/clash_module_a.py +28 -0
  629. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_imports/clash_module_b.py +28 -0
  630. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_imports/explicit_all.py +28 -0
  631. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_imports/main.py +59 -0
  632. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_imports/with_side_effects.py +52 -0
  633. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_last_wins_simple/__init__.py +1 -0
  634. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_last_wins_simple/first.py +9 -0
  635. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_last_wins_simple/main.py +26 -0
  636. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_last_wins_simple/second.py +9 -0
  637. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_metaclass_ordering/main.py +29 -0
  638. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_metaclass_ordering/yaml_module/__init__.py +49 -0
  639. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_metaclass_ordering/yaml_module/dumper.py +25 -0
  640. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/wildcard_metaclass_ordering/yaml_module/loader.py +41 -0
  641. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/xfail_file_deduplication_symlinks/lib/__init__.py +0 -0
  642. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/xfail_file_deduplication_symlinks/lib/helpers.py +14 -0
  643. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/xfail_file_deduplication_symlinks/main.py +26 -0
  644. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/xfail_file_deduplication_symlinks/shared/__init__.py +0 -0
  645. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/xfail_file_deduplication_symlinks/shared/common.py +14 -0
  646. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/xfail_module_shadowing/main.py +10 -0
  647. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/xfail_module_shadowing/pandera.py +10 -0
  648. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/xfail_module_shadowing/test_import.py +32 -0
  649. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/xfail_module_shadowing_package/main.py +10 -0
  650. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/xfail_module_shadowing_package/pandera/__init__.py +10 -0
  651. cribo-0.0.0.dev118/crates/cribo/tests/fixtures/xfail_module_shadowing_package/test_import.py +32 -0
  652. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@alias_transformation_test.snap +95 -0
  653. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@all_variable_handling.snap +75 -0
  654. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@all_variable_loop_reference.snap +72 -0
  655. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@ast_rewrite_parameter_shadow.snap +113 -0
  656. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@ast_rewriting_class_name_collision.snap +108 -0
  657. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@ast_rewriting_function_name_collision.snap +54 -0
  658. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@ast_rewriting_global.snap +183 -0
  659. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@ast_rewriting_globals_collision.snap +647 -0
  660. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@ast_rewriting_happy_path.snap +137 -0
  661. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@ast_rewriting_mixed_collisions.snap +791 -0
  662. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@ast_rewriting_nested_namespace_import.snap +42 -0
  663. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@ast_rewriting_regular_import_aliases.snap +97 -0
  664. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@ast_rewriting_symbols_collision.snap +611 -0
  665. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@ast_rewriting_variable_name_collision.snap +62 -0
  666. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@builtin_types.snap +72 -0
  667. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@builtin_types_circular.snap +262 -0
  668. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@circular_dep_with_version_module.snap +96 -0
  669. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@circular_deps_with_stdlib_name_conflict.snap +358 -0
  670. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@circular_import_from_init.snap +73 -0
  671. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@circular_import_function_reference.snap +185 -0
  672. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@circular_symbol_usage.snap +111 -0
  673. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@collections_abc_wrapper.snap +80 -0
  674. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@conditional_exports.snap +132 -0
  675. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@conditional_imports.snap +174 -0
  676. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@cross_module_attribute_import.snap +116 -0
  677. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@cross_module_import_attribute.snap +76 -0
  678. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@cross_module_inheritance.snap +79 -0
  679. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@cross_package_mixed_import.snap +397 -0
  680. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@early_module_reference.snap +106 -0
  681. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@entry_module_circular_import.snap +114 -0
  682. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@file_deduplication_basic.snap +48 -0
  683. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@forward_reference_attribute_access.snap +98 -0
  684. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@forward_reference_from_parent_init.snap +145 -0
  685. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@forward_reference_import_before_init.snap +112 -0
  686. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@forward_reference_in_exception.snap +66 -0
  687. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@forward_reference_pkg.snap +102 -0
  688. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@forward_reference_requests_compat.snap +256 -0
  689. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@fstring_globals_lifting.snap +64 -0
  690. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@fstring_module_globals.snap +75 -0
  691. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@function_level_module_import.snap +47 -0
  692. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@future_imports_basic.snap +123 -0
  693. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@future_imports_multiple.snap +44 -0
  694. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@import_shadowing.snap +57 -0
  695. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@importlib_deduplication.snap +98 -0
  696. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@importlib_edge_cases.snap +53 -0
  697. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@importlib_static.snap +257 -0
  698. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@importlib_static_renaming.snap +75 -0
  699. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@init_reexports.snap +172 -0
  700. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@metaclass_collision.snap +83 -0
  701. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@metaclass_entry_simple.snap +72 -0
  702. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@metaclass_forward_ref_init.snap +93 -0
  703. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@metaclass_forward_ref_init_alias.snap +92 -0
  704. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@metaclass_forward_ref_renamed.snap +138 -0
  705. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@metaclass_forward_ref_wildcard.snap +93 -0
  706. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@metaclass_ordering_collision.snap +120 -0
  707. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@metaclass_renamed_forward_ref.snap +100 -0
  708. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@metaclass_with_wildcard_imports.snap +142 -0
  709. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@mixed_import_patterns.snap +194 -0
  710. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@module_attribute_fstring.snap +76 -0
  711. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@module_first_resolution.snap +49 -0
  712. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@module_setattr_with_circular_deps.snap +169 -0
  713. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@module_side_effects_circular_order.snap +127 -0
  714. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@multiline_strings.snap +165 -0
  715. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@namespace_attribute_reference.snap +121 -0
  716. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@namespace_forward_reference.snap +52 -0
  717. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@namespace_pkg_no_init.snap +37 -0
  718. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@namespace_simple_test.snap +44 -0
  719. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@package_relative_import_reexport.snap +83 -0
  720. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@pandera-polars.snap +62 -0
  721. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@parent_child_circular.snap +123 -0
  722. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@private_module_vars.snap +95 -0
  723. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@pydantic_project.snap +131 -0
  724. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@pyfail_class_level_cycles.snap +102 -0
  725. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@pyfail_four_module_cycle.snap +125 -0
  726. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@pyfail_package_level_cycles.snap +83 -0
  727. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@pyfail_relative_import_cycles.snap +95 -0
  728. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@pyfail_three_module_cycle.snap +103 -0
  729. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@side_effect_preservation.snap +78 -0
  730. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@simple_math.snap +51 -0
  731. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@simple_nested_handler.snap +46 -0
  732. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@simple_project.snap +80 -0
  733. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@simple_treeshaking_inlining.snap +66 -0
  734. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@simple_two_dots.snap +81 -0
  735. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stdlib_alike_locals.snap +81 -0
  736. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stdlib_decorator.snap +93 -0
  737. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stdlib_hoisting_aliases.snap +98 -0
  738. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stdlib_module_import.snap +50 -0
  739. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stdlib_module_name_collision.snap +118 -0
  740. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stdlib_module_name_conflict.snap +51 -0
  741. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stdlib_name_collision.snap +56 -0
  742. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stdlib_name_conflict_ordering.snap +123 -0
  743. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stdlib_wildcard_imports.snap +58 -0
  744. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_circular_reference.snap +53 -0
  745. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_explicit_relative_import.snap +41 -0
  746. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_explicit_relative_import_from_parent_package.snap +41 -0
  747. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_explicit_relative_import_in_init.snap +38 -0
  748. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_explicit_relative_import_single_dot.snap +42 -0
  749. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_explicit_relative_import_single_dot_in_init.snap +39 -0
  750. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_implicit_init_import.snap +37 -0
  751. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_import_from_as_module.snap +38 -0
  752. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_import_from_as_value.snap +35 -0
  753. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_imports_in_imported_modules.snap +38 -0
  754. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_module_with_triple_quotes.snap +34 -0
  755. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_script_using_from_to_import_module.snap +46 -0
  756. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_script_using_from_to_import_multiple_values.snap +37 -0
  757. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_script_using_module_in_package.snap +37 -0
  758. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_script_using_stdlib_module_in_package.snap +35 -0
  759. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_script_with_dynamic_import.snap +36 -0
  760. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_script_with_single_local_from_import.snap +34 -0
  761. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_script_with_single_local_import.snap +34 -0
  762. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_script_with_single_local_import_of_package.snap +34 -0
  763. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_script_with_special_shebang.snap +32 -0
  764. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_single_file.snap +31 -0
  765. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@stickytape_single_file_using_stdlib.snap +32 -0
  766. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@submodule_imports_parent_function.snap +67 -0
  767. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@symbol_collision_inheritance.snap +100 -0
  768. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@symbol_usage_optimization.snap +58 -0
  769. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@symlink_circular_dependency.snap +81 -0
  770. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@symlink_multi_circular.snap +125 -0
  771. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@test_all_exports.snap +57 -0
  772. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@test_forward_reference.snap +45 -0
  773. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@tree_shake_side_effect_import.snap +87 -0
  774. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@try_except_function_export.snap +64 -0
  775. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@type_checking_imports.snap +56 -0
  776. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@version_import_complex.snap +92 -0
  777. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@version_import_with_init_functions.snap +51 -0
  778. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@wildcard_all_setattr.snap +101 -0
  779. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@wildcard_imports.snap +185 -0
  780. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@wildcard_last_wins_simple.snap +59 -0
  781. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@wildcard_metaclass_ordering.snap +163 -0
  782. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@xfail_file_deduplication_symlinks.snap +56 -0
  783. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@xfail_module_shadowing.snap +88 -0
  784. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundled_code@xfail_module_shadowing_package.snap +89 -0
  785. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundling_error@pyfail_mixed_cycles.snap +10 -0
  786. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/bundling_error@pyfail_unresolvable_patterns.snap +10 -0
  787. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@alias_transformation_test.snap +9 -0
  788. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@all_variable_handling.snap +9 -0
  789. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@all_variable_loop_reference.snap +9 -0
  790. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@ast_rewrite_parameter_shadow.snap +9 -0
  791. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@ast_rewriting_class_name_collision.snap +9 -0
  792. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@ast_rewriting_function_name_collision.snap +9 -0
  793. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@ast_rewriting_global.snap +9 -0
  794. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@ast_rewriting_globals_collision.snap +9 -0
  795. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@ast_rewriting_happy_path.snap +9 -0
  796. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@ast_rewriting_mixed_collisions.snap +9 -0
  797. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@ast_rewriting_nested_namespace_import.snap +9 -0
  798. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@ast_rewriting_regular_import_aliases.snap +9 -0
  799. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@ast_rewriting_symbols_collision.snap +9 -0
  800. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@ast_rewriting_variable_name_collision.snap +9 -0
  801. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@builtin_types.snap +9 -0
  802. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@builtin_types_circular.snap +9 -0
  803. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@circular_dep_with_version_module.snap +9 -0
  804. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@circular_deps_with_stdlib_name_conflict.snap +9 -0
  805. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@circular_import_from_init.snap +9 -0
  806. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@circular_import_function_reference.snap +9 -0
  807. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@circular_symbol_usage.snap +9 -0
  808. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@collections_abc_wrapper.snap +9 -0
  809. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@conditional_exports.snap +9 -0
  810. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@conditional_imports.snap +9 -0
  811. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@cross_module_attribute_import.snap +9 -0
  812. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@cross_module_import_attribute.snap +9 -0
  813. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@cross_module_inheritance.snap +9 -0
  814. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@cross_package_mixed_import.snap +9 -0
  815. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@early_module_reference.snap +9 -0
  816. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@entry_module_circular_import.snap +9 -0
  817. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@file_deduplication_basic.snap +9 -0
  818. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@forward_reference_attribute_access.snap +9 -0
  819. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@forward_reference_from_parent_init.snap +9 -0
  820. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@forward_reference_import_before_init.snap +9 -0
  821. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@forward_reference_in_exception.snap +9 -0
  822. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@forward_reference_pkg.snap +9 -0
  823. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@forward_reference_requests_compat.snap +9 -0
  824. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@fstring_globals_lifting.snap +9 -0
  825. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@fstring_module_globals.snap +9 -0
  826. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@function_level_module_import.snap +9 -0
  827. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@future_imports_basic.snap +9 -0
  828. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@future_imports_multiple.snap +9 -0
  829. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@import_shadowing.snap +9 -0
  830. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@importlib_deduplication.snap +9 -0
  831. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@importlib_edge_cases.snap +9 -0
  832. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@importlib_static.snap +9 -0
  833. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@importlib_static_renaming.snap +9 -0
  834. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@init_reexports.snap +9 -0
  835. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@metaclass_collision.snap +9 -0
  836. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@metaclass_entry_simple.snap +9 -0
  837. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@metaclass_forward_ref_init.snap +9 -0
  838. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@metaclass_forward_ref_init_alias.snap +9 -0
  839. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@metaclass_forward_ref_renamed.snap +9 -0
  840. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@metaclass_forward_ref_wildcard.snap +9 -0
  841. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@metaclass_ordering_collision.snap +9 -0
  842. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@metaclass_renamed_forward_ref.snap +9 -0
  843. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@metaclass_with_wildcard_imports.snap +9 -0
  844. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@mixed_import_patterns.snap +9 -0
  845. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@module_attribute_fstring.snap +9 -0
  846. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@module_first_resolution.snap +9 -0
  847. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@module_setattr_with_circular_deps.snap +9 -0
  848. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@module_side_effects_circular_order.snap +9 -0
  849. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@multiline_strings.snap +9 -0
  850. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@namespace_attribute_reference.snap +9 -0
  851. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@namespace_forward_reference.snap +9 -0
  852. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@namespace_pkg_no_init.snap +9 -0
  853. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@namespace_simple_test.snap +9 -0
  854. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@package_relative_import_reexport.snap +9 -0
  855. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@pandera-polars.snap +9 -0
  856. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@parent_child_circular.snap +9 -0
  857. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@private_module_vars.snap +9 -0
  858. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@pydantic_project.snap +9 -0
  859. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@pyfail_class_level_cycles.snap +11 -0
  860. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@pyfail_four_module_cycle.snap +9 -0
  861. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@pyfail_package_level_cycles.snap +9 -0
  862. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@pyfail_relative_import_cycles.snap +11 -0
  863. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@pyfail_three_module_cycle.snap +9 -0
  864. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@side_effect_preservation.snap +9 -0
  865. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@simple_math.snap +9 -0
  866. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@simple_nested_handler.snap +9 -0
  867. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@simple_project.snap +9 -0
  868. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@simple_treeshaking_inlining.snap +9 -0
  869. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@simple_two_dots.snap +9 -0
  870. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stdlib_alike_locals.snap +9 -0
  871. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stdlib_decorator.snap +9 -0
  872. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stdlib_hoisting_aliases.snap +9 -0
  873. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stdlib_module_import.snap +9 -0
  874. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stdlib_module_name_collision.snap +9 -0
  875. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stdlib_module_name_conflict.snap +9 -0
  876. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stdlib_name_collision.snap +9 -0
  877. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stdlib_name_conflict_ordering.snap +9 -0
  878. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stdlib_wildcard_imports.snap +9 -0
  879. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_circular_reference.snap +9 -0
  880. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_explicit_relative_import.snap +9 -0
  881. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_explicit_relative_import_from_parent_package.snap +9 -0
  882. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_explicit_relative_import_in_init.snap +9 -0
  883. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_explicit_relative_import_single_dot.snap +9 -0
  884. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_explicit_relative_import_single_dot_in_init.snap +9 -0
  885. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_implicit_init_import.snap +9 -0
  886. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_import_from_as_module.snap +9 -0
  887. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_import_from_as_value.snap +9 -0
  888. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_imports_in_imported_modules.snap +9 -0
  889. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_module_with_triple_quotes.snap +9 -0
  890. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_script_using_from_to_import_module.snap +9 -0
  891. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_script_using_from_to_import_multiple_values.snap +9 -0
  892. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_script_using_module_in_package.snap +9 -0
  893. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_script_using_stdlib_module_in_package.snap +9 -0
  894. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_script_with_dynamic_import.snap +9 -0
  895. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_script_with_single_local_from_import.snap +9 -0
  896. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_script_with_single_local_import.snap +9 -0
  897. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_script_with_single_local_import_of_package.snap +9 -0
  898. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_script_with_special_shebang.snap +9 -0
  899. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_single_file.snap +9 -0
  900. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@stickytape_single_file_using_stdlib.snap +9 -0
  901. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@submodule_imports_parent_function.snap +9 -0
  902. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@symbol_collision_inheritance.snap +9 -0
  903. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@symbol_usage_optimization.snap +9 -0
  904. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@symlink_circular_dependency.snap +9 -0
  905. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@symlink_multi_circular.snap +9 -0
  906. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@test_all_exports.snap +9 -0
  907. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@test_forward_reference.snap +9 -0
  908. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@tree_shake_side_effect_import.snap +10 -0
  909. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@try_except_function_export.snap +10 -0
  910. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@type_checking_imports.snap +9 -0
  911. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@version_import_complex.snap +9 -0
  912. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@version_import_with_init_functions.snap +9 -0
  913. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@wildcard_all_setattr.snap +9 -0
  914. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@wildcard_imports.snap +9 -0
  915. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@wildcard_last_wins_simple.snap +9 -0
  916. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@wildcard_metaclass_ordering.snap +9 -0
  917. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@xfail_file_deduplication_symlinks.snap +11 -0
  918. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@xfail_module_shadowing.snap +9 -0
  919. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/execution_results@xfail_module_shadowing_package.snap +9 -0
  920. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@alias_transformation_test.snap +6 -0
  921. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@all_variable_handling.snap +6 -0
  922. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@all_variable_loop_reference.snap +6 -0
  923. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@ast_rewrite_parameter_shadow.snap +6 -0
  924. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@ast_rewriting_class_name_collision.snap +6 -0
  925. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@ast_rewriting_function_name_collision.snap +6 -0
  926. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@ast_rewriting_global.snap +6 -0
  927. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@ast_rewriting_globals_collision.snap +6 -0
  928. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@ast_rewriting_happy_path.snap +6 -0
  929. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@ast_rewriting_mixed_collisions.snap +6 -0
  930. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@ast_rewriting_nested_namespace_import.snap +6 -0
  931. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@ast_rewriting_regular_import_aliases.snap +6 -0
  932. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@ast_rewriting_symbols_collision.snap +6 -0
  933. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@ast_rewriting_variable_name_collision.snap +6 -0
  934. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@builtin_types.snap +6 -0
  935. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@builtin_types_circular.snap +6 -0
  936. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@circular_dep_with_version_module.snap +6 -0
  937. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@circular_deps_with_stdlib_name_conflict.snap +6 -0
  938. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@circular_import_from_init.snap +6 -0
  939. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@circular_import_function_reference.snap +6 -0
  940. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@circular_symbol_usage.snap +6 -0
  941. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@collections_abc_wrapper.snap +6 -0
  942. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@conditional_exports.snap +7 -0
  943. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@conditional_imports.snap +9 -0
  944. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@cross_module_attribute_import.snap +6 -0
  945. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@cross_module_import_attribute.snap +6 -0
  946. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@cross_module_inheritance.snap +6 -0
  947. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@cross_package_mixed_import.snap +7 -0
  948. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@early_module_reference.snap +6 -0
  949. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@entry_module_circular_import.snap +6 -0
  950. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@file_deduplication_basic.snap +6 -0
  951. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@forward_reference_attribute_access.snap +6 -0
  952. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@forward_reference_from_parent_init.snap +6 -0
  953. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@forward_reference_import_before_init.snap +7 -0
  954. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@forward_reference_in_exception.snap +6 -0
  955. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@forward_reference_pkg.snap +6 -0
  956. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@forward_reference_requests_compat.snap +7 -0
  957. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@fstring_globals_lifting.snap +6 -0
  958. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@fstring_module_globals.snap +6 -0
  959. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@function_level_module_import.snap +6 -0
  960. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@future_imports_basic.snap +6 -0
  961. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@future_imports_multiple.snap +6 -0
  962. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@import_shadowing.snap +6 -0
  963. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@importlib_deduplication.snap +6 -0
  964. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@importlib_edge_cases.snap +6 -0
  965. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@importlib_static.snap +6 -0
  966. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@importlib_static_renaming.snap +6 -0
  967. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@init_reexports.snap +6 -0
  968. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@metaclass_collision.snap +6 -0
  969. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@metaclass_entry_simple.snap +6 -0
  970. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@metaclass_forward_ref_init.snap +6 -0
  971. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@metaclass_forward_ref_init_alias.snap +6 -0
  972. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@metaclass_forward_ref_renamed.snap +6 -0
  973. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@metaclass_forward_ref_wildcard.snap +6 -0
  974. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@metaclass_ordering_collision.snap +6 -0
  975. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@metaclass_renamed_forward_ref.snap +6 -0
  976. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@metaclass_with_wildcard_imports.snap +6 -0
  977. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@mixed_import_patterns.snap +6 -0
  978. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@module_attribute_fstring.snap +6 -0
  979. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@module_first_resolution.snap +6 -0
  980. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@module_setattr_with_circular_deps.snap +6 -0
  981. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@module_side_effects_circular_order.snap +6 -0
  982. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@multiline_strings.snap +6 -0
  983. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@namespace_attribute_reference.snap +6 -0
  984. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@namespace_forward_reference.snap +6 -0
  985. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@namespace_pkg_no_init.snap +6 -0
  986. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@namespace_simple_test.snap +6 -0
  987. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@package_relative_import_reexport.snap +6 -0
  988. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@pandera-polars.snap +8 -0
  989. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@parent_child_circular.snap +6 -0
  990. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@private_module_vars.snap +6 -0
  991. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@pydantic_project.snap +7 -0
  992. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@pyfail_class_level_cycles.snap +6 -0
  993. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@pyfail_four_module_cycle.snap +6 -0
  994. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@pyfail_package_level_cycles.snap +6 -0
  995. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@pyfail_relative_import_cycles.snap +6 -0
  996. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@pyfail_three_module_cycle.snap +6 -0
  997. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@side_effect_preservation.snap +6 -0
  998. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@simple_math.snap +6 -0
  999. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@simple_nested_handler.snap +6 -0
  1000. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@simple_project.snap +6 -0
  1001. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@simple_treeshaking_inlining.snap +6 -0
  1002. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@simple_two_dots.snap +6 -0
  1003. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stdlib_alike_locals.snap +6 -0
  1004. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stdlib_decorator.snap +7 -0
  1005. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stdlib_hoisting_aliases.snap +6 -0
  1006. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stdlib_module_import.snap +6 -0
  1007. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stdlib_module_name_collision.snap +6 -0
  1008. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stdlib_module_name_conflict.snap +6 -0
  1009. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stdlib_name_collision.snap +6 -0
  1010. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stdlib_name_conflict_ordering.snap +6 -0
  1011. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stdlib_wildcard_imports.snap +6 -0
  1012. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_circular_reference.snap +6 -0
  1013. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_explicit_relative_import.snap +6 -0
  1014. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_explicit_relative_import_from_parent_package.snap +6 -0
  1015. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_explicit_relative_import_in_init.snap +6 -0
  1016. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_explicit_relative_import_single_dot.snap +6 -0
  1017. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_explicit_relative_import_single_dot_in_init.snap +6 -0
  1018. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_implicit_init_import.snap +6 -0
  1019. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_import_from_as_module.snap +6 -0
  1020. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_import_from_as_value.snap +6 -0
  1021. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_imports_in_imported_modules.snap +6 -0
  1022. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_module_with_triple_quotes.snap +6 -0
  1023. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_script_using_from_to_import_module.snap +6 -0
  1024. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_script_using_from_to_import_multiple_values.snap +6 -0
  1025. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_script_using_module_in_package.snap +6 -0
  1026. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_script_using_stdlib_module_in_package.snap +6 -0
  1027. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_script_with_dynamic_import.snap +6 -0
  1028. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_script_with_single_local_from_import.snap +6 -0
  1029. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_script_with_single_local_import.snap +6 -0
  1030. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_script_with_single_local_import_of_package.snap +6 -0
  1031. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_script_with_special_shebang.snap +6 -0
  1032. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_single_file.snap +6 -0
  1033. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@stickytape_single_file_using_stdlib.snap +6 -0
  1034. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@submodule_imports_parent_function.snap +6 -0
  1035. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@symbol_collision_inheritance.snap +6 -0
  1036. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@symbol_usage_optimization.snap +6 -0
  1037. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@symlink_circular_dependency.snap +6 -0
  1038. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@symlink_multi_circular.snap +6 -0
  1039. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@test_all_exports.snap +6 -0
  1040. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@test_forward_reference.snap +6 -0
  1041. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@tree_shake_side_effect_import.snap +7 -0
  1042. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@try_except_function_export.snap +8 -0
  1043. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@type_checking_imports.snap +6 -0
  1044. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@version_import_complex.snap +6 -0
  1045. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@version_import_with_init_functions.snap +6 -0
  1046. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@wildcard_all_setattr.snap +6 -0
  1047. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@wildcard_imports.snap +6 -0
  1048. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@wildcard_last_wins_simple.snap +6 -0
  1049. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@wildcard_metaclass_ordering.snap +6 -0
  1050. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@xfail_file_deduplication_symlinks.snap +6 -0
  1051. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@xfail_module_shadowing.snap +6 -0
  1052. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/requirements@xfail_module_shadowing_package.snap +7 -0
  1053. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@alias_transformation_test.snap +10 -0
  1054. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@all_variable_handling.snap +10 -0
  1055. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@all_variable_loop_reference.snap +10 -0
  1056. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@ast_rewrite_parameter_shadow.snap +10 -0
  1057. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@ast_rewriting_class_name_collision.snap +10 -0
  1058. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@ast_rewriting_function_name_collision.snap +10 -0
  1059. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@ast_rewriting_global.snap +10 -0
  1060. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@ast_rewriting_globals_collision.snap +10 -0
  1061. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@ast_rewriting_happy_path.snap +10 -0
  1062. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@ast_rewriting_mixed_collisions.snap +10 -0
  1063. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@ast_rewriting_nested_namespace_import.snap +10 -0
  1064. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@ast_rewriting_regular_import_aliases.snap +10 -0
  1065. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@ast_rewriting_symbols_collision.snap +10 -0
  1066. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@ast_rewriting_variable_name_collision.snap +10 -0
  1067. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@builtin_types.snap +10 -0
  1068. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@builtin_types_circular.snap +10 -0
  1069. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@circular_dep_with_version_module.snap +10 -0
  1070. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@circular_deps_with_stdlib_name_conflict.snap +10 -0
  1071. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@circular_import_from_init.snap +10 -0
  1072. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@circular_import_function_reference.snap +10 -0
  1073. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@circular_symbol_usage.snap +10 -0
  1074. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@collections_abc_wrapper.snap +10 -0
  1075. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@conditional_exports.snap +10 -0
  1076. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@conditional_imports.snap +10 -0
  1077. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@cross_module_attribute_import.snap +10 -0
  1078. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@cross_module_import_attribute.snap +10 -0
  1079. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@cross_module_inheritance.snap +10 -0
  1080. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@cross_package_mixed_import.snap +10 -0
  1081. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@early_module_reference.snap +10 -0
  1082. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@entry_module_circular_import.snap +10 -0
  1083. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@file_deduplication_basic.snap +10 -0
  1084. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@forward_reference_attribute_access.snap +10 -0
  1085. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@forward_reference_from_parent_init.snap +10 -0
  1086. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@forward_reference_import_before_init.snap +10 -0
  1087. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@forward_reference_in_exception.snap +10 -0
  1088. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@forward_reference_pkg.snap +10 -0
  1089. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@forward_reference_requests_compat.snap +10 -0
  1090. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@fstring_globals_lifting.snap +10 -0
  1091. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@fstring_module_globals.snap +10 -0
  1092. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@function_level_module_import.snap +10 -0
  1093. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@future_imports_basic.snap +10 -0
  1094. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@future_imports_multiple.snap +10 -0
  1095. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@import_shadowing.snap +10 -0
  1096. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@importlib_deduplication.snap +10 -0
  1097. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@importlib_edge_cases.snap +10 -0
  1098. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@importlib_static.snap +10 -0
  1099. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@importlib_static_renaming.snap +10 -0
  1100. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@init_reexports.snap +10 -0
  1101. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@metaclass_collision.snap +10 -0
  1102. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@metaclass_entry_simple.snap +10 -0
  1103. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@metaclass_forward_ref_init.snap +10 -0
  1104. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@metaclass_forward_ref_init_alias.snap +10 -0
  1105. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@metaclass_forward_ref_renamed.snap +10 -0
  1106. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@metaclass_forward_ref_wildcard.snap +10 -0
  1107. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@metaclass_ordering_collision.snap +10 -0
  1108. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@metaclass_renamed_forward_ref.snap +10 -0
  1109. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@metaclass_with_wildcard_imports.snap +10 -0
  1110. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@mixed_import_patterns.snap +10 -0
  1111. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@module_attribute_fstring.snap +10 -0
  1112. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@module_first_resolution.snap +10 -0
  1113. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@module_setattr_with_circular_deps.snap +10 -0
  1114. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@module_side_effects_circular_order.snap +10 -0
  1115. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@multiline_strings.snap +10 -0
  1116. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@namespace_attribute_reference.snap +10 -0
  1117. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@namespace_forward_reference.snap +10 -0
  1118. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@namespace_pkg_no_init.snap +10 -0
  1119. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@namespace_simple_test.snap +10 -0
  1120. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@package_relative_import_reexport.snap +10 -0
  1121. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@pandera-polars.snap +10 -0
  1122. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@parent_child_circular.snap +10 -0
  1123. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@private_module_vars.snap +10 -0
  1124. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@pydantic_project.snap +10 -0
  1125. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@pyfail_class_level_cycles.snap +10 -0
  1126. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@pyfail_four_module_cycle.snap +10 -0
  1127. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@pyfail_package_level_cycles.snap +10 -0
  1128. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@pyfail_relative_import_cycles.snap +10 -0
  1129. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@pyfail_three_module_cycle.snap +10 -0
  1130. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@side_effect_preservation.snap +10 -0
  1131. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@simple_math.snap +10 -0
  1132. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@simple_nested_handler.snap +10 -0
  1133. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@simple_project.snap +10 -0
  1134. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@simple_treeshaking_inlining.snap +10 -0
  1135. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@simple_two_dots.snap +10 -0
  1136. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stdlib_alike_locals.snap +10 -0
  1137. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stdlib_decorator.snap +10 -0
  1138. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stdlib_hoisting_aliases.snap +10 -0
  1139. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stdlib_module_import.snap +10 -0
  1140. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stdlib_module_name_collision.snap +10 -0
  1141. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stdlib_module_name_conflict.snap +10 -0
  1142. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stdlib_name_collision.snap +10 -0
  1143. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stdlib_name_conflict_ordering.snap +10 -0
  1144. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stdlib_wildcard_imports.snap +10 -0
  1145. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_circular_reference.snap +10 -0
  1146. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_explicit_relative_import.snap +10 -0
  1147. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_explicit_relative_import_from_parent_package.snap +10 -0
  1148. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_explicit_relative_import_in_init.snap +10 -0
  1149. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_explicit_relative_import_single_dot.snap +10 -0
  1150. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_explicit_relative_import_single_dot_in_init.snap +10 -0
  1151. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_implicit_init_import.snap +10 -0
  1152. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_import_from_as_module.snap +10 -0
  1153. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_import_from_as_value.snap +10 -0
  1154. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_imports_in_imported_modules.snap +10 -0
  1155. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_module_with_triple_quotes.snap +10 -0
  1156. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_script_using_from_to_import_module.snap +10 -0
  1157. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_script_using_from_to_import_multiple_values.snap +10 -0
  1158. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_script_using_module_in_package.snap +10 -0
  1159. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_script_using_stdlib_module_in_package.snap +10 -0
  1160. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_script_with_dynamic_import.snap +10 -0
  1161. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_script_with_single_local_from_import.snap +10 -0
  1162. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_script_with_single_local_import.snap +10 -0
  1163. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_script_with_single_local_import_of_package.snap +10 -0
  1164. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_script_with_special_shebang.snap +10 -0
  1165. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_single_file.snap +10 -0
  1166. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@stickytape_single_file_using_stdlib.snap +10 -0
  1167. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@submodule_imports_parent_function.snap +10 -0
  1168. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@symbol_collision_inheritance.snap +10 -0
  1169. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@symbol_usage_optimization.snap +10 -0
  1170. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@symlink_circular_dependency.snap +10 -0
  1171. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@symlink_multi_circular.snap +10 -0
  1172. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@test_all_exports.snap +10 -0
  1173. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@test_forward_reference.snap +10 -0
  1174. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@tree_shake_side_effect_import.snap +10 -0
  1175. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@try_except_function_export.snap +10 -0
  1176. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@type_checking_imports.snap +10 -0
  1177. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@version_import_complex.snap +10 -0
  1178. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@version_import_with_init_functions.snap +10 -0
  1179. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@wildcard_all_setattr.snap +10 -0
  1180. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@wildcard_imports.snap +10 -0
  1181. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@wildcard_last_wins_simple.snap +10 -0
  1182. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@wildcard_metaclass_ordering.snap +10 -0
  1183. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@xfail_file_deduplication_symlinks.snap +10 -0
  1184. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@xfail_module_shadowing.snap +10 -0
  1185. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/ruff_lint_results@xfail_module_shadowing_package.snap +10 -0
  1186. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__directory_entry_empty_stderr.snap +5 -0
  1187. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__directory_entry_init_stdout.snap +36 -0
  1188. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__directory_entry_main_stdout.snap +33 -0
  1189. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__missing_output_and_stdout_stderr.snap +5 -0
  1190. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__stdout_bundled_structure.snap +80 -0
  1191. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__stdout_bundling_output.snap +80 -0
  1192. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__stdout_bundling_stderr.snap +5 -0
  1193. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__stdout_conflicts_with_output_stderr.snap +9 -0
  1194. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__stdout_error_stderr.snap +5 -0
  1195. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__stdout_error_stdout.snap +5 -0
  1196. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__stdout_requirements_output.snap +80 -0
  1197. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__stdout_requirements_stderr.snap +5 -0
  1198. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__stdout_verbose_output.snap +80 -0
  1199. cribo-0.0.0.dev118/crates/cribo/tests/snapshots/test_cli_stdout__stdout_verbose_stderr.snap +5 -0
  1200. cribo-0.0.0.dev118/crates/cribo/tests/test_bundling_snapshots.rs +655 -0
  1201. cribo-0.0.0.dev118/crates/cribo/tests/test_cli_stdout.rs +298 -0
  1202. cribo-0.0.0.dev118/crates/cribo/tests/test_directory_entry_simple.rs +174 -0
  1203. cribo-0.0.0.dev118/crates/cribo/tests/test_ecosystem.rs +56 -0
  1204. cribo-0.0.0.dev118/pyproject.toml +98 -0
  1205. cribo-0.0.0.dev118/python/cribo/__init__.py +11 -0
  1206. cribo-0.0.0.dev118/python/cribo/__main__.py +27 -0
  1207. cribo-0.0.0.dev118/python/cribo/py.typed +22 -0
@@ -0,0 +1,3289 @@
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.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "alloca"
16
+ version = "0.4.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
19
+ dependencies = [
20
+ "cc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "allocator-api2"
25
+ version = "0.2.21"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
28
+
29
+ [[package]]
30
+ name = "anes"
31
+ version = "0.1.6"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
34
+
35
+ [[package]]
36
+ name = "annotate-snippets"
37
+ version = "0.11.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4"
40
+ dependencies = [
41
+ "anstyle",
42
+ "unicode-width",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "anstream"
47
+ version = "0.6.21"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
50
+ dependencies = [
51
+ "anstyle",
52
+ "anstyle-parse",
53
+ "anstyle-query",
54
+ "anstyle-wincon",
55
+ "colorchoice",
56
+ "is_terminal_polyfill",
57
+ "utf8parse",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "anstyle"
62
+ version = "1.0.13"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
65
+
66
+ [[package]]
67
+ name = "anstyle-parse"
68
+ version = "0.2.7"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
71
+ dependencies = [
72
+ "utf8parse",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "anstyle-query"
77
+ version = "1.1.5"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
80
+ dependencies = [
81
+ "windows-sys 0.61.2",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "anstyle-wincon"
86
+ version = "3.0.11"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
89
+ dependencies = [
90
+ "anstyle",
91
+ "once_cell_polyfill",
92
+ "windows-sys 0.61.2",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "anyhow"
97
+ version = "1.0.100"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
100
+
101
+ [[package]]
102
+ name = "arc-swap"
103
+ version = "1.7.1"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
106
+
107
+ [[package]]
108
+ name = "attribute-derive"
109
+ version = "0.10.5"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
112
+ dependencies = [
113
+ "attribute-derive-macro",
114
+ "derive-where",
115
+ "manyhow",
116
+ "proc-macro2",
117
+ "quote",
118
+ "syn",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "attribute-derive-macro"
123
+ version = "0.10.5"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
126
+ dependencies = [
127
+ "collection_literals",
128
+ "interpolator",
129
+ "manyhow",
130
+ "proc-macro-utils",
131
+ "proc-macro2",
132
+ "quote",
133
+ "quote-use",
134
+ "syn",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "autocfg"
139
+ version = "1.5.0"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
142
+
143
+ [[package]]
144
+ name = "bitflags"
145
+ version = "2.10.0"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
148
+
149
+ [[package]]
150
+ name = "block-buffer"
151
+ version = "0.10.4"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
154
+ dependencies = [
155
+ "generic-array",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "boxcar"
160
+ version = "0.2.14"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
163
+
164
+ [[package]]
165
+ name = "bstr"
166
+ version = "1.12.1"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
169
+ dependencies = [
170
+ "memchr",
171
+ "regex-automata",
172
+ "serde",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "bumpalo"
177
+ version = "3.19.1"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
180
+
181
+ [[package]]
182
+ name = "byteorder"
183
+ version = "1.5.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
186
+
187
+ [[package]]
188
+ name = "camino"
189
+ version = "1.2.2"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
192
+ dependencies = [
193
+ "serde_core",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "cast"
198
+ version = "0.3.0"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
201
+
202
+ [[package]]
203
+ name = "castaway"
204
+ version = "0.2.4"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
207
+ dependencies = [
208
+ "rustversion",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "cc"
213
+ version = "1.2.50"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c"
216
+ dependencies = [
217
+ "find-msvc-tools",
218
+ "shlex",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "cfg-if"
223
+ version = "1.0.4"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
226
+
227
+ [[package]]
228
+ name = "chrono"
229
+ version = "0.4.42"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
232
+ dependencies = [
233
+ "num-traits",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "ciborium"
238
+ version = "0.2.2"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
241
+ dependencies = [
242
+ "ciborium-io",
243
+ "ciborium-ll",
244
+ "serde",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "ciborium-io"
249
+ version = "0.2.2"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
252
+
253
+ [[package]]
254
+ name = "ciborium-ll"
255
+ version = "0.2.2"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
258
+ dependencies = [
259
+ "ciborium-io",
260
+ "half",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "clap"
265
+ version = "4.5.53"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
268
+ dependencies = [
269
+ "clap_builder",
270
+ "clap_derive",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "clap_builder"
275
+ version = "4.5.53"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
278
+ dependencies = [
279
+ "anstream",
280
+ "anstyle",
281
+ "clap_lex",
282
+ "strsim",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "clap_derive"
287
+ version = "4.5.49"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
290
+ dependencies = [
291
+ "heck",
292
+ "proc-macro2",
293
+ "quote",
294
+ "syn",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "clap_lex"
299
+ version = "0.7.6"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
302
+
303
+ [[package]]
304
+ name = "collection_literals"
305
+ version = "1.0.3"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
308
+
309
+ [[package]]
310
+ name = "colorchoice"
311
+ version = "1.0.4"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
314
+
315
+ [[package]]
316
+ name = "colored"
317
+ version = "3.0.0"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
320
+ dependencies = [
321
+ "windows-sys 0.59.0",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "compact_str"
326
+ version = "0.9.0"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
329
+ dependencies = [
330
+ "castaway",
331
+ "cfg-if",
332
+ "itoa",
333
+ "rustversion",
334
+ "ryu",
335
+ "serde",
336
+ "static_assertions",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "console"
341
+ version = "0.15.11"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
344
+ dependencies = [
345
+ "encode_unicode",
346
+ "libc",
347
+ "once_cell",
348
+ "windows-sys 0.59.0",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "cow-utils"
353
+ version = "0.1.3"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
356
+
357
+ [[package]]
358
+ name = "cpufeatures"
359
+ version = "0.2.17"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
362
+ dependencies = [
363
+ "libc",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "crc32fast"
368
+ version = "1.5.0"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
371
+ dependencies = [
372
+ "cfg-if",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "cribo"
377
+ version = "0.0.0-dev118"
378
+ dependencies = [
379
+ "anyhow",
380
+ "clap",
381
+ "cow-utils",
382
+ "criterion",
383
+ "env_logger",
384
+ "etcetera",
385
+ "indexmap",
386
+ "insta",
387
+ "log",
388
+ "once_cell",
389
+ "pep508_rs",
390
+ "petgraph",
391
+ "pretty_assertions",
392
+ "ruff_linter",
393
+ "ruff_python_ast",
394
+ "ruff_python_codegen",
395
+ "ruff_python_parser",
396
+ "ruff_python_semantic",
397
+ "ruff_python_stdlib",
398
+ "ruff_text_size",
399
+ "rustc-hash",
400
+ "serde",
401
+ "serial_test",
402
+ "sha2",
403
+ "tempfile",
404
+ "toml",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "criterion"
409
+ version = "0.8.1"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf"
412
+ dependencies = [
413
+ "alloca",
414
+ "anes",
415
+ "cast",
416
+ "ciborium",
417
+ "clap",
418
+ "criterion-plot",
419
+ "itertools 0.13.0",
420
+ "num-traits",
421
+ "oorandom",
422
+ "page_size",
423
+ "plotters",
424
+ "rayon",
425
+ "regex",
426
+ "serde",
427
+ "serde_json",
428
+ "tinytemplate",
429
+ "walkdir",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "criterion-plot"
434
+ version = "0.8.1"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4"
437
+ dependencies = [
438
+ "cast",
439
+ "itertools 0.13.0",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "crossbeam-deque"
444
+ version = "0.8.6"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
447
+ dependencies = [
448
+ "crossbeam-epoch",
449
+ "crossbeam-utils",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "crossbeam-epoch"
454
+ version = "0.9.18"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
457
+ dependencies = [
458
+ "crossbeam-utils",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "crossbeam-queue"
463
+ version = "0.3.12"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
466
+ dependencies = [
467
+ "crossbeam-utils",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "crossbeam-utils"
472
+ version = "0.8.21"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
475
+
476
+ [[package]]
477
+ name = "crunchy"
478
+ version = "0.2.4"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
481
+
482
+ [[package]]
483
+ name = "crypto-common"
484
+ version = "0.1.7"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
487
+ dependencies = [
488
+ "generic-array",
489
+ "typenum",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "darling"
494
+ version = "0.21.3"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
497
+ dependencies = [
498
+ "darling_core",
499
+ "darling_macro",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "darling_core"
504
+ version = "0.21.3"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
507
+ dependencies = [
508
+ "fnv",
509
+ "ident_case",
510
+ "proc-macro2",
511
+ "quote",
512
+ "strsim",
513
+ "syn",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "darling_macro"
518
+ version = "0.21.3"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
521
+ dependencies = [
522
+ "darling_core",
523
+ "quote",
524
+ "syn",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "dashmap"
529
+ version = "6.1.0"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
532
+ dependencies = [
533
+ "cfg-if",
534
+ "crossbeam-utils",
535
+ "hashbrown 0.14.5",
536
+ "lock_api",
537
+ "once_cell",
538
+ "parking_lot_core",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "derive-where"
543
+ version = "1.6.0"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "ef941ded77d15ca19b40374869ac6000af1c9f2a4c0f3d4c70926287e6364a8f"
546
+ dependencies = [
547
+ "proc-macro2",
548
+ "quote",
549
+ "syn",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "diff"
554
+ version = "0.1.13"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
557
+
558
+ [[package]]
559
+ name = "digest"
560
+ version = "0.10.7"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
563
+ dependencies = [
564
+ "block-buffer",
565
+ "crypto-common",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "displaydoc"
570
+ version = "0.2.5"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
573
+ dependencies = [
574
+ "proc-macro2",
575
+ "quote",
576
+ "syn",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "dunce"
581
+ version = "1.0.5"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
584
+
585
+ [[package]]
586
+ name = "either"
587
+ version = "1.15.0"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
590
+
591
+ [[package]]
592
+ name = "encode_unicode"
593
+ version = "1.0.0"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
596
+
597
+ [[package]]
598
+ name = "env_filter"
599
+ version = "0.1.4"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
602
+ dependencies = [
603
+ "log",
604
+ "regex",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "env_logger"
609
+ version = "0.11.8"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
612
+ dependencies = [
613
+ "anstream",
614
+ "anstyle",
615
+ "env_filter",
616
+ "jiff",
617
+ "log",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "equivalent"
622
+ version = "1.0.2"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
625
+
626
+ [[package]]
627
+ name = "errno"
628
+ version = "0.3.14"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
631
+ dependencies = [
632
+ "libc",
633
+ "windows-sys 0.61.2",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "etcetera"
638
+ version = "0.11.0"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "de48cc4d1c1d97a20fd819def54b890cadde72ed3ad0c614822a0a433361be96"
641
+ dependencies = [
642
+ "cfg-if",
643
+ "windows-sys 0.61.2",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "fastrand"
648
+ version = "2.3.0"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
651
+
652
+ [[package]]
653
+ name = "fern"
654
+ version = "0.7.1"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "4316185f709b23713e41e3195f90edef7fb00c3ed4adc79769cf09cc762a3b29"
657
+ dependencies = [
658
+ "log",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "filetime"
663
+ version = "0.2.26"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
666
+ dependencies = [
667
+ "cfg-if",
668
+ "libc",
669
+ "libredox",
670
+ "windows-sys 0.60.2",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "find-msvc-tools"
675
+ version = "0.1.5"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
678
+
679
+ [[package]]
680
+ name = "fixedbitset"
681
+ version = "0.5.7"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
684
+
685
+ [[package]]
686
+ name = "fnv"
687
+ version = "1.0.7"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
690
+
691
+ [[package]]
692
+ name = "foldhash"
693
+ version = "0.1.5"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
696
+
697
+ [[package]]
698
+ name = "form_urlencoded"
699
+ version = "1.2.2"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
702
+ dependencies = [
703
+ "percent-encoding",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "futures"
708
+ version = "0.3.31"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
711
+ dependencies = [
712
+ "futures-channel",
713
+ "futures-core",
714
+ "futures-executor",
715
+ "futures-io",
716
+ "futures-sink",
717
+ "futures-task",
718
+ "futures-util",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "futures-channel"
723
+ version = "0.3.31"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
726
+ dependencies = [
727
+ "futures-core",
728
+ "futures-sink",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "futures-core"
733
+ version = "0.3.31"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
736
+
737
+ [[package]]
738
+ name = "futures-executor"
739
+ version = "0.3.31"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
742
+ dependencies = [
743
+ "futures-core",
744
+ "futures-task",
745
+ "futures-util",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "futures-io"
750
+ version = "0.3.31"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
753
+
754
+ [[package]]
755
+ name = "futures-sink"
756
+ version = "0.3.31"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
759
+
760
+ [[package]]
761
+ name = "futures-task"
762
+ version = "0.3.31"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
765
+
766
+ [[package]]
767
+ name = "futures-util"
768
+ version = "0.3.31"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
771
+ dependencies = [
772
+ "futures-channel",
773
+ "futures-core",
774
+ "futures-io",
775
+ "futures-sink",
776
+ "futures-task",
777
+ "memchr",
778
+ "pin-project-lite",
779
+ "pin-utils",
780
+ "slab",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "generic-array"
785
+ version = "0.14.7"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
788
+ dependencies = [
789
+ "typenum",
790
+ "version_check",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "get-size-derive2"
795
+ version = "0.7.3"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "ab21d7bd2c625f2064f04ce54bcb88bc57c45724cde45cba326d784e22d3f71a"
798
+ dependencies = [
799
+ "attribute-derive",
800
+ "quote",
801
+ "syn",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "get-size2"
806
+ version = "0.7.3"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "879272b0de109e2b67b39fcfe3d25fdbba96ac07e44a254f5a0b4d7ff55340cb"
809
+ dependencies = [
810
+ "compact_str",
811
+ "get-size-derive2",
812
+ "hashbrown 0.16.1",
813
+ "smallvec",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "getopts"
818
+ version = "0.2.24"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
821
+ dependencies = [
822
+ "unicode-width",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "getrandom"
827
+ version = "0.2.16"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
830
+ dependencies = [
831
+ "cfg-if",
832
+ "libc",
833
+ "wasi",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "getrandom"
838
+ version = "0.3.4"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
841
+ dependencies = [
842
+ "cfg-if",
843
+ "libc",
844
+ "r-efi",
845
+ "wasip2",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "glob"
850
+ version = "0.3.3"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
853
+
854
+ [[package]]
855
+ name = "globset"
856
+ version = "0.4.18"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
859
+ dependencies = [
860
+ "aho-corasick",
861
+ "bstr",
862
+ "log",
863
+ "regex-automata",
864
+ "regex-syntax",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "half"
869
+ version = "2.7.1"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
872
+ dependencies = [
873
+ "cfg-if",
874
+ "crunchy",
875
+ "zerocopy",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "hashbrown"
880
+ version = "0.14.5"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
883
+
884
+ [[package]]
885
+ name = "hashbrown"
886
+ version = "0.15.5"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
889
+ dependencies = [
890
+ "allocator-api2",
891
+ "equivalent",
892
+ "foldhash",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "hashbrown"
897
+ version = "0.16.1"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
900
+ dependencies = [
901
+ "equivalent",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "hashlink"
906
+ version = "0.10.0"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
909
+ dependencies = [
910
+ "hashbrown 0.15.5",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "heck"
915
+ version = "0.5.0"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
918
+
919
+ [[package]]
920
+ name = "icu_collections"
921
+ version = "2.1.1"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
924
+ dependencies = [
925
+ "displaydoc",
926
+ "potential_utf",
927
+ "yoke",
928
+ "zerofrom",
929
+ "zerovec",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "icu_locale_core"
934
+ version = "2.1.1"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
937
+ dependencies = [
938
+ "displaydoc",
939
+ "litemap",
940
+ "tinystr",
941
+ "writeable",
942
+ "zerovec",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "icu_normalizer"
947
+ version = "2.1.1"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
950
+ dependencies = [
951
+ "icu_collections",
952
+ "icu_normalizer_data",
953
+ "icu_properties",
954
+ "icu_provider",
955
+ "smallvec",
956
+ "zerovec",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "icu_normalizer_data"
961
+ version = "2.1.1"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
964
+
965
+ [[package]]
966
+ name = "icu_properties"
967
+ version = "2.1.2"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
970
+ dependencies = [
971
+ "icu_collections",
972
+ "icu_locale_core",
973
+ "icu_properties_data",
974
+ "icu_provider",
975
+ "zerotrie",
976
+ "zerovec",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "icu_properties_data"
981
+ version = "2.1.2"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
984
+
985
+ [[package]]
986
+ name = "icu_provider"
987
+ version = "2.1.1"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
990
+ dependencies = [
991
+ "displaydoc",
992
+ "icu_locale_core",
993
+ "writeable",
994
+ "yoke",
995
+ "zerofrom",
996
+ "zerotrie",
997
+ "zerovec",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "ident_case"
1002
+ version = "1.0.1"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1005
+
1006
+ [[package]]
1007
+ name = "idna"
1008
+ version = "1.1.0"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1011
+ dependencies = [
1012
+ "idna_adapter",
1013
+ "smallvec",
1014
+ "utf8_iter",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "idna_adapter"
1019
+ version = "1.2.1"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1022
+ dependencies = [
1023
+ "icu_normalizer",
1024
+ "icu_properties",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "imperative"
1029
+ version = "1.0.6"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "29a1f6526af721f9aec9ceed7ab8ebfca47f3399d08b80056c2acca3fcb694a9"
1032
+ dependencies = [
1033
+ "phf",
1034
+ "rust-stemmers",
1035
+ ]
1036
+
1037
+ [[package]]
1038
+ name = "indexmap"
1039
+ version = "2.12.1"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1042
+ dependencies = [
1043
+ "equivalent",
1044
+ "hashbrown 0.16.1",
1045
+ "serde",
1046
+ "serde_core",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "insta"
1051
+ version = "1.43.2"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
1054
+ dependencies = [
1055
+ "console",
1056
+ "globset",
1057
+ "once_cell",
1058
+ "regex",
1059
+ "serde",
1060
+ "similar",
1061
+ "walkdir",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "interpolator"
1066
+ version = "0.5.0"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
1069
+
1070
+ [[package]]
1071
+ name = "intrusive-collections"
1072
+ version = "0.9.7"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
1075
+ dependencies = [
1076
+ "memoffset",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "inventory"
1081
+ version = "0.3.21"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
1084
+ dependencies = [
1085
+ "rustversion",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "is-docker"
1090
+ version = "0.2.0"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
1093
+ dependencies = [
1094
+ "once_cell",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "is-macro"
1099
+ version = "0.3.7"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
1102
+ dependencies = [
1103
+ "heck",
1104
+ "proc-macro2",
1105
+ "quote",
1106
+ "syn",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "is-wsl"
1111
+ version = "0.4.0"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
1114
+ dependencies = [
1115
+ "is-docker",
1116
+ "once_cell",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "is_terminal_polyfill"
1121
+ version = "1.70.2"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1124
+
1125
+ [[package]]
1126
+ name = "itertools"
1127
+ version = "0.13.0"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1130
+ dependencies = [
1131
+ "either",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "itertools"
1136
+ version = "0.14.0"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1139
+ dependencies = [
1140
+ "either",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "itoa"
1145
+ version = "1.0.16"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "7ee5b5339afb4c41626dde77b7a611bd4f2c202b897852b4bcf5d03eddc61010"
1148
+
1149
+ [[package]]
1150
+ name = "jiff"
1151
+ version = "0.2.16"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35"
1154
+ dependencies = [
1155
+ "jiff-static",
1156
+ "jiff-tzdb-platform",
1157
+ "log",
1158
+ "portable-atomic",
1159
+ "portable-atomic-util",
1160
+ "serde_core",
1161
+ "windows-sys 0.61.2",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "jiff-static"
1166
+ version = "0.2.16"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69"
1169
+ dependencies = [
1170
+ "proc-macro2",
1171
+ "quote",
1172
+ "syn",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "jiff-tzdb"
1177
+ version = "0.1.5"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "68971ebff725b9e2ca27a601c5eb38a4c5d64422c4cbab0c535f248087eda5c2"
1180
+
1181
+ [[package]]
1182
+ name = "jiff-tzdb-platform"
1183
+ version = "0.1.3"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
1186
+ dependencies = [
1187
+ "jiff-tzdb",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "js-sys"
1192
+ version = "0.3.83"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1195
+ dependencies = [
1196
+ "once_cell",
1197
+ "wasm-bindgen",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "libc"
1202
+ version = "0.2.178"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
1205
+
1206
+ [[package]]
1207
+ name = "libcst"
1208
+ version = "1.8.6"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "6aea7143e4a0ed59b87a1ee71e198500889f8b005311136be15e84c97a6fcd8d"
1211
+ dependencies = [
1212
+ "annotate-snippets",
1213
+ "libcst_derive",
1214
+ "memchr",
1215
+ "paste",
1216
+ "peg",
1217
+ "regex",
1218
+ "thiserror 2.0.17",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "libcst_derive"
1223
+ version = "1.8.6"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "0903173ea316c34a44d0497161e04d9210af44f5f5e89bf2f55d9a254c9a0e8d"
1226
+ dependencies = [
1227
+ "quote",
1228
+ "syn",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "libredox"
1233
+ version = "0.1.11"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "df15f6eac291ed1cf25865b1ee60399f57e7c227e7f51bdbd4c5270396a9ed50"
1236
+ dependencies = [
1237
+ "bitflags",
1238
+ "libc",
1239
+ "redox_syscall 0.6.0",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "linux-raw-sys"
1244
+ version = "0.11.0"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1247
+
1248
+ [[package]]
1249
+ name = "litemap"
1250
+ version = "0.8.1"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1253
+
1254
+ [[package]]
1255
+ name = "lock_api"
1256
+ version = "0.4.14"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1259
+ dependencies = [
1260
+ "scopeguard",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "log"
1265
+ version = "0.4.29"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1268
+
1269
+ [[package]]
1270
+ name = "manyhow"
1271
+ version = "0.11.4"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
1274
+ dependencies = [
1275
+ "manyhow-macros",
1276
+ "proc-macro2",
1277
+ "quote",
1278
+ "syn",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "manyhow-macros"
1283
+ version = "0.11.4"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
1286
+ dependencies = [
1287
+ "proc-macro-utils",
1288
+ "proc-macro2",
1289
+ "quote",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "matches"
1294
+ version = "0.1.10"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
1297
+
1298
+ [[package]]
1299
+ name = "matchit"
1300
+ version = "0.9.0"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "9ea5f97102eb9e54ab99fb70bb175589073f554bdadfb74d9bd656482ea73e2a"
1303
+
1304
+ [[package]]
1305
+ name = "memchr"
1306
+ version = "2.7.6"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1309
+
1310
+ [[package]]
1311
+ name = "memoffset"
1312
+ version = "0.9.1"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1315
+ dependencies = [
1316
+ "autocfg",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "natord"
1321
+ version = "1.0.9"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "308d96db8debc727c3fd9744aac51751243420e46edf401010908da7f8d5e57c"
1324
+
1325
+ [[package]]
1326
+ name = "newtype-uuid"
1327
+ version = "1.3.2"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "5c012d14ef788ab066a347d19e3dda699916c92293b05b85ba2c76b8c82d2830"
1330
+ dependencies = [
1331
+ "uuid",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "num-traits"
1336
+ version = "0.2.19"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1339
+ dependencies = [
1340
+ "autocfg",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "once_cell"
1345
+ version = "1.21.3"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1348
+
1349
+ [[package]]
1350
+ name = "once_cell_polyfill"
1351
+ version = "1.70.2"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1354
+
1355
+ [[package]]
1356
+ name = "oorandom"
1357
+ version = "11.1.5"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1360
+
1361
+ [[package]]
1362
+ name = "ordermap"
1363
+ version = "1.0.0"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "ed637741ced8fb240855d22a2b4f208dab7a06bcce73380162e5253000c16758"
1366
+ dependencies = [
1367
+ "indexmap",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "page_size"
1372
+ version = "0.6.0"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
1375
+ dependencies = [
1376
+ "libc",
1377
+ "winapi",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "parking_lot"
1382
+ version = "0.12.5"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1385
+ dependencies = [
1386
+ "lock_api",
1387
+ "parking_lot_core",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "parking_lot_core"
1392
+ version = "0.9.12"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1395
+ dependencies = [
1396
+ "cfg-if",
1397
+ "libc",
1398
+ "redox_syscall 0.5.18",
1399
+ "smallvec",
1400
+ "windows-link",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "paste"
1405
+ version = "1.0.15"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1408
+
1409
+ [[package]]
1410
+ name = "path-absolutize"
1411
+ version = "3.1.1"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "e4af381fe79fa195b4909485d99f73a80792331df0625188e707854f0b3383f5"
1414
+ dependencies = [
1415
+ "path-dedot",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "path-dedot"
1420
+ version = "3.1.1"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "07ba0ad7e047712414213ff67533e6dd477af0a4e1d14fb52343e53d30ea9397"
1423
+ dependencies = [
1424
+ "once_cell",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "path-slash"
1429
+ version = "0.2.1"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
1432
+
1433
+ [[package]]
1434
+ name = "pathdiff"
1435
+ version = "0.2.3"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
1438
+
1439
+ [[package]]
1440
+ name = "peg"
1441
+ version = "0.8.5"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "9928cfca101b36ec5163e70049ee5368a8a1c3c6efc9ca9c5f9cc2f816152477"
1444
+ dependencies = [
1445
+ "peg-macros",
1446
+ "peg-runtime",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "peg-macros"
1451
+ version = "0.8.5"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "6298ab04c202fa5b5d52ba03269fb7b74550b150323038878fe6c372d8280f71"
1454
+ dependencies = [
1455
+ "peg-runtime",
1456
+ "proc-macro2",
1457
+ "quote",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "peg-runtime"
1462
+ version = "0.8.5"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "132dca9b868d927b35b5dd728167b2dee150eb1ad686008fc71ccb298b776fca"
1465
+
1466
+ [[package]]
1467
+ name = "pep440_rs"
1468
+ version = "0.7.3"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "31095ca1f396e3de32745f42b20deef7bc09077f918b085307e8eab6ddd8fb9c"
1471
+ dependencies = [
1472
+ "once_cell",
1473
+ "serde",
1474
+ "unicode-width",
1475
+ "unscanny",
1476
+ "version-ranges",
1477
+ ]
1478
+
1479
+ [[package]]
1480
+ name = "pep508_rs"
1481
+ version = "0.9.2"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "faee7227064121fcadcd2ff788ea26f0d8f2bd23a0574da11eca23bc935bcc05"
1484
+ dependencies = [
1485
+ "boxcar",
1486
+ "indexmap",
1487
+ "itertools 0.13.0",
1488
+ "once_cell",
1489
+ "pep440_rs",
1490
+ "regex",
1491
+ "rustc-hash",
1492
+ "serde",
1493
+ "smallvec",
1494
+ "thiserror 1.0.69",
1495
+ "unicode-width",
1496
+ "url",
1497
+ "urlencoding",
1498
+ "version-ranges",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "percent-encoding"
1503
+ version = "2.3.2"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1506
+
1507
+ [[package]]
1508
+ name = "petgraph"
1509
+ version = "0.8.3"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
1512
+ dependencies = [
1513
+ "fixedbitset",
1514
+ "hashbrown 0.15.5",
1515
+ "indexmap",
1516
+ "serde",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "phf"
1521
+ version = "0.11.3"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1524
+ dependencies = [
1525
+ "phf_shared",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "phf_codegen"
1530
+ version = "0.11.3"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1533
+ dependencies = [
1534
+ "phf_generator",
1535
+ "phf_shared",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "phf_generator"
1540
+ version = "0.11.3"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1543
+ dependencies = [
1544
+ "phf_shared",
1545
+ "rand 0.8.5",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "phf_shared"
1550
+ version = "0.11.3"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1553
+ dependencies = [
1554
+ "siphasher",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "pin-project-lite"
1559
+ version = "0.2.16"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1562
+
1563
+ [[package]]
1564
+ name = "pin-utils"
1565
+ version = "0.1.0"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1568
+
1569
+ [[package]]
1570
+ name = "plotters"
1571
+ version = "0.3.7"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1574
+ dependencies = [
1575
+ "num-traits",
1576
+ "plotters-backend",
1577
+ "plotters-svg",
1578
+ "wasm-bindgen",
1579
+ "web-sys",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "plotters-backend"
1584
+ version = "0.3.7"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1587
+
1588
+ [[package]]
1589
+ name = "plotters-svg"
1590
+ version = "0.3.7"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1593
+ dependencies = [
1594
+ "plotters-backend",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "portable-atomic"
1599
+ version = "1.12.0"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd"
1602
+
1603
+ [[package]]
1604
+ name = "portable-atomic-util"
1605
+ version = "0.2.4"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1608
+ dependencies = [
1609
+ "portable-atomic",
1610
+ ]
1611
+
1612
+ [[package]]
1613
+ name = "potential_utf"
1614
+ version = "0.1.4"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1617
+ dependencies = [
1618
+ "zerovec",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "ppv-lite86"
1623
+ version = "0.2.21"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1626
+ dependencies = [
1627
+ "zerocopy",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "pretty_assertions"
1632
+ version = "1.4.1"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
1635
+ dependencies = [
1636
+ "diff",
1637
+ "yansi",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "proc-macro-utils"
1642
+ version = "0.10.0"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
1645
+ dependencies = [
1646
+ "proc-macro2",
1647
+ "quote",
1648
+ "smallvec",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "proc-macro2"
1653
+ version = "1.0.103"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1656
+ dependencies = [
1657
+ "unicode-ident",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "pyproject-toml"
1662
+ version = "0.13.7"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "f6d755483ad14b49e76713b52285235461a5b4f73f17612353e11a5de36a5fd2"
1665
+ dependencies = [
1666
+ "indexmap",
1667
+ "pep440_rs",
1668
+ "pep508_rs",
1669
+ "serde",
1670
+ "thiserror 2.0.17",
1671
+ "toml",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "quick-junit"
1676
+ version = "0.5.2"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "6ee9342d671fae8d66b3ae9fd7a9714dfd089c04d2a8b1ec0436ef77aee15e5f"
1679
+ dependencies = [
1680
+ "chrono",
1681
+ "indexmap",
1682
+ "newtype-uuid",
1683
+ "quick-xml",
1684
+ "strip-ansi-escapes",
1685
+ "thiserror 2.0.17",
1686
+ "uuid",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "quick-xml"
1691
+ version = "0.38.4"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
1694
+ dependencies = [
1695
+ "memchr",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "quote"
1700
+ version = "1.0.42"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
1703
+ dependencies = [
1704
+ "proc-macro2",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "quote-use"
1709
+ version = "0.8.4"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
1712
+ dependencies = [
1713
+ "quote",
1714
+ "quote-use-macros",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "quote-use-macros"
1719
+ version = "0.8.4"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
1722
+ dependencies = [
1723
+ "proc-macro-utils",
1724
+ "proc-macro2",
1725
+ "quote",
1726
+ "syn",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "r-efi"
1731
+ version = "5.3.0"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1734
+
1735
+ [[package]]
1736
+ name = "rand"
1737
+ version = "0.8.5"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1740
+ dependencies = [
1741
+ "libc",
1742
+ "rand_chacha 0.3.1",
1743
+ "rand_core 0.6.4",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "rand"
1748
+ version = "0.9.2"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1751
+ dependencies = [
1752
+ "rand_chacha 0.9.0",
1753
+ "rand_core 0.9.3",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "rand_chacha"
1758
+ version = "0.3.1"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1761
+ dependencies = [
1762
+ "ppv-lite86",
1763
+ "rand_core 0.6.4",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "rand_chacha"
1768
+ version = "0.9.0"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1771
+ dependencies = [
1772
+ "ppv-lite86",
1773
+ "rand_core 0.9.3",
1774
+ ]
1775
+
1776
+ [[package]]
1777
+ name = "rand_core"
1778
+ version = "0.6.4"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1781
+ dependencies = [
1782
+ "getrandom 0.2.16",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "rand_core"
1787
+ version = "0.9.3"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1790
+ dependencies = [
1791
+ "getrandom 0.3.4",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "rayon"
1796
+ version = "1.11.0"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1799
+ dependencies = [
1800
+ "either",
1801
+ "rayon-core",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "rayon-core"
1806
+ version = "1.13.0"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1809
+ dependencies = [
1810
+ "crossbeam-deque",
1811
+ "crossbeam-utils",
1812
+ ]
1813
+
1814
+ [[package]]
1815
+ name = "redox_syscall"
1816
+ version = "0.5.18"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1819
+ dependencies = [
1820
+ "bitflags",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "redox_syscall"
1825
+ version = "0.6.0"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "ec96166dafa0886eb81fe1c0a388bece180fbef2135f97c1e2cf8302e74b43b5"
1828
+ dependencies = [
1829
+ "bitflags",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "regex"
1834
+ version = "1.12.2"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1837
+ dependencies = [
1838
+ "aho-corasick",
1839
+ "memchr",
1840
+ "regex-automata",
1841
+ "regex-syntax",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "regex-automata"
1846
+ version = "0.4.13"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1849
+ dependencies = [
1850
+ "aho-corasick",
1851
+ "memchr",
1852
+ "regex-syntax",
1853
+ ]
1854
+
1855
+ [[package]]
1856
+ name = "regex-syntax"
1857
+ version = "0.8.8"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1860
+
1861
+ [[package]]
1862
+ name = "ruff_annotate_snippets"
1863
+ version = "0.1.0"
1864
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
1865
+ dependencies = [
1866
+ "anstyle",
1867
+ "memchr",
1868
+ "unicode-width",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "ruff_cache"
1873
+ version = "0.0.0"
1874
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
1875
+ dependencies = [
1876
+ "filetime",
1877
+ "glob",
1878
+ "globset",
1879
+ "itertools 0.14.0",
1880
+ "regex",
1881
+ "seahash",
1882
+ ]
1883
+
1884
+ [[package]]
1885
+ name = "ruff_db"
1886
+ version = "0.0.0"
1887
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
1888
+ dependencies = [
1889
+ "anstyle",
1890
+ "arc-swap",
1891
+ "camino",
1892
+ "dashmap",
1893
+ "dunce",
1894
+ "filetime",
1895
+ "get-size2",
1896
+ "glob",
1897
+ "matchit",
1898
+ "path-slash",
1899
+ "pathdiff",
1900
+ "quick-junit",
1901
+ "ruff_annotate_snippets",
1902
+ "ruff_diagnostics",
1903
+ "ruff_memory_usage",
1904
+ "ruff_notebook",
1905
+ "ruff_python_ast",
1906
+ "ruff_python_parser",
1907
+ "ruff_python_trivia",
1908
+ "ruff_source_file",
1909
+ "ruff_text_size",
1910
+ "rustc-hash",
1911
+ "salsa",
1912
+ "serde",
1913
+ "serde_json",
1914
+ "similar",
1915
+ "supports-hyperlinks",
1916
+ "thiserror 2.0.17",
1917
+ "tracing",
1918
+ "ty_static",
1919
+ "web-time",
1920
+ "zip",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "ruff_diagnostics"
1925
+ version = "0.0.0"
1926
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
1927
+ dependencies = [
1928
+ "get-size2",
1929
+ "is-macro",
1930
+ "ruff_text_size",
1931
+ "serde",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "ruff_index"
1936
+ version = "0.0.0"
1937
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
1938
+ dependencies = [
1939
+ "get-size2",
1940
+ "ruff_macros",
1941
+ ]
1942
+
1943
+ [[package]]
1944
+ name = "ruff_linter"
1945
+ version = "0.14.10"
1946
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
1947
+ dependencies = [
1948
+ "aho-corasick",
1949
+ "anyhow",
1950
+ "bitflags",
1951
+ "colored",
1952
+ "compact_str",
1953
+ "fern",
1954
+ "glob",
1955
+ "globset",
1956
+ "hashbrown 0.16.1",
1957
+ "imperative",
1958
+ "is-macro",
1959
+ "is-wsl",
1960
+ "itertools 0.14.0",
1961
+ "jiff",
1962
+ "libcst",
1963
+ "log",
1964
+ "memchr",
1965
+ "natord",
1966
+ "path-absolutize",
1967
+ "pep440_rs",
1968
+ "pyproject-toml",
1969
+ "regex",
1970
+ "ruff_cache",
1971
+ "ruff_db",
1972
+ "ruff_diagnostics",
1973
+ "ruff_macros",
1974
+ "ruff_notebook",
1975
+ "ruff_python_ast",
1976
+ "ruff_python_codegen",
1977
+ "ruff_python_importer",
1978
+ "ruff_python_index",
1979
+ "ruff_python_literal",
1980
+ "ruff_python_parser",
1981
+ "ruff_python_semantic",
1982
+ "ruff_python_stdlib",
1983
+ "ruff_python_trivia",
1984
+ "ruff_source_file",
1985
+ "ruff_text_size",
1986
+ "rustc-hash",
1987
+ "serde",
1988
+ "serde_json",
1989
+ "similar",
1990
+ "smallvec",
1991
+ "strum",
1992
+ "strum_macros",
1993
+ "thiserror 2.0.17",
1994
+ "toml",
1995
+ "typed-arena",
1996
+ "unicode-normalization",
1997
+ "unicode-width",
1998
+ "unicode_names2",
1999
+ "url",
2000
+ ]
2001
+
2002
+ [[package]]
2003
+ name = "ruff_macros"
2004
+ version = "0.0.0"
2005
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2006
+ dependencies = [
2007
+ "heck",
2008
+ "itertools 0.14.0",
2009
+ "proc-macro2",
2010
+ "quote",
2011
+ "ruff_python_trivia",
2012
+ "syn",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "ruff_memory_usage"
2017
+ version = "0.0.0"
2018
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2019
+ dependencies = [
2020
+ "get-size2",
2021
+ "ordermap",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "ruff_notebook"
2026
+ version = "0.0.0"
2027
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2028
+ dependencies = [
2029
+ "anyhow",
2030
+ "itertools 0.14.0",
2031
+ "rand 0.9.2",
2032
+ "ruff_diagnostics",
2033
+ "ruff_source_file",
2034
+ "ruff_text_size",
2035
+ "serde",
2036
+ "serde_json",
2037
+ "serde_with",
2038
+ "thiserror 2.0.17",
2039
+ "uuid",
2040
+ ]
2041
+
2042
+ [[package]]
2043
+ name = "ruff_python_ast"
2044
+ version = "0.0.0"
2045
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2046
+ dependencies = [
2047
+ "aho-corasick",
2048
+ "bitflags",
2049
+ "compact_str",
2050
+ "get-size2",
2051
+ "is-macro",
2052
+ "itertools 0.14.0",
2053
+ "memchr",
2054
+ "ruff_cache",
2055
+ "ruff_macros",
2056
+ "ruff_python_trivia",
2057
+ "ruff_source_file",
2058
+ "ruff_text_size",
2059
+ "rustc-hash",
2060
+ "serde",
2061
+ "thiserror 2.0.17",
2062
+ ]
2063
+
2064
+ [[package]]
2065
+ name = "ruff_python_codegen"
2066
+ version = "0.0.0"
2067
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2068
+ dependencies = [
2069
+ "ruff_python_ast",
2070
+ "ruff_python_literal",
2071
+ "ruff_python_parser",
2072
+ "ruff_source_file",
2073
+ "ruff_text_size",
2074
+ ]
2075
+
2076
+ [[package]]
2077
+ name = "ruff_python_importer"
2078
+ version = "0.0.0"
2079
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2080
+ dependencies = [
2081
+ "anyhow",
2082
+ "ruff_diagnostics",
2083
+ "ruff_python_ast",
2084
+ "ruff_python_codegen",
2085
+ "ruff_python_trivia",
2086
+ "ruff_source_file",
2087
+ "ruff_text_size",
2088
+ ]
2089
+
2090
+ [[package]]
2091
+ name = "ruff_python_index"
2092
+ version = "0.0.0"
2093
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2094
+ dependencies = [
2095
+ "ruff_python_ast",
2096
+ "ruff_python_trivia",
2097
+ "ruff_source_file",
2098
+ "ruff_text_size",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "ruff_python_literal"
2103
+ version = "0.0.0"
2104
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2105
+ dependencies = [
2106
+ "bitflags",
2107
+ "itertools 0.14.0",
2108
+ "ruff_python_ast",
2109
+ "unic-ucd-category",
2110
+ ]
2111
+
2112
+ [[package]]
2113
+ name = "ruff_python_parser"
2114
+ version = "0.0.0"
2115
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2116
+ dependencies = [
2117
+ "bitflags",
2118
+ "bstr",
2119
+ "compact_str",
2120
+ "get-size2",
2121
+ "memchr",
2122
+ "ruff_python_ast",
2123
+ "ruff_python_trivia",
2124
+ "ruff_text_size",
2125
+ "rustc-hash",
2126
+ "static_assertions",
2127
+ "unicode-ident",
2128
+ "unicode-normalization",
2129
+ "unicode_names2",
2130
+ ]
2131
+
2132
+ [[package]]
2133
+ name = "ruff_python_semantic"
2134
+ version = "0.0.0"
2135
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2136
+ dependencies = [
2137
+ "bitflags",
2138
+ "is-macro",
2139
+ "ruff_cache",
2140
+ "ruff_index",
2141
+ "ruff_macros",
2142
+ "ruff_python_ast",
2143
+ "ruff_python_parser",
2144
+ "ruff_python_stdlib",
2145
+ "ruff_text_size",
2146
+ "rustc-hash",
2147
+ "smallvec",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "ruff_python_stdlib"
2152
+ version = "0.0.0"
2153
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2154
+ dependencies = [
2155
+ "bitflags",
2156
+ "unicode-ident",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "ruff_python_trivia"
2161
+ version = "0.0.0"
2162
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2163
+ dependencies = [
2164
+ "itertools 0.14.0",
2165
+ "ruff_source_file",
2166
+ "ruff_text_size",
2167
+ "unicode-ident",
2168
+ ]
2169
+
2170
+ [[package]]
2171
+ name = "ruff_source_file"
2172
+ version = "0.0.0"
2173
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2174
+ dependencies = [
2175
+ "get-size2",
2176
+ "memchr",
2177
+ "ruff_text_size",
2178
+ "serde",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "ruff_text_size"
2183
+ version = "0.0.0"
2184
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2185
+ dependencies = [
2186
+ "get-size2",
2187
+ "serde",
2188
+ ]
2189
+
2190
+ [[package]]
2191
+ name = "rust-stemmers"
2192
+ version = "1.2.0"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
2195
+ dependencies = [
2196
+ "serde",
2197
+ "serde_derive",
2198
+ ]
2199
+
2200
+ [[package]]
2201
+ name = "rustc-hash"
2202
+ version = "2.1.1"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2205
+
2206
+ [[package]]
2207
+ name = "rustix"
2208
+ version = "1.1.2"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2211
+ dependencies = [
2212
+ "bitflags",
2213
+ "errno",
2214
+ "libc",
2215
+ "linux-raw-sys",
2216
+ "windows-sys 0.61.2",
2217
+ ]
2218
+
2219
+ [[package]]
2220
+ name = "rustversion"
2221
+ version = "1.0.22"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2224
+
2225
+ [[package]]
2226
+ name = "ryu"
2227
+ version = "1.0.21"
2228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2229
+ checksum = "62049b2877bf12821e8f9ad256ee38fdc31db7387ec2d3b3f403024de2034aea"
2230
+
2231
+ [[package]]
2232
+ name = "salsa"
2233
+ version = "0.24.0"
2234
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=55e5e7d32fa3fc189276f35bb04c9438f9aedbd1#55e5e7d32fa3fc189276f35bb04c9438f9aedbd1"
2235
+ dependencies = [
2236
+ "boxcar",
2237
+ "compact_str",
2238
+ "crossbeam-queue",
2239
+ "crossbeam-utils",
2240
+ "hashbrown 0.15.5",
2241
+ "hashlink",
2242
+ "indexmap",
2243
+ "intrusive-collections",
2244
+ "inventory",
2245
+ "parking_lot",
2246
+ "portable-atomic",
2247
+ "rustc-hash",
2248
+ "salsa-macro-rules",
2249
+ "salsa-macros",
2250
+ "smallvec",
2251
+ "thin-vec",
2252
+ "tracing",
2253
+ ]
2254
+
2255
+ [[package]]
2256
+ name = "salsa-macro-rules"
2257
+ version = "0.24.0"
2258
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=55e5e7d32fa3fc189276f35bb04c9438f9aedbd1#55e5e7d32fa3fc189276f35bb04c9438f9aedbd1"
2259
+
2260
+ [[package]]
2261
+ name = "salsa-macros"
2262
+ version = "0.24.0"
2263
+ source = "git+https://github.com/salsa-rs/salsa.git?rev=55e5e7d32fa3fc189276f35bb04c9438f9aedbd1#55e5e7d32fa3fc189276f35bb04c9438f9aedbd1"
2264
+ dependencies = [
2265
+ "proc-macro2",
2266
+ "quote",
2267
+ "syn",
2268
+ "synstructure",
2269
+ ]
2270
+
2271
+ [[package]]
2272
+ name = "same-file"
2273
+ version = "1.0.6"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2276
+ dependencies = [
2277
+ "winapi-util",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "scc"
2282
+ version = "2.4.0"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
2285
+ dependencies = [
2286
+ "sdd",
2287
+ ]
2288
+
2289
+ [[package]]
2290
+ name = "scopeguard"
2291
+ version = "1.2.0"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2294
+
2295
+ [[package]]
2296
+ name = "sdd"
2297
+ version = "3.0.10"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
2300
+
2301
+ [[package]]
2302
+ name = "seahash"
2303
+ version = "4.1.0"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2306
+
2307
+ [[package]]
2308
+ name = "serde"
2309
+ version = "1.0.228"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2312
+ dependencies = [
2313
+ "serde_core",
2314
+ "serde_derive",
2315
+ ]
2316
+
2317
+ [[package]]
2318
+ name = "serde_core"
2319
+ version = "1.0.228"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2322
+ dependencies = [
2323
+ "serde_derive",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "serde_derive"
2328
+ version = "1.0.228"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2331
+ dependencies = [
2332
+ "proc-macro2",
2333
+ "quote",
2334
+ "syn",
2335
+ ]
2336
+
2337
+ [[package]]
2338
+ name = "serde_json"
2339
+ version = "1.0.145"
2340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2341
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
2342
+ dependencies = [
2343
+ "itoa",
2344
+ "memchr",
2345
+ "ryu",
2346
+ "serde",
2347
+ "serde_core",
2348
+ ]
2349
+
2350
+ [[package]]
2351
+ name = "serde_spanned"
2352
+ version = "1.0.4"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
2355
+ dependencies = [
2356
+ "serde_core",
2357
+ ]
2358
+
2359
+ [[package]]
2360
+ name = "serde_with"
2361
+ version = "3.16.1"
2362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2363
+ checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
2364
+ dependencies = [
2365
+ "serde_core",
2366
+ "serde_with_macros",
2367
+ ]
2368
+
2369
+ [[package]]
2370
+ name = "serde_with_macros"
2371
+ version = "3.16.1"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
2374
+ dependencies = [
2375
+ "darling",
2376
+ "proc-macro2",
2377
+ "quote",
2378
+ "syn",
2379
+ ]
2380
+
2381
+ [[package]]
2382
+ name = "serial_test"
2383
+ version = "3.2.0"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9"
2386
+ dependencies = [
2387
+ "futures",
2388
+ "log",
2389
+ "once_cell",
2390
+ "parking_lot",
2391
+ "scc",
2392
+ "serial_test_derive",
2393
+ ]
2394
+
2395
+ [[package]]
2396
+ name = "serial_test_derive"
2397
+ version = "3.2.0"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef"
2400
+ dependencies = [
2401
+ "proc-macro2",
2402
+ "quote",
2403
+ "syn",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "sha2"
2408
+ version = "0.10.9"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2411
+ dependencies = [
2412
+ "cfg-if",
2413
+ "cpufeatures",
2414
+ "digest",
2415
+ ]
2416
+
2417
+ [[package]]
2418
+ name = "shlex"
2419
+ version = "1.3.0"
2420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2421
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2422
+
2423
+ [[package]]
2424
+ name = "similar"
2425
+ version = "2.7.0"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
2428
+
2429
+ [[package]]
2430
+ name = "siphasher"
2431
+ version = "1.0.1"
2432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2433
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2434
+
2435
+ [[package]]
2436
+ name = "slab"
2437
+ version = "0.4.11"
2438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2440
+
2441
+ [[package]]
2442
+ name = "smallvec"
2443
+ version = "1.15.1"
2444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2445
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2446
+
2447
+ [[package]]
2448
+ name = "stable_deref_trait"
2449
+ version = "1.2.1"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2452
+
2453
+ [[package]]
2454
+ name = "static_assertions"
2455
+ version = "1.1.0"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2458
+
2459
+ [[package]]
2460
+ name = "strip-ansi-escapes"
2461
+ version = "0.2.1"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "2a8f8038e7e7969abb3f1b7c2a811225e9296da208539e0f79c5251d6cac0025"
2464
+ dependencies = [
2465
+ "vte",
2466
+ ]
2467
+
2468
+ [[package]]
2469
+ name = "strsim"
2470
+ version = "0.11.1"
2471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2472
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2473
+
2474
+ [[package]]
2475
+ name = "strum"
2476
+ version = "0.27.2"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
2479
+ dependencies = [
2480
+ "strum_macros",
2481
+ ]
2482
+
2483
+ [[package]]
2484
+ name = "strum_macros"
2485
+ version = "0.27.2"
2486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2487
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
2488
+ dependencies = [
2489
+ "heck",
2490
+ "proc-macro2",
2491
+ "quote",
2492
+ "syn",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "supports-hyperlinks"
2497
+ version = "3.2.0"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "e396b6523b11ccb83120b115a0b7366de372751aa6edf19844dfb13a6af97e91"
2500
+
2501
+ [[package]]
2502
+ name = "syn"
2503
+ version = "2.0.111"
2504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
2506
+ dependencies = [
2507
+ "proc-macro2",
2508
+ "quote",
2509
+ "unicode-ident",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "synstructure"
2514
+ version = "0.13.2"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2517
+ dependencies = [
2518
+ "proc-macro2",
2519
+ "quote",
2520
+ "syn",
2521
+ ]
2522
+
2523
+ [[package]]
2524
+ name = "tempfile"
2525
+ version = "3.23.0"
2526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2527
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
2528
+ dependencies = [
2529
+ "fastrand",
2530
+ "getrandom 0.3.4",
2531
+ "once_cell",
2532
+ "rustix",
2533
+ "windows-sys 0.61.2",
2534
+ ]
2535
+
2536
+ [[package]]
2537
+ name = "thin-vec"
2538
+ version = "0.2.14"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
2541
+
2542
+ [[package]]
2543
+ name = "thiserror"
2544
+ version = "1.0.69"
2545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2546
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2547
+ dependencies = [
2548
+ "thiserror-impl 1.0.69",
2549
+ ]
2550
+
2551
+ [[package]]
2552
+ name = "thiserror"
2553
+ version = "2.0.17"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2556
+ dependencies = [
2557
+ "thiserror-impl 2.0.17",
2558
+ ]
2559
+
2560
+ [[package]]
2561
+ name = "thiserror-impl"
2562
+ version = "1.0.69"
2563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2564
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2565
+ dependencies = [
2566
+ "proc-macro2",
2567
+ "quote",
2568
+ "syn",
2569
+ ]
2570
+
2571
+ [[package]]
2572
+ name = "thiserror-impl"
2573
+ version = "2.0.17"
2574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2575
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2576
+ dependencies = [
2577
+ "proc-macro2",
2578
+ "quote",
2579
+ "syn",
2580
+ ]
2581
+
2582
+ [[package]]
2583
+ name = "tinystr"
2584
+ version = "0.8.2"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2587
+ dependencies = [
2588
+ "displaydoc",
2589
+ "zerovec",
2590
+ ]
2591
+
2592
+ [[package]]
2593
+ name = "tinytemplate"
2594
+ version = "1.2.1"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2597
+ dependencies = [
2598
+ "serde",
2599
+ "serde_json",
2600
+ ]
2601
+
2602
+ [[package]]
2603
+ name = "tinyvec"
2604
+ version = "1.10.0"
2605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2606
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
2607
+ dependencies = [
2608
+ "tinyvec_macros",
2609
+ ]
2610
+
2611
+ [[package]]
2612
+ name = "tinyvec_macros"
2613
+ version = "0.1.1"
2614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2615
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2616
+
2617
+ [[package]]
2618
+ name = "toml"
2619
+ version = "0.9.10+spec-1.1.0"
2620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2621
+ checksum = "0825052159284a1a8b4d6c0c86cbc801f2da5afd2b225fa548c72f2e74002f48"
2622
+ dependencies = [
2623
+ "indexmap",
2624
+ "serde_core",
2625
+ "serde_spanned",
2626
+ "toml_datetime",
2627
+ "toml_parser",
2628
+ "toml_writer",
2629
+ "winnow",
2630
+ ]
2631
+
2632
+ [[package]]
2633
+ name = "toml_datetime"
2634
+ version = "0.7.5+spec-1.1.0"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2637
+ dependencies = [
2638
+ "serde_core",
2639
+ ]
2640
+
2641
+ [[package]]
2642
+ name = "toml_parser"
2643
+ version = "1.0.6+spec-1.1.0"
2644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
2646
+ dependencies = [
2647
+ "winnow",
2648
+ ]
2649
+
2650
+ [[package]]
2651
+ name = "toml_writer"
2652
+ version = "1.0.6+spec-1.1.0"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
2655
+
2656
+ [[package]]
2657
+ name = "tracing"
2658
+ version = "0.1.44"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2661
+ dependencies = [
2662
+ "pin-project-lite",
2663
+ "tracing-attributes",
2664
+ "tracing-core",
2665
+ ]
2666
+
2667
+ [[package]]
2668
+ name = "tracing-attributes"
2669
+ version = "0.1.31"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2672
+ dependencies = [
2673
+ "proc-macro2",
2674
+ "quote",
2675
+ "syn",
2676
+ ]
2677
+
2678
+ [[package]]
2679
+ name = "tracing-core"
2680
+ version = "0.1.36"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2683
+ dependencies = [
2684
+ "once_cell",
2685
+ ]
2686
+
2687
+ [[package]]
2688
+ name = "ty_static"
2689
+ version = "0.0.1"
2690
+ source = "git+https://github.com/astral-sh/ruff/?tag=0.14.10#45bbb4cbffe73cf925d4579c2e3eb413e0539390"
2691
+ dependencies = [
2692
+ "ruff_macros",
2693
+ ]
2694
+
2695
+ [[package]]
2696
+ name = "typed-arena"
2697
+ version = "2.0.2"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
2700
+
2701
+ [[package]]
2702
+ name = "typenum"
2703
+ version = "1.19.0"
2704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2705
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2706
+
2707
+ [[package]]
2708
+ name = "unic-char-property"
2709
+ version = "0.9.0"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
2712
+ dependencies = [
2713
+ "unic-char-range",
2714
+ ]
2715
+
2716
+ [[package]]
2717
+ name = "unic-char-range"
2718
+ version = "0.9.0"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
2721
+
2722
+ [[package]]
2723
+ name = "unic-common"
2724
+ version = "0.9.0"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
2727
+
2728
+ [[package]]
2729
+ name = "unic-ucd-category"
2730
+ version = "0.9.0"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0"
2733
+ dependencies = [
2734
+ "matches",
2735
+ "unic-char-property",
2736
+ "unic-char-range",
2737
+ "unic-ucd-version",
2738
+ ]
2739
+
2740
+ [[package]]
2741
+ name = "unic-ucd-version"
2742
+ version = "0.9.0"
2743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2744
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
2745
+ dependencies = [
2746
+ "unic-common",
2747
+ ]
2748
+
2749
+ [[package]]
2750
+ name = "unicode-ident"
2751
+ version = "1.0.22"
2752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2753
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
2754
+
2755
+ [[package]]
2756
+ name = "unicode-normalization"
2757
+ version = "0.1.25"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2760
+ dependencies = [
2761
+ "tinyvec",
2762
+ ]
2763
+
2764
+ [[package]]
2765
+ name = "unicode-width"
2766
+ version = "0.2.2"
2767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2768
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2769
+
2770
+ [[package]]
2771
+ name = "unicode_names2"
2772
+ version = "1.3.0"
2773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2774
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
2775
+ dependencies = [
2776
+ "phf",
2777
+ "unicode_names2_generator",
2778
+ ]
2779
+
2780
+ [[package]]
2781
+ name = "unicode_names2_generator"
2782
+ version = "1.3.0"
2783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2784
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
2785
+ dependencies = [
2786
+ "getopts",
2787
+ "log",
2788
+ "phf_codegen",
2789
+ "rand 0.8.5",
2790
+ ]
2791
+
2792
+ [[package]]
2793
+ name = "unscanny"
2794
+ version = "0.1.0"
2795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2796
+ checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47"
2797
+
2798
+ [[package]]
2799
+ name = "url"
2800
+ version = "2.5.7"
2801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2802
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
2803
+ dependencies = [
2804
+ "form_urlencoded",
2805
+ "idna",
2806
+ "percent-encoding",
2807
+ "serde",
2808
+ ]
2809
+
2810
+ [[package]]
2811
+ name = "urlencoding"
2812
+ version = "2.1.3"
2813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2814
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2815
+
2816
+ [[package]]
2817
+ name = "utf8_iter"
2818
+ version = "1.0.4"
2819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2820
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2821
+
2822
+ [[package]]
2823
+ name = "utf8parse"
2824
+ version = "0.2.2"
2825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2826
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2827
+
2828
+ [[package]]
2829
+ name = "uuid"
2830
+ version = "1.19.0"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
2833
+ dependencies = [
2834
+ "getrandom 0.3.4",
2835
+ "js-sys",
2836
+ "rand 0.9.2",
2837
+ "uuid-macro-internal",
2838
+ "wasm-bindgen",
2839
+ ]
2840
+
2841
+ [[package]]
2842
+ name = "uuid-macro-internal"
2843
+ version = "1.19.0"
2844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2845
+ checksum = "39d11901c36b3650df7acb0f9ebe624f35b5ac4e1922ecd3c57f444648429594"
2846
+ dependencies = [
2847
+ "proc-macro2",
2848
+ "quote",
2849
+ "syn",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "version-ranges"
2854
+ version = "0.1.2"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "3595ffe225639f1e0fd8d7269dcc05d2fbfea93cfac2fea367daf1adb60aae91"
2857
+ dependencies = [
2858
+ "smallvec",
2859
+ ]
2860
+
2861
+ [[package]]
2862
+ name = "version_check"
2863
+ version = "0.9.5"
2864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2865
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2866
+
2867
+ [[package]]
2868
+ name = "vte"
2869
+ version = "0.14.1"
2870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2871
+ checksum = "231fdcd7ef3037e8330d8e17e61011a2c244126acc0a982f4040ac3f9f0bc077"
2872
+ dependencies = [
2873
+ "memchr",
2874
+ ]
2875
+
2876
+ [[package]]
2877
+ name = "walkdir"
2878
+ version = "2.5.0"
2879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2880
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2881
+ dependencies = [
2882
+ "same-file",
2883
+ "winapi-util",
2884
+ ]
2885
+
2886
+ [[package]]
2887
+ name = "wasi"
2888
+ version = "0.11.1+wasi-snapshot-preview1"
2889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2890
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2891
+
2892
+ [[package]]
2893
+ name = "wasip2"
2894
+ version = "1.0.1+wasi-0.2.4"
2895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2896
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
2897
+ dependencies = [
2898
+ "wit-bindgen",
2899
+ ]
2900
+
2901
+ [[package]]
2902
+ name = "wasm-bindgen"
2903
+ version = "0.2.106"
2904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2905
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
2906
+ dependencies = [
2907
+ "cfg-if",
2908
+ "once_cell",
2909
+ "rustversion",
2910
+ "wasm-bindgen-macro",
2911
+ "wasm-bindgen-shared",
2912
+ ]
2913
+
2914
+ [[package]]
2915
+ name = "wasm-bindgen-macro"
2916
+ version = "0.2.106"
2917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2918
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
2919
+ dependencies = [
2920
+ "quote",
2921
+ "wasm-bindgen-macro-support",
2922
+ ]
2923
+
2924
+ [[package]]
2925
+ name = "wasm-bindgen-macro-support"
2926
+ version = "0.2.106"
2927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2928
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
2929
+ dependencies = [
2930
+ "bumpalo",
2931
+ "proc-macro2",
2932
+ "quote",
2933
+ "syn",
2934
+ "wasm-bindgen-shared",
2935
+ ]
2936
+
2937
+ [[package]]
2938
+ name = "wasm-bindgen-shared"
2939
+ version = "0.2.106"
2940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2941
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
2942
+ dependencies = [
2943
+ "unicode-ident",
2944
+ ]
2945
+
2946
+ [[package]]
2947
+ name = "web-sys"
2948
+ version = "0.3.83"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
2951
+ dependencies = [
2952
+ "js-sys",
2953
+ "wasm-bindgen",
2954
+ ]
2955
+
2956
+ [[package]]
2957
+ name = "web-time"
2958
+ version = "1.1.0"
2959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2960
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2961
+ dependencies = [
2962
+ "js-sys",
2963
+ "wasm-bindgen",
2964
+ ]
2965
+
2966
+ [[package]]
2967
+ name = "winapi"
2968
+ version = "0.3.9"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2971
+ dependencies = [
2972
+ "winapi-i686-pc-windows-gnu",
2973
+ "winapi-x86_64-pc-windows-gnu",
2974
+ ]
2975
+
2976
+ [[package]]
2977
+ name = "winapi-i686-pc-windows-gnu"
2978
+ version = "0.4.0"
2979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2980
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2981
+
2982
+ [[package]]
2983
+ name = "winapi-util"
2984
+ version = "0.1.11"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2987
+ dependencies = [
2988
+ "windows-sys 0.61.2",
2989
+ ]
2990
+
2991
+ [[package]]
2992
+ name = "winapi-x86_64-pc-windows-gnu"
2993
+ version = "0.4.0"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2996
+
2997
+ [[package]]
2998
+ name = "windows-link"
2999
+ version = "0.2.1"
3000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3001
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3002
+
3003
+ [[package]]
3004
+ name = "windows-sys"
3005
+ version = "0.59.0"
3006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3007
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3008
+ dependencies = [
3009
+ "windows-targets 0.52.6",
3010
+ ]
3011
+
3012
+ [[package]]
3013
+ name = "windows-sys"
3014
+ version = "0.60.2"
3015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3016
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3017
+ dependencies = [
3018
+ "windows-targets 0.53.5",
3019
+ ]
3020
+
3021
+ [[package]]
3022
+ name = "windows-sys"
3023
+ version = "0.61.2"
3024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3025
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3026
+ dependencies = [
3027
+ "windows-link",
3028
+ ]
3029
+
3030
+ [[package]]
3031
+ name = "windows-targets"
3032
+ version = "0.52.6"
3033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3034
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3035
+ dependencies = [
3036
+ "windows_aarch64_gnullvm 0.52.6",
3037
+ "windows_aarch64_msvc 0.52.6",
3038
+ "windows_i686_gnu 0.52.6",
3039
+ "windows_i686_gnullvm 0.52.6",
3040
+ "windows_i686_msvc 0.52.6",
3041
+ "windows_x86_64_gnu 0.52.6",
3042
+ "windows_x86_64_gnullvm 0.52.6",
3043
+ "windows_x86_64_msvc 0.52.6",
3044
+ ]
3045
+
3046
+ [[package]]
3047
+ name = "windows-targets"
3048
+ version = "0.53.5"
3049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3050
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3051
+ dependencies = [
3052
+ "windows-link",
3053
+ "windows_aarch64_gnullvm 0.53.1",
3054
+ "windows_aarch64_msvc 0.53.1",
3055
+ "windows_i686_gnu 0.53.1",
3056
+ "windows_i686_gnullvm 0.53.1",
3057
+ "windows_i686_msvc 0.53.1",
3058
+ "windows_x86_64_gnu 0.53.1",
3059
+ "windows_x86_64_gnullvm 0.53.1",
3060
+ "windows_x86_64_msvc 0.53.1",
3061
+ ]
3062
+
3063
+ [[package]]
3064
+ name = "windows_aarch64_gnullvm"
3065
+ version = "0.52.6"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3068
+
3069
+ [[package]]
3070
+ name = "windows_aarch64_gnullvm"
3071
+ version = "0.53.1"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3074
+
3075
+ [[package]]
3076
+ name = "windows_aarch64_msvc"
3077
+ version = "0.52.6"
3078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3079
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3080
+
3081
+ [[package]]
3082
+ name = "windows_aarch64_msvc"
3083
+ version = "0.53.1"
3084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3085
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3086
+
3087
+ [[package]]
3088
+ name = "windows_i686_gnu"
3089
+ version = "0.52.6"
3090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3091
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3092
+
3093
+ [[package]]
3094
+ name = "windows_i686_gnu"
3095
+ version = "0.53.1"
3096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3097
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3098
+
3099
+ [[package]]
3100
+ name = "windows_i686_gnullvm"
3101
+ version = "0.52.6"
3102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3103
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3104
+
3105
+ [[package]]
3106
+ name = "windows_i686_gnullvm"
3107
+ version = "0.53.1"
3108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3109
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3110
+
3111
+ [[package]]
3112
+ name = "windows_i686_msvc"
3113
+ version = "0.52.6"
3114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3115
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3116
+
3117
+ [[package]]
3118
+ name = "windows_i686_msvc"
3119
+ version = "0.53.1"
3120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3121
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3122
+
3123
+ [[package]]
3124
+ name = "windows_x86_64_gnu"
3125
+ version = "0.52.6"
3126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3127
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3128
+
3129
+ [[package]]
3130
+ name = "windows_x86_64_gnu"
3131
+ version = "0.53.1"
3132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3133
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3134
+
3135
+ [[package]]
3136
+ name = "windows_x86_64_gnullvm"
3137
+ version = "0.52.6"
3138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3139
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3140
+
3141
+ [[package]]
3142
+ name = "windows_x86_64_gnullvm"
3143
+ version = "0.53.1"
3144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3145
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3146
+
3147
+ [[package]]
3148
+ name = "windows_x86_64_msvc"
3149
+ version = "0.52.6"
3150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3151
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3152
+
3153
+ [[package]]
3154
+ name = "windows_x86_64_msvc"
3155
+ version = "0.53.1"
3156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3157
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3158
+
3159
+ [[package]]
3160
+ name = "winnow"
3161
+ version = "0.7.14"
3162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3163
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3164
+
3165
+ [[package]]
3166
+ name = "wit-bindgen"
3167
+ version = "0.46.0"
3168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3169
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3170
+
3171
+ [[package]]
3172
+ name = "writeable"
3173
+ version = "0.6.2"
3174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3175
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3176
+
3177
+ [[package]]
3178
+ name = "yansi"
3179
+ version = "1.0.1"
3180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3181
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
3182
+
3183
+ [[package]]
3184
+ name = "yoke"
3185
+ version = "0.8.1"
3186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3187
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3188
+ dependencies = [
3189
+ "stable_deref_trait",
3190
+ "yoke-derive",
3191
+ "zerofrom",
3192
+ ]
3193
+
3194
+ [[package]]
3195
+ name = "yoke-derive"
3196
+ version = "0.8.1"
3197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3198
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3199
+ dependencies = [
3200
+ "proc-macro2",
3201
+ "quote",
3202
+ "syn",
3203
+ "synstructure",
3204
+ ]
3205
+
3206
+ [[package]]
3207
+ name = "zerocopy"
3208
+ version = "0.8.31"
3209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3210
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
3211
+ dependencies = [
3212
+ "zerocopy-derive",
3213
+ ]
3214
+
3215
+ [[package]]
3216
+ name = "zerocopy-derive"
3217
+ version = "0.8.31"
3218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3219
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
3220
+ dependencies = [
3221
+ "proc-macro2",
3222
+ "quote",
3223
+ "syn",
3224
+ ]
3225
+
3226
+ [[package]]
3227
+ name = "zerofrom"
3228
+ version = "0.1.6"
3229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3230
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3231
+ dependencies = [
3232
+ "zerofrom-derive",
3233
+ ]
3234
+
3235
+ [[package]]
3236
+ name = "zerofrom-derive"
3237
+ version = "0.1.6"
3238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3239
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3240
+ dependencies = [
3241
+ "proc-macro2",
3242
+ "quote",
3243
+ "syn",
3244
+ "synstructure",
3245
+ ]
3246
+
3247
+ [[package]]
3248
+ name = "zerotrie"
3249
+ version = "0.2.3"
3250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3251
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3252
+ dependencies = [
3253
+ "displaydoc",
3254
+ "yoke",
3255
+ "zerofrom",
3256
+ ]
3257
+
3258
+ [[package]]
3259
+ name = "zerovec"
3260
+ version = "0.11.5"
3261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3262
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3263
+ dependencies = [
3264
+ "yoke",
3265
+ "zerofrom",
3266
+ "zerovec-derive",
3267
+ ]
3268
+
3269
+ [[package]]
3270
+ name = "zerovec-derive"
3271
+ version = "0.11.2"
3272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3273
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3274
+ dependencies = [
3275
+ "proc-macro2",
3276
+ "quote",
3277
+ "syn",
3278
+ ]
3279
+
3280
+ [[package]]
3281
+ name = "zip"
3282
+ version = "0.6.6"
3283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3284
+ checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
3285
+ dependencies = [
3286
+ "byteorder",
3287
+ "crc32fast",
3288
+ "crossbeam-utils",
3289
+ ]