pyrefly 0.28.1__tar.gz → 0.29.1__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.

Potentially problematic release.


This version of pyrefly might be problematic. Click here for more details.

Files changed (1279) hide show
  1. pyrefly-0.29.1/Cargo.lock +3997 -0
  2. pyrefly-0.29.1/PKG-INFO +31 -0
  3. pyrefly-0.29.1/crates/pyrefly_bundled/Cargo.toml +20 -0
  4. pyrefly-0.29.1/crates/pyrefly_config/Cargo.toml +42 -0
  5. pyrefly-0.29.1/crates/pyrefly_config/src/args.rs +248 -0
  6. pyrefly-0.29.1/crates/pyrefly_config/src/base.rs +121 -0
  7. pyrefly-0.29.1/crates/pyrefly_config/src/config.rs +1545 -0
  8. pyrefly-0.29.1/crates/pyrefly_config/src/error_kind.rs +342 -0
  9. pyrefly-0.29.1/crates/pyrefly_config/src/migration/pyright.rs +369 -0
  10. pyrefly-0.29.1/crates/pyrefly_config/src/migration/run.rs +404 -0
  11. pyrefly-0.29.1/crates/pyrefly_derive/Cargo.toml +19 -0
  12. pyrefly-0.29.1/crates/pyrefly_python/Cargo.toml +29 -0
  13. pyrefly-0.29.1/crates/pyrefly_python/src/ast.rs +312 -0
  14. pyrefly-0.29.1/crates/pyrefly_python/src/ignore.rs +426 -0
  15. pyrefly-0.29.1/crates/pyrefly_python/src/module_name.rs +337 -0
  16. pyrefly-0.29.1/crates/pyrefly_types/Cargo.toml +25 -0
  17. pyrefly-0.29.1/crates/pyrefly_types/src/class.rs +359 -0
  18. pyrefly-0.29.1/crates/pyrefly_types/src/display.rs +911 -0
  19. pyrefly-0.29.1/crates/pyrefly_types/src/quantified.rs +232 -0
  20. pyrefly-0.29.1/crates/pyrefly_types/src/read_only.rs +53 -0
  21. pyrefly-0.29.1/crates/pyrefly_types/src/simplify.rs +279 -0
  22. pyrefly-0.29.1/crates/pyrefly_types/src/stdlib.rs +422 -0
  23. pyrefly-0.29.1/crates/pyrefly_types/src/typed_dict.rs +110 -0
  24. pyrefly-0.29.1/crates/pyrefly_types/src/types.rs +1479 -0
  25. pyrefly-0.29.1/crates/pyrefly_util/Cargo.toml +52 -0
  26. pyrefly-0.29.1/crates/pyrefly_util/src/globs.rs +1366 -0
  27. pyrefly-0.29.1/pyrefly/Cargo.toml +70 -0
  28. pyrefly-0.29.1/pyrefly/lib/alt/answers.rs +728 -0
  29. pyrefly-0.29.1/pyrefly/lib/alt/answers_solver.rs +843 -0
  30. pyrefly-0.29.1/pyrefly/lib/alt/attr.rs +2079 -0
  31. pyrefly-0.29.1/pyrefly/lib/alt/call.rs +1136 -0
  32. pyrefly-0.29.1/pyrefly/lib/alt/callable.rs +1070 -0
  33. pyrefly-0.29.1/pyrefly/lib/alt/class/class_field.rs +1893 -0
  34. pyrefly-0.29.1/pyrefly/lib/alt/class/class_metadata.rs +1044 -0
  35. pyrefly-0.29.1/pyrefly/lib/alt/class/dataclass.rs +542 -0
  36. pyrefly-0.29.1/pyrefly/lib/alt/class/targs.rs +647 -0
  37. pyrefly-0.29.1/pyrefly/lib/alt/class/tparams.rs +171 -0
  38. pyrefly-0.29.1/pyrefly/lib/alt/class/typed_dict.rs +648 -0
  39. pyrefly-0.29.1/pyrefly/lib/alt/debugging.rs +145 -0
  40. pyrefly-0.29.1/pyrefly/lib/alt/expr.rs +1968 -0
  41. pyrefly-0.29.1/pyrefly/lib/alt/function.rs +1016 -0
  42. pyrefly-0.29.1/pyrefly/lib/alt/narrow.rs +855 -0
  43. pyrefly-0.29.1/pyrefly/lib/alt/solve.rs +3337 -0
  44. pyrefly-0.29.1/pyrefly/lib/alt/special_calls.rs +540 -0
  45. pyrefly-0.29.1/pyrefly/lib/alt/traits.rs +395 -0
  46. pyrefly-0.29.1/pyrefly/lib/alt/types/class_bases.rs +293 -0
  47. pyrefly-0.29.1/pyrefly/lib/alt/types/class_metadata.rs +617 -0
  48. pyrefly-0.29.1/pyrefly/lib/alt/types/decorated_function.rs +164 -0
  49. pyrefly-0.29.1/pyrefly/lib/alt/types/pydantic.rs +17 -0
  50. pyrefly-0.29.1/pyrefly/lib/alt/unwrap.rs +323 -0
  51. pyrefly-0.29.1/pyrefly/lib/binding/base_class.rs +173 -0
  52. pyrefly-0.29.1/pyrefly/lib/binding/binding.rs +2010 -0
  53. pyrefly-0.29.1/pyrefly/lib/binding/bindings.rs +1277 -0
  54. pyrefly-0.29.1/pyrefly/lib/binding/class.rs +1090 -0
  55. pyrefly-0.29.1/pyrefly/lib/binding/expr.rs +820 -0
  56. pyrefly-0.29.1/pyrefly/lib/binding/flow_ops.rs +267 -0
  57. pyrefly-0.29.1/pyrefly/lib/binding/function.rs +723 -0
  58. pyrefly-0.29.1/pyrefly/lib/binding/pydantic.rs +62 -0
  59. pyrefly-0.29.1/pyrefly/lib/binding/scope.rs +1183 -0
  60. pyrefly-0.29.1/pyrefly/lib/binding/stmt.rs +1081 -0
  61. pyrefly-0.29.1/pyrefly/lib/binding/table.rs +245 -0
  62. pyrefly-0.29.1/pyrefly/lib/commands/buck_check.rs +124 -0
  63. pyrefly-0.29.1/pyrefly/lib/commands/check.rs +784 -0
  64. pyrefly-0.29.1/pyrefly/lib/error/context.rs +221 -0
  65. pyrefly-0.29.1/pyrefly/lib/error/display.rs +260 -0
  66. pyrefly-0.29.1/pyrefly/lib/error/suppress.rs +506 -0
  67. pyrefly-0.29.1/pyrefly/lib/export/definitions.rs +892 -0
  68. pyrefly-0.29.1/pyrefly/lib/export/exports.rs +327 -0
  69. pyrefly-0.29.1/pyrefly/lib/export/special.rs +123 -0
  70. pyrefly-0.29.1/pyrefly/lib/graph/calculation.rs +179 -0
  71. pyrefly-0.29.1/pyrefly/lib/lsp/features/hover.rs +145 -0
  72. pyrefly-0.29.1/pyrefly/lib/lsp/server.rs +1809 -0
  73. pyrefly-0.29.1/pyrefly/lib/lsp/transaction_manager.rs +67 -0
  74. pyrefly-0.29.1/pyrefly/lib/lsp/workspace.rs +411 -0
  75. pyrefly-0.29.1/pyrefly/lib/module/finder.rs +1633 -0
  76. pyrefly-0.29.1/pyrefly/lib/playground.rs +319 -0
  77. pyrefly-0.29.1/pyrefly/lib/query.rs +718 -0
  78. pyrefly-0.29.1/pyrefly/lib/report/binding_memory.rs +177 -0
  79. pyrefly-0.29.1/pyrefly/lib/report/glean/convert.rs +1318 -0
  80. pyrefly-0.29.1/pyrefly/lib/report/glean/mod.rs +219 -0
  81. pyrefly-0.29.1/pyrefly/lib/report/glean/schema/python.rs +1990 -0
  82. pyrefly-0.29.1/pyrefly/lib/report/glean/snapshots/classes.json +2246 -0
  83. pyrefly-0.29.1/pyrefly/lib/report/glean/snapshots/imports.json +2019 -0
  84. pyrefly-0.29.1/pyrefly/lib/report/glean/snapshots/return_types.json +1983 -0
  85. pyrefly-0.29.1/pyrefly/lib/report/glean/snapshots/simple.json +672 -0
  86. pyrefly-0.29.1/pyrefly/lib/report/glean/snapshots/try_except.json +366 -0
  87. pyrefly-0.29.1/pyrefly/lib/report/pysa/mod.rs +878 -0
  88. pyrefly-0.29.1/pyrefly/lib/solver/solver.rs +769 -0
  89. pyrefly-0.29.1/pyrefly/lib/solver/subset.rs +1071 -0
  90. pyrefly-0.29.1/pyrefly/lib/state/ide.rs +188 -0
  91. pyrefly-0.29.1/pyrefly/lib/state/loader.rs +150 -0
  92. pyrefly-0.29.1/pyrefly/lib/state/lsp.rs +2531 -0
  93. pyrefly-0.29.1/pyrefly/lib/state/state.rs +1785 -0
  94. pyrefly-0.29.1/pyrefly/lib/state/steps.rs +212 -0
  95. pyrefly-0.29.1/pyrefly/lib/test/assign.rs +829 -0
  96. pyrefly-0.29.1/pyrefly/lib/test/attribute_narrow.rs +492 -0
  97. pyrefly-0.29.1/pyrefly/lib/test/attributes.rs +1368 -0
  98. pyrefly-0.29.1/pyrefly/lib/test/class_overrides.rs +448 -0
  99. pyrefly-0.29.1/pyrefly/lib/test/class_subtyping.rs +263 -0
  100. pyrefly-0.29.1/pyrefly/lib/test/class_super.rs +298 -0
  101. pyrefly-0.29.1/pyrefly/lib/test/contextual.rs +628 -0
  102. pyrefly-0.29.1/pyrefly/lib/test/decorators.rs +564 -0
  103. pyrefly-0.29.1/pyrefly/lib/test/descriptors.rs +288 -0
  104. pyrefly-0.29.1/pyrefly/lib/test/enums.rs +460 -0
  105. pyrefly-0.29.1/pyrefly/lib/test/flow.rs +1441 -0
  106. pyrefly-0.29.1/pyrefly/lib/test/generic_basic.rs +984 -0
  107. pyrefly-0.29.1/pyrefly/lib/test/generic_restrictions.rs +375 -0
  108. pyrefly-0.29.1/pyrefly/lib/test/imports.rs +986 -0
  109. pyrefly-0.29.1/pyrefly/lib/test/inference.rs +25 -0
  110. pyrefly-0.29.1/pyrefly/lib/test/lsp/completion.rs +1278 -0
  111. pyrefly-0.29.1/pyrefly/lib/test/lsp/definition.rs +1310 -0
  112. pyrefly-0.29.1/pyrefly/lib/test/lsp/hover_docstring.rs +362 -0
  113. pyrefly-0.29.1/pyrefly/lib/test/lsp/hover_type.rs +470 -0
  114. pyrefly-0.29.1/pyrefly/lib/test/lsp/local_find_refs.rs +300 -0
  115. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/basic.rs +209 -0
  116. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/completion.rs +438 -0
  117. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/configuration.rs +371 -0
  118. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/definition.rs +199 -0
  119. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/diagnostic.rs +66 -0
  120. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/did_change.rs +141 -0
  121. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/hover.rs +92 -0
  122. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/inlay_hint.rs +326 -0
  123. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/io.rs +124 -0
  124. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/mod.rs +24 -0
  125. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/object_model.rs +533 -0
  126. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/references.rs +371 -0
  127. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/rename.rs +145 -0
  128. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/type_definition.rs +44 -0
  129. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/util.rs +379 -0
  130. pyrefly-0.29.1/pyrefly/lib/test/lsp/lsp_interaction/workspace_symbol.rs +57 -0
  131. pyrefly-0.29.1/pyrefly/lib/test/lsp/mod.rs +21 -0
  132. pyrefly-0.29.1/pyrefly/lib/test/mod.rs +66 -0
  133. pyrefly-0.29.1/pyrefly/lib/test/mro.rs +241 -0
  134. pyrefly-0.29.1/pyrefly/lib/test/named_tuple.rs +363 -0
  135. pyrefly-0.29.1/pyrefly/lib/test/narrow.rs +1719 -0
  136. pyrefly-0.29.1/pyrefly/lib/test/new_type.rs +141 -0
  137. pyrefly-0.29.1/pyrefly/lib/test/operators.rs +510 -0
  138. pyrefly-0.29.1/pyrefly/lib/test/protocol.rs +581 -0
  139. pyrefly-0.29.1/pyrefly/lib/test/pydantic/aliases.rs +98 -0
  140. pyrefly-0.29.1/pyrefly/lib/test/pydantic/config.rs +131 -0
  141. pyrefly-0.29.1/pyrefly/lib/test/pydantic/field.rs +43 -0
  142. pyrefly-0.29.1/pyrefly/lib/test/pydantic/mod.rs +11 -0
  143. pyrefly-0.29.1/pyrefly/lib/test/pydantic/stubs/pydantic/__init__.py +446 -0
  144. pyrefly-0.29.1/pyrefly/lib/test/pydantic/stubs/pydantic/_internal/_model_construction.py +968 -0
  145. pyrefly-0.29.1/pyrefly/lib/test/pydantic/stubs/pydantic/config.py +1218 -0
  146. pyrefly-0.29.1/pyrefly/lib/test/pydantic/stubs/pydantic/fields.py +1847 -0
  147. pyrefly-0.29.1/pyrefly/lib/test/pydantic/stubs/pydantic/main.py +1978 -0
  148. pyrefly-0.29.1/pyrefly/lib/test/redundant_cast.rs +138 -0
  149. pyrefly-0.29.1/pyrefly/lib/test/scope.rs +614 -0
  150. pyrefly-0.29.1/pyrefly/lib/test/simple.rs +1759 -0
  151. pyrefly-0.29.1/pyrefly/lib/test/state.rs +208 -0
  152. pyrefly-0.29.1/pyrefly/lib/test/tuple.rs +433 -0
  153. pyrefly-0.29.1/pyrefly/lib/test/type_var_tuple.rs +153 -0
  154. pyrefly-0.29.1/pyrefly/lib/test/typed_dict.rs +1215 -0
  155. pyrefly-0.29.1/pyrefly/lib/test/typing_self.rs +182 -0
  156. pyrefly-0.29.1/pyrefly/lib/test/util.rs +510 -0
  157. pyrefly-0.29.1/pyrefly/lib/test/yields.rs +428 -0
  158. pyrefly-0.29.1/pyrefly/python/pyrefly/__init__.py +8 -0
  159. pyrefly-0.29.1/python/pyrefly/__init__.py +8 -0
  160. pyrefly-0.28.1/Cargo.lock +0 -3924
  161. pyrefly-0.28.1/PKG-INFO +0 -31
  162. pyrefly-0.28.1/crates/pyrefly_bundled/Cargo.toml +0 -20
  163. pyrefly-0.28.1/crates/pyrefly_config/Cargo.toml +0 -42
  164. pyrefly-0.28.1/crates/pyrefly_config/src/args.rs +0 -239
  165. pyrefly-0.28.1/crates/pyrefly_config/src/base.rs +0 -112
  166. pyrefly-0.28.1/crates/pyrefly_config/src/config.rs +0 -1522
  167. pyrefly-0.28.1/crates/pyrefly_config/src/error_kind.rs +0 -339
  168. pyrefly-0.28.1/crates/pyrefly_config/src/migration/pyright.rs +0 -358
  169. pyrefly-0.28.1/crates/pyrefly_config/src/migration/run.rs +0 -404
  170. pyrefly-0.28.1/crates/pyrefly_derive/Cargo.toml +0 -19
  171. pyrefly-0.28.1/crates/pyrefly_python/Cargo.toml +0 -29
  172. pyrefly-0.28.1/crates/pyrefly_python/src/ast.rs +0 -312
  173. pyrefly-0.28.1/crates/pyrefly_python/src/ignore.rs +0 -426
  174. pyrefly-0.28.1/crates/pyrefly_python/src/module_name.rs +0 -333
  175. pyrefly-0.28.1/crates/pyrefly_types/Cargo.toml +0 -25
  176. pyrefly-0.28.1/crates/pyrefly_types/src/class.rs +0 -359
  177. pyrefly-0.28.1/crates/pyrefly_types/src/display.rs +0 -911
  178. pyrefly-0.28.1/crates/pyrefly_types/src/quantified.rs +0 -223
  179. pyrefly-0.28.1/crates/pyrefly_types/src/read_only.rs +0 -53
  180. pyrefly-0.28.1/crates/pyrefly_types/src/simplify.rs +0 -279
  181. pyrefly-0.28.1/crates/pyrefly_types/src/stdlib.rs +0 -409
  182. pyrefly-0.28.1/crates/pyrefly_types/src/typed_dict.rs +0 -78
  183. pyrefly-0.28.1/crates/pyrefly_types/src/types.rs +0 -1438
  184. pyrefly-0.28.1/crates/pyrefly_util/Cargo.toml +0 -52
  185. pyrefly-0.28.1/crates/pyrefly_util/src/globs.rs +0 -1351
  186. pyrefly-0.28.1/pyrefly/Cargo.toml +0 -70
  187. pyrefly-0.28.1/pyrefly/lib/alt/answers.rs +0 -719
  188. pyrefly-0.28.1/pyrefly/lib/alt/answers_solver.rs +0 -835
  189. pyrefly-0.28.1/pyrefly/lib/alt/attr.rs +0 -2080
  190. pyrefly-0.28.1/pyrefly/lib/alt/call.rs +0 -1071
  191. pyrefly-0.28.1/pyrefly/lib/alt/callable.rs +0 -1069
  192. pyrefly-0.28.1/pyrefly/lib/alt/class/class_field.rs +0 -1837
  193. pyrefly-0.28.1/pyrefly/lib/alt/class/class_metadata.rs +0 -770
  194. pyrefly-0.28.1/pyrefly/lib/alt/class/dataclass.rs +0 -537
  195. pyrefly-0.28.1/pyrefly/lib/alt/class/targs.rs +0 -589
  196. pyrefly-0.28.1/pyrefly/lib/alt/class/tparams.rs +0 -183
  197. pyrefly-0.28.1/pyrefly/lib/alt/class/typed_dict.rs +0 -630
  198. pyrefly-0.28.1/pyrefly/lib/alt/debugging.rs +0 -144
  199. pyrefly-0.28.1/pyrefly/lib/alt/expr.rs +0 -1896
  200. pyrefly-0.28.1/pyrefly/lib/alt/function.rs +0 -933
  201. pyrefly-0.28.1/pyrefly/lib/alt/narrow.rs +0 -732
  202. pyrefly-0.28.1/pyrefly/lib/alt/solve.rs +0 -3270
  203. pyrefly-0.28.1/pyrefly/lib/alt/special_calls.rs +0 -495
  204. pyrefly-0.28.1/pyrefly/lib/alt/traits.rs +0 -378
  205. pyrefly-0.28.1/pyrefly/lib/alt/types/class_bases.rs +0 -200
  206. pyrefly-0.28.1/pyrefly/lib/alt/types/class_metadata.rs +0 -614
  207. pyrefly-0.28.1/pyrefly/lib/alt/types/decorated_function.rs +0 -62
  208. pyrefly-0.28.1/pyrefly/lib/alt/types/pydantic.rs +0 -23
  209. pyrefly-0.28.1/pyrefly/lib/alt/unwrap.rs +0 -319
  210. pyrefly-0.28.1/pyrefly/lib/binding/base_class.rs +0 -87
  211. pyrefly-0.28.1/pyrefly/lib/binding/binding.rs +0 -1961
  212. pyrefly-0.28.1/pyrefly/lib/binding/bindings.rs +0 -1274
  213. pyrefly-0.28.1/pyrefly/lib/binding/class.rs +0 -1095
  214. pyrefly-0.28.1/pyrefly/lib/binding/expr.rs +0 -809
  215. pyrefly-0.28.1/pyrefly/lib/binding/flow_ops.rs +0 -267
  216. pyrefly-0.28.1/pyrefly/lib/binding/function.rs +0 -673
  217. pyrefly-0.28.1/pyrefly/lib/binding/pydantic.rs +0 -16
  218. pyrefly-0.28.1/pyrefly/lib/binding/scope.rs +0 -1137
  219. pyrefly-0.28.1/pyrefly/lib/binding/stmt.rs +0 -1041
  220. pyrefly-0.28.1/pyrefly/lib/binding/table.rs +0 -235
  221. pyrefly-0.28.1/pyrefly/lib/commands/buck_check.rs +0 -124
  222. pyrefly-0.28.1/pyrefly/lib/commands/check.rs +0 -800
  223. pyrefly-0.28.1/pyrefly/lib/error/context.rs +0 -218
  224. pyrefly-0.28.1/pyrefly/lib/error/display.rs +0 -255
  225. pyrefly-0.28.1/pyrefly/lib/error/suppress.rs +0 -532
  226. pyrefly-0.28.1/pyrefly/lib/export/definitions.rs +0 -836
  227. pyrefly-0.28.1/pyrefly/lib/export/exports.rs +0 -322
  228. pyrefly-0.28.1/pyrefly/lib/export/special.rs +0 -121
  229. pyrefly-0.28.1/pyrefly/lib/graph/calculation.rs +0 -179
  230. pyrefly-0.28.1/pyrefly/lib/lsp/features/hover.rs +0 -137
  231. pyrefly-0.28.1/pyrefly/lib/lsp/server.rs +0 -1727
  232. pyrefly-0.28.1/pyrefly/lib/lsp/transaction_manager.rs +0 -67
  233. pyrefly-0.28.1/pyrefly/lib/lsp/workspace.rs +0 -402
  234. pyrefly-0.28.1/pyrefly/lib/module/finder.rs +0 -1377
  235. pyrefly-0.28.1/pyrefly/lib/playground.rs +0 -319
  236. pyrefly-0.28.1/pyrefly/lib/query.rs +0 -589
  237. pyrefly-0.28.1/pyrefly/lib/report/binding_memory.rs +0 -178
  238. pyrefly-0.28.1/pyrefly/lib/report/glean/convert.rs +0 -1028
  239. pyrefly-0.28.1/pyrefly/lib/report/glean/mod.rs +0 -194
  240. pyrefly-0.28.1/pyrefly/lib/report/glean/schema/python.rs +0 -1990
  241. pyrefly-0.28.1/pyrefly/lib/report/glean/snapshots/classes.json +0 -1715
  242. pyrefly-0.28.1/pyrefly/lib/report/glean/snapshots/imports.json +0 -1642
  243. pyrefly-0.28.1/pyrefly/lib/report/glean/snapshots/simple.json +0 -538
  244. pyrefly-0.28.1/pyrefly/lib/report/pysa/mod.rs +0 -863
  245. pyrefly-0.28.1/pyrefly/lib/solver/solver.rs +0 -745
  246. pyrefly-0.28.1/pyrefly/lib/solver/subset.rs +0 -1066
  247. pyrefly-0.28.1/pyrefly/lib/state/ide.rs +0 -183
  248. pyrefly-0.28.1/pyrefly/lib/state/loader.rs +0 -117
  249. pyrefly-0.28.1/pyrefly/lib/state/lsp.rs +0 -2390
  250. pyrefly-0.28.1/pyrefly/lib/state/state.rs +0 -1745
  251. pyrefly-0.28.1/pyrefly/lib/state/steps.rs +0 -210
  252. pyrefly-0.28.1/pyrefly/lib/test/assign.rs +0 -811
  253. pyrefly-0.28.1/pyrefly/lib/test/attribute_narrow.rs +0 -492
  254. pyrefly-0.28.1/pyrefly/lib/test/attributes.rs +0 -1324
  255. pyrefly-0.28.1/pyrefly/lib/test/class_overrides.rs +0 -432
  256. pyrefly-0.28.1/pyrefly/lib/test/class_subtyping.rs +0 -236
  257. pyrefly-0.28.1/pyrefly/lib/test/class_super.rs +0 -285
  258. pyrefly-0.28.1/pyrefly/lib/test/contextual.rs +0 -549
  259. pyrefly-0.28.1/pyrefly/lib/test/decorators.rs +0 -551
  260. pyrefly-0.28.1/pyrefly/lib/test/descriptors.rs +0 -288
  261. pyrefly-0.28.1/pyrefly/lib/test/enums.rs +0 -460
  262. pyrefly-0.28.1/pyrefly/lib/test/flow.rs +0 -1419
  263. pyrefly-0.28.1/pyrefly/lib/test/generic_basic.rs +0 -984
  264. pyrefly-0.28.1/pyrefly/lib/test/generic_restrictions.rs +0 -321
  265. pyrefly-0.28.1/pyrefly/lib/test/imports.rs +0 -765
  266. pyrefly-0.28.1/pyrefly/lib/test/lsp/completion.rs +0 -1249
  267. pyrefly-0.28.1/pyrefly/lib/test/lsp/definition.rs +0 -1288
  268. pyrefly-0.28.1/pyrefly/lib/test/lsp/hover_docstring.rs +0 -361
  269. pyrefly-0.28.1/pyrefly/lib/test/lsp/hover_type.rs +0 -423
  270. pyrefly-0.28.1/pyrefly/lib/test/lsp/local_find_refs.rs +0 -262
  271. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/basic.rs +0 -179
  272. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/completion.rs +0 -431
  273. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/configuration.rs +0 -699
  274. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/definition.rs +0 -219
  275. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/diagnostic.rs +0 -64
  276. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/did_change.rs +0 -138
  277. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/hover.rs +0 -89
  278. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/inlay_hint.rs +0 -321
  279. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/io.rs +0 -121
  280. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/mod.rs +0 -22
  281. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/references.rs +0 -369
  282. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/rename.rs +0 -142
  283. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/util.rs +0 -376
  284. pyrefly-0.28.1/pyrefly/lib/test/lsp/lsp_interaction/workspace_symbol.rs +0 -55
  285. pyrefly-0.28.1/pyrefly/lib/test/lsp/mod.rs +0 -19
  286. pyrefly-0.28.1/pyrefly/lib/test/mod.rs +0 -64
  287. pyrefly-0.28.1/pyrefly/lib/test/mro.rs +0 -226
  288. pyrefly-0.28.1/pyrefly/lib/test/named_tuple.rs +0 -348
  289. pyrefly-0.28.1/pyrefly/lib/test/narrow.rs +0 -1628
  290. pyrefly-0.28.1/pyrefly/lib/test/new_type.rs +0 -129
  291. pyrefly-0.28.1/pyrefly/lib/test/operators.rs +0 -510
  292. pyrefly-0.28.1/pyrefly/lib/test/protocol.rs +0 -581
  293. pyrefly-0.28.1/pyrefly/lib/test/pydantic/aliases.rs +0 -50
  294. pyrefly-0.28.1/pyrefly/lib/test/pydantic/config.rs +0 -131
  295. pyrefly-0.28.1/pyrefly/lib/test/pydantic/mod.rs +0 -10
  296. pyrefly-0.28.1/pyrefly/lib/test/pydantic/stubs/pydantic/__init__.pyi +0 -9
  297. pyrefly-0.28.1/pyrefly/lib/test/pydantic/stubs/pydantic/config.pyi +0 -9
  298. pyrefly-0.28.1/pyrefly/lib/test/pydantic/stubs/pydantic/main.pyi +0 -39
  299. pyrefly-0.28.1/pyrefly/lib/test/scope.rs +0 -564
  300. pyrefly-0.28.1/pyrefly/lib/test/simple.rs +0 -1743
  301. pyrefly-0.28.1/pyrefly/lib/test/state.rs +0 -208
  302. pyrefly-0.28.1/pyrefly/lib/test/tuple.rs +0 -423
  303. pyrefly-0.28.1/pyrefly/lib/test/type_var_tuple.rs +0 -151
  304. pyrefly-0.28.1/pyrefly/lib/test/typed_dict.rs +0 -1114
  305. pyrefly-0.28.1/pyrefly/lib/test/typing_self.rs +0 -170
  306. pyrefly-0.28.1/pyrefly/lib/test/util.rs +0 -506
  307. pyrefly-0.28.1/pyrefly/lib/test/yields.rs +0 -428
  308. {pyrefly-0.28.1 → pyrefly-0.29.1}/Cargo.toml +0 -0
  309. {pyrefly-0.28.1 → pyrefly-0.29.1}/README.md +0 -0
  310. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/build.rs +0 -0
  311. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/src/lib.rs +0 -0
  312. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/__future__.pyi +0 -0
  313. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/__main__.pyi +0 -0
  314. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_ast.pyi +0 -0
  315. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_asyncio.pyi +0 -0
  316. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_bisect.pyi +0 -0
  317. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_blake2.pyi +0 -0
  318. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_bootlocale.pyi +0 -0
  319. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_bz2.pyi +0 -0
  320. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_codecs.pyi +0 -0
  321. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_collections_abc.pyi +0 -0
  322. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_compat_pickle.pyi +0 -0
  323. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_compression.pyi +0 -0
  324. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_contextvars.pyi +0 -0
  325. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_csv.pyi +0 -0
  326. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_ctypes.pyi +0 -0
  327. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_curses.pyi +0 -0
  328. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_curses_panel.pyi +0 -0
  329. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_dbm.pyi +0 -0
  330. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_decimal.pyi +0 -0
  331. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_frozen_importlib.pyi +0 -0
  332. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_frozen_importlib_external.pyi +0 -0
  333. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_gdbm.pyi +0 -0
  334. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_hashlib.pyi +0 -0
  335. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_heapq.pyi +0 -0
  336. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_imp.pyi +0 -0
  337. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_interpchannels.pyi +0 -0
  338. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_interpqueues.pyi +0 -0
  339. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_interpreters.pyi +0 -0
  340. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_io.pyi +0 -0
  341. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_json.pyi +0 -0
  342. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_locale.pyi +0 -0
  343. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_lsprof.pyi +0 -0
  344. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_lzma.pyi +0 -0
  345. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_markupbase.pyi +0 -0
  346. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_msi.pyi +0 -0
  347. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_multibytecodec.pyi +0 -0
  348. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_operator.pyi +0 -0
  349. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_osx_support.pyi +0 -0
  350. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_pickle.pyi +0 -0
  351. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_posixsubprocess.pyi +0 -0
  352. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_py_abc.pyi +0 -0
  353. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_pydecimal.pyi +0 -0
  354. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_queue.pyi +0 -0
  355. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_random.pyi +0 -0
  356. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_sitebuiltins.pyi +0 -0
  357. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_socket.pyi +0 -0
  358. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_sqlite3.pyi +0 -0
  359. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_ssl.pyi +0 -0
  360. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_stat.pyi +0 -0
  361. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_struct.pyi +0 -0
  362. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_thread.pyi +0 -0
  363. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_threading_local.pyi +0 -0
  364. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_tkinter.pyi +0 -0
  365. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_tracemalloc.pyi +0 -0
  366. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_typeshed/__init__.pyi +0 -0
  367. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_typeshed/_type_checker_internals.pyi +0 -0
  368. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_typeshed/dbapi.pyi +0 -0
  369. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_typeshed/importlib.pyi +0 -0
  370. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_typeshed/wsgi.pyi +0 -0
  371. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_typeshed/xml.pyi +0 -0
  372. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_warnings.pyi +0 -0
  373. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_weakref.pyi +0 -0
  374. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_weakrefset.pyi +0 -0
  375. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_winapi.pyi +0 -0
  376. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/_zstd.pyi +0 -0
  377. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/abc.pyi +0 -0
  378. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/aifc.pyi +0 -0
  379. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/annotationlib.pyi +0 -0
  380. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/antigravity.pyi +0 -0
  381. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/argparse.pyi +0 -0
  382. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/array.pyi +0 -0
  383. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ast.pyi +0 -0
  384. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asynchat.pyi +0 -0
  385. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/__init__.pyi +0 -0
  386. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/base_events.pyi +0 -0
  387. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/base_futures.pyi +0 -0
  388. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/base_subprocess.pyi +0 -0
  389. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/base_tasks.pyi +0 -0
  390. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/constants.pyi +0 -0
  391. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/coroutines.pyi +0 -0
  392. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/events.pyi +0 -0
  393. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/exceptions.pyi +0 -0
  394. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/format_helpers.pyi +0 -0
  395. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/futures.pyi +0 -0
  396. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/graph.pyi +0 -0
  397. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/locks.pyi +0 -0
  398. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/log.pyi +0 -0
  399. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/mixins.pyi +0 -0
  400. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/proactor_events.pyi +0 -0
  401. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/protocols.pyi +0 -0
  402. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/queues.pyi +0 -0
  403. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/runners.pyi +0 -0
  404. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/selector_events.pyi +0 -0
  405. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/sslproto.pyi +0 -0
  406. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/staggered.pyi +0 -0
  407. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/streams.pyi +0 -0
  408. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/subprocess.pyi +0 -0
  409. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/taskgroups.pyi +0 -0
  410. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/tasks.pyi +0 -0
  411. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/threads.pyi +0 -0
  412. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/timeouts.pyi +0 -0
  413. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/tools.pyi +0 -0
  414. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/transports.pyi +0 -0
  415. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/trsock.pyi +0 -0
  416. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/unix_events.pyi +0 -0
  417. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/windows_events.pyi +0 -0
  418. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncio/windows_utils.pyi +0 -0
  419. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/asyncore.pyi +0 -0
  420. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/atexit.pyi +0 -0
  421. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/audioop.pyi +0 -0
  422. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/base64.pyi +0 -0
  423. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/bdb.pyi +0 -0
  424. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/binascii.pyi +0 -0
  425. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/binhex.pyi +0 -0
  426. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/bisect.pyi +0 -0
  427. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/builtins.pyi +0 -0
  428. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/bz2.pyi +0 -0
  429. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/cProfile.pyi +0 -0
  430. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/calendar.pyi +0 -0
  431. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/cgi.pyi +0 -0
  432. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/cgitb.pyi +0 -0
  433. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/chunk.pyi +0 -0
  434. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/cmath.pyi +0 -0
  435. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/cmd.pyi +0 -0
  436. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/code.pyi +0 -0
  437. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/codecs.pyi +0 -0
  438. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/codeop.pyi +0 -0
  439. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/collections/__init__.pyi +0 -0
  440. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/collections/abc.pyi +0 -0
  441. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/colorsys.pyi +0 -0
  442. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/compileall.pyi +0 -0
  443. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/__init__.pyi +0 -0
  444. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/_common/__init__.pyi +0 -0
  445. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/_common/_streams.pyi +0 -0
  446. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/bz2.pyi +0 -0
  447. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/gzip.pyi +0 -0
  448. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/lzma.pyi +0 -0
  449. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/zlib.pyi +0 -0
  450. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/zstd/__init__.pyi +0 -0
  451. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/compression/zstd/_zstdfile.pyi +0 -0
  452. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/concurrent/__init__.pyi +0 -0
  453. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/concurrent/futures/__init__.pyi +0 -0
  454. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/concurrent/futures/_base.pyi +0 -0
  455. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/concurrent/futures/interpreter.pyi +0 -0
  456. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/concurrent/futures/process.pyi +0 -0
  457. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/concurrent/futures/thread.pyi +0 -0
  458. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/configparser.pyi +0 -0
  459. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/contextlib.pyi +0 -0
  460. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/contextvars.pyi +0 -0
  461. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/copy.pyi +0 -0
  462. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/copyreg.pyi +0 -0
  463. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/crypt.pyi +0 -0
  464. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/csv.pyi +0 -0
  465. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ctypes/__init__.pyi +0 -0
  466. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ctypes/_endian.pyi +0 -0
  467. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ctypes/macholib/__init__.pyi +0 -0
  468. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ctypes/macholib/dyld.pyi +0 -0
  469. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ctypes/macholib/dylib.pyi +0 -0
  470. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ctypes/macholib/framework.pyi +0 -0
  471. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ctypes/util.pyi +0 -0
  472. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ctypes/wintypes.pyi +0 -0
  473. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/curses/__init__.pyi +0 -0
  474. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/curses/ascii.pyi +0 -0
  475. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/curses/has_key.pyi +0 -0
  476. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/curses/panel.pyi +0 -0
  477. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/curses/textpad.pyi +0 -0
  478. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/dataclasses.pyi +0 -0
  479. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/datetime.pyi +0 -0
  480. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/dbm/__init__.pyi +0 -0
  481. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/dbm/dumb.pyi +0 -0
  482. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/dbm/gnu.pyi +0 -0
  483. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/dbm/ndbm.pyi +0 -0
  484. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/dbm/sqlite3.pyi +0 -0
  485. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/decimal.pyi +0 -0
  486. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/difflib.pyi +0 -0
  487. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/dis.pyi +0 -0
  488. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/__init__.pyi +0 -0
  489. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/_msvccompiler.pyi +0 -0
  490. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/archive_util.pyi +0 -0
  491. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/bcppcompiler.pyi +0 -0
  492. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/ccompiler.pyi +0 -0
  493. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/cmd.pyi +0 -0
  494. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/__init__.pyi +0 -0
  495. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/bdist.pyi +0 -0
  496. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/bdist_dumb.pyi +0 -0
  497. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/bdist_msi.pyi +0 -0
  498. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/bdist_packager.pyi +0 -0
  499. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/bdist_rpm.pyi +0 -0
  500. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/bdist_wininst.pyi +0 -0
  501. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/build.pyi +0 -0
  502. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/build_clib.pyi +0 -0
  503. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/build_ext.pyi +0 -0
  504. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/build_py.pyi +0 -0
  505. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/build_scripts.pyi +0 -0
  506. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/check.pyi +0 -0
  507. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/clean.pyi +0 -0
  508. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/config.pyi +0 -0
  509. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/install.pyi +0 -0
  510. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/install_data.pyi +0 -0
  511. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/install_egg_info.pyi +0 -0
  512. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/install_headers.pyi +0 -0
  513. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/install_lib.pyi +0 -0
  514. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/install_scripts.pyi +0 -0
  515. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/register.pyi +0 -0
  516. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/sdist.pyi +0 -0
  517. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/command/upload.pyi +0 -0
  518. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/config.pyi +0 -0
  519. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/core.pyi +0 -0
  520. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/cygwinccompiler.pyi +0 -0
  521. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/debug.pyi +0 -0
  522. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/dep_util.pyi +0 -0
  523. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/dir_util.pyi +0 -0
  524. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/dist.pyi +0 -0
  525. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/errors.pyi +0 -0
  526. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/extension.pyi +0 -0
  527. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/fancy_getopt.pyi +0 -0
  528. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/file_util.pyi +0 -0
  529. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/filelist.pyi +0 -0
  530. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/log.pyi +0 -0
  531. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/msvccompiler.pyi +0 -0
  532. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/spawn.pyi +0 -0
  533. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/sysconfig.pyi +0 -0
  534. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/text_file.pyi +0 -0
  535. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/unixccompiler.pyi +0 -0
  536. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/util.pyi +0 -0
  537. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/distutils/version.pyi +0 -0
  538. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/doctest.pyi +0 -0
  539. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/__init__.pyi +0 -0
  540. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/_header_value_parser.pyi +0 -0
  541. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/_policybase.pyi +0 -0
  542. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/base64mime.pyi +0 -0
  543. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/charset.pyi +0 -0
  544. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/contentmanager.pyi +0 -0
  545. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/encoders.pyi +0 -0
  546. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/errors.pyi +0 -0
  547. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/feedparser.pyi +0 -0
  548. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/generator.pyi +0 -0
  549. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/header.pyi +0 -0
  550. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/headerregistry.pyi +0 -0
  551. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/iterators.pyi +0 -0
  552. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/message.pyi +0 -0
  553. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/mime/__init__.pyi +0 -0
  554. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/mime/application.pyi +0 -0
  555. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/mime/audio.pyi +0 -0
  556. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/mime/base.pyi +0 -0
  557. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/mime/image.pyi +0 -0
  558. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/mime/message.pyi +0 -0
  559. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/mime/multipart.pyi +0 -0
  560. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/mime/nonmultipart.pyi +0 -0
  561. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/mime/text.pyi +0 -0
  562. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/parser.pyi +0 -0
  563. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/policy.pyi +0 -0
  564. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/quoprimime.pyi +0 -0
  565. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/email/utils.pyi +0 -0
  566. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/__init__.pyi +0 -0
  567. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/aliases.pyi +0 -0
  568. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/ascii.pyi +0 -0
  569. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/base64_codec.pyi +0 -0
  570. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/big5.pyi +0 -0
  571. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/big5hkscs.pyi +0 -0
  572. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/bz2_codec.pyi +0 -0
  573. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/charmap.pyi +0 -0
  574. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp037.pyi +0 -0
  575. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1006.pyi +0 -0
  576. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1026.pyi +0 -0
  577. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1125.pyi +0 -0
  578. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1140.pyi +0 -0
  579. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1250.pyi +0 -0
  580. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1251.pyi +0 -0
  581. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1252.pyi +0 -0
  582. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1253.pyi +0 -0
  583. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1254.pyi +0 -0
  584. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1255.pyi +0 -0
  585. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1256.pyi +0 -0
  586. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1257.pyi +0 -0
  587. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp1258.pyi +0 -0
  588. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp273.pyi +0 -0
  589. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp424.pyi +0 -0
  590. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp437.pyi +0 -0
  591. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp500.pyi +0 -0
  592. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp720.pyi +0 -0
  593. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp737.pyi +0 -0
  594. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp775.pyi +0 -0
  595. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp850.pyi +0 -0
  596. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp852.pyi +0 -0
  597. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp855.pyi +0 -0
  598. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp856.pyi +0 -0
  599. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp857.pyi +0 -0
  600. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp858.pyi +0 -0
  601. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp860.pyi +0 -0
  602. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp861.pyi +0 -0
  603. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp862.pyi +0 -0
  604. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp863.pyi +0 -0
  605. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp864.pyi +0 -0
  606. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp865.pyi +0 -0
  607. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp866.pyi +0 -0
  608. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp869.pyi +0 -0
  609. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp874.pyi +0 -0
  610. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp875.pyi +0 -0
  611. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp932.pyi +0 -0
  612. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp949.pyi +0 -0
  613. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/cp950.pyi +0 -0
  614. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/euc_jis_2004.pyi +0 -0
  615. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/euc_jisx0213.pyi +0 -0
  616. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/euc_jp.pyi +0 -0
  617. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/euc_kr.pyi +0 -0
  618. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/gb18030.pyi +0 -0
  619. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/gb2312.pyi +0 -0
  620. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/gbk.pyi +0 -0
  621. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/hex_codec.pyi +0 -0
  622. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/hp_roman8.pyi +0 -0
  623. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/hz.pyi +0 -0
  624. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/idna.pyi +0 -0
  625. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso2022_jp.pyi +0 -0
  626. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso2022_jp_1.pyi +0 -0
  627. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso2022_jp_2.pyi +0 -0
  628. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
  629. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso2022_jp_3.pyi +0 -0
  630. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
  631. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso2022_kr.pyi +0 -0
  632. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_1.pyi +0 -0
  633. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_10.pyi +0 -0
  634. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_11.pyi +0 -0
  635. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_13.pyi +0 -0
  636. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_14.pyi +0 -0
  637. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_15.pyi +0 -0
  638. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_16.pyi +0 -0
  639. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_2.pyi +0 -0
  640. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_3.pyi +0 -0
  641. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_4.pyi +0 -0
  642. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_5.pyi +0 -0
  643. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_6.pyi +0 -0
  644. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_7.pyi +0 -0
  645. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_8.pyi +0 -0
  646. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/iso8859_9.pyi +0 -0
  647. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/johab.pyi +0 -0
  648. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/koi8_r.pyi +0 -0
  649. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/koi8_t.pyi +0 -0
  650. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/koi8_u.pyi +0 -0
  651. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/kz1048.pyi +0 -0
  652. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/latin_1.pyi +0 -0
  653. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/mac_arabic.pyi +0 -0
  654. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/mac_croatian.pyi +0 -0
  655. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/mac_cyrillic.pyi +0 -0
  656. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/mac_farsi.pyi +0 -0
  657. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/mac_greek.pyi +0 -0
  658. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/mac_iceland.pyi +0 -0
  659. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/mac_latin2.pyi +0 -0
  660. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/mac_roman.pyi +0 -0
  661. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/mac_romanian.pyi +0 -0
  662. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/mac_turkish.pyi +0 -0
  663. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/mbcs.pyi +0 -0
  664. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/oem.pyi +0 -0
  665. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/palmos.pyi +0 -0
  666. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/ptcp154.pyi +0 -0
  667. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/punycode.pyi +0 -0
  668. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/quopri_codec.pyi +0 -0
  669. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/raw_unicode_escape.pyi +0 -0
  670. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/rot_13.pyi +0 -0
  671. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/shift_jis.pyi +0 -0
  672. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/shift_jis_2004.pyi +0 -0
  673. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/shift_jisx0213.pyi +0 -0
  674. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/tis_620.pyi +0 -0
  675. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/undefined.pyi +0 -0
  676. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/unicode_escape.pyi +0 -0
  677. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/utf_16.pyi +0 -0
  678. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/utf_16_be.pyi +0 -0
  679. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/utf_16_le.pyi +0 -0
  680. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/utf_32.pyi +0 -0
  681. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/utf_32_be.pyi +0 -0
  682. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/utf_32_le.pyi +0 -0
  683. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/utf_7.pyi +0 -0
  684. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/utf_8.pyi +0 -0
  685. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/utf_8_sig.pyi +0 -0
  686. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/uu_codec.pyi +0 -0
  687. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/encodings/zlib_codec.pyi +0 -0
  688. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ensurepip/__init__.pyi +0 -0
  689. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/enum.pyi +0 -0
  690. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/errno.pyi +0 -0
  691. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/faulthandler.pyi +0 -0
  692. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/fcntl.pyi +0 -0
  693. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/filecmp.pyi +0 -0
  694. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/fileinput.pyi +0 -0
  695. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/fnmatch.pyi +0 -0
  696. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/formatter.pyi +0 -0
  697. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/fractions.pyi +0 -0
  698. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ftplib.pyi +0 -0
  699. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/functools.pyi +0 -0
  700. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/gc.pyi +0 -0
  701. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/genericpath.pyi +0 -0
  702. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/getopt.pyi +0 -0
  703. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/getpass.pyi +0 -0
  704. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/gettext.pyi +0 -0
  705. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/glob.pyi +0 -0
  706. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/graphlib.pyi +0 -0
  707. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/grp.pyi +0 -0
  708. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/gzip.pyi +0 -0
  709. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/hashlib.pyi +0 -0
  710. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/heapq.pyi +0 -0
  711. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/hmac.pyi +0 -0
  712. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/html/__init__.pyi +0 -0
  713. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/html/entities.pyi +0 -0
  714. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/html/parser.pyi +0 -0
  715. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/http/__init__.pyi +0 -0
  716. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/http/client.pyi +0 -0
  717. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/http/cookiejar.pyi +0 -0
  718. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/http/cookies.pyi +0 -0
  719. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/http/server.pyi +0 -0
  720. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/imaplib.pyi +0 -0
  721. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/imghdr.pyi +0 -0
  722. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/imp.pyi +0 -0
  723. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/__init__.pyi +0 -0
  724. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/_abc.pyi +0 -0
  725. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/_bootstrap.pyi +0 -0
  726. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/_bootstrap_external.pyi +0 -0
  727. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/abc.pyi +0 -0
  728. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/machinery.pyi +0 -0
  729. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/metadata/__init__.pyi +0 -0
  730. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/metadata/_meta.pyi +0 -0
  731. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/metadata/diagnose.pyi +0 -0
  732. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/readers.pyi +0 -0
  733. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/resources/__init__.pyi +0 -0
  734. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/resources/_common.pyi +0 -0
  735. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/resources/_functional.pyi +0 -0
  736. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/resources/abc.pyi +0 -0
  737. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/resources/readers.pyi +0 -0
  738. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/resources/simple.pyi +0 -0
  739. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/simple.pyi +0 -0
  740. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/importlib/util.pyi +0 -0
  741. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/inspect.pyi +0 -0
  742. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/io.pyi +0 -0
  743. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ipaddress.pyi +0 -0
  744. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/itertools.pyi +0 -0
  745. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/json/__init__.pyi +0 -0
  746. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/json/decoder.pyi +0 -0
  747. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/json/encoder.pyi +0 -0
  748. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/json/scanner.pyi +0 -0
  749. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/json/tool.pyi +0 -0
  750. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/keyword.pyi +0 -0
  751. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/__init__.pyi +0 -0
  752. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/btm_matcher.pyi +0 -0
  753. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixer_base.pyi +0 -0
  754. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/__init__.pyi +0 -0
  755. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
  756. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
  757. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
  758. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
  759. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
  760. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
  761. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
  762. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
  763. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
  764. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
  765. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
  766. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
  767. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
  768. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
  769. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
  770. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
  771. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
  772. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
  773. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
  774. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
  775. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
  776. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
  777. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
  778. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
  779. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
  780. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
  781. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
  782. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
  783. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
  784. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
  785. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
  786. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
  787. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
  788. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
  789. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
  790. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
  791. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
  792. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
  793. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
  794. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
  795. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
  796. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
  797. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
  798. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
  799. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
  800. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
  801. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
  802. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
  803. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
  804. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
  805. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
  806. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
  807. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/main.pyi +0 -0
  808. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
  809. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/pgen2/driver.pyi +0 -0
  810. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
  811. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/pgen2/literals.pyi +0 -0
  812. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/pgen2/parse.pyi +0 -0
  813. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
  814. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/pgen2/token.pyi +0 -0
  815. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
  816. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/pygram.pyi +0 -0
  817. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/pytree.pyi +0 -0
  818. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lib2to3/refactor.pyi +0 -0
  819. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/linecache.pyi +0 -0
  820. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/locale.pyi +0 -0
  821. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/logging/__init__.pyi +0 -0
  822. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/logging/config.pyi +0 -0
  823. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/logging/handlers.pyi +0 -0
  824. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/lzma.pyi +0 -0
  825. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/mailbox.pyi +0 -0
  826. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/mailcap.pyi +0 -0
  827. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/marshal.pyi +0 -0
  828. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/math.pyi +0 -0
  829. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/mimetypes.pyi +0 -0
  830. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/mmap.pyi +0 -0
  831. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/modulefinder.pyi +0 -0
  832. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/msilib/__init__.pyi +0 -0
  833. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/msilib/schema.pyi +0 -0
  834. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/msilib/sequence.pyi +0 -0
  835. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/msilib/text.pyi +0 -0
  836. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/msvcrt.pyi +0 -0
  837. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/__init__.pyi +0 -0
  838. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/connection.pyi +0 -0
  839. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/context.pyi +0 -0
  840. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
  841. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/dummy/connection.pyi +0 -0
  842. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/forkserver.pyi +0 -0
  843. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/heap.pyi +0 -0
  844. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/managers.pyi +0 -0
  845. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/pool.pyi +0 -0
  846. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/popen_fork.pyi +0 -0
  847. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
  848. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
  849. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
  850. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/process.pyi +0 -0
  851. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/queues.pyi +0 -0
  852. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/reduction.pyi +0 -0
  853. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/resource_sharer.pyi +0 -0
  854. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/resource_tracker.pyi +0 -0
  855. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/shared_memory.pyi +0 -0
  856. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/sharedctypes.pyi +0 -0
  857. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/spawn.pyi +0 -0
  858. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/synchronize.pyi +0 -0
  859. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/multiprocessing/util.pyi +0 -0
  860. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/netrc.pyi +0 -0
  861. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/nis.pyi +0 -0
  862. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/nntplib.pyi +0 -0
  863. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/nt.pyi +0 -0
  864. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ntpath.pyi +0 -0
  865. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/nturl2path.pyi +0 -0
  866. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/numbers.pyi +0 -0
  867. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/opcode.pyi +0 -0
  868. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/operator.pyi +0 -0
  869. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/optparse.pyi +0 -0
  870. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/os/__init__.pyi +0 -0
  871. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/os/path.pyi +0 -0
  872. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ossaudiodev.pyi +0 -0
  873. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/parser.pyi +0 -0
  874. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pathlib/__init__.pyi +0 -0
  875. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pathlib/types.pyi +0 -0
  876. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pdb.pyi +0 -0
  877. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pickle.pyi +0 -0
  878. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pickletools.pyi +0 -0
  879. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pipes.pyi +0 -0
  880. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pkgutil.pyi +0 -0
  881. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/platform.pyi +0 -0
  882. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/plistlib.pyi +0 -0
  883. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/poplib.pyi +0 -0
  884. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/posix.pyi +0 -0
  885. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/posixpath.pyi +0 -0
  886. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pprint.pyi +0 -0
  887. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/profile.pyi +0 -0
  888. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pstats.pyi +0 -0
  889. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pty.pyi +0 -0
  890. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pwd.pyi +0 -0
  891. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/py_compile.pyi +0 -0
  892. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pyclbr.pyi +0 -0
  893. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pydoc.pyi +0 -0
  894. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pydoc_data/__init__.pyi +0 -0
  895. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pydoc_data/topics.pyi +0 -0
  896. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pyexpat/__init__.pyi +0 -0
  897. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pyexpat/errors.pyi +0 -0
  898. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/pyexpat/model.pyi +0 -0
  899. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/queue.pyi +0 -0
  900. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/quopri.pyi +0 -0
  901. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/random.pyi +0 -0
  902. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/re.pyi +0 -0
  903. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/readline.pyi +0 -0
  904. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/reprlib.pyi +0 -0
  905. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/resource.pyi +0 -0
  906. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/rlcompleter.pyi +0 -0
  907. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/runpy.pyi +0 -0
  908. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/sched.pyi +0 -0
  909. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/secrets.pyi +0 -0
  910. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/select.pyi +0 -0
  911. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/selectors.pyi +0 -0
  912. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/shelve.pyi +0 -0
  913. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/shlex.pyi +0 -0
  914. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/shutil.pyi +0 -0
  915. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/signal.pyi +0 -0
  916. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/site.pyi +0 -0
  917. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/smtpd.pyi +0 -0
  918. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/smtplib.pyi +0 -0
  919. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/sndhdr.pyi +0 -0
  920. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/socket.pyi +0 -0
  921. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/socketserver.pyi +0 -0
  922. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/spwd.pyi +0 -0
  923. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/sqlite3/__init__.pyi +0 -0
  924. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/sqlite3/dbapi2.pyi +0 -0
  925. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/sqlite3/dump.pyi +0 -0
  926. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/sre_compile.pyi +0 -0
  927. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/sre_constants.pyi +0 -0
  928. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/sre_parse.pyi +0 -0
  929. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/ssl.pyi +0 -0
  930. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/stat.pyi +0 -0
  931. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/statistics.pyi +0 -0
  932. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/string/__init__.pyi +0 -0
  933. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/string/templatelib.pyi +0 -0
  934. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/stringprep.pyi +0 -0
  935. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/struct.pyi +0 -0
  936. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/subprocess.pyi +0 -0
  937. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/sunau.pyi +0 -0
  938. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/symbol.pyi +0 -0
  939. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/symtable.pyi +0 -0
  940. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/sys/__init__.pyi +0 -0
  941. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/sys/_monitoring.pyi +0 -0
  942. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/sysconfig.pyi +0 -0
  943. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/syslog.pyi +0 -0
  944. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tabnanny.pyi +0 -0
  945. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tarfile.pyi +0 -0
  946. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/telnetlib.pyi +0 -0
  947. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tempfile.pyi +0 -0
  948. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/termios.pyi +0 -0
  949. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/textwrap.pyi +0 -0
  950. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/this.pyi +0 -0
  951. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/threading.pyi +0 -0
  952. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/time.pyi +0 -0
  953. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/timeit.pyi +0 -0
  954. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/__init__.pyi +0 -0
  955. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/colorchooser.pyi +0 -0
  956. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/commondialog.pyi +0 -0
  957. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/constants.pyi +0 -0
  958. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/dialog.pyi +0 -0
  959. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/dnd.pyi +0 -0
  960. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/filedialog.pyi +0 -0
  961. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/font.pyi +0 -0
  962. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/messagebox.pyi +0 -0
  963. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/scrolledtext.pyi +0 -0
  964. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/simpledialog.pyi +0 -0
  965. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/tix.pyi +0 -0
  966. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tkinter/ttk.pyi +0 -0
  967. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/token.pyi +0 -0
  968. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tokenize.pyi +0 -0
  969. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tomllib.pyi +0 -0
  970. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/trace.pyi +0 -0
  971. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/traceback.pyi +0 -0
  972. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tracemalloc.pyi +0 -0
  973. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/tty.pyi +0 -0
  974. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/turtle.pyi +0 -0
  975. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/types.pyi +0 -0
  976. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/typing.pyi +0 -0
  977. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/typing_extensions.pyi +0 -0
  978. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unicodedata.pyi +0 -0
  979. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unittest/__init__.pyi +0 -0
  980. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unittest/_log.pyi +0 -0
  981. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unittest/async_case.pyi +0 -0
  982. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unittest/case.pyi +0 -0
  983. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unittest/loader.pyi +0 -0
  984. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unittest/main.pyi +0 -0
  985. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unittest/mock.pyi +0 -0
  986. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unittest/result.pyi +0 -0
  987. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unittest/runner.pyi +0 -0
  988. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unittest/signals.pyi +0 -0
  989. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unittest/suite.pyi +0 -0
  990. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/unittest/util.pyi +0 -0
  991. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/urllib/__init__.pyi +0 -0
  992. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/urllib/error.pyi +0 -0
  993. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/urllib/parse.pyi +0 -0
  994. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/urllib/request.pyi +0 -0
  995. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/urllib/response.pyi +0 -0
  996. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/urllib/robotparser.pyi +0 -0
  997. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/uu.pyi +0 -0
  998. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/uuid.pyi +0 -0
  999. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/venv/__init__.pyi +0 -0
  1000. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/warnings.pyi +0 -0
  1001. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/wave.pyi +0 -0
  1002. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/weakref.pyi +0 -0
  1003. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/webbrowser.pyi +0 -0
  1004. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/winreg.pyi +0 -0
  1005. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/winsound.pyi +0 -0
  1006. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/wsgiref/__init__.pyi +0 -0
  1007. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/wsgiref/handlers.pyi +0 -0
  1008. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/wsgiref/headers.pyi +0 -0
  1009. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/wsgiref/simple_server.pyi +0 -0
  1010. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/wsgiref/types.pyi +0 -0
  1011. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/wsgiref/util.pyi +0 -0
  1012. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/wsgiref/validate.pyi +0 -0
  1013. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xdrlib.pyi +0 -0
  1014. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/__init__.pyi +0 -0
  1015. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/dom/NodeFilter.pyi +0 -0
  1016. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/dom/__init__.pyi +0 -0
  1017. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/dom/domreg.pyi +0 -0
  1018. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/dom/expatbuilder.pyi +0 -0
  1019. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/dom/minicompat.pyi +0 -0
  1020. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/dom/minidom.pyi +0 -0
  1021. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/dom/pulldom.pyi +0 -0
  1022. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/dom/xmlbuilder.pyi +0 -0
  1023. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/etree/ElementInclude.pyi +0 -0
  1024. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/etree/ElementPath.pyi +0 -0
  1025. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/etree/ElementTree.pyi +0 -0
  1026. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/etree/__init__.pyi +0 -0
  1027. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/etree/cElementTree.pyi +0 -0
  1028. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/parsers/__init__.pyi +0 -0
  1029. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/parsers/expat/__init__.pyi +0 -0
  1030. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/parsers/expat/errors.pyi +0 -0
  1031. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/parsers/expat/model.pyi +0 -0
  1032. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/sax/__init__.pyi +0 -0
  1033. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/sax/_exceptions.pyi +0 -0
  1034. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/sax/expatreader.pyi +0 -0
  1035. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/sax/handler.pyi +0 -0
  1036. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/sax/saxutils.pyi +0 -0
  1037. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xml/sax/xmlreader.pyi +0 -0
  1038. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xmlrpc/__init__.pyi +0 -0
  1039. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xmlrpc/client.pyi +0 -0
  1040. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xmlrpc/server.pyi +0 -0
  1041. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/xxlimited.pyi +0 -0
  1042. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/zipapp.pyi +0 -0
  1043. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/zipfile/__init__.pyi +0 -0
  1044. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/zipfile/_path/__init__.pyi +0 -0
  1045. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/zipfile/_path/glob.pyi +0 -0
  1046. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/zipimport.pyi +0 -0
  1047. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/zlib.pyi +0 -0
  1048. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/zoneinfo/__init__.pyi +0 -0
  1049. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/zoneinfo/_common.pyi +0 -0
  1050. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed/stdlib/zoneinfo/_tzpath.pyi +0 -0
  1051. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/third_party/typeshed_metadata.json +0 -0
  1052. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_bundled/update.py +0 -0
  1053. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/environment/active_environment.rs +0 -0
  1054. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/environment/conda.rs +0 -0
  1055. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/environment/environment.rs +0 -0
  1056. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/environment/finder.rs +0 -0
  1057. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/environment/interpreters.rs +0 -0
  1058. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/environment/mod.rs +0 -0
  1059. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/environment/venv.rs +0 -0
  1060. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/error.rs +0 -0
  1061. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/file_kind.rs +0 -0
  1062. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/finder.rs +0 -0
  1063. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/lib.rs +0 -0
  1064. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/config_option_migrater.rs +0 -0
  1065. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/error_codes.rs +0 -0
  1066. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/ignore_missing_imports.rs +0 -0
  1067. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/mod.rs +0 -0
  1068. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/mypy/ini.rs +0 -0
  1069. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/mypy/mod.rs +0 -0
  1070. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/mypy/pyproject.rs +0 -0
  1071. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/mypy/regex_converter.rs +0 -0
  1072. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/mypy/util.rs +0 -0
  1073. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/project_excludes.rs +0 -0
  1074. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/project_includes.rs +0 -0
  1075. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/python_interpreter.rs +0 -0
  1076. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/python_platform.rs +0 -0
  1077. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/python_version.rs +0 -0
  1078. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/search_path.rs +0 -0
  1079. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/sub_configs.rs +0 -0
  1080. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/test_util.rs +0 -0
  1081. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/migration/untyped_def_behavior.rs +0 -0
  1082. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/module_wildcard.rs +0 -0
  1083. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/pyproject.rs +0 -0
  1084. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_config/src/util.rs +0 -0
  1085. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_derive/.gitignore +0 -0
  1086. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_derive/src/lib.rs +0 -0
  1087. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_derive/src/type_eq.rs +0 -0
  1088. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_derive/src/visit.rs +0 -0
  1089. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_python/src/display.rs +0 -0
  1090. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_python/src/docstring.rs +0 -0
  1091. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_python/src/dunder.rs +0 -0
  1092. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_python/src/keywords.rs +0 -0
  1093. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_python/src/lib.rs +0 -0
  1094. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_python/src/module.rs +0 -0
  1095. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_python/src/module_path.rs +0 -0
  1096. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_python/src/short_identifier.rs +0 -0
  1097. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_python/src/symbol_kind.rs +0 -0
  1098. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_python/src/sys_info.rs +0 -0
  1099. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/alias.rs +0 -0
  1100. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/annotation.rs +0 -0
  1101. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/callable.rs +0 -0
  1102. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/equality.rs +0 -0
  1103. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/facet.rs +0 -0
  1104. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/globals.rs +0 -0
  1105. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/keywords.rs +0 -0
  1106. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/lib.rs +0 -0
  1107. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/lit_int.rs +0 -0
  1108. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/literal.rs +0 -0
  1109. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/module.rs +0 -0
  1110. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/param_spec.rs +0 -0
  1111. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/qname.rs +0 -0
  1112. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/special_form.rs +0 -0
  1113. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/tuple.rs +0 -0
  1114. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/type_info.rs +0 -0
  1115. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/type_var.rs +0 -0
  1116. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_types/src/type_var_tuple.rs +0 -0
  1117. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/absolutize.rs +0 -0
  1118. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/arc_id.rs +0 -0
  1119. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/args.rs +0 -0
  1120. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/assert_size.rs +0 -0
  1121. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/display.rs +0 -0
  1122. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/events.rs +0 -0
  1123. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/exclusive_lock.rs +0 -0
  1124. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/forgetter.rs +0 -0
  1125. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/fs_anyhow.rs +0 -0
  1126. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/gas.rs +0 -0
  1127. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/lib.rs +0 -0
  1128. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/lined_buffer.rs +0 -0
  1129. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/lock.rs +0 -0
  1130. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/locked_map.rs +0 -0
  1131. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/memory.rs +0 -0
  1132. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/no_hash.rs +0 -0
  1133. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/owner.rs +0 -0
  1134. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/panic.rs +0 -0
  1135. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/prelude.rs +0 -0
  1136. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/recurser.rs +0 -0
  1137. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/ruff_visitors.rs +0 -0
  1138. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/small_set1.rs +0 -0
  1139. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/task_heap.rs +0 -0
  1140. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/test_path.rs +0 -0
  1141. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/thread_pool.rs +0 -0
  1142. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/trace.rs +0 -0
  1143. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/uniques.rs +0 -0
  1144. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/upgrade_lock.rs +0 -0
  1145. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/upward_search.rs +0 -0
  1146. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/visit.rs +0 -0
  1147. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/watcher.rs +0 -0
  1148. {pyrefly-0.28.1 → pyrefly-0.29.1}/crates/pyrefly_util/src/with_hash.rs +0 -0
  1149. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyproject.toml +0 -0
  1150. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/.gitignore +0 -0
  1151. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/README.md +0 -0
  1152. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/bin/main.rs +0 -0
  1153. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/class/classdef.rs +0 -0
  1154. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/class/enums.rs +0 -0
  1155. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/class/mod.rs +0 -0
  1156. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/class/named_tuple.rs +0 -0
  1157. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/class/new_type.rs +0 -0
  1158. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/class/total_ordering.rs +0 -0
  1159. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/class/tuple.rs +0 -0
  1160. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/class/variance_inference.rs +0 -0
  1161. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/mod.rs +0 -0
  1162. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/operators.rs +0 -0
  1163. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/specials.rs +0 -0
  1164. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/types/legacy_lookup.rs +0 -0
  1165. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/types/mod.rs +0 -0
  1166. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/alt/types/yields.rs +0 -0
  1167. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/binding/mod.rs +0 -0
  1168. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/binding/narrow.rs +0 -0
  1169. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/binding/pattern.rs +0 -0
  1170. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/binding/target.rs +0 -0
  1171. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/buck/mod.rs +0 -0
  1172. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/buck/source_db.rs +0 -0
  1173. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/commands/all.rs +0 -0
  1174. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/commands/config_finder.rs +0 -0
  1175. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/commands/dump_config.rs +0 -0
  1176. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/commands/files.rs +0 -0
  1177. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/commands/infer.rs +0 -0
  1178. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/commands/init.rs +0 -0
  1179. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/commands/lsp.rs +0 -0
  1180. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/commands/mod.rs +0 -0
  1181. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/commands/util.rs +0 -0
  1182. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/compat.rs +0 -0
  1183. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/error/collector.rs +0 -0
  1184. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/error/error.rs +0 -0
  1185. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/error/expectation.rs +0 -0
  1186. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/error/legacy.rs +0 -0
  1187. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/error/mod.rs +0 -0
  1188. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/error/style.rs +0 -0
  1189. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/error/summarise.rs +0 -0
  1190. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/export/mod.rs +0 -0
  1191. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/graph/index.rs +0 -0
  1192. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/graph/index_map.rs +0 -0
  1193. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/graph/mod.rs +0 -0
  1194. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/lib.rs +0 -0
  1195. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/lsp/features/mod.rs +0 -0
  1196. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/lsp/lsp.rs +0 -0
  1197. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/lsp/mod.rs +0 -0
  1198. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/lsp/module_helpers.rs +0 -0
  1199. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/lsp/queue.rs +0 -0
  1200. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/module/from_path.rs +0 -0
  1201. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/module/mod.rs +0 -0
  1202. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/module/parse.rs +0 -0
  1203. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/module/typeshed.rs +0 -0
  1204. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/report/debug_info.rs +0 -0
  1205. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/report/glean/facts.rs +0 -0
  1206. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/report/glean/schema/builtin.rs +0 -0
  1207. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/report/glean/schema/digest.rs +0 -0
  1208. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/report/glean/schema/mod.rs +0 -0
  1209. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/report/glean/schema/src.rs +0 -0
  1210. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/report/mod.rs +0 -0
  1211. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/report/trace.rs +0 -0
  1212. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/solver/mod.rs +0 -0
  1213. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/solver/type_order.rs +0 -0
  1214. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/state/dirty.rs +0 -0
  1215. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/state/epoch.rs +0 -0
  1216. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/state/errors.rs +0 -0
  1217. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/state/handle.rs +0 -0
  1218. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/state/load.rs +0 -0
  1219. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/state/memory.rs +0 -0
  1220. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/state/mod.rs +0 -0
  1221. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/state/require.rs +0 -0
  1222. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/state/semantic_tokens.rs +0 -0
  1223. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/state/subscriber.rs +0 -0
  1224. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/callable.rs +0 -0
  1225. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/calls.rs +0 -0
  1226. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/class_keywords.rs +0 -0
  1227. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/constructors.rs +0 -0
  1228. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/cycles.rs +0 -0
  1229. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/dataclass_transform.rs +0 -0
  1230. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/dataclasses.rs +0 -0
  1231. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/delayed_inference.rs +0 -0
  1232. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/dict.rs +0 -0
  1233. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/incremental.rs +0 -0
  1234. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/literal.rs +0 -0
  1235. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/code_actions.rs +0 -0
  1236. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/document_symbols.rs +0 -0
  1237. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/hover.rs +0 -0
  1238. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/inlay_hint.rs +0 -0
  1239. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/bar.py +0 -0
  1240. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/duplicate_export_test/foo.py +0 -0
  1241. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/duplicate_export_test/pyrefly.toml +0 -0
  1242. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/duplicate_export_test/typing.py +0 -0
  1243. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/foo.py +0 -0
  1244. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/foo_relative.py +0 -0
  1245. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/imports_builtins.py +0 -0
  1246. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/inlay_hint_test.py +0 -0
  1247. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/notebook.py +0 -0
  1248. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/relative_test/relative_import.py +0 -0
  1249. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/tests_requiring_config/autoimport_provider.py +0 -0
  1250. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/tests_requiring_config/bar.py +0 -0
  1251. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/tests_requiring_config/foo.py +0 -0
  1252. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/tests_requiring_config/pyrefly.toml +0 -0
  1253. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/tests_requiring_config/various_imports.py +0 -0
  1254. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/tests_requiring_config/with_synthetic_bindings.py +0 -0
  1255. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/text_document.py +0 -0
  1256. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/type_errors.py +0 -0
  1257. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/unexpected_keyword.py +0 -0
  1258. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/lsp_interaction/test_files/utf.py +0 -0
  1259. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/semantic_tokens.rs +0 -0
  1260. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/lsp/signature_help.rs +0 -0
  1261. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/overload.rs +0 -0
  1262. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/paramspec.rs +0 -0
  1263. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/pattern_match.rs +0 -0
  1264. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/perf.rs +0 -0
  1265. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/returns.rs +0 -0
  1266. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/subscript_narrow.rs +0 -0
  1267. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/suppression.rs +0 -0
  1268. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/sys_info.rs +0 -0
  1269. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/type_alias.rs +0 -0
  1270. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/untyped_def_behaviors.rs +0 -0
  1271. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/var_resolution.rs +0 -0
  1272. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/variance_inference.rs +0 -0
  1273. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/lib/test/with.rs +0 -0
  1274. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/python/pyrefly/__main__.py +0 -0
  1275. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/python/pyrefly/py.typed +0 -0
  1276. {pyrefly-0.28.1 → pyrefly-0.29.1}/pyrefly/rust-toolchain +0 -0
  1277. {pyrefly-0.28.1 → pyrefly-0.29.1}/python/pyrefly/__main__.py +0 -0
  1278. {pyrefly-0.28.1 → pyrefly-0.29.1}/python/pyrefly/py.typed +0 -0
  1279. {pyrefly-0.28.1 → pyrefly-0.29.1}/rust-toolchain +0 -0
@@ -0,0 +1,3997 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "Inflector"
7
+ version = "0.11.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
10
+
11
+ [[package]]
12
+ name = "addr2line"
13
+ version = "0.19.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
16
+ dependencies = [
17
+ "gimli",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "adler"
22
+ version = "1.0.2"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
25
+
26
+ [[package]]
27
+ name = "ahash"
28
+ version = "0.8.11"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
31
+ dependencies = [
32
+ "cfg-if",
33
+ "once_cell",
34
+ "version_check",
35
+ "zerocopy 0.7.35",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "aho-corasick"
40
+ version = "1.1.3"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
43
+ dependencies = [
44
+ "memchr",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "allocative"
49
+ version = "0.3.4"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "8fac2ce611db8b8cee9b2aa886ca03c924e9da5e5295d0dbd0526e5d0b0710f7"
52
+ dependencies = [
53
+ "allocative_derive",
54
+ "anyhow",
55
+ "bumpalo",
56
+ "compact_str 0.8.0",
57
+ "ctor",
58
+ "dashmap",
59
+ "either",
60
+ "futures 0.3.31",
61
+ "hashbrown 0.14.5",
62
+ "indexmap 2.10.0",
63
+ "num-bigint",
64
+ "once_cell",
65
+ "parking_lot 0.11.2",
66
+ "prost-types",
67
+ "relative-path",
68
+ "serde_json",
69
+ "slab",
70
+ "smallvec",
71
+ "sorted_vector_map",
72
+ "tokio",
73
+ "triomphe",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "allocative_derive"
78
+ version = "0.3.3"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "fe233a377643e0fc1a56421d7c90acdec45c291b30345eb9f08e8d0ddce5a4ab"
81
+ dependencies = [
82
+ "proc-macro2",
83
+ "quote",
84
+ "syn 2.0.101",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "allocator-api2"
89
+ version = "0.2.21"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
92
+
93
+ [[package]]
94
+ name = "android-tzdata"
95
+ version = "0.1.1"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
98
+
99
+ [[package]]
100
+ name = "android_system_properties"
101
+ version = "0.1.5"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
104
+ dependencies = [
105
+ "libc",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "anstream"
110
+ version = "0.6.19"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
113
+ dependencies = [
114
+ "anstyle",
115
+ "anstyle-parse",
116
+ "anstyle-query",
117
+ "anstyle-wincon",
118
+ "colorchoice",
119
+ "is_terminal_polyfill",
120
+ "utf8parse",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "anstyle"
125
+ version = "1.0.11"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
128
+
129
+ [[package]]
130
+ name = "anstyle-parse"
131
+ version = "0.2.0"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
134
+ dependencies = [
135
+ "utf8parse",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "anstyle-query"
140
+ version = "1.0.0"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
143
+ dependencies = [
144
+ "windows-sys 0.48.0",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "anstyle-wincon"
149
+ version = "3.0.7"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
152
+ dependencies = [
153
+ "anstyle",
154
+ "once_cell",
155
+ "windows-sys 0.59.0",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "anyhow"
160
+ version = "1.0.98"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
163
+
164
+ [[package]]
165
+ name = "append-only-vec"
166
+ version = "0.1.2"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "5608767d94038891df4c7bb82f6b1beb55fe3d204735985e20de329bc35d5fee"
169
+
170
+ [[package]]
171
+ name = "argfile"
172
+ version = "0.2.1"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "0a1cc0ba69de57db40674c66f7cf2caee3981ddef084388482c95c0e2133e5e8"
175
+ dependencies = [
176
+ "fs-err",
177
+ "os_str_bytes",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "arrayref"
182
+ version = "0.3.6"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
185
+
186
+ [[package]]
187
+ name = "arrayvec"
188
+ version = "0.7.6"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
191
+
192
+ [[package]]
193
+ name = "atomic"
194
+ version = "0.5.1"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
197
+ dependencies = [
198
+ "autocfg",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "attribute-derive"
203
+ version = "0.10.3"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "0053e96dd3bec5b4879c23a138d6ef26f2cb936c9cdc96274ac2b9ed44b5bb54"
206
+ dependencies = [
207
+ "attribute-derive-macro",
208
+ "derive-where",
209
+ "manyhow",
210
+ "proc-macro2",
211
+ "quote",
212
+ "syn 2.0.101",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "attribute-derive-macro"
217
+ version = "0.10.3"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "463b53ad0fd5b460af4b1915fe045ff4d946d025fb6c4dc3337752eaa980f71b"
220
+ dependencies = [
221
+ "collection_literals",
222
+ "interpolator",
223
+ "manyhow",
224
+ "proc-macro-utils",
225
+ "proc-macro2",
226
+ "quote",
227
+ "quote-use",
228
+ "syn 2.0.101",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "autocfg"
233
+ version = "1.1.0"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
236
+
237
+ [[package]]
238
+ name = "backtrace"
239
+ version = "0.3.67"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
242
+ dependencies = [
243
+ "addr2line",
244
+ "cc",
245
+ "cfg-if",
246
+ "libc",
247
+ "miniz_oxide",
248
+ "object",
249
+ "rustc-demangle",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "base64"
254
+ version = "0.22.1"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
257
+
258
+ [[package]]
259
+ name = "bitflags"
260
+ version = "1.3.2"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
263
+
264
+ [[package]]
265
+ name = "bitflags"
266
+ version = "2.9.0"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
269
+
270
+ [[package]]
271
+ name = "blake3"
272
+ version = "1.8.2"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
275
+ dependencies = [
276
+ "arrayref",
277
+ "arrayvec",
278
+ "cc",
279
+ "cfg-if",
280
+ "constant_time_eq",
281
+ "digest",
282
+ "memmap2",
283
+ "rayon-core",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "block-buffer"
288
+ version = "0.10.2"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
291
+ dependencies = [
292
+ "generic-array",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "bstr"
297
+ version = "1.12.0"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
300
+ dependencies = [
301
+ "memchr",
302
+ "regex-automata 0.4.9",
303
+ "serde",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "bumpalo"
308
+ version = "3.16.0"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
311
+
312
+ [[package]]
313
+ name = "byteorder"
314
+ version = "1.5.0"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
317
+
318
+ [[package]]
319
+ name = "bytes"
320
+ version = "1.10.1"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
323
+ dependencies = [
324
+ "serde",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "castaway"
329
+ version = "0.2.3"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
332
+ dependencies = [
333
+ "rustversion",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "cc"
338
+ version = "1.2.10"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
341
+ dependencies = [
342
+ "jobserver",
343
+ "libc",
344
+ "shlex",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "cfg-if"
349
+ version = "1.0.1"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
352
+
353
+ [[package]]
354
+ name = "chrono"
355
+ version = "0.4.41"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
358
+ dependencies = [
359
+ "android-tzdata",
360
+ "iana-time-zone",
361
+ "num-traits",
362
+ "serde",
363
+ "windows-link",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "clap"
368
+ version = "4.5.42"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "ed87a9d530bb41a67537289bafcac159cb3ee28460e0a4571123d2a778a6a882"
371
+ dependencies = [
372
+ "clap_builder",
373
+ "clap_derive",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "clap_builder"
378
+ version = "4.5.42"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "64f4f3f3c77c94aff3c7e9aac9a2ca1974a5adf392a8bb751e827d6d127ab966"
381
+ dependencies = [
382
+ "anstream",
383
+ "anstyle",
384
+ "clap_lex",
385
+ "strsim",
386
+ "terminal_size",
387
+ "unicase",
388
+ "unicode-width 0.2.1",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "clap_derive"
393
+ version = "4.5.41"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "ef4f52386a59ca4c860f7393bcf8abd8dfd91ecccc0f774635ff68e92eeef491"
396
+ dependencies = [
397
+ "heck",
398
+ "proc-macro2",
399
+ "quote",
400
+ "syn 2.0.101",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "clap_lex"
405
+ version = "0.7.4"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
408
+
409
+ [[package]]
410
+ name = "codespan-reporting"
411
+ version = "0.12.0"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
414
+ dependencies = [
415
+ "serde",
416
+ "termcolor",
417
+ "unicode-width 0.2.1",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "collection_literals"
422
+ version = "1.0.2"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "26b3f65b8fb8e88ba339f7d23a390fe1b0896217da05e2a66c584c9b29a91df8"
425
+
426
+ [[package]]
427
+ name = "colorchoice"
428
+ version = "1.0.0"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
431
+
432
+ [[package]]
433
+ name = "compact_str"
434
+ version = "0.8.0"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "6050c3a16ddab2e412160b31f2c871015704239bca62f72f6e5f0be631d3f644"
437
+ dependencies = [
438
+ "castaway",
439
+ "cfg-if",
440
+ "itoa 1.0.14",
441
+ "rustversion",
442
+ "ryu 1.0.17",
443
+ "static_assertions",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "compact_str"
448
+ version = "0.9.0"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
451
+ dependencies = [
452
+ "castaway",
453
+ "cfg-if",
454
+ "itoa 1.0.14",
455
+ "rustversion",
456
+ "ryu 1.0.17",
457
+ "static_assertions",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "configparser"
462
+ version = "3.1.0"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "e57e3272f0190c3f1584272d613719ba5fc7df7f4942fe542e63d949cf3a649b"
465
+ dependencies = [
466
+ "indexmap 2.10.0",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "console"
471
+ version = "0.15.7"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
474
+ dependencies = [
475
+ "encode_unicode",
476
+ "lazy_static",
477
+ "libc",
478
+ "unicode-width 0.1.12",
479
+ "windows-sys 0.45.0",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "const-str"
484
+ version = "0.4.3"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3"
487
+
488
+ [[package]]
489
+ name = "constant_time_eq"
490
+ version = "0.3.1"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
493
+
494
+ [[package]]
495
+ name = "convert_case"
496
+ version = "0.6.0"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
499
+ dependencies = [
500
+ "unicode-segmentation",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "core-foundation-sys"
505
+ version = "0.8.7"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
508
+
509
+ [[package]]
510
+ name = "crossbeam-channel"
511
+ version = "0.5.15"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
514
+ dependencies = [
515
+ "crossbeam-utils",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "crossbeam-deque"
520
+ version = "0.8.6"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
523
+ dependencies = [
524
+ "crossbeam-epoch",
525
+ "crossbeam-utils",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "crossbeam-epoch"
530
+ version = "0.9.18"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
533
+ dependencies = [
534
+ "crossbeam-utils",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "crossbeam-utils"
539
+ version = "0.8.21"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
542
+
543
+ [[package]]
544
+ name = "crypto-common"
545
+ version = "0.1.6"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
548
+ dependencies = [
549
+ "generic-array",
550
+ "typenum",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "ctor"
555
+ version = "0.1.26"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
558
+ dependencies = [
559
+ "quote",
560
+ "syn 1.0.109",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "cxx"
565
+ version = "1.0.160"
566
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=43f8f85eb1b9d99f10f7228ab679997c484ade69#43f8f85eb1b9d99f10f7228ab679997c484ade69"
567
+ dependencies = [
568
+ "cc",
569
+ "cxxbridge-cmd",
570
+ "cxxbridge-flags",
571
+ "cxxbridge-macro",
572
+ "foldhash",
573
+ "link-cplusplus",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "cxx-build"
578
+ version = "1.0.160"
579
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=43f8f85eb1b9d99f10f7228ab679997c484ade69#43f8f85eb1b9d99f10f7228ab679997c484ade69"
580
+ dependencies = [
581
+ "cc",
582
+ "codespan-reporting",
583
+ "indexmap 2.10.0",
584
+ "proc-macro2",
585
+ "quote",
586
+ "scratch",
587
+ "syn 2.0.101",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "cxxbridge-cmd"
592
+ version = "1.0.160"
593
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=43f8f85eb1b9d99f10f7228ab679997c484ade69#43f8f85eb1b9d99f10f7228ab679997c484ade69"
594
+ dependencies = [
595
+ "clap",
596
+ "codespan-reporting",
597
+ "indexmap 2.10.0",
598
+ "proc-macro2",
599
+ "quote",
600
+ "syn 2.0.101",
601
+ ]
602
+
603
+ [[package]]
604
+ name = "cxxbridge-flags"
605
+ version = "1.0.160"
606
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=43f8f85eb1b9d99f10f7228ab679997c484ade69#43f8f85eb1b9d99f10f7228ab679997c484ade69"
607
+
608
+ [[package]]
609
+ name = "cxxbridge-macro"
610
+ version = "1.0.160"
611
+ source = "git+https://github.com/facebookexperimental/cxx.git?rev=43f8f85eb1b9d99f10f7228ab679997c484ade69#43f8f85eb1b9d99f10f7228ab679997c484ade69"
612
+ dependencies = [
613
+ "indexmap 2.10.0",
614
+ "proc-macro2",
615
+ "quote",
616
+ "rustversion",
617
+ "syn 2.0.101",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "darling"
622
+ version = "0.20.10"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
625
+ dependencies = [
626
+ "darling_core",
627
+ "darling_macro",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "darling_core"
632
+ version = "0.20.10"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
635
+ dependencies = [
636
+ "fnv",
637
+ "ident_case",
638
+ "proc-macro2",
639
+ "quote",
640
+ "strsim",
641
+ "syn 2.0.101",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "darling_macro"
646
+ version = "0.20.10"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
649
+ dependencies = [
650
+ "darling_core",
651
+ "quote",
652
+ "syn 2.0.101",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "dashmap"
657
+ version = "5.5.3"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
660
+ dependencies = [
661
+ "cfg-if",
662
+ "hashbrown 0.14.5",
663
+ "lock_api",
664
+ "once_cell",
665
+ "parking_lot_core 0.9.9",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "deranged"
670
+ version = "0.4.1"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "28cfac68e08048ae1883171632c2aef3ebc555621ae56fbccce1cbf22dd7f058"
673
+ dependencies = [
674
+ "powerfmt",
675
+ "serde",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "derive-where"
680
+ version = "1.5.0"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "510c292c8cf384b1a340b816a9a6cf2599eb8f566a44949024af88418000c50b"
683
+ dependencies = [
684
+ "proc-macro2",
685
+ "quote",
686
+ "syn 2.0.101",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "diff"
691
+ version = "0.1.12"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
694
+
695
+ [[package]]
696
+ name = "digest"
697
+ version = "0.10.7"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
700
+ dependencies = [
701
+ "block-buffer",
702
+ "crypto-common",
703
+ "subtle",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "displaydoc"
708
+ version = "0.2.5"
709
+ source = "git+https://github.com/yaahc/displaydoc?rev=7dc6e324b1788a6b7fb9f3a1953c512923a3e9f0#7dc6e324b1788a6b7fb9f3a1953c512923a3e9f0"
710
+ dependencies = [
711
+ "proc-macro2",
712
+ "quote",
713
+ "syn 2.0.101",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "dupe"
718
+ version = "0.9.1"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "6ed2bc011db9c93fbc2b6cdb341a53737a55bafb46dbb74cf6764fc33a2fbf9c"
721
+ dependencies = [
722
+ "dupe_derive",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "dupe_derive"
727
+ version = "0.9.1"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "83e195b4945e88836d826124af44fdcb262ec01ef94d44f14f4fb5103f19892a"
730
+ dependencies = [
731
+ "proc-macro2",
732
+ "quote",
733
+ "syn 2.0.101",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "either"
738
+ version = "1.15.0"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
741
+
742
+ [[package]]
743
+ name = "encode_unicode"
744
+ version = "0.3.6"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
747
+
748
+ [[package]]
749
+ name = "enum-iterator"
750
+ version = "2.1.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "c280b9e6b3ae19e152d8e31cf47f18389781e119d4013a2a2bb0180e5facc635"
753
+ dependencies = [
754
+ "enum-iterator-derive",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "enum-iterator-derive"
759
+ version = "1.4.0"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
762
+ dependencies = [
763
+ "proc-macro2",
764
+ "quote",
765
+ "syn 2.0.101",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "env_logger"
770
+ version = "0.8.4"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
773
+ dependencies = [
774
+ "log",
775
+ "regex",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "equivalent"
780
+ version = "1.0.0"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1"
783
+
784
+ [[package]]
785
+ name = "errno"
786
+ version = "0.3.10"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
789
+ dependencies = [
790
+ "libc",
791
+ "windows-sys 0.59.0",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "fastrand"
796
+ version = "2.3.0"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
799
+
800
+ [[package]]
801
+ name = "filetime"
802
+ version = "0.2.25"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
805
+ dependencies = [
806
+ "cfg-if",
807
+ "libc",
808
+ "libredox",
809
+ "windows-sys 0.59.0",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "fnv"
814
+ version = "1.0.7"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
817
+
818
+ [[package]]
819
+ name = "foldhash"
820
+ version = "0.1.5"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
823
+
824
+ [[package]]
825
+ name = "form_urlencoded"
826
+ version = "1.2.1"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
829
+ dependencies = [
830
+ "percent-encoding",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "fs-err"
835
+ version = "2.11.0"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
838
+ dependencies = [
839
+ "autocfg",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "fsevent-sys"
844
+ version = "4.0.0"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "5c0e564d24da983c053beff1bb7178e237501206840a3e6bf4e267b9e8ae734a"
847
+ dependencies = [
848
+ "libc",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "futures"
853
+ version = "0.1.31"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
856
+
857
+ [[package]]
858
+ name = "futures"
859
+ version = "0.3.31"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
862
+ dependencies = [
863
+ "futures-channel",
864
+ "futures-core",
865
+ "futures-executor",
866
+ "futures-io",
867
+ "futures-sink",
868
+ "futures-task",
869
+ "futures-util",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "futures-channel"
874
+ version = "0.3.31"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
877
+ dependencies = [
878
+ "futures-core",
879
+ "futures-sink",
880
+ ]
881
+
882
+ [[package]]
883
+ name = "futures-core"
884
+ version = "0.3.31"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
887
+
888
+ [[package]]
889
+ name = "futures-executor"
890
+ version = "0.3.31"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
893
+ dependencies = [
894
+ "futures-core",
895
+ "futures-task",
896
+ "futures-util",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "futures-io"
901
+ version = "0.3.31"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
904
+
905
+ [[package]]
906
+ name = "futures-macro"
907
+ version = "0.3.31"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
910
+ dependencies = [
911
+ "proc-macro2",
912
+ "quote",
913
+ "syn 2.0.101",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "futures-sink"
918
+ version = "0.3.31"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
921
+
922
+ [[package]]
923
+ name = "futures-task"
924
+ version = "0.3.31"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
927
+
928
+ [[package]]
929
+ name = "futures-util"
930
+ version = "0.3.31"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
933
+ dependencies = [
934
+ "futures 0.1.31",
935
+ "futures-channel",
936
+ "futures-core",
937
+ "futures-io",
938
+ "futures-macro",
939
+ "futures-sink",
940
+ "futures-task",
941
+ "memchr",
942
+ "pin-project-lite",
943
+ "pin-utils",
944
+ "slab",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "fuzzy-matcher"
949
+ version = "0.3.7"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "54614a3312934d066701a80f20f15fa3b56d67ac7722b39eea5b4c9dd1d66c94"
952
+ dependencies = [
953
+ "thread_local",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "fxhash"
958
+ version = "0.2.1"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
961
+ dependencies = [
962
+ "byteorder",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "generic-array"
967
+ version = "0.14.7"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
970
+ dependencies = [
971
+ "typenum",
972
+ "version_check",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "get-size-derive2"
977
+ version = "0.5.1"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "1aac2af9f9a6a50e31b1e541d05b7925add83d3982c2793193fe9d4ee584323c"
980
+ dependencies = [
981
+ "attribute-derive",
982
+ "quote",
983
+ "syn 2.0.101",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "get-size2"
988
+ version = "0.5.1"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "624a0312efd19e1c45922dfcc2d6806d3ffc4bca261f89f31fcc4f63f438d885"
991
+ dependencies = [
992
+ "compact_str 0.9.0",
993
+ "get-size-derive2",
994
+ "hashbrown 0.15.2",
995
+ "smallvec",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "getopts"
1000
+ version = "0.2.21"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
1003
+ dependencies = [
1004
+ "unicode-width 0.1.12",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "getrandom"
1009
+ version = "0.2.16"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1012
+ dependencies = [
1013
+ "cfg-if",
1014
+ "js-sys",
1015
+ "libc",
1016
+ "wasi 0.11.0+wasi-snapshot-preview1",
1017
+ "wasm-bindgen",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "getrandom"
1022
+ version = "0.3.3"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
1025
+ dependencies = [
1026
+ "cfg-if",
1027
+ "libc",
1028
+ "r-efi",
1029
+ "wasi 0.14.2+wasi-0.2.4",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "gimli"
1034
+ version = "0.27.2"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
1037
+
1038
+ [[package]]
1039
+ name = "glob"
1040
+ version = "0.3.2"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1043
+
1044
+ [[package]]
1045
+ name = "globset"
1046
+ version = "0.4.15"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19"
1049
+ dependencies = [
1050
+ "aho-corasick",
1051
+ "bstr",
1052
+ "log",
1053
+ "regex-automata 0.4.9",
1054
+ "regex-syntax 0.8.5",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "hashbrown"
1059
+ version = "0.12.3"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1062
+
1063
+ [[package]]
1064
+ name = "hashbrown"
1065
+ version = "0.14.5"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1068
+ dependencies = [
1069
+ "ahash",
1070
+ "allocator-api2",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "hashbrown"
1075
+ version = "0.15.2"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1078
+
1079
+ [[package]]
1080
+ name = "heck"
1081
+ version = "0.5.0"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1084
+
1085
+ [[package]]
1086
+ name = "hermit-abi"
1087
+ version = "0.3.9"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1090
+
1091
+ [[package]]
1092
+ name = "hex"
1093
+ version = "0.4.3"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1096
+
1097
+ [[package]]
1098
+ name = "home"
1099
+ version = "0.5.11"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1102
+ dependencies = [
1103
+ "windows-sys 0.59.0",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "human_bytes"
1108
+ version = "0.4.3"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "91f255a4535024abf7640cb288260811fc14794f62b063652ed349f9a6c2348e"
1111
+
1112
+ [[package]]
1113
+ name = "iana-time-zone"
1114
+ version = "0.1.53"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
1117
+ dependencies = [
1118
+ "android_system_properties",
1119
+ "core-foundation-sys",
1120
+ "iana-time-zone-haiku",
1121
+ "js-sys",
1122
+ "wasm-bindgen",
1123
+ "winapi",
1124
+ ]
1125
+
1126
+ [[package]]
1127
+ name = "iana-time-zone-haiku"
1128
+ version = "0.1.1"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
1131
+ dependencies = [
1132
+ "cxx",
1133
+ "cxx-build",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "icu_collections"
1138
+ version = "1.5.0"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1141
+ dependencies = [
1142
+ "displaydoc",
1143
+ "yoke",
1144
+ "zerofrom",
1145
+ "zerovec",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "icu_locid"
1150
+ version = "1.5.0"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1153
+ dependencies = [
1154
+ "displaydoc",
1155
+ "litemap",
1156
+ "tinystr",
1157
+ "writeable",
1158
+ "zerovec",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "icu_locid_transform"
1163
+ version = "1.5.0"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1166
+ dependencies = [
1167
+ "displaydoc",
1168
+ "icu_locid",
1169
+ "icu_locid_transform_data",
1170
+ "icu_provider",
1171
+ "tinystr",
1172
+ "zerovec",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "icu_locid_transform_data"
1177
+ version = "1.5.0"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1180
+
1181
+ [[package]]
1182
+ name = "icu_normalizer"
1183
+ version = "1.5.0"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1186
+ dependencies = [
1187
+ "displaydoc",
1188
+ "icu_collections",
1189
+ "icu_normalizer_data",
1190
+ "icu_properties",
1191
+ "icu_provider",
1192
+ "smallvec",
1193
+ "utf16_iter",
1194
+ "utf8_iter",
1195
+ "write16",
1196
+ "zerovec",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "icu_normalizer_data"
1201
+ version = "1.5.0"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1204
+
1205
+ [[package]]
1206
+ name = "icu_properties"
1207
+ version = "1.5.1"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1210
+ dependencies = [
1211
+ "displaydoc",
1212
+ "icu_collections",
1213
+ "icu_locid_transform",
1214
+ "icu_properties_data",
1215
+ "icu_provider",
1216
+ "tinystr",
1217
+ "zerovec",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "icu_properties_data"
1222
+ version = "1.5.0"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1225
+
1226
+ [[package]]
1227
+ name = "icu_provider"
1228
+ version = "1.5.0"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1231
+ dependencies = [
1232
+ "displaydoc",
1233
+ "icu_locid",
1234
+ "icu_provider_macros",
1235
+ "stable_deref_trait",
1236
+ "tinystr",
1237
+ "writeable",
1238
+ "yoke",
1239
+ "zerofrom",
1240
+ "zerovec",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "icu_provider_macros"
1245
+ version = "1.5.0"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1248
+ dependencies = [
1249
+ "proc-macro2",
1250
+ "quote",
1251
+ "syn 2.0.101",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "ident_case"
1256
+ version = "1.0.1"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1259
+
1260
+ [[package]]
1261
+ name = "idna"
1262
+ version = "1.0.3"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1265
+ dependencies = [
1266
+ "idna_adapter",
1267
+ "smallvec",
1268
+ "utf8_iter",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "idna_adapter"
1273
+ version = "1.2.0"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1276
+ dependencies = [
1277
+ "icu_normalizer",
1278
+ "icu_properties",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "ignore"
1283
+ version = "0.4.23"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b"
1286
+ dependencies = [
1287
+ "crossbeam-deque",
1288
+ "globset",
1289
+ "log",
1290
+ "memchr",
1291
+ "regex-automata 0.4.9",
1292
+ "same-file",
1293
+ "walkdir",
1294
+ "winapi-util",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "indexmap"
1299
+ version = "1.9.2"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
1302
+ dependencies = [
1303
+ "autocfg",
1304
+ "hashbrown 0.12.3",
1305
+ "serde",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "indexmap"
1310
+ version = "2.10.0"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
1313
+ dependencies = [
1314
+ "equivalent",
1315
+ "hashbrown 0.15.2",
1316
+ "serde",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "indicatif"
1321
+ version = "0.17.9"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281"
1324
+ dependencies = [
1325
+ "console",
1326
+ "futures-core",
1327
+ "number_prefix",
1328
+ "portable-atomic",
1329
+ "rayon",
1330
+ "tokio",
1331
+ "unicode-segmentation",
1332
+ "unicode-width 0.2.1",
1333
+ "web-time",
1334
+ ]
1335
+
1336
+ [[package]]
1337
+ name = "inotify"
1338
+ version = "0.9.2"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "d19f57db1baad9d09e43a3cd76dcf82ebdafd37d75c9498b87762dba77c93f15"
1341
+ dependencies = [
1342
+ "bitflags 1.3.2",
1343
+ "inotify-sys",
1344
+ "libc",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "inotify-sys"
1349
+ version = "0.1.3"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0"
1352
+ dependencies = [
1353
+ "libc",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "instant"
1358
+ version = "0.1.12"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1361
+ dependencies = [
1362
+ "cfg-if",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "interpolator"
1367
+ version = "0.5.0"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
1370
+
1371
+ [[package]]
1372
+ name = "io-uring"
1373
+ version = "0.7.9"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
1376
+ dependencies = [
1377
+ "bitflags 2.9.0",
1378
+ "cfg-if",
1379
+ "libc",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "is-macro"
1384
+ version = "0.3.6"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "2069faacbe981460232f880d26bf3c7634e322d49053aa48c27e3ae642f728f1"
1387
+ dependencies = [
1388
+ "Inflector",
1389
+ "proc-macro2",
1390
+ "quote",
1391
+ "syn 2.0.101",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "is_terminal_polyfill"
1396
+ version = "1.70.1"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1399
+
1400
+ [[package]]
1401
+ name = "itertools"
1402
+ version = "0.10.5"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1405
+ dependencies = [
1406
+ "either",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "itertools"
1411
+ version = "0.11.0"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
1414
+ dependencies = [
1415
+ "either",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "itertools"
1420
+ version = "0.14.0"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1423
+ dependencies = [
1424
+ "either",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "itoa"
1429
+ version = "0.4.8"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1432
+
1433
+ [[package]]
1434
+ name = "itoa"
1435
+ version = "1.0.14"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1438
+
1439
+ [[package]]
1440
+ name = "jobserver"
1441
+ version = "0.1.33"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1444
+ dependencies = [
1445
+ "getrandom 0.3.3",
1446
+ "libc",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "js-sys"
1451
+ version = "0.3.77"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1454
+ dependencies = [
1455
+ "once_cell",
1456
+ "wasm-bindgen",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "kqueue"
1461
+ version = "1.0.4"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "058a107a784f8be94c7d35c1300f4facced2e93d2fbe5b1452b44e905ddca4a9"
1464
+ dependencies = [
1465
+ "kqueue-sys",
1466
+ "libc",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "kqueue-sys"
1471
+ version = "1.0.3"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587"
1474
+ dependencies = [
1475
+ "bitflags 1.3.2",
1476
+ "libc",
1477
+ ]
1478
+
1479
+ [[package]]
1480
+ name = "lazy_static"
1481
+ version = "1.5.0"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1484
+
1485
+ [[package]]
1486
+ name = "libc"
1487
+ version = "0.2.174"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
1490
+
1491
+ [[package]]
1492
+ name = "libmimalloc-sys"
1493
+ version = "0.1.42"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "ec9d6fac27761dabcd4ee73571cdb06b7022dc99089acbe5435691edffaac0f4"
1496
+ dependencies = [
1497
+ "cc",
1498
+ "libc",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "libredox"
1503
+ version = "0.1.3"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1506
+ dependencies = [
1507
+ "bitflags 2.9.0",
1508
+ "libc",
1509
+ "redox_syscall 0.5.6",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "link-cplusplus"
1514
+ version = "1.0.9"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9"
1517
+ dependencies = [
1518
+ "cc",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "linux-raw-sys"
1523
+ version = "0.4.15"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1526
+
1527
+ [[package]]
1528
+ name = "linux-raw-sys"
1529
+ version = "0.9.4"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1532
+
1533
+ [[package]]
1534
+ name = "litemap"
1535
+ version = "0.7.3"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704"
1538
+
1539
+ [[package]]
1540
+ name = "lock_api"
1541
+ version = "0.4.13"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1544
+ dependencies = [
1545
+ "autocfg",
1546
+ "scopeguard",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "lock_free_hashtable"
1551
+ version = "0.1.1"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "fc989b5e3e04411250b5d1ce0d880e5de77b36703f3012d56acb43e6ff07f31b"
1554
+ dependencies = [
1555
+ "allocative",
1556
+ "atomic",
1557
+ "parking_lot 0.12.3",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "log"
1562
+ version = "0.4.27"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1565
+
1566
+ [[package]]
1567
+ name = "lsp-server"
1568
+ version = "0.7.2"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "37ea9ae5a5082ca3b6ae824fc7666cd206b99168a4d4c769ad8fe9cc740df6a6"
1571
+ dependencies = [
1572
+ "crossbeam-channel",
1573
+ "log",
1574
+ "serde",
1575
+ "serde_json",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "lsp-types"
1580
+ version = "0.94.1"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "c66bfd44a06ae10647fe3f8214762e9369fd4248df1350924b4ef9e770a85ea1"
1583
+ dependencies = [
1584
+ "bitflags 1.3.2",
1585
+ "serde",
1586
+ "serde_json",
1587
+ "serde_repr",
1588
+ "url",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "manyhow"
1593
+ version = "0.11.4"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
1596
+ dependencies = [
1597
+ "manyhow-macros",
1598
+ "proc-macro2",
1599
+ "quote",
1600
+ "syn 2.0.101",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "manyhow-macros"
1605
+ version = "0.11.4"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
1608
+ dependencies = [
1609
+ "proc-macro-utils",
1610
+ "proc-macro2",
1611
+ "quote",
1612
+ ]
1613
+
1614
+ [[package]]
1615
+ name = "maplit"
1616
+ version = "1.0.2"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1619
+
1620
+ [[package]]
1621
+ name = "matchers"
1622
+ version = "0.1.0"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1625
+ dependencies = [
1626
+ "regex-automata 0.1.9",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "memchr"
1631
+ version = "2.7.5"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1634
+
1635
+ [[package]]
1636
+ name = "memmap2"
1637
+ version = "0.9.5"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
1640
+ dependencies = [
1641
+ "libc",
1642
+ ]
1643
+
1644
+ [[package]]
1645
+ name = "memory-stats"
1646
+ version = "1.2.0"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "c73f5c649995a115e1a0220b35e4df0a1294500477f97a91d0660fb5abeb574a"
1649
+ dependencies = [
1650
+ "libc",
1651
+ "windows-sys 0.52.0",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "mimalloc"
1656
+ version = "0.1.46"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "995942f432bbb4822a7e9c3faa87a695185b0d09273ba85f097b54f4e458f2af"
1659
+ dependencies = [
1660
+ "libmimalloc-sys",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "miniz_oxide"
1665
+ version = "0.6.2"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
1668
+ dependencies = [
1669
+ "adler",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "mio"
1674
+ version = "0.8.11"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1677
+ dependencies = [
1678
+ "libc",
1679
+ "log",
1680
+ "wasi 0.11.0+wasi-snapshot-preview1",
1681
+ "windows-sys 0.48.0",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "mio"
1686
+ version = "1.0.2"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
1689
+ dependencies = [
1690
+ "hermit-abi",
1691
+ "libc",
1692
+ "wasi 0.11.0+wasi-snapshot-preview1",
1693
+ "windows-sys 0.52.0",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "notify"
1698
+ version = "5.0.0"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "ed2c66da08abae1c024c01d635253e402341b4060a12e99b31c7594063bf490a"
1701
+ dependencies = [
1702
+ "bitflags 1.3.2",
1703
+ "crossbeam-channel",
1704
+ "filetime",
1705
+ "fsevent-sys",
1706
+ "inotify",
1707
+ "kqueue",
1708
+ "libc",
1709
+ "mio 0.8.11",
1710
+ "walkdir",
1711
+ "winapi",
1712
+ ]
1713
+
1714
+ [[package]]
1715
+ name = "nu-ansi-term"
1716
+ version = "0.46.0"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1719
+ dependencies = [
1720
+ "overload",
1721
+ "winapi",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "num-bigint"
1726
+ version = "0.4.6"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1729
+ dependencies = [
1730
+ "num-integer",
1731
+ "num-traits",
1732
+ "rand",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "num-conv"
1737
+ version = "0.1.0"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1740
+
1741
+ [[package]]
1742
+ name = "num-integer"
1743
+ version = "0.1.46"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1746
+ dependencies = [
1747
+ "num-traits",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "num-traits"
1752
+ version = "0.2.19"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1755
+ dependencies = [
1756
+ "autocfg",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "num_threads"
1761
+ version = "0.1.3"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "97ba99ba6393e2c3734791401b66902d981cb03bf190af674ca69949b6d5fb15"
1764
+ dependencies = [
1765
+ "libc",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "number_prefix"
1770
+ version = "0.4.0"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1773
+
1774
+ [[package]]
1775
+ name = "object"
1776
+ version = "0.30.4"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385"
1779
+ dependencies = [
1780
+ "memchr",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "once_cell"
1785
+ version = "1.21.3"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1788
+
1789
+ [[package]]
1790
+ name = "os_str_bytes"
1791
+ version = "7.1.1"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "63eceb7b5d757011a87d08eb2123db15d87fb0c281f65d101ce30a1e96c3ad5c"
1794
+ dependencies = [
1795
+ "memchr",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "overload"
1800
+ version = "0.1.1"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1803
+
1804
+ [[package]]
1805
+ name = "parking_lot"
1806
+ version = "0.11.2"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
1809
+ dependencies = [
1810
+ "instant",
1811
+ "lock_api",
1812
+ "parking_lot_core 0.8.5",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "parking_lot"
1817
+ version = "0.12.3"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1820
+ dependencies = [
1821
+ "lock_api",
1822
+ "parking_lot_core 0.9.9",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "parking_lot_core"
1827
+ version = "0.8.5"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
1830
+ dependencies = [
1831
+ "cfg-if",
1832
+ "instant",
1833
+ "libc",
1834
+ "redox_syscall 0.2.10",
1835
+ "smallvec",
1836
+ "winapi",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "parking_lot_core"
1841
+ version = "0.9.9"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
1844
+ dependencies = [
1845
+ "cfg-if",
1846
+ "libc",
1847
+ "redox_syscall 0.4.1",
1848
+ "smallvec",
1849
+ "windows-targets 0.48.5",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "parse-display"
1854
+ version = "0.8.2"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "c6509d08722b53e8dafe97f2027b22ccbe3a5db83cb352931e9716b0aa44bc5c"
1857
+ dependencies = [
1858
+ "once_cell",
1859
+ "parse-display-derive",
1860
+ "regex",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "parse-display-derive"
1865
+ version = "0.8.2"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "68517892c8daf78da08c0db777fcc17e07f2f63ef70041718f8a7630ad84f341"
1868
+ dependencies = [
1869
+ "once_cell",
1870
+ "proc-macro2",
1871
+ "quote",
1872
+ "regex",
1873
+ "regex-syntax 0.7.5",
1874
+ "structmeta",
1875
+ "syn 2.0.101",
1876
+ ]
1877
+
1878
+ [[package]]
1879
+ name = "paste"
1880
+ version = "1.0.15"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1883
+
1884
+ [[package]]
1885
+ name = "path-absolutize"
1886
+ version = "3.1.0"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "43eb3595c63a214e1b37b44f44b0a84900ef7ae0b4c5efce59e123d246d7a0de"
1889
+ dependencies = [
1890
+ "path-dedot",
1891
+ ]
1892
+
1893
+ [[package]]
1894
+ name = "path-dedot"
1895
+ version = "3.1.0"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "9d55e486337acb9973cdea3ec5638c1b3bcb22e573b2b7b41969e0c744d5a15e"
1898
+ dependencies = [
1899
+ "once_cell",
1900
+ ]
1901
+
1902
+ [[package]]
1903
+ name = "percent-encoding"
1904
+ version = "2.3.1"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1907
+
1908
+ [[package]]
1909
+ name = "phf"
1910
+ version = "0.11.3"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1913
+ dependencies = [
1914
+ "phf_shared",
1915
+ ]
1916
+
1917
+ [[package]]
1918
+ name = "phf_codegen"
1919
+ version = "0.11.2"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
1922
+ dependencies = [
1923
+ "phf_generator",
1924
+ "phf_shared",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "phf_generator"
1929
+ version = "0.11.1"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
1932
+ dependencies = [
1933
+ "phf_shared",
1934
+ "rand",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "phf_shared"
1939
+ version = "0.11.3"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1942
+ dependencies = [
1943
+ "siphasher",
1944
+ ]
1945
+
1946
+ [[package]]
1947
+ name = "pin-project-lite"
1948
+ version = "0.2.15"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
1951
+
1952
+ [[package]]
1953
+ name = "pin-utils"
1954
+ version = "0.1.0"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1957
+
1958
+ [[package]]
1959
+ name = "pkg-config"
1960
+ version = "0.3.32"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1963
+
1964
+ [[package]]
1965
+ name = "portable-atomic"
1966
+ version = "1.11.0"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
1969
+
1970
+ [[package]]
1971
+ name = "powerfmt"
1972
+ version = "0.2.0"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1975
+
1976
+ [[package]]
1977
+ name = "ppv-lite86"
1978
+ version = "0.2.21"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1981
+ dependencies = [
1982
+ "zerocopy 0.8.25",
1983
+ ]
1984
+
1985
+ [[package]]
1986
+ name = "pretty_assertions"
1987
+ version = "1.4.0"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
1990
+ dependencies = [
1991
+ "diff",
1992
+ "yansi 0.5.1",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "proc-macro-utils"
1997
+ version = "0.10.0"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
2000
+ dependencies = [
2001
+ "proc-macro2",
2002
+ "quote",
2003
+ "smallvec",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "proc-macro2"
2008
+ version = "1.0.95"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2011
+ dependencies = [
2012
+ "unicode-ident",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "prost"
2017
+ version = "0.11.9"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
2020
+ dependencies = [
2021
+ "bytes",
2022
+ "prost-derive",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "prost-derive"
2027
+ version = "0.11.9"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
2030
+ dependencies = [
2031
+ "anyhow",
2032
+ "itertools 0.10.5",
2033
+ "proc-macro2",
2034
+ "quote",
2035
+ "syn 1.0.109",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "prost-types"
2040
+ version = "0.11.9"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
2043
+ dependencies = [
2044
+ "prost",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "pulldown-cmark"
2049
+ version = "0.9.1"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "34f197a544b0c9ab3ae46c359a7ec9cbbb5c7bf97054266fecb7ead794a181d6"
2052
+ dependencies = [
2053
+ "bitflags 1.3.2",
2054
+ "getopts",
2055
+ "memchr",
2056
+ "unicase",
2057
+ ]
2058
+
2059
+ [[package]]
2060
+ name = "pyrefly"
2061
+ version = "0.29.1"
2062
+ dependencies = [
2063
+ "anstream",
2064
+ "anyhow",
2065
+ "blake3",
2066
+ "clap",
2067
+ "crossbeam-channel",
2068
+ "dupe",
2069
+ "enum-iterator",
2070
+ "fuzzy-matcher",
2071
+ "indicatif",
2072
+ "itertools 0.14.0",
2073
+ "lsp-server",
2074
+ "lsp-types",
2075
+ "mimalloc",
2076
+ "num-traits",
2077
+ "parse-display",
2078
+ "paste",
2079
+ "pretty_assertions",
2080
+ "pyrefly_bundled",
2081
+ "pyrefly_config",
2082
+ "pyrefly_derive",
2083
+ "pyrefly_python",
2084
+ "pyrefly_types",
2085
+ "pyrefly_util",
2086
+ "rayon",
2087
+ "regex",
2088
+ "ruff_annotate_snippets",
2089
+ "ruff_python_ast",
2090
+ "ruff_python_parser",
2091
+ "ruff_source_file",
2092
+ "ruff_text_size",
2093
+ "serde",
2094
+ "serde_json",
2095
+ "serde_repr",
2096
+ "starlark_map",
2097
+ "static_assertions",
2098
+ "tempfile",
2099
+ "tikv-jemallocator",
2100
+ "tokio",
2101
+ "toml",
2102
+ "tracing",
2103
+ "vec1",
2104
+ "yansi 1.0.1",
2105
+ ]
2106
+
2107
+ [[package]]
2108
+ name = "pyrefly_bundled"
2109
+ version = "0.29.1"
2110
+ dependencies = [
2111
+ "anyhow",
2112
+ "starlark_map",
2113
+ "tar",
2114
+ "zstd",
2115
+ ]
2116
+
2117
+ [[package]]
2118
+ name = "pyrefly_config"
2119
+ version = "0.29.1"
2120
+ dependencies = [
2121
+ "anyhow",
2122
+ "clap",
2123
+ "configparser",
2124
+ "convert_case",
2125
+ "dupe",
2126
+ "enum-iterator",
2127
+ "itertools 0.14.0",
2128
+ "parse-display",
2129
+ "pretty_assertions",
2130
+ "pulldown-cmark",
2131
+ "pyrefly_python",
2132
+ "pyrefly_util",
2133
+ "regex",
2134
+ "regex-syntax 0.7.5",
2135
+ "serde",
2136
+ "serde_json",
2137
+ "serde_jsonrc",
2138
+ "serde_with",
2139
+ "starlark_map",
2140
+ "tempfile",
2141
+ "thiserror 2.0.12",
2142
+ "toml",
2143
+ "toml_edit",
2144
+ "tracing",
2145
+ "walkdir",
2146
+ "which",
2147
+ "yansi 1.0.1",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "pyrefly_derive"
2152
+ version = "0.29.1"
2153
+ dependencies = [
2154
+ "proc-macro2",
2155
+ "quote",
2156
+ "syn 2.0.101",
2157
+ ]
2158
+
2159
+ [[package]]
2160
+ name = "pyrefly_python"
2161
+ version = "0.29.1"
2162
+ dependencies = [
2163
+ "anyhow",
2164
+ "dupe",
2165
+ "equivalent",
2166
+ "itertools 0.14.0",
2167
+ "lsp-types",
2168
+ "parse-display",
2169
+ "pyrefly_util",
2170
+ "regex",
2171
+ "ruff_python_ast",
2172
+ "ruff_python_parser",
2173
+ "ruff_text_size",
2174
+ "serde",
2175
+ "starlark_map",
2176
+ "static_interner",
2177
+ "thiserror 2.0.12",
2178
+ "toml",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "pyrefly_types"
2183
+ version = "0.29.1"
2184
+ dependencies = [
2185
+ "compact_str 0.8.0",
2186
+ "dupe",
2187
+ "itertools 0.14.0",
2188
+ "num-bigint",
2189
+ "num-traits",
2190
+ "parse-display",
2191
+ "pyrefly_derive",
2192
+ "pyrefly_python",
2193
+ "pyrefly_util",
2194
+ "ruff_python_ast",
2195
+ "ruff_text_size",
2196
+ "starlark_map",
2197
+ "static_assertions",
2198
+ "vec1",
2199
+ ]
2200
+
2201
+ [[package]]
2202
+ name = "pyrefly_util"
2203
+ version = "0.29.1"
2204
+ dependencies = [
2205
+ "anstream",
2206
+ "anyhow",
2207
+ "append-only-vec",
2208
+ "argfile",
2209
+ "bstr",
2210
+ "compact_str 0.8.0",
2211
+ "const-str",
2212
+ "dupe",
2213
+ "equivalent",
2214
+ "glob",
2215
+ "human_bytes",
2216
+ "ignore",
2217
+ "itertools 0.14.0",
2218
+ "lock_free_hashtable",
2219
+ "lsp-types",
2220
+ "memory-stats",
2221
+ "notify",
2222
+ "parse-display",
2223
+ "path-absolutize",
2224
+ "pyrefly_derive",
2225
+ "rayon",
2226
+ "ruff_python_ast",
2227
+ "ruff_source_file",
2228
+ "ruff_text_size",
2229
+ "serde",
2230
+ "serde_json",
2231
+ "starlark_map",
2232
+ "static_assertions",
2233
+ "tempfile",
2234
+ "tracing",
2235
+ "tracing-subscriber",
2236
+ "vec1",
2237
+ "watchman_client",
2238
+ "yansi 1.0.1",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "pyrefly_wasm"
2243
+ version = "0.0.0"
2244
+ dependencies = [
2245
+ "dupe",
2246
+ "getrandom 0.2.16",
2247
+ "pyrefly",
2248
+ "serde",
2249
+ "serde-wasm-bindgen",
2250
+ "starlark_map",
2251
+ "tar",
2252
+ "wasm-bindgen",
2253
+ "zstd",
2254
+ ]
2255
+
2256
+ [[package]]
2257
+ name = "quickcheck"
2258
+ version = "1.0.3"
2259
+ source = "git+https://github.com/jakoschiko/quickcheck?rev=6ecdf5bb4b0132ce66670b4d46453aa022ea892c#6ecdf5bb4b0132ce66670b4d46453aa022ea892c"
2260
+ dependencies = [
2261
+ "env_logger",
2262
+ "log",
2263
+ "rand",
2264
+ ]
2265
+
2266
+ [[package]]
2267
+ name = "quote"
2268
+ version = "1.0.40"
2269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2270
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2271
+ dependencies = [
2272
+ "proc-macro2",
2273
+ ]
2274
+
2275
+ [[package]]
2276
+ name = "quote-use"
2277
+ version = "0.8.4"
2278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2279
+ checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
2280
+ dependencies = [
2281
+ "quote",
2282
+ "quote-use-macros",
2283
+ ]
2284
+
2285
+ [[package]]
2286
+ name = "quote-use-macros"
2287
+ version = "0.8.4"
2288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2289
+ checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
2290
+ dependencies = [
2291
+ "proc-macro-utils",
2292
+ "proc-macro2",
2293
+ "quote",
2294
+ "syn 2.0.101",
2295
+ ]
2296
+
2297
+ [[package]]
2298
+ name = "r-efi"
2299
+ version = "5.2.0"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2302
+
2303
+ [[package]]
2304
+ name = "rand"
2305
+ version = "0.8.5"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2308
+ dependencies = [
2309
+ "libc",
2310
+ "rand_chacha",
2311
+ "rand_core",
2312
+ ]
2313
+
2314
+ [[package]]
2315
+ name = "rand_chacha"
2316
+ version = "0.3.1"
2317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2319
+ dependencies = [
2320
+ "ppv-lite86",
2321
+ "rand_core",
2322
+ ]
2323
+
2324
+ [[package]]
2325
+ name = "rand_core"
2326
+ version = "0.6.4"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2329
+ dependencies = [
2330
+ "getrandom 0.2.16",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "rayon"
2335
+ version = "1.10.0"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2338
+ dependencies = [
2339
+ "either",
2340
+ "rayon-core",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "rayon-core"
2345
+ version = "1.12.1"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2348
+ dependencies = [
2349
+ "crossbeam-deque",
2350
+ "crossbeam-utils",
2351
+ ]
2352
+
2353
+ [[package]]
2354
+ name = "redox_syscall"
2355
+ version = "0.2.10"
2356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2357
+ checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
2358
+ dependencies = [
2359
+ "bitflags 1.3.2",
2360
+ ]
2361
+
2362
+ [[package]]
2363
+ name = "redox_syscall"
2364
+ version = "0.4.1"
2365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2366
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
2367
+ dependencies = [
2368
+ "bitflags 1.3.2",
2369
+ ]
2370
+
2371
+ [[package]]
2372
+ name = "redox_syscall"
2373
+ version = "0.5.6"
2374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2375
+ checksum = "355ae415ccd3a04315d3f8246e86d67689ea74d88d915576e1589a351062a13b"
2376
+ dependencies = [
2377
+ "bitflags 2.9.0",
2378
+ ]
2379
+
2380
+ [[package]]
2381
+ name = "regex"
2382
+ version = "1.11.1"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2385
+ dependencies = [
2386
+ "aho-corasick",
2387
+ "memchr",
2388
+ "regex-automata 0.4.9",
2389
+ "regex-syntax 0.8.5",
2390
+ ]
2391
+
2392
+ [[package]]
2393
+ name = "regex-automata"
2394
+ version = "0.1.9"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4"
2397
+ dependencies = [
2398
+ "byteorder",
2399
+ "regex-syntax 0.6.27",
2400
+ ]
2401
+
2402
+ [[package]]
2403
+ name = "regex-automata"
2404
+ version = "0.4.9"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2407
+ dependencies = [
2408
+ "aho-corasick",
2409
+ "memchr",
2410
+ "regex-syntax 0.8.5",
2411
+ ]
2412
+
2413
+ [[package]]
2414
+ name = "regex-syntax"
2415
+ version = "0.6.27"
2416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+ checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2418
+
2419
+ [[package]]
2420
+ name = "regex-syntax"
2421
+ version = "0.7.5"
2422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2423
+ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
2424
+
2425
+ [[package]]
2426
+ name = "regex-syntax"
2427
+ version = "0.8.5"
2428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2429
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2430
+
2431
+ [[package]]
2432
+ name = "relative-path"
2433
+ version = "1.9.3"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2436
+
2437
+ [[package]]
2438
+ name = "ruff_annotate_snippets"
2439
+ version = "0.1.0"
2440
+ source = "git+https://github.com/astral-sh/ruff/?rev=9bee8376a17401f9736b45fdefffb62edc2f1668#9bee8376a17401f9736b45fdefffb62edc2f1668"
2441
+ dependencies = [
2442
+ "anstyle",
2443
+ "memchr",
2444
+ "unicode-width 0.2.1",
2445
+ ]
2446
+
2447
+ [[package]]
2448
+ name = "ruff_python_ast"
2449
+ version = "0.0.0"
2450
+ source = "git+https://github.com/astral-sh/ruff/?rev=9bee8376a17401f9736b45fdefffb62edc2f1668#9bee8376a17401f9736b45fdefffb62edc2f1668"
2451
+ dependencies = [
2452
+ "aho-corasick",
2453
+ "bitflags 2.9.0",
2454
+ "compact_str 0.9.0",
2455
+ "get-size2",
2456
+ "is-macro",
2457
+ "itertools 0.14.0",
2458
+ "memchr",
2459
+ "ruff_python_trivia",
2460
+ "ruff_source_file",
2461
+ "ruff_text_size",
2462
+ "rustc-hash",
2463
+ "thiserror 2.0.12",
2464
+ ]
2465
+
2466
+ [[package]]
2467
+ name = "ruff_python_parser"
2468
+ version = "0.0.0"
2469
+ source = "git+https://github.com/astral-sh/ruff/?rev=9bee8376a17401f9736b45fdefffb62edc2f1668#9bee8376a17401f9736b45fdefffb62edc2f1668"
2470
+ dependencies = [
2471
+ "bitflags 2.9.0",
2472
+ "bstr",
2473
+ "compact_str 0.9.0",
2474
+ "get-size2",
2475
+ "memchr",
2476
+ "ruff_python_ast",
2477
+ "ruff_python_trivia",
2478
+ "ruff_text_size",
2479
+ "rustc-hash",
2480
+ "static_assertions",
2481
+ "unicode-ident",
2482
+ "unicode-normalization",
2483
+ "unicode_names2",
2484
+ ]
2485
+
2486
+ [[package]]
2487
+ name = "ruff_python_trivia"
2488
+ version = "0.0.0"
2489
+ source = "git+https://github.com/astral-sh/ruff/?rev=9bee8376a17401f9736b45fdefffb62edc2f1668#9bee8376a17401f9736b45fdefffb62edc2f1668"
2490
+ dependencies = [
2491
+ "itertools 0.14.0",
2492
+ "ruff_source_file",
2493
+ "ruff_text_size",
2494
+ "unicode-ident",
2495
+ ]
2496
+
2497
+ [[package]]
2498
+ name = "ruff_source_file"
2499
+ version = "0.0.0"
2500
+ source = "git+https://github.com/astral-sh/ruff/?rev=9bee8376a17401f9736b45fdefffb62edc2f1668#9bee8376a17401f9736b45fdefffb62edc2f1668"
2501
+ dependencies = [
2502
+ "memchr",
2503
+ "ruff_text_size",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "ruff_text_size"
2508
+ version = "0.0.0"
2509
+ source = "git+https://github.com/astral-sh/ruff/?rev=9bee8376a17401f9736b45fdefffb62edc2f1668#9bee8376a17401f9736b45fdefffb62edc2f1668"
2510
+ dependencies = [
2511
+ "get-size2",
2512
+ ]
2513
+
2514
+ [[package]]
2515
+ name = "rustc-demangle"
2516
+ version = "0.1.25"
2517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2518
+ checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
2519
+
2520
+ [[package]]
2521
+ name = "rustc-hash"
2522
+ version = "2.1.1"
2523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2524
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2525
+
2526
+ [[package]]
2527
+ name = "rustix"
2528
+ version = "0.38.44"
2529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2530
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2531
+ dependencies = [
2532
+ "bitflags 2.9.0",
2533
+ "errno",
2534
+ "libc",
2535
+ "linux-raw-sys 0.4.15",
2536
+ "windows-sys 0.59.0",
2537
+ ]
2538
+
2539
+ [[package]]
2540
+ name = "rustix"
2541
+ version = "1.0.8"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
2544
+ dependencies = [
2545
+ "bitflags 2.9.0",
2546
+ "errno",
2547
+ "libc",
2548
+ "linux-raw-sys 0.9.4",
2549
+ "windows-sys 0.60.2",
2550
+ ]
2551
+
2552
+ [[package]]
2553
+ name = "rustversion"
2554
+ version = "1.0.14"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2557
+
2558
+ [[package]]
2559
+ name = "ryu"
2560
+ version = "0.2.8"
2561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2562
+ checksum = "b96a9549dc8d48f2c283938303c4b5a77aa29bfbc5b54b084fb1630408899a8f"
2563
+
2564
+ [[package]]
2565
+ name = "ryu"
2566
+ version = "1.0.17"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
2569
+
2570
+ [[package]]
2571
+ name = "same-file"
2572
+ version = "1.0.6"
2573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2574
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2575
+ dependencies = [
2576
+ "winapi-util",
2577
+ ]
2578
+
2579
+ [[package]]
2580
+ name = "scopeguard"
2581
+ version = "1.2.0"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2584
+
2585
+ [[package]]
2586
+ name = "scratch"
2587
+ version = "1.0.6"
2588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2589
+ checksum = "764cad9e7e1ca5fe15b552859ff5d96a314e6ed2934f2260168cd5dfa5891409"
2590
+
2591
+ [[package]]
2592
+ name = "serde"
2593
+ version = "1.0.219"
2594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2595
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2596
+ dependencies = [
2597
+ "serde_derive",
2598
+ ]
2599
+
2600
+ [[package]]
2601
+ name = "serde-wasm-bindgen"
2602
+ version = "0.6.5"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
2605
+ dependencies = [
2606
+ "js-sys",
2607
+ "serde",
2608
+ "wasm-bindgen",
2609
+ ]
2610
+
2611
+ [[package]]
2612
+ name = "serde_bser"
2613
+ version = "0.4.0"
2614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2615
+ checksum = "a56b4bcc15e42e5b5ae16c6f75582bef80d36c6ffe2c03b1b5317754b38f8717"
2616
+ dependencies = [
2617
+ "anyhow",
2618
+ "byteorder",
2619
+ "bytes",
2620
+ "serde",
2621
+ "serde_bytes",
2622
+ "thiserror 1.0.69",
2623
+ ]
2624
+
2625
+ [[package]]
2626
+ name = "serde_bytes"
2627
+ version = "0.11.17"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96"
2630
+ dependencies = [
2631
+ "serde",
2632
+ ]
2633
+
2634
+ [[package]]
2635
+ name = "serde_derive"
2636
+ version = "1.0.219"
2637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2638
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2639
+ dependencies = [
2640
+ "proc-macro2",
2641
+ "quote",
2642
+ "syn 2.0.101",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "serde_json"
2647
+ version = "1.0.140"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
2650
+ dependencies = [
2651
+ "itoa 1.0.14",
2652
+ "memchr",
2653
+ "ryu 1.0.17",
2654
+ "serde",
2655
+ ]
2656
+
2657
+ [[package]]
2658
+ name = "serde_jsonrc"
2659
+ version = "0.1.0"
2660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2661
+ checksum = "b591e90bcce7185aa4f8c775c504456586ae0f7df49a4087a1ee4179d402b8a8"
2662
+ dependencies = [
2663
+ "itoa 0.4.8",
2664
+ "ryu 0.2.8",
2665
+ "serde",
2666
+ ]
2667
+
2668
+ [[package]]
2669
+ name = "serde_repr"
2670
+ version = "0.1.19"
2671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2672
+ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
2673
+ dependencies = [
2674
+ "proc-macro2",
2675
+ "quote",
2676
+ "syn 2.0.101",
2677
+ ]
2678
+
2679
+ [[package]]
2680
+ name = "serde_spanned"
2681
+ version = "1.0.0"
2682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2683
+ checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83"
2684
+ dependencies = [
2685
+ "serde",
2686
+ ]
2687
+
2688
+ [[package]]
2689
+ name = "serde_with"
2690
+ version = "3.12.0"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
2693
+ dependencies = [
2694
+ "base64",
2695
+ "chrono",
2696
+ "hex",
2697
+ "indexmap 1.9.2",
2698
+ "indexmap 2.10.0",
2699
+ "serde",
2700
+ "serde_derive",
2701
+ "serde_json",
2702
+ "serde_with_macros",
2703
+ "time",
2704
+ ]
2705
+
2706
+ [[package]]
2707
+ name = "serde_with_macros"
2708
+ version = "3.12.0"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
2711
+ dependencies = [
2712
+ "darling",
2713
+ "proc-macro2",
2714
+ "quote",
2715
+ "syn 2.0.101",
2716
+ ]
2717
+
2718
+ [[package]]
2719
+ name = "sharded-slab"
2720
+ version = "0.1.4"
2721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2722
+ checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
2723
+ dependencies = [
2724
+ "lazy_static",
2725
+ ]
2726
+
2727
+ [[package]]
2728
+ name = "shlex"
2729
+ version = "1.3.0"
2730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2731
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2732
+
2733
+ [[package]]
2734
+ name = "signal-hook-registry"
2735
+ version = "1.4.5"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
2738
+ dependencies = [
2739
+ "libc",
2740
+ ]
2741
+
2742
+ [[package]]
2743
+ name = "siphasher"
2744
+ version = "1.0.1"
2745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2746
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2747
+
2748
+ [[package]]
2749
+ name = "slab"
2750
+ version = "0.4.9"
2751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2752
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2753
+ dependencies = [
2754
+ "autocfg",
2755
+ ]
2756
+
2757
+ [[package]]
2758
+ name = "smallvec"
2759
+ version = "1.15.0"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2762
+
2763
+ [[package]]
2764
+ name = "socket2"
2765
+ version = "0.5.8"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
2768
+ dependencies = [
2769
+ "libc",
2770
+ "windows-sys 0.52.0",
2771
+ ]
2772
+
2773
+ [[package]]
2774
+ name = "sorted_vector_map"
2775
+ version = "0.2.0"
2776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2777
+ checksum = "d9167648c2ababdbe45294fe7f7b0ab56555fd754990a7637a5a420774461368"
2778
+ dependencies = [
2779
+ "itertools 0.11.0",
2780
+ "quickcheck",
2781
+ ]
2782
+
2783
+ [[package]]
2784
+ name = "stable_deref_trait"
2785
+ version = "1.2.0"
2786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2787
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2788
+
2789
+ [[package]]
2790
+ name = "starlark_map"
2791
+ version = "0.13.0"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "92659970f120df0cc1c0bb220b33587b7a9a90e80d4eecc5c5af5debb950173d"
2794
+ dependencies = [
2795
+ "allocative",
2796
+ "dupe",
2797
+ "equivalent",
2798
+ "fxhash",
2799
+ "hashbrown 0.14.5",
2800
+ "serde",
2801
+ ]
2802
+
2803
+ [[package]]
2804
+ name = "static_assertions"
2805
+ version = "1.1.0"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2808
+
2809
+ [[package]]
2810
+ name = "static_interner"
2811
+ version = "0.1.1"
2812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2813
+ checksum = "a18cca271f002300361200bfd4d681fae4a68744817cfee6a084ce13fc23cfa7"
2814
+ dependencies = [
2815
+ "allocative",
2816
+ "dupe",
2817
+ "equivalent",
2818
+ "lock_free_hashtable",
2819
+ ]
2820
+
2821
+ [[package]]
2822
+ name = "strsim"
2823
+ version = "0.11.1"
2824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2825
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2826
+
2827
+ [[package]]
2828
+ name = "structmeta"
2829
+ version = "0.2.0"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "78ad9e09554f0456d67a69c1584c9798ba733a5b50349a6c0d0948710523922d"
2832
+ dependencies = [
2833
+ "proc-macro2",
2834
+ "quote",
2835
+ "structmeta-derive",
2836
+ "syn 2.0.101",
2837
+ ]
2838
+
2839
+ [[package]]
2840
+ name = "structmeta-derive"
2841
+ version = "0.2.0"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
2844
+ dependencies = [
2845
+ "proc-macro2",
2846
+ "quote",
2847
+ "syn 2.0.101",
2848
+ ]
2849
+
2850
+ [[package]]
2851
+ name = "subtle"
2852
+ version = "2.6.1"
2853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2854
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2855
+
2856
+ [[package]]
2857
+ name = "syn"
2858
+ version = "1.0.109"
2859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2860
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2861
+ dependencies = [
2862
+ "proc-macro2",
2863
+ "quote",
2864
+ "unicode-ident",
2865
+ ]
2866
+
2867
+ [[package]]
2868
+ name = "syn"
2869
+ version = "2.0.101"
2870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2871
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
2872
+ dependencies = [
2873
+ "proc-macro2",
2874
+ "quote",
2875
+ "unicode-ident",
2876
+ ]
2877
+
2878
+ [[package]]
2879
+ name = "synstructure"
2880
+ version = "0.13.2"
2881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2882
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2883
+ dependencies = [
2884
+ "proc-macro2",
2885
+ "quote",
2886
+ "syn 2.0.101",
2887
+ ]
2888
+
2889
+ [[package]]
2890
+ name = "tar"
2891
+ version = "0.4.44"
2892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2893
+ checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
2894
+ dependencies = [
2895
+ "filetime",
2896
+ "libc",
2897
+ "xattr",
2898
+ ]
2899
+
2900
+ [[package]]
2901
+ name = "tempfile"
2902
+ version = "3.20.0"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
2905
+ dependencies = [
2906
+ "fastrand",
2907
+ "getrandom 0.3.3",
2908
+ "once_cell",
2909
+ "rustix 1.0.8",
2910
+ "windows-sys 0.59.0",
2911
+ ]
2912
+
2913
+ [[package]]
2914
+ name = "termcolor"
2915
+ version = "1.4.1"
2916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2917
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2918
+ dependencies = [
2919
+ "winapi-util",
2920
+ ]
2921
+
2922
+ [[package]]
2923
+ name = "terminal_size"
2924
+ version = "0.4.2"
2925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2926
+ checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed"
2927
+ dependencies = [
2928
+ "rustix 1.0.8",
2929
+ "windows-sys 0.59.0",
2930
+ ]
2931
+
2932
+ [[package]]
2933
+ name = "thiserror"
2934
+ version = "1.0.69"
2935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2936
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2937
+ dependencies = [
2938
+ "thiserror-impl 1.0.69",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "thiserror"
2943
+ version = "2.0.12"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
2946
+ dependencies = [
2947
+ "thiserror-impl 2.0.12",
2948
+ ]
2949
+
2950
+ [[package]]
2951
+ name = "thiserror-impl"
2952
+ version = "1.0.69"
2953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2954
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2955
+ dependencies = [
2956
+ "proc-macro2",
2957
+ "quote",
2958
+ "syn 2.0.101",
2959
+ ]
2960
+
2961
+ [[package]]
2962
+ name = "thiserror-impl"
2963
+ version = "2.0.12"
2964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2965
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2966
+ dependencies = [
2967
+ "proc-macro2",
2968
+ "quote",
2969
+ "syn 2.0.101",
2970
+ ]
2971
+
2972
+ [[package]]
2973
+ name = "thread_local"
2974
+ version = "1.1.4"
2975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
+ checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2977
+ dependencies = [
2978
+ "once_cell",
2979
+ ]
2980
+
2981
+ [[package]]
2982
+ name = "tikv-jemalloc-sys"
2983
+ version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
2984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2985
+ checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d"
2986
+ dependencies = [
2987
+ "cc",
2988
+ "libc",
2989
+ ]
2990
+
2991
+ [[package]]
2992
+ name = "tikv-jemallocator"
2993
+ version = "0.6.0"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865"
2996
+ dependencies = [
2997
+ "libc",
2998
+ "tikv-jemalloc-sys",
2999
+ ]
3000
+
3001
+ [[package]]
3002
+ name = "time"
3003
+ version = "0.3.41"
3004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3005
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
3006
+ dependencies = [
3007
+ "deranged",
3008
+ "itoa 1.0.14",
3009
+ "libc",
3010
+ "num-conv",
3011
+ "num_threads",
3012
+ "powerfmt",
3013
+ "serde",
3014
+ "time-core",
3015
+ "time-macros",
3016
+ ]
3017
+
3018
+ [[package]]
3019
+ name = "time-core"
3020
+ version = "0.1.4"
3021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3022
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
3023
+
3024
+ [[package]]
3025
+ name = "time-macros"
3026
+ version = "0.2.22"
3027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3028
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
3029
+ dependencies = [
3030
+ "num-conv",
3031
+ "time-core",
3032
+ ]
3033
+
3034
+ [[package]]
3035
+ name = "tinystr"
3036
+ version = "0.7.6"
3037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3038
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3039
+ dependencies = [
3040
+ "displaydoc",
3041
+ "zerovec",
3042
+ ]
3043
+
3044
+ [[package]]
3045
+ name = "tinyvec"
3046
+ version = "1.8.0"
3047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3048
+ checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
3049
+ dependencies = [
3050
+ "tinyvec_macros",
3051
+ ]
3052
+
3053
+ [[package]]
3054
+ name = "tinyvec_macros"
3055
+ version = "0.1.0"
3056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3057
+ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
3058
+
3059
+ [[package]]
3060
+ name = "tokio"
3061
+ version = "1.46.1"
3062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3063
+ checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
3064
+ dependencies = [
3065
+ "backtrace",
3066
+ "bytes",
3067
+ "io-uring",
3068
+ "libc",
3069
+ "mio 1.0.2",
3070
+ "parking_lot 0.12.3",
3071
+ "pin-project-lite",
3072
+ "signal-hook-registry",
3073
+ "slab",
3074
+ "socket2",
3075
+ "tokio-macros",
3076
+ "windows-sys 0.52.0",
3077
+ ]
3078
+
3079
+ [[package]]
3080
+ name = "tokio-macros"
3081
+ version = "2.5.0"
3082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3083
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3084
+ dependencies = [
3085
+ "proc-macro2",
3086
+ "quote",
3087
+ "syn 2.0.101",
3088
+ ]
3089
+
3090
+ [[package]]
3091
+ name = "tokio-util"
3092
+ version = "0.6.10"
3093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3094
+ checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
3095
+ dependencies = [
3096
+ "bytes",
3097
+ "futures-core",
3098
+ "futures-io",
3099
+ "futures-sink",
3100
+ "log",
3101
+ "pin-project-lite",
3102
+ "slab",
3103
+ "tokio",
3104
+ ]
3105
+
3106
+ [[package]]
3107
+ name = "toml"
3108
+ version = "0.9.2"
3109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3110
+ checksum = "ed0aee96c12fa71097902e0bb061a5e1ebd766a6636bb605ba401c45c1650eac"
3111
+ dependencies = [
3112
+ "indexmap 2.10.0",
3113
+ "serde",
3114
+ "serde_spanned",
3115
+ "toml_datetime",
3116
+ "toml_parser",
3117
+ "toml_writer",
3118
+ "winnow",
3119
+ ]
3120
+
3121
+ [[package]]
3122
+ name = "toml_datetime"
3123
+ version = "0.7.0"
3124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3125
+ checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3"
3126
+ dependencies = [
3127
+ "serde",
3128
+ ]
3129
+
3130
+ [[package]]
3131
+ name = "toml_edit"
3132
+ version = "0.23.1"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "b1f23a5f4511b296579b6c83e437fe85fa7ece22e3ec44e45ddb975bcf57c3dd"
3135
+ dependencies = [
3136
+ "indexmap 2.10.0",
3137
+ "serde",
3138
+ "serde_spanned",
3139
+ "toml_datetime",
3140
+ "toml_parser",
3141
+ "toml_writer",
3142
+ "winnow",
3143
+ ]
3144
+
3145
+ [[package]]
3146
+ name = "toml_parser"
3147
+ version = "1.0.1"
3148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3149
+ checksum = "97200572db069e74c512a14117b296ba0a80a30123fbbb5aa1f4a348f639ca30"
3150
+ dependencies = [
3151
+ "winnow",
3152
+ ]
3153
+
3154
+ [[package]]
3155
+ name = "toml_writer"
3156
+ version = "1.0.2"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64"
3159
+
3160
+ [[package]]
3161
+ name = "tracing"
3162
+ version = "0.1.41"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3165
+ dependencies = [
3166
+ "pin-project-lite",
3167
+ "tracing-attributes",
3168
+ "tracing-core",
3169
+ ]
3170
+
3171
+ [[package]]
3172
+ name = "tracing-attributes"
3173
+ version = "0.1.28"
3174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3175
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3176
+ dependencies = [
3177
+ "proc-macro2",
3178
+ "quote",
3179
+ "syn 2.0.101",
3180
+ ]
3181
+
3182
+ [[package]]
3183
+ name = "tracing-core"
3184
+ version = "0.1.33"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3187
+ dependencies = [
3188
+ "once_cell",
3189
+ "valuable",
3190
+ ]
3191
+
3192
+ [[package]]
3193
+ name = "tracing-log"
3194
+ version = "0.2.0"
3195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3196
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3197
+ dependencies = [
3198
+ "log",
3199
+ "once_cell",
3200
+ "tracing-core",
3201
+ ]
3202
+
3203
+ [[package]]
3204
+ name = "tracing-serde"
3205
+ version = "0.2.0"
3206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3207
+ checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
3208
+ dependencies = [
3209
+ "serde",
3210
+ "tracing-core",
3211
+ ]
3212
+
3213
+ [[package]]
3214
+ name = "tracing-subscriber"
3215
+ version = "0.3.19"
3216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3217
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
3218
+ dependencies = [
3219
+ "chrono",
3220
+ "matchers",
3221
+ "nu-ansi-term",
3222
+ "once_cell",
3223
+ "parking_lot 0.12.3",
3224
+ "regex",
3225
+ "serde",
3226
+ "serde_json",
3227
+ "sharded-slab",
3228
+ "smallvec",
3229
+ "thread_local",
3230
+ "time",
3231
+ "tracing",
3232
+ "tracing-core",
3233
+ "tracing-log",
3234
+ "tracing-serde",
3235
+ ]
3236
+
3237
+ [[package]]
3238
+ name = "triomphe"
3239
+ version = "0.1.11"
3240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3241
+ checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3"
3242
+ dependencies = [
3243
+ "serde",
3244
+ "stable_deref_trait",
3245
+ ]
3246
+
3247
+ [[package]]
3248
+ name = "typenum"
3249
+ version = "1.17.0"
3250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3251
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
3252
+
3253
+ [[package]]
3254
+ name = "unicase"
3255
+ version = "2.8.1"
3256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3257
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
3258
+
3259
+ [[package]]
3260
+ name = "unicode-ident"
3261
+ version = "1.0.16"
3262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3263
+ checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
3264
+
3265
+ [[package]]
3266
+ name = "unicode-normalization"
3267
+ version = "0.1.24"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
3270
+ dependencies = [
3271
+ "tinyvec",
3272
+ ]
3273
+
3274
+ [[package]]
3275
+ name = "unicode-segmentation"
3276
+ version = "1.12.0"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3279
+
3280
+ [[package]]
3281
+ name = "unicode-width"
3282
+ version = "0.1.12"
3283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3284
+ checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6"
3285
+
3286
+ [[package]]
3287
+ name = "unicode-width"
3288
+ version = "0.2.1"
3289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3290
+ checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
3291
+
3292
+ [[package]]
3293
+ name = "unicode_names2"
3294
+ version = "1.2.2"
3295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3296
+ checksum = "addeebf294df7922a1164f729fb27ebbbcea99cc32b3bf08afab62757f707677"
3297
+ dependencies = [
3298
+ "phf",
3299
+ "unicode_names2_generator",
3300
+ ]
3301
+
3302
+ [[package]]
3303
+ name = "unicode_names2_generator"
3304
+ version = "1.2.2"
3305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3306
+ checksum = "f444b8bba042fe3c1251ffaca35c603f2dc2ccc08d595c65a8c4f76f3e8426c0"
3307
+ dependencies = [
3308
+ "getopts",
3309
+ "log",
3310
+ "phf_codegen",
3311
+ "rand",
3312
+ ]
3313
+
3314
+ [[package]]
3315
+ name = "url"
3316
+ version = "2.5.4"
3317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3318
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3319
+ dependencies = [
3320
+ "form_urlencoded",
3321
+ "idna",
3322
+ "percent-encoding",
3323
+ "serde",
3324
+ ]
3325
+
3326
+ [[package]]
3327
+ name = "utf16_iter"
3328
+ version = "1.0.5"
3329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3330
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3331
+
3332
+ [[package]]
3333
+ name = "utf8_iter"
3334
+ version = "1.0.4"
3335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3336
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3337
+
3338
+ [[package]]
3339
+ name = "utf8parse"
3340
+ version = "0.2.1"
3341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3342
+ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
3343
+
3344
+ [[package]]
3345
+ name = "valuable"
3346
+ version = "0.1.0"
3347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3348
+ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
3349
+
3350
+ [[package]]
3351
+ name = "vec1"
3352
+ version = "1.10.1"
3353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3354
+ checksum = "2bda7c41ca331fe9a1c278a9e7ee055f4be7f5eb1c2b72f079b4ff8b5fce9d5c"
3355
+ dependencies = [
3356
+ "serde",
3357
+ ]
3358
+
3359
+ [[package]]
3360
+ name = "version_check"
3361
+ version = "0.9.5"
3362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3363
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3364
+
3365
+ [[package]]
3366
+ name = "walkdir"
3367
+ version = "2.5.0"
3368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3369
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3370
+ dependencies = [
3371
+ "same-file",
3372
+ "winapi-util",
3373
+ ]
3374
+
3375
+ [[package]]
3376
+ name = "wasi"
3377
+ version = "0.11.0+wasi-snapshot-preview1"
3378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3379
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3380
+
3381
+ [[package]]
3382
+ name = "wasi"
3383
+ version = "0.14.2+wasi-0.2.4"
3384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3385
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3386
+ dependencies = [
3387
+ "wit-bindgen-rt",
3388
+ ]
3389
+
3390
+ [[package]]
3391
+ name = "wasm-bindgen"
3392
+ version = "0.2.100"
3393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3394
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3395
+ dependencies = [
3396
+ "cfg-if",
3397
+ "once_cell",
3398
+ "rustversion",
3399
+ "wasm-bindgen-macro",
3400
+ ]
3401
+
3402
+ [[package]]
3403
+ name = "wasm-bindgen-backend"
3404
+ version = "0.2.100"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3407
+ dependencies = [
3408
+ "bumpalo",
3409
+ "log",
3410
+ "proc-macro2",
3411
+ "quote",
3412
+ "syn 2.0.101",
3413
+ "wasm-bindgen-shared",
3414
+ ]
3415
+
3416
+ [[package]]
3417
+ name = "wasm-bindgen-macro"
3418
+ version = "0.2.100"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3421
+ dependencies = [
3422
+ "quote",
3423
+ "wasm-bindgen-macro-support",
3424
+ ]
3425
+
3426
+ [[package]]
3427
+ name = "wasm-bindgen-macro-support"
3428
+ version = "0.2.100"
3429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3430
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3431
+ dependencies = [
3432
+ "proc-macro2",
3433
+ "quote",
3434
+ "syn 2.0.101",
3435
+ "wasm-bindgen-backend",
3436
+ "wasm-bindgen-shared",
3437
+ ]
3438
+
3439
+ [[package]]
3440
+ name = "wasm-bindgen-shared"
3441
+ version = "0.2.100"
3442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3443
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3444
+ dependencies = [
3445
+ "unicode-ident",
3446
+ ]
3447
+
3448
+ [[package]]
3449
+ name = "watchman_client"
3450
+ version = "0.9.0"
3451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3452
+ checksum = "88bc4c9bb443a7aae10d4fa7807bffc397805315e2305288c90c80e2f66cfb52"
3453
+ dependencies = [
3454
+ "anyhow",
3455
+ "bytes",
3456
+ "futures 0.3.31",
3457
+ "maplit",
3458
+ "serde",
3459
+ "serde_bser",
3460
+ "thiserror 1.0.69",
3461
+ "tokio",
3462
+ "tokio-util",
3463
+ "winapi",
3464
+ ]
3465
+
3466
+ [[package]]
3467
+ name = "web-time"
3468
+ version = "1.1.0"
3469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3470
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3471
+ dependencies = [
3472
+ "js-sys",
3473
+ "wasm-bindgen",
3474
+ ]
3475
+
3476
+ [[package]]
3477
+ name = "which"
3478
+ version = "4.4.2"
3479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3480
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
3481
+ dependencies = [
3482
+ "either",
3483
+ "home",
3484
+ "once_cell",
3485
+ "rustix 0.38.44",
3486
+ ]
3487
+
3488
+ [[package]]
3489
+ name = "winapi"
3490
+ version = "0.3.9"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3493
+ dependencies = [
3494
+ "winapi-i686-pc-windows-gnu",
3495
+ "winapi-x86_64-pc-windows-gnu",
3496
+ ]
3497
+
3498
+ [[package]]
3499
+ name = "winapi-i686-pc-windows-gnu"
3500
+ version = "0.4.0"
3501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3502
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3503
+
3504
+ [[package]]
3505
+ name = "winapi-util"
3506
+ version = "0.1.5"
3507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3508
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
3509
+ dependencies = [
3510
+ "winapi",
3511
+ ]
3512
+
3513
+ [[package]]
3514
+ name = "winapi-x86_64-pc-windows-gnu"
3515
+ version = "0.4.0"
3516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3517
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3518
+
3519
+ [[package]]
3520
+ name = "windows-link"
3521
+ version = "0.1.1"
3522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3523
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
3524
+
3525
+ [[package]]
3526
+ name = "windows-sys"
3527
+ version = "0.45.0"
3528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3529
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3530
+ dependencies = [
3531
+ "windows-targets 0.42.1",
3532
+ ]
3533
+
3534
+ [[package]]
3535
+ name = "windows-sys"
3536
+ version = "0.48.0"
3537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3538
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3539
+ dependencies = [
3540
+ "windows-targets 0.48.5",
3541
+ ]
3542
+
3543
+ [[package]]
3544
+ name = "windows-sys"
3545
+ version = "0.52.0"
3546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3547
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3548
+ dependencies = [
3549
+ "windows-targets 0.52.6",
3550
+ ]
3551
+
3552
+ [[package]]
3553
+ name = "windows-sys"
3554
+ version = "0.59.0"
3555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3556
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3557
+ dependencies = [
3558
+ "windows-targets 0.52.6",
3559
+ ]
3560
+
3561
+ [[package]]
3562
+ name = "windows-sys"
3563
+ version = "0.60.2"
3564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3565
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3566
+ dependencies = [
3567
+ "windows-targets 0.53.2",
3568
+ ]
3569
+
3570
+ [[package]]
3571
+ name = "windows-targets"
3572
+ version = "0.42.1"
3573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3574
+ checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
3575
+ dependencies = [
3576
+ "windows_aarch64_gnullvm 0.42.1",
3577
+ "windows_aarch64_msvc 0.42.1",
3578
+ "windows_i686_gnu 0.42.1",
3579
+ "windows_i686_msvc 0.42.1",
3580
+ "windows_x86_64_gnu 0.42.1",
3581
+ "windows_x86_64_gnullvm 0.42.1",
3582
+ "windows_x86_64_msvc 0.42.1",
3583
+ ]
3584
+
3585
+ [[package]]
3586
+ name = "windows-targets"
3587
+ version = "0.48.5"
3588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3589
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3590
+ dependencies = [
3591
+ "windows_aarch64_gnullvm 0.48.5",
3592
+ "windows_aarch64_msvc 0.48.5",
3593
+ "windows_i686_gnu 0.48.5",
3594
+ "windows_i686_msvc 0.48.5",
3595
+ "windows_x86_64_gnu 0.48.5",
3596
+ "windows_x86_64_gnullvm 0.48.5",
3597
+ "windows_x86_64_msvc 0.48.5",
3598
+ ]
3599
+
3600
+ [[package]]
3601
+ name = "windows-targets"
3602
+ version = "0.52.6"
3603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3604
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3605
+ dependencies = [
3606
+ "windows_aarch64_gnullvm 0.52.6",
3607
+ "windows_aarch64_msvc 0.52.6",
3608
+ "windows_i686_gnu 0.52.6",
3609
+ "windows_i686_gnullvm 0.52.6",
3610
+ "windows_i686_msvc 0.52.6",
3611
+ "windows_x86_64_gnu 0.52.6",
3612
+ "windows_x86_64_gnullvm 0.52.6",
3613
+ "windows_x86_64_msvc 0.52.6",
3614
+ ]
3615
+
3616
+ [[package]]
3617
+ name = "windows-targets"
3618
+ version = "0.53.2"
3619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3620
+ checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
3621
+ dependencies = [
3622
+ "windows_aarch64_gnullvm 0.53.0",
3623
+ "windows_aarch64_msvc 0.53.0",
3624
+ "windows_i686_gnu 0.53.0",
3625
+ "windows_i686_gnullvm 0.53.0",
3626
+ "windows_i686_msvc 0.53.0",
3627
+ "windows_x86_64_gnu 0.53.0",
3628
+ "windows_x86_64_gnullvm 0.53.0",
3629
+ "windows_x86_64_msvc 0.53.0",
3630
+ ]
3631
+
3632
+ [[package]]
3633
+ name = "windows_aarch64_gnullvm"
3634
+ version = "0.42.1"
3635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3636
+ checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
3637
+
3638
+ [[package]]
3639
+ name = "windows_aarch64_gnullvm"
3640
+ version = "0.48.5"
3641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3642
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3643
+
3644
+ [[package]]
3645
+ name = "windows_aarch64_gnullvm"
3646
+ version = "0.52.6"
3647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3648
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3649
+
3650
+ [[package]]
3651
+ name = "windows_aarch64_gnullvm"
3652
+ version = "0.53.0"
3653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3654
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
3655
+
3656
+ [[package]]
3657
+ name = "windows_aarch64_msvc"
3658
+ version = "0.42.1"
3659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3660
+ checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
3661
+
3662
+ [[package]]
3663
+ name = "windows_aarch64_msvc"
3664
+ version = "0.48.5"
3665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3666
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3667
+
3668
+ [[package]]
3669
+ name = "windows_aarch64_msvc"
3670
+ version = "0.52.6"
3671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3672
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3673
+
3674
+ [[package]]
3675
+ name = "windows_aarch64_msvc"
3676
+ version = "0.53.0"
3677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3678
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
3679
+
3680
+ [[package]]
3681
+ name = "windows_i686_gnu"
3682
+ version = "0.42.1"
3683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3684
+ checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
3685
+
3686
+ [[package]]
3687
+ name = "windows_i686_gnu"
3688
+ version = "0.48.5"
3689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3690
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3691
+
3692
+ [[package]]
3693
+ name = "windows_i686_gnu"
3694
+ version = "0.52.6"
3695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3696
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3697
+
3698
+ [[package]]
3699
+ name = "windows_i686_gnu"
3700
+ version = "0.53.0"
3701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3702
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
3703
+
3704
+ [[package]]
3705
+ name = "windows_i686_gnullvm"
3706
+ version = "0.52.6"
3707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3708
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3709
+
3710
+ [[package]]
3711
+ name = "windows_i686_gnullvm"
3712
+ version = "0.53.0"
3713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3714
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3715
+
3716
+ [[package]]
3717
+ name = "windows_i686_msvc"
3718
+ version = "0.42.1"
3719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3720
+ checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
3721
+
3722
+ [[package]]
3723
+ name = "windows_i686_msvc"
3724
+ version = "0.48.5"
3725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3726
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3727
+
3728
+ [[package]]
3729
+ name = "windows_i686_msvc"
3730
+ version = "0.52.6"
3731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3732
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3733
+
3734
+ [[package]]
3735
+ name = "windows_i686_msvc"
3736
+ version = "0.53.0"
3737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3738
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3739
+
3740
+ [[package]]
3741
+ name = "windows_x86_64_gnu"
3742
+ version = "0.42.1"
3743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3744
+ checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
3745
+
3746
+ [[package]]
3747
+ name = "windows_x86_64_gnu"
3748
+ version = "0.48.5"
3749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3750
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3751
+
3752
+ [[package]]
3753
+ name = "windows_x86_64_gnu"
3754
+ version = "0.52.6"
3755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3756
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3757
+
3758
+ [[package]]
3759
+ name = "windows_x86_64_gnu"
3760
+ version = "0.53.0"
3761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3762
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3763
+
3764
+ [[package]]
3765
+ name = "windows_x86_64_gnullvm"
3766
+ version = "0.42.1"
3767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3768
+ checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
3769
+
3770
+ [[package]]
3771
+ name = "windows_x86_64_gnullvm"
3772
+ version = "0.48.5"
3773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3774
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3775
+
3776
+ [[package]]
3777
+ name = "windows_x86_64_gnullvm"
3778
+ version = "0.52.6"
3779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3780
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3781
+
3782
+ [[package]]
3783
+ name = "windows_x86_64_gnullvm"
3784
+ version = "0.53.0"
3785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3786
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3787
+
3788
+ [[package]]
3789
+ name = "windows_x86_64_msvc"
3790
+ version = "0.42.1"
3791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3792
+ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
3793
+
3794
+ [[package]]
3795
+ name = "windows_x86_64_msvc"
3796
+ version = "0.48.5"
3797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3798
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3799
+
3800
+ [[package]]
3801
+ name = "windows_x86_64_msvc"
3802
+ version = "0.52.6"
3803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3804
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3805
+
3806
+ [[package]]
3807
+ name = "windows_x86_64_msvc"
3808
+ version = "0.53.0"
3809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3810
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
3811
+
3812
+ [[package]]
3813
+ name = "winnow"
3814
+ version = "0.7.10"
3815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3816
+ checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
3817
+ dependencies = [
3818
+ "memchr",
3819
+ ]
3820
+
3821
+ [[package]]
3822
+ name = "wit-bindgen-rt"
3823
+ version = "0.39.0"
3824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3825
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3826
+ dependencies = [
3827
+ "bitflags 2.9.0",
3828
+ ]
3829
+
3830
+ [[package]]
3831
+ name = "write16"
3832
+ version = "1.0.0"
3833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3834
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
3835
+
3836
+ [[package]]
3837
+ name = "writeable"
3838
+ version = "0.5.5"
3839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3840
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
3841
+
3842
+ [[package]]
3843
+ name = "xattr"
3844
+ version = "1.5.0"
3845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3846
+ checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
3847
+ dependencies = [
3848
+ "libc",
3849
+ "rustix 1.0.8",
3850
+ ]
3851
+
3852
+ [[package]]
3853
+ name = "yansi"
3854
+ version = "0.5.1"
3855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3856
+ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
3857
+
3858
+ [[package]]
3859
+ name = "yansi"
3860
+ version = "1.0.1"
3861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3862
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
3863
+
3864
+ [[package]]
3865
+ name = "yoke"
3866
+ version = "0.7.4"
3867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3868
+ checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5"
3869
+ dependencies = [
3870
+ "serde",
3871
+ "stable_deref_trait",
3872
+ "yoke-derive",
3873
+ "zerofrom",
3874
+ ]
3875
+
3876
+ [[package]]
3877
+ name = "yoke-derive"
3878
+ version = "0.7.4"
3879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3880
+ checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95"
3881
+ dependencies = [
3882
+ "proc-macro2",
3883
+ "quote",
3884
+ "syn 2.0.101",
3885
+ "synstructure",
3886
+ ]
3887
+
3888
+ [[package]]
3889
+ name = "zerocopy"
3890
+ version = "0.7.35"
3891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3892
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
3893
+ dependencies = [
3894
+ "zerocopy-derive 0.7.35",
3895
+ ]
3896
+
3897
+ [[package]]
3898
+ name = "zerocopy"
3899
+ version = "0.8.25"
3900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3901
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
3902
+ dependencies = [
3903
+ "zerocopy-derive 0.8.25",
3904
+ ]
3905
+
3906
+ [[package]]
3907
+ name = "zerocopy-derive"
3908
+ version = "0.7.35"
3909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3910
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
3911
+ dependencies = [
3912
+ "proc-macro2",
3913
+ "quote",
3914
+ "syn 2.0.101",
3915
+ ]
3916
+
3917
+ [[package]]
3918
+ name = "zerocopy-derive"
3919
+ version = "0.8.25"
3920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3921
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
3922
+ dependencies = [
3923
+ "proc-macro2",
3924
+ "quote",
3925
+ "syn 2.0.101",
3926
+ ]
3927
+
3928
+ [[package]]
3929
+ name = "zerofrom"
3930
+ version = "0.1.4"
3931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3932
+ checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55"
3933
+ dependencies = [
3934
+ "zerofrom-derive",
3935
+ ]
3936
+
3937
+ [[package]]
3938
+ name = "zerofrom-derive"
3939
+ version = "0.1.4"
3940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3941
+ checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5"
3942
+ dependencies = [
3943
+ "proc-macro2",
3944
+ "quote",
3945
+ "syn 2.0.101",
3946
+ "synstructure",
3947
+ ]
3948
+
3949
+ [[package]]
3950
+ name = "zerovec"
3951
+ version = "0.10.4"
3952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3953
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
3954
+ dependencies = [
3955
+ "yoke",
3956
+ "zerofrom",
3957
+ "zerovec-derive",
3958
+ ]
3959
+
3960
+ [[package]]
3961
+ name = "zerovec-derive"
3962
+ version = "0.10.3"
3963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3964
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
3965
+ dependencies = [
3966
+ "proc-macro2",
3967
+ "quote",
3968
+ "syn 2.0.101",
3969
+ ]
3970
+
3971
+ [[package]]
3972
+ name = "zstd"
3973
+ version = "0.13.2"
3974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3975
+ checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
3976
+ dependencies = [
3977
+ "zstd-safe",
3978
+ ]
3979
+
3980
+ [[package]]
3981
+ name = "zstd-safe"
3982
+ version = "7.2.1"
3983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3984
+ checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
3985
+ dependencies = [
3986
+ "zstd-sys",
3987
+ ]
3988
+
3989
+ [[package]]
3990
+ name = "zstd-sys"
3991
+ version = "2.0.12+zstd.1.5.6"
3992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3993
+ checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13"
3994
+ dependencies = [
3995
+ "cc",
3996
+ "pkg-config",
3997
+ ]