pyrefly 0.22.0__tar.gz → 0.22.2__tar.gz

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