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