type-python 0.0.1__tar.gz → 0.0.7__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 (912) hide show
  1. type_python-0.0.7/Cargo.lock +2554 -0
  2. type_python-0.0.7/Cargo.toml +64 -0
  3. type_python-0.0.7/MANIFEST.in +15 -0
  4. type_python-0.0.7/PKG-INFO +98 -0
  5. type_python-0.0.7/README-PyPI.md +71 -0
  6. type_python-0.0.7/README.md +199 -0
  7. type_python-0.0.7/crates/typepython_binding/Cargo.toml +16 -0
  8. type_python-0.0.7/crates/typepython_binding/src/binding_impl.rs +1072 -0
  9. type_python-0.0.7/crates/typepython_binding/src/lib.rs +14 -0
  10. type_python-0.0.7/crates/typepython_binding/src/tests.rs +3338 -0
  11. type_python-0.0.7/crates/typepython_binding/src/types.rs +853 -0
  12. type_python-0.0.7/crates/typepython_checking/Cargo.toml +27 -0
  13. type_python-0.0.7/crates/typepython_checking/benches/checker.rs +360 -0
  14. type_python-0.0.7/crates/typepython_checking/src/assignments.rs +1941 -0
  15. type_python-0.0.7/crates/typepython_checking/src/calls/call_diagnostics.rs +1677 -0
  16. type_python-0.0.7/crates/typepython_checking/src/calls/callable_resolution.rs +1425 -0
  17. type_python-0.0.7/crates/typepython_checking/src/calls/dataclass.rs +481 -0
  18. type_python-0.0.7/crates/typepython_checking/src/calls/member_access.rs +358 -0
  19. type_python-0.0.7/crates/typepython_checking/src/calls/mod.rs +7 -0
  20. type_python-0.0.7/crates/typepython_checking/src/calls/reporting.rs +579 -0
  21. type_python-0.0.7/crates/typepython_checking/src/declaration_semantics.rs +841 -0
  22. type_python-0.0.7/crates/typepython_checking/src/declarations.rs +1452 -0
  23. type_python-0.0.7/crates/typepython_checking/src/generic_solver.rs +1916 -0
  24. type_python-0.0.7/crates/typepython_checking/src/lib.rs +1264 -0
  25. type_python-0.0.7/crates/typepython_checking/src/semantic.rs +1537 -0
  26. type_python-0.0.7/crates/typepython_checking/src/stubs.rs +171 -0
  27. type_python-0.0.7/crates/typepython_checking/src/tests/advanced.rs +24461 -0
  28. type_python-0.0.7/crates/typepython_checking/src/tests/calls.rs +614 -0
  29. type_python-0.0.7/crates/typepython_checking/src/tests/mod.rs +671 -0
  30. type_python-0.0.7/crates/typepython_checking/src/tests/semantic.rs +911 -0
  31. type_python-0.0.7/crates/typepython_checking/src/tests/typed_dict.rs +546 -0
  32. type_python-0.0.7/crates/typepython_checking/src/type_core.rs +235 -0
  33. type_python-0.0.7/crates/typepython_checking/src/type_system/assignability.rs +939 -0
  34. type_python-0.0.7/crates/typepython_checking/src/type_system/contextual.rs +1333 -0
  35. type_python-0.0.7/crates/typepython_checking/src/type_system/expressions.rs +1053 -0
  36. type_python-0.0.7/crates/typepython_checking/src/type_system/flow.rs +1431 -0
  37. type_python-0.0.7/crates/typepython_checking/src/type_system/imports.rs +357 -0
  38. type_python-0.0.7/crates/typepython_checking/src/type_system/members.rs +400 -0
  39. type_python-0.0.7/crates/typepython_checking/src/type_system/mod.rs +8 -0
  40. type_python-0.0.7/crates/typepython_cli/Cargo.toml +40 -0
  41. type_python-0.0.7/crates/typepython_cli/scripts/runtime_importability.py +15 -0
  42. type_python-0.0.7/crates/typepython_cli/scripts/static_all_names.py +27 -0
  43. type_python-0.0.7/crates/typepython_cli/src/cli.rs +106 -0
  44. type_python-0.0.7/crates/typepython_cli/src/discovery.rs +136 -0
  45. type_python-0.0.7/crates/typepython_cli/src/main.rs +348 -0
  46. type_python-0.0.7/crates/typepython_cli/src/migration.rs +621 -0
  47. type_python-0.0.7/crates/typepython_cli/src/pipeline.rs +936 -0
  48. type_python-0.0.7/crates/typepython_cli/src/tests/consistency.rs +160 -0
  49. type_python-0.0.7/crates/typepython_cli/src/tests/migration.rs +171 -0
  50. type_python-0.0.7/crates/typepython_cli/src/tests/mod.rs +692 -0
  51. type_python-0.0.7/crates/typepython_cli/src/tests/pipeline.rs +518 -0
  52. type_python-0.0.7/crates/typepython_cli/src/tests/verification.rs +2485 -0
  53. type_python-0.0.7/crates/typepython_cli/src/verification.rs +1256 -0
  54. type_python-0.0.7/crates/typepython_config/Cargo.toml +17 -0
  55. type_python-0.0.7/crates/typepython_config/src/lib.rs +1662 -0
  56. type_python-0.0.7/crates/typepython_diagnostics/Cargo.toml +18 -0
  57. type_python-0.0.7/crates/typepython_diagnostics/src/lib.rs +389 -0
  58. type_python-0.0.7/crates/typepython_emit/Cargo.toml +23 -0
  59. type_python-0.0.7/crates/typepython_emit/src/lib.rs +24 -0
  60. type_python-0.0.7/crates/typepython_emit/src/planning.rs +156 -0
  61. type_python-0.0.7/crates/typepython_emit/src/runtime.rs +468 -0
  62. type_python-0.0.7/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_migration_stub.snap +19 -0
  63. type_python-0.0.7/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_inferred_shadow_stub.snap +13 -0
  64. type_python-0.0.7/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_async_function.snap +7 -0
  65. type_python-0.0.7/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_basic_module.snap +9 -0
  66. type_python-0.0.7/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_class_with_methods.snap +10 -0
  67. type_python-0.0.7/crates/typepython_emit/src/snapshots/typepython_emit__tests__snapshot_stub_overloaded_function.snap +10 -0
  68. type_python-0.0.7/crates/typepython_emit/src/stubs.rs +2346 -0
  69. type_python-0.0.7/crates/typepython_emit/src/tests.rs +952 -0
  70. type_python-0.0.7/crates/typepython_graph/Cargo.toml +23 -0
  71. type_python-0.0.7/crates/typepython_graph/benches/graph.rs +100 -0
  72. type_python-0.0.7/crates/typepython_graph/src/lib.rs +1932 -0
  73. type_python-0.0.7/crates/typepython_incremental/Cargo.toml +20 -0
  74. type_python-0.0.7/crates/typepython_incremental/src/lib.rs +1500 -0
  75. type_python-0.0.7/crates/typepython_lowering/Cargo.toml +27 -0
  76. type_python-0.0.7/crates/typepython_lowering/benches/lower.rs +87 -0
  77. type_python-0.0.7/crates/typepython_lowering/src/core.rs +1456 -0
  78. type_python-0.0.7/crates/typepython_lowering/src/lib.rs +21 -0
  79. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_combined_typepython_constructs.snap +26 -0
  80. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_imports_312.snap +13 -0
  81. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_compat_qualified_names_310.snap +12 -0
  82. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class.snap +9 -0
  83. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_data_class_with_bases.snap +8 -0
  84. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_class_and_function.snap +12 -0
  85. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_interface.snap +10 -0
  86. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_generic_typealias.snap +8 -0
  87. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface.snap +7 -0
  88. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_interface_with_bases.snap +7 -0
  89. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_lambda_annotation.snap +5 -0
  90. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_nested_unsafe_in_function.snap +7 -0
  91. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_overload_def.snap +7 -0
  92. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_paramspec.snap +10 -0
  93. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_passthrough_python_source.snap +9 -0
  94. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class.snap +6 -0
  95. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_sealed_class_with_bases.snap +6 -0
  96. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_type_param_with_bounds_constraints_defaults.snap +8 -0
  97. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typealias.snap +6 -0
  98. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_typeddict_keyword_stripping.snap +8 -0
  99. type_python-0.0.7/crates/typepython_lowering/src/snapshots/typepython_lowering__tests__snapshot_lower_unsafe_block.snap +6 -0
  100. type_python-0.0.7/crates/typepython_lowering/src/tests.rs +2437 -0
  101. type_python-0.0.7/crates/typepython_lowering/src/typeddict.rs +528 -0
  102. type_python-0.0.7/crates/typepython_lsp/Cargo.toml +36 -0
  103. type_python-0.0.7/crates/typepython_lsp/benches/incremental.rs +159 -0
  104. type_python-0.0.7/crates/typepython_lsp/src/analysis.rs +462 -0
  105. type_python-0.0.7/crates/typepython_lsp/src/formatting.rs +198 -0
  106. type_python-0.0.7/crates/typepython_lsp/src/lib.rs +277 -0
  107. type_python-0.0.7/crates/typepython_lsp/src/requests/analysis/code_actions.rs +217 -0
  108. type_python-0.0.7/crates/typepython_lsp/src/requests/analysis/mod.rs +6 -0
  109. type_python-0.0.7/crates/typepython_lsp/src/requests/analysis/symbols.rs +516 -0
  110. type_python-0.0.7/crates/typepython_lsp/src/requests/analysis/text.rs +199 -0
  111. type_python-0.0.7/crates/typepython_lsp/src/requests/analysis/typing.rs +703 -0
  112. type_python-0.0.7/crates/typepython_lsp/src/requests/mod.rs +13 -0
  113. type_python-0.0.7/crates/typepython_lsp/src/requests/protocol.rs +256 -0
  114. type_python-0.0.7/crates/typepython_lsp/src/requests/signature_help.rs +494 -0
  115. type_python-0.0.7/crates/typepython_lsp/src/requests/sources.rs +75 -0
  116. type_python-0.0.7/crates/typepython_lsp/src/requests/symbols.rs +261 -0
  117. type_python-0.0.7/crates/typepython_lsp/src/scheduler.rs +148 -0
  118. type_python-0.0.7/crates/typepython_lsp/src/server.rs +356 -0
  119. type_python-0.0.7/crates/typepython_lsp/src/tests.rs +2089 -0
  120. type_python-0.0.7/crates/typepython_lsp/src/workspace/discovery.rs +37 -0
  121. type_python-0.0.7/crates/typepython_lsp/src/workspace/lifecycle.rs +618 -0
  122. type_python-0.0.7/crates/typepython_lsp/src/workspace/mod.rs +5 -0
  123. type_python-0.0.7/crates/typepython_lsp/src/workspace/state.rs +185 -0
  124. type_python-0.0.7/crates/typepython_project/Cargo.toml +22 -0
  125. type_python-0.0.7/crates/typepython_project/src/lib.rs +1110 -0
  126. type_python-0.0.7/crates/typepython_syntax/Cargo.toml +27 -0
  127. type_python-0.0.7/crates/typepython_syntax/benches/parse.rs +116 -0
  128. type_python-0.0.7/crates/typepython_syntax/proptest-regressions/lib.txt +10 -0
  129. type_python-0.0.7/crates/typepython_syntax/src/lib.rs +18 -0
  130. type_python-0.0.7/crates/typepython_syntax/src/syntax_parts/extraction.rs +10849 -0
  131. type_python-0.0.7/crates/typepython_syntax/src/syntax_parts/formatting.rs +491 -0
  132. type_python-0.0.7/crates/typepython_syntax/src/syntax_parts/metadata_collectors.rs +2045 -0
  133. type_python-0.0.7/crates/typepython_syntax/src/syntax_parts/mod.rs +15 -0
  134. type_python-0.0.7/crates/typepython_syntax/src/syntax_parts/parsing.rs +798 -0
  135. type_python-0.0.7/crates/typepython_syntax/src/syntax_parts/surface.rs +994 -0
  136. type_python-0.0.7/crates/typepython_syntax/src/syntax_parts/type_expr.rs +400 -0
  137. type_python-0.0.7/pyproject.toml +57 -0
  138. type_python-0.0.7/rust-toolchain.toml +4 -0
  139. type_python-0.0.7/rustfmt.toml +3 -0
  140. type_python-0.0.7/setup.py +77 -0
  141. type_python-0.0.7/stdlib/VERSIONS +348 -0
  142. type_python-0.0.7/stdlib/__future__.pyi +36 -0
  143. type_python-0.0.7/stdlib/__main__.pyi +1 -0
  144. type_python-0.0.7/stdlib/_ast.pyi +145 -0
  145. type_python-0.0.7/stdlib/_asyncio.pyi +112 -0
  146. type_python-0.0.7/stdlib/_bisect.pyi +84 -0
  147. type_python-0.0.7/stdlib/_blake2.pyi +119 -0
  148. type_python-0.0.7/stdlib/_bootlocale.pyi +1 -0
  149. type_python-0.0.7/stdlib/_bz2.pyi +24 -0
  150. type_python-0.0.7/stdlib/_codecs.pyi +122 -0
  151. type_python-0.0.7/stdlib/_collections_abc.pyi +105 -0
  152. type_python-0.0.7/stdlib/_compat_pickle.pyi +10 -0
  153. type_python-0.0.7/stdlib/_compression.pyi +39 -0
  154. type_python-0.0.7/stdlib/_contextvars.pyi +64 -0
  155. type_python-0.0.7/stdlib/_csv.pyi +139 -0
  156. type_python-0.0.7/stdlib/_ctypes.pyi +367 -0
  157. type_python-0.0.7/stdlib/_curses.pyi +551 -0
  158. type_python-0.0.7/stdlib/_curses_panel.pyi +27 -0
  159. type_python-0.0.7/stdlib/_dbm.pyi +44 -0
  160. type_python-0.0.7/stdlib/_decimal.pyi +72 -0
  161. type_python-0.0.7/stdlib/_frozen_importlib.pyi +124 -0
  162. type_python-0.0.7/stdlib/_frozen_importlib_external.pyi +200 -0
  163. type_python-0.0.7/stdlib/_gdbm.pyi +48 -0
  164. type_python-0.0.7/stdlib/_hashlib.pyi +127 -0
  165. type_python-0.0.7/stdlib/_heapq.pyi +18 -0
  166. type_python-0.0.7/stdlib/_imp.pyi +30 -0
  167. type_python-0.0.7/stdlib/_interpchannels.pyi +86 -0
  168. type_python-0.0.7/stdlib/_interpqueues.pyi +19 -0
  169. type_python-0.0.7/stdlib/_interpreters.pyi +61 -0
  170. type_python-0.0.7/stdlib/_io.pyi +301 -0
  171. type_python-0.0.7/stdlib/_json.pyi +51 -0
  172. type_python-0.0.7/stdlib/_locale.pyi +121 -0
  173. type_python-0.0.7/stdlib/_lsprof.pyi +37 -0
  174. type_python-0.0.7/stdlib/_lzma.pyi +71 -0
  175. type_python-0.0.7/stdlib/_markupbase.pyi +16 -0
  176. type_python-0.0.7/stdlib/_msi.pyi +97 -0
  177. type_python-0.0.7/stdlib/_multibytecodec.pyi +49 -0
  178. type_python-0.0.7/stdlib/_operator.pyi +122 -0
  179. type_python-0.0.7/stdlib/_osx_support.pyi +34 -0
  180. type_python-0.0.7/stdlib/_pickle.pyi +107 -0
  181. type_python-0.0.7/stdlib/_posixsubprocess.pyi +59 -0
  182. type_python-0.0.7/stdlib/_py_abc.pyi +14 -0
  183. type_python-0.0.7/stdlib/_pydecimal.pyi +47 -0
  184. type_python-0.0.7/stdlib/_queue.pyi +18 -0
  185. type_python-0.0.7/stdlib/_random.pyi +18 -0
  186. type_python-0.0.7/stdlib/_sitebuiltins.pyi +17 -0
  187. type_python-0.0.7/stdlib/_socket.pyi +858 -0
  188. type_python-0.0.7/stdlib/_sqlite3.pyi +313 -0
  189. type_python-0.0.7/stdlib/_ssl.pyi +295 -0
  190. type_python-0.0.7/stdlib/_stat.pyi +119 -0
  191. type_python-0.0.7/stdlib/_struct.pyi +23 -0
  192. type_python-0.0.7/stdlib/_thread.pyi +117 -0
  193. type_python-0.0.7/stdlib/_threading_local.pyi +24 -0
  194. type_python-0.0.7/stdlib/_tkinter.pyi +144 -0
  195. type_python-0.0.7/stdlib/_tracemalloc.pyi +13 -0
  196. type_python-0.0.7/stdlib/_typeshed/__init__.pyi +393 -0
  197. type_python-0.0.7/stdlib/_typeshed/_type_checker_internals.pyi +89 -0
  198. type_python-0.0.7/stdlib/_typeshed/dbapi.pyi +37 -0
  199. type_python-0.0.7/stdlib/_typeshed/importlib.pyi +18 -0
  200. type_python-0.0.7/stdlib/_typeshed/wsgi.pyi +44 -0
  201. type_python-0.0.7/stdlib/_typeshed/xml.pyi +9 -0
  202. type_python-0.0.7/stdlib/_warnings.pyi +55 -0
  203. type_python-0.0.7/stdlib/_weakref.pyi +15 -0
  204. type_python-0.0.7/stdlib/_weakrefset.pyi +48 -0
  205. type_python-0.0.7/stdlib/_winapi.pyi +295 -0
  206. type_python-0.0.7/stdlib/_zstd.pyi +102 -0
  207. type_python-0.0.7/stdlib/abc/__init__.pyi +7 -0
  208. type_python-0.0.7/stdlib/abc.pyi +51 -0
  209. type_python-0.0.7/stdlib/aifc.pyi +79 -0
  210. type_python-0.0.7/stdlib/annotationlib.pyi +146 -0
  211. type_python-0.0.7/stdlib/antigravity.pyi +3 -0
  212. type_python-0.0.7/stdlib/argparse.pyi +856 -0
  213. type_python-0.0.7/stdlib/array.pyi +106 -0
  214. type_python-0.0.7/stdlib/ast.pyi +2099 -0
  215. type_python-0.0.7/stdlib/asynchat.pyi +21 -0
  216. type_python-0.0.7/stdlib/asyncio/__init__.pyi +1005 -0
  217. type_python-0.0.7/stdlib/asyncio/base_events.pyi +488 -0
  218. type_python-0.0.7/stdlib/asyncio/base_futures.pyi +17 -0
  219. type_python-0.0.7/stdlib/asyncio/base_subprocess.pyi +63 -0
  220. type_python-0.0.7/stdlib/asyncio/base_tasks.pyi +9 -0
  221. type_python-0.0.7/stdlib/asyncio/constants.pyi +20 -0
  222. type_python-0.0.7/stdlib/asyncio/coroutines.pyi +47 -0
  223. type_python-0.0.7/stdlib/asyncio/events.pyi +675 -0
  224. type_python-0.0.7/stdlib/asyncio/exceptions.pyi +44 -0
  225. type_python-0.0.7/stdlib/asyncio/format_helpers.pyi +32 -0
  226. type_python-0.0.7/stdlib/asyncio/futures.pyi +19 -0
  227. type_python-0.0.7/stdlib/asyncio/graph.pyi +28 -0
  228. type_python-0.0.7/stdlib/asyncio/locks.pyi +104 -0
  229. type_python-0.0.7/stdlib/asyncio/log.pyi +3 -0
  230. type_python-0.0.7/stdlib/asyncio/mixins.pyi +9 -0
  231. type_python-0.0.7/stdlib/asyncio/proactor_events.pyi +65 -0
  232. type_python-0.0.7/stdlib/asyncio/protocols.pyi +41 -0
  233. type_python-0.0.7/stdlib/asyncio/queues.pyi +55 -0
  234. type_python-0.0.7/stdlib/asyncio/runners.pyi +36 -0
  235. type_python-0.0.7/stdlib/asyncio/selector_events.pyi +10 -0
  236. type_python-0.0.7/stdlib/asyncio/sslproto.pyi +165 -0
  237. type_python-0.0.7/stdlib/asyncio/staggered.pyi +10 -0
  238. type_python-0.0.7/stdlib/asyncio/streams.pyi +159 -0
  239. type_python-0.0.7/stdlib/asyncio/subprocess.pyi +230 -0
  240. type_python-0.0.7/stdlib/asyncio/taskgroups.pyi +26 -0
  241. type_python-0.0.7/stdlib/asyncio/tasks.pyi +475 -0
  242. type_python-0.0.7/stdlib/asyncio/threads.pyi +10 -0
  243. type_python-0.0.7/stdlib/asyncio/timeouts.pyi +20 -0
  244. type_python-0.0.7/stdlib/asyncio/tools.pyi +46 -0
  245. type_python-0.0.7/stdlib/asyncio/transports.pyi +57 -0
  246. type_python-0.0.7/stdlib/asyncio/trsock.pyi +129 -0
  247. type_python-0.0.7/stdlib/asyncio/unix_events.pyi +248 -0
  248. type_python-0.0.7/stdlib/asyncio/windows_events.pyi +121 -0
  249. type_python-0.0.7/stdlib/asyncio/windows_utils.pyi +49 -0
  250. type_python-0.0.7/stdlib/asyncore.pyi +90 -0
  251. type_python-0.0.7/stdlib/atexit.pyi +12 -0
  252. type_python-0.0.7/stdlib/audioop.pyi +43 -0
  253. type_python-0.0.7/stdlib/base64.pyi +61 -0
  254. type_python-0.0.7/stdlib/bdb.pyi +130 -0
  255. type_python-0.0.7/stdlib/binascii.pyi +40 -0
  256. type_python-0.0.7/stdlib/binhex.pyi +45 -0
  257. type_python-0.0.7/stdlib/bisect.pyi +4 -0
  258. type_python-0.0.7/stdlib/builtins.pyi +2330 -0
  259. type_python-0.0.7/stdlib/bz2.pyi +119 -0
  260. type_python-0.0.7/stdlib/cProfile.pyi +31 -0
  261. type_python-0.0.7/stdlib/calendar.pyi +210 -0
  262. type_python-0.0.7/stdlib/cgi.pyi +119 -0
  263. type_python-0.0.7/stdlib/cgitb.pyi +32 -0
  264. type_python-0.0.7/stdlib/chunk.pyi +20 -0
  265. type_python-0.0.7/stdlib/cmath.pyi +36 -0
  266. type_python-0.0.7/stdlib/cmd.pyi +46 -0
  267. type_python-0.0.7/stdlib/code.pyi +54 -0
  268. type_python-0.0.7/stdlib/codecs.pyi +355 -0
  269. type_python-0.0.7/stdlib/codeop.pyi +21 -0
  270. type_python-0.0.7/stdlib/collections/__init__.pyi +511 -0
  271. type_python-0.0.7/stdlib/collections/abc.pyi +2 -0
  272. type_python-0.0.7/stdlib/colorsys.pyi +15 -0
  273. type_python-0.0.7/stdlib/compileall.pyi +88 -0
  274. type_python-0.0.7/stdlib/compression/__init__.pyi +0 -0
  275. type_python-0.0.7/stdlib/compression/_common/__init__.pyi +0 -0
  276. type_python-0.0.7/stdlib/compression/_common/_streams.pyi +37 -0
  277. type_python-0.0.7/stdlib/compression/bz2.pyi +1 -0
  278. type_python-0.0.7/stdlib/compression/gzip.pyi +1 -0
  279. type_python-0.0.7/stdlib/compression/lzma.pyi +1 -0
  280. type_python-0.0.7/stdlib/compression/zlib.pyi +1 -0
  281. type_python-0.0.7/stdlib/compression/zstd/__init__.pyi +93 -0
  282. type_python-0.0.7/stdlib/compression/zstd/_zstdfile.pyi +117 -0
  283. type_python-0.0.7/stdlib/concurrent/__init__.pyi +0 -0
  284. type_python-0.0.7/stdlib/concurrent/futures/__init__.pyi +71 -0
  285. type_python-0.0.7/stdlib/concurrent/futures/_base.pyi +119 -0
  286. type_python-0.0.7/stdlib/concurrent/futures/interpreter.pyi +79 -0
  287. type_python-0.0.7/stdlib/concurrent/futures/process.pyi +242 -0
  288. type_python-0.0.7/stdlib/concurrent/futures/thread.pyi +140 -0
  289. type_python-0.0.7/stdlib/concurrent/interpreters/__init__.pyi +68 -0
  290. type_python-0.0.7/stdlib/concurrent/interpreters/_crossinterp.pyi +30 -0
  291. type_python-0.0.7/stdlib/concurrent/interpreters/_queues.pyi +74 -0
  292. type_python-0.0.7/stdlib/configparser.pyi +486 -0
  293. type_python-0.0.7/stdlib/contextlib.pyi +225 -0
  294. type_python-0.0.7/stdlib/contextvars.pyi +3 -0
  295. type_python-0.0.7/stdlib/copy.pyi +28 -0
  296. type_python-0.0.7/stdlib/copyreg.pyi +21 -0
  297. type_python-0.0.7/stdlib/crypt.pyi +26 -0
  298. type_python-0.0.7/stdlib/csv.pyi +155 -0
  299. type_python-0.0.7/stdlib/ctypes/__init__.pyi +335 -0
  300. type_python-0.0.7/stdlib/ctypes/_endian.pyi +16 -0
  301. type_python-0.0.7/stdlib/ctypes/macholib/__init__.pyi +3 -0
  302. type_python-0.0.7/stdlib/ctypes/macholib/dyld.pyi +8 -0
  303. type_python-0.0.7/stdlib/ctypes/macholib/dylib.pyi +14 -0
  304. type_python-0.0.7/stdlib/ctypes/macholib/framework.pyi +14 -0
  305. type_python-0.0.7/stdlib/ctypes/util.pyi +11 -0
  306. type_python-0.0.7/stdlib/ctypes/wintypes.pyi +321 -0
  307. type_python-0.0.7/stdlib/curses/__init__.pyi +41 -0
  308. type_python-0.0.7/stdlib/curses/ascii.pyi +62 -0
  309. type_python-0.0.7/stdlib/curses/has_key.pyi +1 -0
  310. type_python-0.0.7/stdlib/curses/panel.pyi +1 -0
  311. type_python-0.0.7/stdlib/curses/textpad.pyi +11 -0
  312. type_python-0.0.7/stdlib/dataclasses.pyi +490 -0
  313. type_python-0.0.7/stdlib/datetime.pyi +346 -0
  314. type_python-0.0.7/stdlib/dbm/__init__.pyi +105 -0
  315. type_python-0.0.7/stdlib/dbm/dumb.pyi +37 -0
  316. type_python-0.0.7/stdlib/dbm/gnu.pyi +1 -0
  317. type_python-0.0.7/stdlib/dbm/ndbm.pyi +1 -0
  318. type_python-0.0.7/stdlib/dbm/sqlite3.pyi +29 -0
  319. type_python-0.0.7/stdlib/decimal.pyi +274 -0
  320. type_python-0.0.7/stdlib/difflib.pyi +139 -0
  321. type_python-0.0.7/stdlib/dis.pyi +295 -0
  322. type_python-0.0.7/stdlib/distutils/__init__.pyi +5 -0
  323. type_python-0.0.7/stdlib/distutils/_msvccompiler.pyi +13 -0
  324. type_python-0.0.7/stdlib/distutils/archive_util.pyi +35 -0
  325. type_python-0.0.7/stdlib/distutils/bcppcompiler.pyi +3 -0
  326. type_python-0.0.7/stdlib/distutils/ccompiler.pyi +176 -0
  327. type_python-0.0.7/stdlib/distutils/cmd.pyi +229 -0
  328. type_python-0.0.7/stdlib/distutils/command/__init__.pyi +48 -0
  329. type_python-0.0.7/stdlib/distutils/command/bdist.pyi +27 -0
  330. type_python-0.0.7/stdlib/distutils/command/bdist_dumb.pyi +22 -0
  331. type_python-0.0.7/stdlib/distutils/command/bdist_msi.pyi +45 -0
  332. type_python-0.0.7/stdlib/distutils/command/bdist_packager.pyi +0 -0
  333. type_python-0.0.7/stdlib/distutils/command/bdist_rpm.pyi +53 -0
  334. type_python-0.0.7/stdlib/distutils/command/bdist_wininst.pyi +16 -0
  335. type_python-0.0.7/stdlib/distutils/command/build.pyi +34 -0
  336. type_python-0.0.7/stdlib/distutils/command/build_clib.pyi +29 -0
  337. type_python-0.0.7/stdlib/distutils/command/build_ext.pyi +52 -0
  338. type_python-0.0.7/stdlib/distutils/command/build_py.pyi +45 -0
  339. type_python-0.0.7/stdlib/distutils/command/build_scripts.pyi +25 -0
  340. type_python-0.0.7/stdlib/distutils/command/check.pyi +40 -0
  341. type_python-0.0.7/stdlib/distutils/command/clean.pyi +18 -0
  342. type_python-0.0.7/stdlib/distutils/command/config.pyi +84 -0
  343. type_python-0.0.7/stdlib/distutils/command/install.pyi +71 -0
  344. type_python-0.0.7/stdlib/distutils/command/install_data.pyi +20 -0
  345. type_python-0.0.7/stdlib/distutils/command/install_egg_info.pyi +19 -0
  346. type_python-0.0.7/stdlib/distutils/command/install_headers.pyi +17 -0
  347. type_python-0.0.7/stdlib/distutils/command/install_lib.pyi +26 -0
  348. type_python-0.0.7/stdlib/distutils/command/install_scripts.pyi +19 -0
  349. type_python-0.0.7/stdlib/distutils/command/register.pyi +20 -0
  350. type_python-0.0.7/stdlib/distutils/command/sdist.pyi +45 -0
  351. type_python-0.0.7/stdlib/distutils/command/upload.pyi +18 -0
  352. type_python-0.0.7/stdlib/distutils/config.pyi +17 -0
  353. type_python-0.0.7/stdlib/distutils/core.pyi +58 -0
  354. type_python-0.0.7/stdlib/distutils/cygwinccompiler.pyi +20 -0
  355. type_python-0.0.7/stdlib/distutils/debug.pyi +3 -0
  356. type_python-0.0.7/stdlib/distutils/dep_util.pyi +14 -0
  357. type_python-0.0.7/stdlib/distutils/dir_util.pyi +23 -0
  358. type_python-0.0.7/stdlib/distutils/dist.pyi +315 -0
  359. type_python-0.0.7/stdlib/distutils/errors.pyi +19 -0
  360. type_python-0.0.7/stdlib/distutils/extension.pyi +36 -0
  361. type_python-0.0.7/stdlib/distutils/fancy_getopt.pyi +44 -0
  362. type_python-0.0.7/stdlib/distutils/file_util.pyi +38 -0
  363. type_python-0.0.7/stdlib/distutils/filelist.pyi +58 -0
  364. type_python-0.0.7/stdlib/distutils/log.pyi +26 -0
  365. type_python-0.0.7/stdlib/distutils/msvccompiler.pyi +3 -0
  366. type_python-0.0.7/stdlib/distutils/spawn.pyi +10 -0
  367. type_python-0.0.7/stdlib/distutils/sysconfig.pyi +33 -0
  368. type_python-0.0.7/stdlib/distutils/text_file.pyi +21 -0
  369. type_python-0.0.7/stdlib/distutils/unixccompiler.pyi +3 -0
  370. type_python-0.0.7/stdlib/distutils/util.pyi +53 -0
  371. type_python-0.0.7/stdlib/distutils/version.pyi +36 -0
  372. type_python-0.0.7/stdlib/doctest.pyi +262 -0
  373. type_python-0.0.7/stdlib/email/__init__.pyi +60 -0
  374. type_python-0.0.7/stdlib/email/_header_value_parser.pyi +398 -0
  375. type_python-0.0.7/stdlib/email/_policybase.pyi +80 -0
  376. type_python-0.0.7/stdlib/email/base64mime.pyi +13 -0
  377. type_python-0.0.7/stdlib/email/charset.pyi +42 -0
  378. type_python-0.0.7/stdlib/email/contentmanager.pyi +11 -0
  379. type_python-0.0.7/stdlib/email/encoders.pyi +8 -0
  380. type_python-0.0.7/stdlib/email/errors.pyi +42 -0
  381. type_python-0.0.7/stdlib/email/feedparser.pyi +22 -0
  382. type_python-0.0.7/stdlib/email/generator.pyi +77 -0
  383. type_python-0.0.7/stdlib/email/header.pyi +32 -0
  384. type_python-0.0.7/stdlib/email/headerregistry.pyi +181 -0
  385. type_python-0.0.7/stdlib/email/iterators.pyi +12 -0
  386. type_python-0.0.7/stdlib/email/message.pyi +174 -0
  387. type_python-0.0.7/stdlib/email/mime/__init__.pyi +0 -0
  388. type_python-0.0.7/stdlib/email/mime/application.pyi +17 -0
  389. type_python-0.0.7/stdlib/email/mime/audio.pyi +17 -0
  390. type_python-0.0.7/stdlib/email/mime/base.pyi +8 -0
  391. type_python-0.0.7/stdlib/email/mime/image.pyi +17 -0
  392. type_python-0.0.7/stdlib/email/mime/message.pyi +8 -0
  393. type_python-0.0.7/stdlib/email/mime/multipart.pyi +18 -0
  394. type_python-0.0.7/stdlib/email/mime/nonmultipart.pyi +5 -0
  395. type_python-0.0.7/stdlib/email/mime/text.pyi +9 -0
  396. type_python-0.0.7/stdlib/email/parser.pyi +39 -0
  397. type_python-0.0.7/stdlib/email/policy.pyi +75 -0
  398. type_python-0.0.7/stdlib/email/quoprimime.pyi +28 -0
  399. type_python-0.0.7/stdlib/email/utils.pyi +78 -0
  400. type_python-0.0.7/stdlib/encodings/__init__.pyi +13 -0
  401. type_python-0.0.7/stdlib/encodings/aliases.pyi +1 -0
  402. type_python-0.0.7/stdlib/encodings/ascii.pyi +30 -0
  403. type_python-0.0.7/stdlib/encodings/base64_codec.pyi +26 -0
  404. type_python-0.0.7/stdlib/encodings/big5.pyi +23 -0
  405. type_python-0.0.7/stdlib/encodings/big5hkscs.pyi +23 -0
  406. type_python-0.0.7/stdlib/encodings/bz2_codec.pyi +26 -0
  407. type_python-0.0.7/stdlib/encodings/charmap.pyi +33 -0
  408. type_python-0.0.7/stdlib/encodings/cp037.pyi +21 -0
  409. type_python-0.0.7/stdlib/encodings/cp1006.pyi +21 -0
  410. type_python-0.0.7/stdlib/encodings/cp1026.pyi +21 -0
  411. type_python-0.0.7/stdlib/encodings/cp1125.pyi +21 -0
  412. type_python-0.0.7/stdlib/encodings/cp1140.pyi +21 -0
  413. type_python-0.0.7/stdlib/encodings/cp1250.pyi +21 -0
  414. type_python-0.0.7/stdlib/encodings/cp1251.pyi +21 -0
  415. type_python-0.0.7/stdlib/encodings/cp1252.pyi +21 -0
  416. type_python-0.0.7/stdlib/encodings/cp1253.pyi +21 -0
  417. type_python-0.0.7/stdlib/encodings/cp1254.pyi +21 -0
  418. type_python-0.0.7/stdlib/encodings/cp1255.pyi +21 -0
  419. type_python-0.0.7/stdlib/encodings/cp1256.pyi +21 -0
  420. type_python-0.0.7/stdlib/encodings/cp1257.pyi +21 -0
  421. type_python-0.0.7/stdlib/encodings/cp1258.pyi +21 -0
  422. type_python-0.0.7/stdlib/encodings/cp273.pyi +21 -0
  423. type_python-0.0.7/stdlib/encodings/cp424.pyi +21 -0
  424. type_python-0.0.7/stdlib/encodings/cp437.pyi +21 -0
  425. type_python-0.0.7/stdlib/encodings/cp500.pyi +21 -0
  426. type_python-0.0.7/stdlib/encodings/cp720.pyi +21 -0
  427. type_python-0.0.7/stdlib/encodings/cp737.pyi +21 -0
  428. type_python-0.0.7/stdlib/encodings/cp775.pyi +21 -0
  429. type_python-0.0.7/stdlib/encodings/cp850.pyi +21 -0
  430. type_python-0.0.7/stdlib/encodings/cp852.pyi +21 -0
  431. type_python-0.0.7/stdlib/encodings/cp855.pyi +21 -0
  432. type_python-0.0.7/stdlib/encodings/cp856.pyi +21 -0
  433. type_python-0.0.7/stdlib/encodings/cp857.pyi +21 -0
  434. type_python-0.0.7/stdlib/encodings/cp858.pyi +21 -0
  435. type_python-0.0.7/stdlib/encodings/cp860.pyi +21 -0
  436. type_python-0.0.7/stdlib/encodings/cp861.pyi +21 -0
  437. type_python-0.0.7/stdlib/encodings/cp862.pyi +21 -0
  438. type_python-0.0.7/stdlib/encodings/cp863.pyi +21 -0
  439. type_python-0.0.7/stdlib/encodings/cp864.pyi +21 -0
  440. type_python-0.0.7/stdlib/encodings/cp865.pyi +21 -0
  441. type_python-0.0.7/stdlib/encodings/cp866.pyi +21 -0
  442. type_python-0.0.7/stdlib/encodings/cp869.pyi +21 -0
  443. type_python-0.0.7/stdlib/encodings/cp874.pyi +21 -0
  444. type_python-0.0.7/stdlib/encodings/cp875.pyi +21 -0
  445. type_python-0.0.7/stdlib/encodings/cp932.pyi +23 -0
  446. type_python-0.0.7/stdlib/encodings/cp949.pyi +23 -0
  447. type_python-0.0.7/stdlib/encodings/cp950.pyi +23 -0
  448. type_python-0.0.7/stdlib/encodings/euc_jis_2004.pyi +23 -0
  449. type_python-0.0.7/stdlib/encodings/euc_jisx0213.pyi +23 -0
  450. type_python-0.0.7/stdlib/encodings/euc_jp.pyi +23 -0
  451. type_python-0.0.7/stdlib/encodings/euc_kr.pyi +23 -0
  452. type_python-0.0.7/stdlib/encodings/gb18030.pyi +23 -0
  453. type_python-0.0.7/stdlib/encodings/gb2312.pyi +23 -0
  454. type_python-0.0.7/stdlib/encodings/gbk.pyi +23 -0
  455. type_python-0.0.7/stdlib/encodings/hex_codec.pyi +26 -0
  456. type_python-0.0.7/stdlib/encodings/hp_roman8.pyi +21 -0
  457. type_python-0.0.7/stdlib/encodings/hz.pyi +23 -0
  458. type_python-0.0.7/stdlib/encodings/idna.pyi +26 -0
  459. type_python-0.0.7/stdlib/encodings/iso2022_jp.pyi +23 -0
  460. type_python-0.0.7/stdlib/encodings/iso2022_jp_1.pyi +23 -0
  461. type_python-0.0.7/stdlib/encodings/iso2022_jp_2.pyi +23 -0
  462. type_python-0.0.7/stdlib/encodings/iso2022_jp_2004.pyi +23 -0
  463. type_python-0.0.7/stdlib/encodings/iso2022_jp_3.pyi +23 -0
  464. type_python-0.0.7/stdlib/encodings/iso2022_jp_ext.pyi +23 -0
  465. type_python-0.0.7/stdlib/encodings/iso2022_kr.pyi +23 -0
  466. type_python-0.0.7/stdlib/encodings/iso8859_1.pyi +21 -0
  467. type_python-0.0.7/stdlib/encodings/iso8859_10.pyi +21 -0
  468. type_python-0.0.7/stdlib/encodings/iso8859_11.pyi +21 -0
  469. type_python-0.0.7/stdlib/encodings/iso8859_13.pyi +21 -0
  470. type_python-0.0.7/stdlib/encodings/iso8859_14.pyi +21 -0
  471. type_python-0.0.7/stdlib/encodings/iso8859_15.pyi +21 -0
  472. type_python-0.0.7/stdlib/encodings/iso8859_16.pyi +21 -0
  473. type_python-0.0.7/stdlib/encodings/iso8859_2.pyi +21 -0
  474. type_python-0.0.7/stdlib/encodings/iso8859_3.pyi +21 -0
  475. type_python-0.0.7/stdlib/encodings/iso8859_4.pyi +21 -0
  476. type_python-0.0.7/stdlib/encodings/iso8859_5.pyi +21 -0
  477. type_python-0.0.7/stdlib/encodings/iso8859_6.pyi +21 -0
  478. type_python-0.0.7/stdlib/encodings/iso8859_7.pyi +21 -0
  479. type_python-0.0.7/stdlib/encodings/iso8859_8.pyi +21 -0
  480. type_python-0.0.7/stdlib/encodings/iso8859_9.pyi +21 -0
  481. type_python-0.0.7/stdlib/encodings/johab.pyi +23 -0
  482. type_python-0.0.7/stdlib/encodings/koi8_r.pyi +21 -0
  483. type_python-0.0.7/stdlib/encodings/koi8_t.pyi +21 -0
  484. type_python-0.0.7/stdlib/encodings/koi8_u.pyi +21 -0
  485. type_python-0.0.7/stdlib/encodings/kz1048.pyi +21 -0
  486. type_python-0.0.7/stdlib/encodings/latin_1.pyi +30 -0
  487. type_python-0.0.7/stdlib/encodings/mac_arabic.pyi +21 -0
  488. type_python-0.0.7/stdlib/encodings/mac_croatian.pyi +21 -0
  489. type_python-0.0.7/stdlib/encodings/mac_cyrillic.pyi +21 -0
  490. type_python-0.0.7/stdlib/encodings/mac_farsi.pyi +21 -0
  491. type_python-0.0.7/stdlib/encodings/mac_greek.pyi +21 -0
  492. type_python-0.0.7/stdlib/encodings/mac_iceland.pyi +21 -0
  493. type_python-0.0.7/stdlib/encodings/mac_latin2.pyi +21 -0
  494. type_python-0.0.7/stdlib/encodings/mac_roman.pyi +21 -0
  495. type_python-0.0.7/stdlib/encodings/mac_romanian.pyi +21 -0
  496. type_python-0.0.7/stdlib/encodings/mac_turkish.pyi +21 -0
  497. type_python-0.0.7/stdlib/encodings/mbcs.pyi +28 -0
  498. type_python-0.0.7/stdlib/encodings/oem.pyi +28 -0
  499. type_python-0.0.7/stdlib/encodings/palmos.pyi +21 -0
  500. type_python-0.0.7/stdlib/encodings/ptcp154.pyi +21 -0
  501. type_python-0.0.7/stdlib/encodings/punycode.pyi +33 -0
  502. type_python-0.0.7/stdlib/encodings/quopri_codec.pyi +26 -0
  503. type_python-0.0.7/stdlib/encodings/raw_unicode_escape.pyi +23 -0
  504. type_python-0.0.7/stdlib/encodings/rot_13.pyi +23 -0
  505. type_python-0.0.7/stdlib/encodings/shift_jis.pyi +23 -0
  506. type_python-0.0.7/stdlib/encodings/shift_jis_2004.pyi +23 -0
  507. type_python-0.0.7/stdlib/encodings/shift_jisx0213.pyi +23 -0
  508. type_python-0.0.7/stdlib/encodings/tis_620.pyi +21 -0
  509. type_python-0.0.7/stdlib/encodings/undefined.pyi +20 -0
  510. type_python-0.0.7/stdlib/encodings/unicode_escape.pyi +23 -0
  511. type_python-0.0.7/stdlib/encodings/utf_16.pyi +20 -0
  512. type_python-0.0.7/stdlib/encodings/utf_16_be.pyi +26 -0
  513. type_python-0.0.7/stdlib/encodings/utf_16_le.pyi +26 -0
  514. type_python-0.0.7/stdlib/encodings/utf_32.pyi +20 -0
  515. type_python-0.0.7/stdlib/encodings/utf_32_be.pyi +26 -0
  516. type_python-0.0.7/stdlib/encodings/utf_32_le.pyi +26 -0
  517. type_python-0.0.7/stdlib/encodings/utf_7.pyi +26 -0
  518. type_python-0.0.7/stdlib/encodings/utf_8.pyi +26 -0
  519. type_python-0.0.7/stdlib/encodings/utf_8_sig.pyi +22 -0
  520. type_python-0.0.7/stdlib/encodings/uu_codec.pyi +28 -0
  521. type_python-0.0.7/stdlib/encodings/zlib_codec.pyi +26 -0
  522. type_python-0.0.7/stdlib/ensurepip/__init__.pyi +12 -0
  523. type_python-0.0.7/stdlib/enum/__init__.pyi +13 -0
  524. type_python-0.0.7/stdlib/enum.pyi +372 -0
  525. type_python-0.0.7/stdlib/errno.pyi +227 -0
  526. type_python-0.0.7/stdlib/faulthandler.pyi +23 -0
  527. type_python-0.0.7/stdlib/fcntl.pyi +158 -0
  528. type_python-0.0.7/stdlib/filecmp.pyi +65 -0
  529. type_python-0.0.7/stdlib/fileinput.pyi +210 -0
  530. type_python-0.0.7/stdlib/fnmatch.pyi +15 -0
  531. type_python-0.0.7/stdlib/formatter.pyi +88 -0
  532. type_python-0.0.7/stdlib/fractions.pyi +167 -0
  533. type_python-0.0.7/stdlib/ftplib.pyi +153 -0
  534. type_python-0.0.7/stdlib/functools.pyi +258 -0
  535. type_python-0.0.7/stdlib/gc.pyi +33 -0
  536. type_python-0.0.7/stdlib/genericpath.pyi +64 -0
  537. type_python-0.0.7/stdlib/getopt.pyi +27 -0
  538. type_python-0.0.7/stdlib/getpass.pyi +14 -0
  539. type_python-0.0.7/stdlib/gettext.pyi +189 -0
  540. type_python-0.0.7/stdlib/glob.pyi +62 -0
  541. type_python-0.0.7/stdlib/graphlib.pyi +28 -0
  542. type_python-0.0.7/stdlib/grp.pyi +22 -0
  543. type_python-0.0.7/stdlib/gzip.pyi +176 -0
  544. type_python-0.0.7/stdlib/hashlib.pyi +89 -0
  545. type_python-0.0.7/stdlib/heapq.pyi +22 -0
  546. type_python-0.0.7/stdlib/hmac.pyi +34 -0
  547. type_python-0.0.7/stdlib/html/__init__.pyi +6 -0
  548. type_python-0.0.7/stdlib/html/entities.pyi +8 -0
  549. type_python-0.0.7/stdlib/html/parser.pyi +40 -0
  550. type_python-0.0.7/stdlib/http/__init__.pyi +118 -0
  551. type_python-0.0.7/stdlib/http/client.pyi +266 -0
  552. type_python-0.0.7/stdlib/http/cookiejar.pyi +159 -0
  553. type_python-0.0.7/stdlib/http/cookies.pyi +56 -0
  554. type_python-0.0.7/stdlib/http/server.pyi +142 -0
  555. type_python-0.0.7/stdlib/imaplib.pyi +175 -0
  556. type_python-0.0.7/stdlib/imghdr.pyi +18 -0
  557. type_python-0.0.7/stdlib/imp.pyi +63 -0
  558. type_python-0.0.7/stdlib/importlib/__init__.pyi +17 -0
  559. type_python-0.0.7/stdlib/importlib/_abc.pyi +20 -0
  560. type_python-0.0.7/stdlib/importlib/_bootstrap.pyi +2 -0
  561. type_python-0.0.7/stdlib/importlib/_bootstrap_external.pyi +2 -0
  562. type_python-0.0.7/stdlib/importlib/abc.pyi +187 -0
  563. type_python-0.0.7/stdlib/importlib/machinery.pyi +43 -0
  564. type_python-0.0.7/stdlib/importlib/metadata/__init__.pyi +320 -0
  565. type_python-0.0.7/stdlib/importlib/metadata/_meta.pyi +63 -0
  566. type_python-0.0.7/stdlib/importlib/metadata/diagnose.pyi +2 -0
  567. type_python-0.0.7/stdlib/importlib/readers.pyi +72 -0
  568. type_python-0.0.7/stdlib/importlib/resources/__init__.pyi +86 -0
  569. type_python-0.0.7/stdlib/importlib/resources/_common.pyi +42 -0
  570. type_python-0.0.7/stdlib/importlib/resources/_functional.pyi +31 -0
  571. type_python-0.0.7/stdlib/importlib/resources/abc.pyi +56 -0
  572. type_python-0.0.7/stdlib/importlib/resources/readers.pyi +14 -0
  573. type_python-0.0.7/stdlib/importlib/resources/simple.pyi +57 -0
  574. type_python-0.0.7/stdlib/importlib/simple.pyi +11 -0
  575. type_python-0.0.7/stdlib/importlib/util.pyi +75 -0
  576. type_python-0.0.7/stdlib/inspect.pyi +727 -0
  577. type_python-0.0.7/stdlib/io.pyi +75 -0
  578. type_python-0.0.7/stdlib/ipaddress.pyi +247 -0
  579. type_python-0.0.7/stdlib/itertools.pyi +351 -0
  580. type_python-0.0.7/stdlib/json/__init__.pyi +61 -0
  581. type_python-0.0.7/stdlib/json/decoder.pyi +32 -0
  582. type_python-0.0.7/stdlib/json/encoder.pyi +40 -0
  583. type_python-0.0.7/stdlib/json/scanner.pyi +7 -0
  584. type_python-0.0.7/stdlib/json/tool.pyi +1 -0
  585. type_python-0.0.7/stdlib/keyword.pyi +16 -0
  586. type_python-0.0.7/stdlib/lib2to3/__init__.pyi +0 -0
  587. type_python-0.0.7/stdlib/lib2to3/btm_matcher.pyi +28 -0
  588. type_python-0.0.7/stdlib/lib2to3/fixer_base.pyi +42 -0
  589. type_python-0.0.7/stdlib/lib2to3/fixes/__init__.pyi +0 -0
  590. type_python-0.0.7/stdlib/lib2to3/fixes/fix_apply.pyi +8 -0
  591. type_python-0.0.7/stdlib/lib2to3/fixes/fix_asserts.pyi +10 -0
  592. type_python-0.0.7/stdlib/lib2to3/fixes/fix_basestring.pyi +8 -0
  593. type_python-0.0.7/stdlib/lib2to3/fixes/fix_buffer.pyi +8 -0
  594. type_python-0.0.7/stdlib/lib2to3/fixes/fix_dict.pyi +16 -0
  595. type_python-0.0.7/stdlib/lib2to3/fixes/fix_except.pyi +14 -0
  596. type_python-0.0.7/stdlib/lib2to3/fixes/fix_exec.pyi +8 -0
  597. type_python-0.0.7/stdlib/lib2to3/fixes/fix_execfile.pyi +8 -0
  598. type_python-0.0.7/stdlib/lib2to3/fixes/fix_exitfunc.pyi +13 -0
  599. type_python-0.0.7/stdlib/lib2to3/fixes/fix_filter.pyi +9 -0
  600. type_python-0.0.7/stdlib/lib2to3/fixes/fix_funcattrs.pyi +8 -0
  601. type_python-0.0.7/stdlib/lib2to3/fixes/fix_future.pyi +8 -0
  602. type_python-0.0.7/stdlib/lib2to3/fixes/fix_getcwdu.pyi +8 -0
  603. type_python-0.0.7/stdlib/lib2to3/fixes/fix_has_key.pyi +8 -0
  604. type_python-0.0.7/stdlib/lib2to3/fixes/fix_idioms.pyi +15 -0
  605. type_python-0.0.7/stdlib/lib2to3/fixes/fix_import.pyi +16 -0
  606. type_python-0.0.7/stdlib/lib2to3/fixes/fix_imports.pyi +21 -0
  607. type_python-0.0.7/stdlib/lib2to3/fixes/fix_imports2.pyi +8 -0
  608. type_python-0.0.7/stdlib/lib2to3/fixes/fix_input.pyi +11 -0
  609. type_python-0.0.7/stdlib/lib2to3/fixes/fix_intern.pyi +9 -0
  610. type_python-0.0.7/stdlib/lib2to3/fixes/fix_isinstance.pyi +8 -0
  611. type_python-0.0.7/stdlib/lib2to3/fixes/fix_itertools.pyi +9 -0
  612. type_python-0.0.7/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +7 -0
  613. type_python-0.0.7/stdlib/lib2to3/fixes/fix_long.pyi +7 -0
  614. type_python-0.0.7/stdlib/lib2to3/fixes/fix_map.pyi +9 -0
  615. type_python-0.0.7/stdlib/lib2to3/fixes/fix_metaclass.pyi +17 -0
  616. type_python-0.0.7/stdlib/lib2to3/fixes/fix_methodattrs.pyi +10 -0
  617. type_python-0.0.7/stdlib/lib2to3/fixes/fix_ne.pyi +8 -0
  618. type_python-0.0.7/stdlib/lib2to3/fixes/fix_next.pyi +19 -0
  619. type_python-0.0.7/stdlib/lib2to3/fixes/fix_nonzero.pyi +8 -0
  620. type_python-0.0.7/stdlib/lib2to3/fixes/fix_numliterals.pyi +8 -0
  621. type_python-0.0.7/stdlib/lib2to3/fixes/fix_operator.pyi +12 -0
  622. type_python-0.0.7/stdlib/lib2to3/fixes/fix_paren.pyi +8 -0
  623. type_python-0.0.7/stdlib/lib2to3/fixes/fix_print.pyi +12 -0
  624. type_python-0.0.7/stdlib/lib2to3/fixes/fix_raise.pyi +8 -0
  625. type_python-0.0.7/stdlib/lib2to3/fixes/fix_raw_input.pyi +8 -0
  626. type_python-0.0.7/stdlib/lib2to3/fixes/fix_reduce.pyi +8 -0
  627. type_python-0.0.7/stdlib/lib2to3/fixes/fix_reload.pyi +9 -0
  628. type_python-0.0.7/stdlib/lib2to3/fixes/fix_renames.pyi +17 -0
  629. type_python-0.0.7/stdlib/lib2to3/fixes/fix_repr.pyi +8 -0
  630. type_python-0.0.7/stdlib/lib2to3/fixes/fix_set_literal.pyi +7 -0
  631. type_python-0.0.7/stdlib/lib2to3/fixes/fix_standarderror.pyi +8 -0
  632. type_python-0.0.7/stdlib/lib2to3/fixes/fix_sys_exc.pyi +9 -0
  633. type_python-0.0.7/stdlib/lib2to3/fixes/fix_throw.pyi +8 -0
  634. type_python-0.0.7/stdlib/lib2to3/fixes/fix_tuple_params.pyi +16 -0
  635. type_python-0.0.7/stdlib/lib2to3/fixes/fix_types.pyi +8 -0
  636. type_python-0.0.7/stdlib/lib2to3/fixes/fix_unicode.pyi +12 -0
  637. type_python-0.0.7/stdlib/lib2to3/fixes/fix_urllib.pyi +15 -0
  638. type_python-0.0.7/stdlib/lib2to3/fixes/fix_ws_comma.pyi +12 -0
  639. type_python-0.0.7/stdlib/lib2to3/fixes/fix_xrange.pyi +20 -0
  640. type_python-0.0.7/stdlib/lib2to3/fixes/fix_xreadlines.pyi +8 -0
  641. type_python-0.0.7/stdlib/lib2to3/fixes/fix_zip.pyi +9 -0
  642. type_python-0.0.7/stdlib/lib2to3/main.pyi +42 -0
  643. type_python-0.0.7/stdlib/lib2to3/pgen2/__init__.pyi +9 -0
  644. type_python-0.0.7/stdlib/lib2to3/pgen2/driver.pyi +27 -0
  645. type_python-0.0.7/stdlib/lib2to3/pgen2/grammar.pyi +24 -0
  646. type_python-0.0.7/stdlib/lib2to3/pgen2/literals.pyi +7 -0
  647. type_python-0.0.7/stdlib/lib2to3/pgen2/parse.pyi +30 -0
  648. type_python-0.0.7/stdlib/lib2to3/pgen2/pgen.pyi +51 -0
  649. type_python-0.0.7/stdlib/lib2to3/pgen2/token.pyi +69 -0
  650. type_python-0.0.7/stdlib/lib2to3/pgen2/tokenize.pyi +96 -0
  651. type_python-0.0.7/stdlib/lib2to3/pygram.pyi +114 -0
  652. type_python-0.0.7/stdlib/lib2to3/pytree.pyi +118 -0
  653. type_python-0.0.7/stdlib/lib2to3/refactor.pyi +82 -0
  654. type_python-0.0.7/stdlib/linecache.pyi +19 -0
  655. type_python-0.0.7/stdlib/locale.pyi +166 -0
  656. type_python-0.0.7/stdlib/logging/__init__.pyi +662 -0
  657. type_python-0.0.7/stdlib/logging/config.pyi +150 -0
  658. type_python-0.0.7/stdlib/logging/handlers.pyi +258 -0
  659. type_python-0.0.7/stdlib/lzma.pyi +180 -0
  660. type_python-0.0.7/stdlib/mailbox.pyi +262 -0
  661. type_python-0.0.7/stdlib/mailcap.pyi +11 -0
  662. type_python-0.0.7/stdlib/marshal.pyi +49 -0
  663. type_python-0.0.7/stdlib/math.pyi +140 -0
  664. type_python-0.0.7/stdlib/mimetypes.pyi +56 -0
  665. type_python-0.0.7/stdlib/mmap.pyi +152 -0
  666. type_python-0.0.7/stdlib/modulefinder.pyi +68 -0
  667. type_python-0.0.7/stdlib/msilib/__init__.pyi +177 -0
  668. type_python-0.0.7/stdlib/msilib/schema.pyi +95 -0
  669. type_python-0.0.7/stdlib/msilib/sequence.pyi +14 -0
  670. type_python-0.0.7/stdlib/msilib/text.pyi +8 -0
  671. type_python-0.0.7/stdlib/msvcrt.pyi +32 -0
  672. type_python-0.0.7/stdlib/multiprocessing/__init__.pyi +90 -0
  673. type_python-0.0.7/stdlib/multiprocessing/connection.pyi +83 -0
  674. type_python-0.0.7/stdlib/multiprocessing/context.pyi +206 -0
  675. type_python-0.0.7/stdlib/multiprocessing/dummy/__init__.pyi +89 -0
  676. type_python-0.0.7/stdlib/multiprocessing/dummy/connection.pyi +39 -0
  677. type_python-0.0.7/stdlib/multiprocessing/forkserver.pyi +45 -0
  678. type_python-0.0.7/stdlib/multiprocessing/heap.pyi +37 -0
  679. type_python-0.0.7/stdlib/multiprocessing/managers.pyi +353 -0
  680. type_python-0.0.7/stdlib/multiprocessing/pool.pyi +101 -0
  681. type_python-0.0.7/stdlib/multiprocessing/popen_fork.pyi +26 -0
  682. type_python-0.0.7/stdlib/multiprocessing/popen_forkserver.pyi +16 -0
  683. type_python-0.0.7/stdlib/multiprocessing/popen_spawn_posix.pyi +20 -0
  684. type_python-0.0.7/stdlib/multiprocessing/popen_spawn_win32.pyi +30 -0
  685. type_python-0.0.7/stdlib/multiprocessing/process.pyi +43 -0
  686. type_python-0.0.7/stdlib/multiprocessing/queues.pyi +36 -0
  687. type_python-0.0.7/stdlib/multiprocessing/reduction.pyi +88 -0
  688. type_python-0.0.7/stdlib/multiprocessing/resource_sharer.pyi +20 -0
  689. type_python-0.0.7/stdlib/multiprocessing/resource_tracker.pyi +21 -0
  690. type_python-0.0.7/stdlib/multiprocessing/shared_memory.pyi +41 -0
  691. type_python-0.0.7/stdlib/multiprocessing/sharedctypes.pyi +129 -0
  692. type_python-0.0.7/stdlib/multiprocessing/spawn.pyi +32 -0
  693. type_python-0.0.7/stdlib/multiprocessing/synchronize.pyi +63 -0
  694. type_python-0.0.7/stdlib/multiprocessing/util.pyi +108 -0
  695. type_python-0.0.7/stdlib/netrc.pyi +23 -0
  696. type_python-0.0.7/stdlib/nis.pyi +9 -0
  697. type_python-0.0.7/stdlib/nntplib.pyi +120 -0
  698. type_python-0.0.7/stdlib/nt.pyi +116 -0
  699. type_python-0.0.7/stdlib/ntpath.pyi +123 -0
  700. type_python-0.0.7/stdlib/nturl2path.pyi +12 -0
  701. type_python-0.0.7/stdlib/numbers.pyi +217 -0
  702. type_python-0.0.7/stdlib/numpy/__init__.pyi +9 -0
  703. type_python-0.0.7/stdlib/numpy/linalg/__init__.pyi +5 -0
  704. type_python-0.0.7/stdlib/numpy/typing/__init__.pyi +5 -0
  705. type_python-0.0.7/stdlib/opcode.pyi +47 -0
  706. type_python-0.0.7/stdlib/operator.pyi +217 -0
  707. type_python-0.0.7/stdlib/optparse.pyi +308 -0
  708. type_python-0.0.7/stdlib/os/__init__.pyi +1757 -0
  709. type_python-0.0.7/stdlib/os/path.pyi +8 -0
  710. type_python-0.0.7/stdlib/ossaudiodev.pyi +132 -0
  711. type_python-0.0.7/stdlib/pandas/__init__.pyi +12 -0
  712. type_python-0.0.7/stdlib/parser.pyi +25 -0
  713. type_python-0.0.7/stdlib/pathlib/__init__.pyi +366 -0
  714. type_python-0.0.7/stdlib/pathlib/types.pyi +8 -0
  715. type_python-0.0.7/stdlib/pdb.pyi +269 -0
  716. type_python-0.0.7/stdlib/pickle.pyi +233 -0
  717. type_python-0.0.7/stdlib/pickletools.pyi +177 -0
  718. type_python-0.0.7/stdlib/pipes.pyi +16 -0
  719. type_python-0.0.7/stdlib/pkgutil.pyi +59 -0
  720. type_python-0.0.7/stdlib/platform.pyi +112 -0
  721. type_python-0.0.7/stdlib/plistlib.pyi +84 -0
  722. type_python-0.0.7/stdlib/poplib.pyi +72 -0
  723. type_python-0.0.7/stdlib/posix.pyi +405 -0
  724. type_python-0.0.7/stdlib/posixpath.pyi +160 -0
  725. type_python-0.0.7/stdlib/pprint.pyi +159 -0
  726. type_python-0.0.7/stdlib/profile.pyi +31 -0
  727. type_python-0.0.7/stdlib/pstats.pyi +91 -0
  728. type_python-0.0.7/stdlib/pty.pyi +28 -0
  729. type_python-0.0.7/stdlib/pwd.pyi +28 -0
  730. type_python-0.0.7/stdlib/py_compile.pyi +34 -0
  731. type_python-0.0.7/stdlib/pyclbr.pyi +74 -0
  732. type_python-0.0.7/stdlib/pydoc.pyi +341 -0
  733. type_python-0.0.7/stdlib/pydoc_data/__init__.pyi +0 -0
  734. type_python-0.0.7/stdlib/pydoc_data/topics.pyi +3 -0
  735. type_python-0.0.7/stdlib/pyexpat/__init__.pyi +88 -0
  736. type_python-0.0.7/stdlib/pyexpat/errors.pyi +53 -0
  737. type_python-0.0.7/stdlib/pyexpat/model.pyi +13 -0
  738. type_python-0.0.7/stdlib/queue.pyi +55 -0
  739. type_python-0.0.7/stdlib/quopri.pyi +12 -0
  740. type_python-0.0.7/stdlib/random.pyi +133 -0
  741. type_python-0.0.7/stdlib/re.pyi +314 -0
  742. type_python-0.0.7/stdlib/readline.pyi +40 -0
  743. type_python-0.0.7/stdlib/reprlib.pyi +65 -0
  744. type_python-0.0.7/stdlib/requests/__init__.pyi +8 -0
  745. type_python-0.0.7/stdlib/requests/sessions.pyi +8 -0
  746. type_python-0.0.7/stdlib/resource.pyi +95 -0
  747. type_python-0.0.7/stdlib/rlcompleter.pyi +9 -0
  748. type_python-0.0.7/stdlib/runpy.pyi +24 -0
  749. type_python-0.0.7/stdlib/sched.pyi +46 -0
  750. type_python-0.0.7/stdlib/secrets.pyi +15 -0
  751. type_python-0.0.7/stdlib/select.pyi +167 -0
  752. type_python-0.0.7/stdlib/selectors.pyi +69 -0
  753. type_python-0.0.7/stdlib/shelve.pyi +59 -0
  754. type_python-0.0.7/stdlib/shlex.pyi +63 -0
  755. type_python-0.0.7/stdlib/shutil.pyi +236 -0
  756. type_python-0.0.7/stdlib/signal.pyi +187 -0
  757. type_python-0.0.7/stdlib/site.pyi +36 -0
  758. type_python-0.0.7/stdlib/smtpd.pyi +92 -0
  759. type_python-0.0.7/stdlib/smtplib.pyi +195 -0
  760. type_python-0.0.7/stdlib/sndhdr.pyi +14 -0
  761. type_python-0.0.7/stdlib/socket.pyi +1448 -0
  762. type_python-0.0.7/stdlib/socketserver.pyi +170 -0
  763. type_python-0.0.7/stdlib/spwd.pyi +46 -0
  764. type_python-0.0.7/stdlib/sqlite3/__init__.pyi +479 -0
  765. type_python-0.0.7/stdlib/sqlite3/dbapi2.pyi +247 -0
  766. type_python-0.0.7/stdlib/sqlite3/dump.pyi +2 -0
  767. type_python-0.0.7/stdlib/sre_compile.pyi +11 -0
  768. type_python-0.0.7/stdlib/sre_constants.pyi +135 -0
  769. type_python-0.0.7/stdlib/sre_parse.pyi +104 -0
  770. type_python-0.0.7/stdlib/ssl.pyi +540 -0
  771. type_python-0.0.7/stdlib/stat.pyi +114 -0
  772. type_python-0.0.7/stdlib/statistics.pyi +159 -0
  773. type_python-0.0.7/stdlib/string/__init__.pyi +79 -0
  774. type_python-0.0.7/stdlib/string/templatelib.pyi +36 -0
  775. type_python-0.0.7/stdlib/stringprep.pyi +29 -0
  776. type_python-0.0.7/stdlib/struct.pyi +5 -0
  777. type_python-0.0.7/stdlib/subprocess.pyi +2092 -0
  778. type_python-0.0.7/stdlib/sunau.pyi +82 -0
  779. type_python-0.0.7/stdlib/symbol.pyi +95 -0
  780. type_python-0.0.7/stdlib/symtable.pyi +89 -0
  781. type_python-0.0.7/stdlib/sys/__init__.pyi +520 -0
  782. type_python-0.0.7/stdlib/sys/_monitoring.pyi +68 -0
  783. type_python-0.0.7/stdlib/sysconfig.pyi +57 -0
  784. type_python-0.0.7/stdlib/syslog.pyi +57 -0
  785. type_python-0.0.7/stdlib/tabnanny.pyi +16 -0
  786. type_python-0.0.7/stdlib/tarfile.pyi +839 -0
  787. type_python-0.0.7/stdlib/telnetlib.pyi +123 -0
  788. type_python-0.0.7/stdlib/tempfile.pyi +479 -0
  789. type_python-0.0.7/stdlib/termios.pyi +304 -0
  790. type_python-0.0.7/stdlib/textwrap.pyi +103 -0
  791. type_python-0.0.7/stdlib/this.pyi +2 -0
  792. type_python-0.0.7/stdlib/threading.pyi +208 -0
  793. type_python-0.0.7/stdlib/time.pyi +112 -0
  794. type_python-0.0.7/stdlib/timeit.pyi +32 -0
  795. type_python-0.0.7/stdlib/tkinter/__init__.pyi +4173 -0
  796. type_python-0.0.7/stdlib/tkinter/colorchooser.pyi +12 -0
  797. type_python-0.0.7/stdlib/tkinter/commondialog.pyi +14 -0
  798. type_python-0.0.7/stdlib/tkinter/constants.pyi +80 -0
  799. type_python-0.0.7/stdlib/tkinter/dialog.pyi +13 -0
  800. type_python-0.0.7/stdlib/tkinter/dnd.pyi +19 -0
  801. type_python-0.0.7/stdlib/tkinter/filedialog.pyi +149 -0
  802. type_python-0.0.7/stdlib/tkinter/font.pyi +120 -0
  803. type_python-0.0.7/stdlib/tkinter/messagebox.pyi +98 -0
  804. type_python-0.0.7/stdlib/tkinter/scrolledtext.pyi +9 -0
  805. type_python-0.0.7/stdlib/tkinter/simpledialog.pyi +54 -0
  806. type_python-0.0.7/stdlib/tkinter/tix.pyi +299 -0
  807. type_python-0.0.7/stdlib/tkinter/ttk.pyi +1352 -0
  808. type_python-0.0.7/stdlib/token.pyi +169 -0
  809. type_python-0.0.7/stdlib/tokenize.pyi +203 -0
  810. type_python-0.0.7/stdlib/tomllib.pyi +26 -0
  811. type_python-0.0.7/stdlib/torch/__init__.pyi +9 -0
  812. type_python-0.0.7/stdlib/torch/nn/__init__.pyi +11 -0
  813. type_python-0.0.7/stdlib/trace.pyi +86 -0
  814. type_python-0.0.7/stdlib/traceback.pyi +331 -0
  815. type_python-0.0.7/stdlib/tracemalloc.pyi +122 -0
  816. type_python-0.0.7/stdlib/tty.pyi +30 -0
  817. type_python-0.0.7/stdlib/turtle.pyi +791 -0
  818. type_python-0.0.7/stdlib/types.pyi +740 -0
  819. type_python-0.0.7/stdlib/typing.pyi +1182 -0
  820. type_python-0.0.7/stdlib/typing_extensions.pyi +710 -0
  821. type_python-0.0.7/stdlib/unicodedata.pyi +73 -0
  822. type_python-0.0.7/stdlib/unittest/__init__.pyi +63 -0
  823. type_python-0.0.7/stdlib/unittest/_log.pyi +27 -0
  824. type_python-0.0.7/stdlib/unittest/async_case.pyi +25 -0
  825. type_python-0.0.7/stdlib/unittest/case.pyi +322 -0
  826. type_python-0.0.7/stdlib/unittest/loader.pyi +72 -0
  827. type_python-0.0.7/stdlib/unittest/main.pyi +77 -0
  828. type_python-0.0.7/stdlib/unittest/mock.pyi +577 -0
  829. type_python-0.0.7/stdlib/unittest/result.pyi +47 -0
  830. type_python-0.0.7/stdlib/unittest/runner.pyi +93 -0
  831. type_python-0.0.7/stdlib/unittest/signals.pyi +15 -0
  832. type_python-0.0.7/stdlib/unittest/suite.pyi +24 -0
  833. type_python-0.0.7/stdlib/unittest/util.pyi +40 -0
  834. type_python-0.0.7/stdlib/urllib/__init__.pyi +0 -0
  835. type_python-0.0.7/stdlib/urllib/error.pyi +28 -0
  836. type_python-0.0.7/stdlib/urllib/parse.pyi +201 -0
  837. type_python-0.0.7/stdlib/urllib/request.pyi +424 -0
  838. type_python-0.0.7/stdlib/urllib/response.pyi +40 -0
  839. type_python-0.0.7/stdlib/urllib/robotparser.pyi +20 -0
  840. type_python-0.0.7/stdlib/uu.pyi +13 -0
  841. type_python-0.0.7/stdlib/uuid.pyi +106 -0
  842. type_python-0.0.7/stdlib/venv/__init__.pyi +86 -0
  843. type_python-0.0.7/stdlib/warnings.pyi +126 -0
  844. type_python-0.0.7/stdlib/wave.pyi +90 -0
  845. type_python-0.0.7/stdlib/weakref.pyi +198 -0
  846. type_python-0.0.7/stdlib/webbrowser.pyi +84 -0
  847. type_python-0.0.7/stdlib/winreg.pyi +132 -0
  848. type_python-0.0.7/stdlib/winsound.pyi +38 -0
  849. type_python-0.0.7/stdlib/wsgiref/__init__.pyi +0 -0
  850. type_python-0.0.7/stdlib/wsgiref/handlers.pyi +91 -0
  851. type_python-0.0.7/stdlib/wsgiref/headers.pyi +26 -0
  852. type_python-0.0.7/stdlib/wsgiref/simple_server.pyi +37 -0
  853. type_python-0.0.7/stdlib/wsgiref/types.pyi +32 -0
  854. type_python-0.0.7/stdlib/wsgiref/util.pyi +26 -0
  855. type_python-0.0.7/stdlib/wsgiref/validate.pyi +50 -0
  856. type_python-0.0.7/stdlib/xdrlib.pyi +57 -0
  857. type_python-0.0.7/stdlib/xml/__init__.pyi +3 -0
  858. type_python-0.0.7/stdlib/xml/dom/NodeFilter.pyi +22 -0
  859. type_python-0.0.7/stdlib/xml/dom/__init__.pyi +101 -0
  860. type_python-0.0.7/stdlib/xml/dom/domreg.pyi +8 -0
  861. type_python-0.0.7/stdlib/xml/dom/expatbuilder.pyi +126 -0
  862. type_python-0.0.7/stdlib/xml/dom/minicompat.pyi +24 -0
  863. type_python-0.0.7/stdlib/xml/dom/minidom.pyi +678 -0
  864. type_python-0.0.7/stdlib/xml/dom/pulldom.pyi +109 -0
  865. type_python-0.0.7/stdlib/xml/dom/xmlbuilder.pyi +81 -0
  866. type_python-0.0.7/stdlib/xml/etree/ElementInclude.pyi +27 -0
  867. type_python-0.0.7/stdlib/xml/etree/ElementPath.pyi +41 -0
  868. type_python-0.0.7/stdlib/xml/etree/ElementTree.pyi +367 -0
  869. type_python-0.0.7/stdlib/xml/etree/__init__.pyi +0 -0
  870. type_python-0.0.7/stdlib/xml/etree/cElementTree.pyi +1 -0
  871. type_python-0.0.7/stdlib/xml/parsers/__init__.pyi +1 -0
  872. type_python-0.0.7/stdlib/xml/parsers/expat/__init__.pyi +7 -0
  873. type_python-0.0.7/stdlib/xml/parsers/expat/errors.pyi +1 -0
  874. type_python-0.0.7/stdlib/xml/parsers/expat/model.pyi +1 -0
  875. type_python-0.0.7/stdlib/xml/sax/__init__.pyi +43 -0
  876. type_python-0.0.7/stdlib/xml/sax/_exceptions.pyi +19 -0
  877. type_python-0.0.7/stdlib/xml/sax/expatreader.pyi +78 -0
  878. type_python-0.0.7/stdlib/xml/sax/handler.pyi +86 -0
  879. type_python-0.0.7/stdlib/xml/sax/saxutils.pyi +68 -0
  880. type_python-0.0.7/stdlib/xml/sax/xmlreader.pyi +90 -0
  881. type_python-0.0.7/stdlib/xmlrpc/__init__.pyi +0 -0
  882. type_python-0.0.7/stdlib/xmlrpc/client.pyi +298 -0
  883. type_python-0.0.7/stdlib/xmlrpc/server.pyi +150 -0
  884. type_python-0.0.7/stdlib/xxlimited.pyi +24 -0
  885. type_python-0.0.7/stdlib/zipapp.pyi +20 -0
  886. type_python-0.0.7/stdlib/zipfile/__init__.pyi +417 -0
  887. type_python-0.0.7/stdlib/zipfile/_path/__init__.pyi +83 -0
  888. type_python-0.0.7/stdlib/zipfile/_path/glob.pyi +26 -0
  889. type_python-0.0.7/stdlib/zipimport.pyi +59 -0
  890. type_python-0.0.7/stdlib/zlib.pyi +74 -0
  891. type_python-0.0.7/stdlib/zoneinfo/__init__.pyi +35 -0
  892. type_python-0.0.7/stdlib/zoneinfo/_common.pyi +14 -0
  893. type_python-0.0.7/stdlib/zoneinfo/_tzpath.pyi +13 -0
  894. type_python-0.0.7/templates/src/app/__init__.tpy +2 -0
  895. type_python-0.0.7/templates/typepython.toml +39 -0
  896. type_python-0.0.7/type_python.egg-info/PKG-INFO +98 -0
  897. type_python-0.0.7/type_python.egg-info/SOURCES.txt +903 -0
  898. type_python-0.0.7/type_python.egg-info/entry_points.txt +2 -0
  899. type_python-0.0.7/type_python.egg-info/top_level.txt +1 -0
  900. type_python-0.0.7/typepython/__init__.py +5 -0
  901. type_python-0.0.7/typepython/__main__.py +5 -0
  902. type_python-0.0.7/typepython/_runner.py +60 -0
  903. type_python-0.0.1/PKG-INFO +0 -13
  904. type_python-0.0.1/README.md +0 -3
  905. type_python-0.0.1/pyproject.toml +0 -16
  906. type_python-0.0.1/type_python.egg-info/PKG-INFO +0 -13
  907. type_python-0.0.1/type_python.egg-info/SOURCES.txt +0 -8
  908. type_python-0.0.1/type_python.egg-info/top_level.txt +0 -1
  909. type_python-0.0.1/type_python.py +0 -4
  910. {type_python-0.0.1 → type_python-0.0.7}/LICENSE +0 -0
  911. {type_python-0.0.1 → type_python-0.0.7}/setup.cfg +0 -0
  912. {type_python-0.0.1 → type_python-0.0.7}/type_python.egg-info/dependency_links.txt +0 -0
@@ -0,0 +1,2554 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anes"
22
+ version = "0.1.6"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
25
+
26
+ [[package]]
27
+ name = "anstream"
28
+ version = "1.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
31
+ dependencies = [
32
+ "anstyle",
33
+ "anstyle-parse",
34
+ "anstyle-query",
35
+ "anstyle-wincon",
36
+ "colorchoice",
37
+ "is_terminal_polyfill",
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle"
43
+ version = "1.0.14"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
46
+
47
+ [[package]]
48
+ name = "anstyle-parse"
49
+ version = "1.0.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
52
+ dependencies = [
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle-query"
58
+ version = "1.1.5"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
61
+ dependencies = [
62
+ "windows-sys 0.61.2",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-wincon"
67
+ version = "3.0.11"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
70
+ dependencies = [
71
+ "anstyle",
72
+ "once_cell_polyfill",
73
+ "windows-sys 0.61.2",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "anyhow"
78
+ version = "1.0.102"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
81
+
82
+ [[package]]
83
+ name = "attribute-derive"
84
+ version = "0.10.5"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
87
+ dependencies = [
88
+ "attribute-derive-macro",
89
+ "derive-where",
90
+ "manyhow",
91
+ "proc-macro2",
92
+ "quote",
93
+ "syn",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "attribute-derive-macro"
98
+ version = "0.10.5"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
101
+ dependencies = [
102
+ "collection_literals",
103
+ "interpolator",
104
+ "manyhow",
105
+ "proc-macro-utils",
106
+ "proc-macro2",
107
+ "quote",
108
+ "quote-use",
109
+ "syn",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "autocfg"
114
+ version = "1.5.0"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
117
+
118
+ [[package]]
119
+ name = "bit-set"
120
+ version = "0.8.0"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
123
+ dependencies = [
124
+ "bit-vec",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "bit-vec"
129
+ version = "0.8.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
132
+
133
+ [[package]]
134
+ name = "bitflags"
135
+ version = "1.3.2"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
138
+
139
+ [[package]]
140
+ name = "bitflags"
141
+ version = "2.11.0"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
144
+
145
+ [[package]]
146
+ name = "bstr"
147
+ version = "1.12.1"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
150
+ dependencies = [
151
+ "memchr",
152
+ "regex-automata",
153
+ "serde",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "bumpalo"
158
+ version = "3.20.2"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
161
+
162
+ [[package]]
163
+ name = "byteorder"
164
+ version = "1.5.0"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
167
+
168
+ [[package]]
169
+ name = "cast"
170
+ version = "0.3.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
173
+
174
+ [[package]]
175
+ name = "castaway"
176
+ version = "0.2.4"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
179
+ dependencies = [
180
+ "rustversion",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "cfg-if"
185
+ version = "1.0.4"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
188
+
189
+ [[package]]
190
+ name = "ciborium"
191
+ version = "0.2.2"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
194
+ dependencies = [
195
+ "ciborium-io",
196
+ "ciborium-ll",
197
+ "serde",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "ciborium-io"
202
+ version = "0.2.2"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
205
+
206
+ [[package]]
207
+ name = "ciborium-ll"
208
+ version = "0.2.2"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
211
+ dependencies = [
212
+ "ciborium-io",
213
+ "half",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "clap"
218
+ version = "4.6.0"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
221
+ dependencies = [
222
+ "clap_builder",
223
+ "clap_derive",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "clap_builder"
228
+ version = "4.6.0"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
231
+ dependencies = [
232
+ "anstream",
233
+ "anstyle",
234
+ "clap_lex",
235
+ "strsim",
236
+ "terminal_size",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "clap_derive"
241
+ version = "4.6.0"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
244
+ dependencies = [
245
+ "heck",
246
+ "proc-macro2",
247
+ "quote",
248
+ "syn",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "clap_lex"
253
+ version = "1.1.0"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
256
+
257
+ [[package]]
258
+ name = "collection_literals"
259
+ version = "1.0.3"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
262
+
263
+ [[package]]
264
+ name = "colorchoice"
265
+ version = "1.0.5"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
268
+
269
+ [[package]]
270
+ name = "compact_str"
271
+ version = "0.9.0"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
274
+ dependencies = [
275
+ "castaway",
276
+ "cfg-if",
277
+ "itoa",
278
+ "rustversion",
279
+ "ryu",
280
+ "static_assertions",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "console"
285
+ version = "0.16.3"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
288
+ dependencies = [
289
+ "encode_unicode",
290
+ "libc",
291
+ "windows-sys 0.61.2",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "crc32fast"
296
+ version = "1.5.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
299
+ dependencies = [
300
+ "cfg-if",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "criterion"
305
+ version = "0.5.1"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
308
+ dependencies = [
309
+ "anes",
310
+ "cast",
311
+ "ciborium",
312
+ "clap",
313
+ "criterion-plot",
314
+ "is-terminal",
315
+ "itertools 0.10.5",
316
+ "num-traits",
317
+ "once_cell",
318
+ "oorandom",
319
+ "plotters",
320
+ "rayon",
321
+ "regex",
322
+ "serde",
323
+ "serde_derive",
324
+ "serde_json",
325
+ "tinytemplate",
326
+ "walkdir",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "criterion-plot"
331
+ version = "0.5.0"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
334
+ dependencies = [
335
+ "cast",
336
+ "itertools 0.10.5",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "crossbeam-channel"
341
+ version = "0.5.15"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
344
+ dependencies = [
345
+ "crossbeam-utils",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "crossbeam-deque"
350
+ version = "0.8.6"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
353
+ dependencies = [
354
+ "crossbeam-epoch",
355
+ "crossbeam-utils",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "crossbeam-epoch"
360
+ version = "0.9.18"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
363
+ dependencies = [
364
+ "crossbeam-utils",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "crossbeam-utils"
369
+ version = "0.8.21"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
372
+
373
+ [[package]]
374
+ name = "crunchy"
375
+ version = "0.2.4"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
378
+
379
+ [[package]]
380
+ name = "derive-where"
381
+ version = "1.6.1"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
384
+ dependencies = [
385
+ "proc-macro2",
386
+ "quote",
387
+ "syn",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "displaydoc"
392
+ version = "0.2.5"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
395
+ dependencies = [
396
+ "proc-macro2",
397
+ "quote",
398
+ "syn",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "either"
403
+ version = "1.15.0"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
406
+
407
+ [[package]]
408
+ name = "encode_unicode"
409
+ version = "1.0.0"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
412
+
413
+ [[package]]
414
+ name = "equivalent"
415
+ version = "1.0.2"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
418
+
419
+ [[package]]
420
+ name = "errno"
421
+ version = "0.3.14"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
424
+ dependencies = [
425
+ "libc",
426
+ "windows-sys 0.61.2",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "fastrand"
431
+ version = "2.3.0"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
434
+
435
+ [[package]]
436
+ name = "filetime"
437
+ version = "0.2.27"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
440
+ dependencies = [
441
+ "cfg-if",
442
+ "libc",
443
+ "libredox",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "flate2"
448
+ version = "1.1.9"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
451
+ dependencies = [
452
+ "crc32fast",
453
+ "miniz_oxide",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "fnv"
458
+ version = "1.0.7"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
461
+
462
+ [[package]]
463
+ name = "foldhash"
464
+ version = "0.1.5"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
467
+
468
+ [[package]]
469
+ name = "form_urlencoded"
470
+ version = "1.2.2"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
473
+ dependencies = [
474
+ "percent-encoding",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "fsevent-sys"
479
+ version = "4.1.0"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
482
+ dependencies = [
483
+ "libc",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "get-size-derive2"
488
+ version = "0.7.4"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "f2b6d1e2f75c16bfbcd0f95d84f99858a6e2f885c2287d1f5c3a96e8444a34b4"
491
+ dependencies = [
492
+ "attribute-derive",
493
+ "quote",
494
+ "syn",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "get-size2"
499
+ version = "0.7.4"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "49cf31a6d70300cf81461098f7797571362387ef4bf85d32ac47eaa59b3a5a1a"
502
+ dependencies = [
503
+ "compact_str",
504
+ "get-size-derive2",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "getopts"
509
+ version = "0.2.24"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
512
+ dependencies = [
513
+ "unicode-width",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "getrandom"
518
+ version = "0.2.17"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
521
+ dependencies = [
522
+ "cfg-if",
523
+ "libc",
524
+ "wasi",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "getrandom"
529
+ version = "0.3.4"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
532
+ dependencies = [
533
+ "cfg-if",
534
+ "libc",
535
+ "r-efi 5.3.0",
536
+ "wasip2",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "getrandom"
541
+ version = "0.4.2"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
544
+ dependencies = [
545
+ "cfg-if",
546
+ "libc",
547
+ "r-efi 6.0.0",
548
+ "wasip2",
549
+ "wasip3",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "glob"
554
+ version = "0.3.3"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
557
+
558
+ [[package]]
559
+ name = "half"
560
+ version = "2.7.1"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
563
+ dependencies = [
564
+ "cfg-if",
565
+ "crunchy",
566
+ "zerocopy",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "hashbrown"
571
+ version = "0.15.5"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
574
+ dependencies = [
575
+ "foldhash",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "hashbrown"
580
+ version = "0.16.1"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
583
+
584
+ [[package]]
585
+ name = "heck"
586
+ version = "0.5.0"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
589
+
590
+ [[package]]
591
+ name = "hermit-abi"
592
+ version = "0.5.2"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
595
+
596
+ [[package]]
597
+ name = "icu_collections"
598
+ version = "2.1.1"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
601
+ dependencies = [
602
+ "displaydoc",
603
+ "potential_utf",
604
+ "yoke",
605
+ "zerofrom",
606
+ "zerovec",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "icu_locale_core"
611
+ version = "2.1.1"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
614
+ dependencies = [
615
+ "displaydoc",
616
+ "litemap",
617
+ "tinystr",
618
+ "writeable",
619
+ "zerovec",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "icu_normalizer"
624
+ version = "2.1.1"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
627
+ dependencies = [
628
+ "icu_collections",
629
+ "icu_normalizer_data",
630
+ "icu_properties",
631
+ "icu_provider",
632
+ "smallvec",
633
+ "zerovec",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "icu_normalizer_data"
638
+ version = "2.1.1"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
641
+
642
+ [[package]]
643
+ name = "icu_properties"
644
+ version = "2.1.2"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
647
+ dependencies = [
648
+ "icu_collections",
649
+ "icu_locale_core",
650
+ "icu_properties_data",
651
+ "icu_provider",
652
+ "zerotrie",
653
+ "zerovec",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "icu_properties_data"
658
+ version = "2.1.2"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
661
+
662
+ [[package]]
663
+ name = "icu_provider"
664
+ version = "2.1.1"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
667
+ dependencies = [
668
+ "displaydoc",
669
+ "icu_locale_core",
670
+ "writeable",
671
+ "yoke",
672
+ "zerofrom",
673
+ "zerotrie",
674
+ "zerovec",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "id-arena"
679
+ version = "2.3.0"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
682
+
683
+ [[package]]
684
+ name = "idna"
685
+ version = "1.1.0"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
688
+ dependencies = [
689
+ "idna_adapter",
690
+ "smallvec",
691
+ "utf8_iter",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "idna_adapter"
696
+ version = "1.2.1"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
699
+ dependencies = [
700
+ "icu_normalizer",
701
+ "icu_properties",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "indexmap"
706
+ version = "2.13.0"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
709
+ dependencies = [
710
+ "equivalent",
711
+ "hashbrown 0.16.1",
712
+ "serde",
713
+ "serde_core",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "inotify"
718
+ version = "0.9.6"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
721
+ dependencies = [
722
+ "bitflags 1.3.2",
723
+ "inotify-sys",
724
+ "libc",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "inotify-sys"
729
+ version = "0.1.5"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
732
+ dependencies = [
733
+ "libc",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "insta"
738
+ version = "1.47.2"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
741
+ dependencies = [
742
+ "console",
743
+ "once_cell",
744
+ "similar",
745
+ "tempfile",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "interpolator"
750
+ version = "0.5.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
753
+
754
+ [[package]]
755
+ name = "is-macro"
756
+ version = "0.3.7"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
759
+ dependencies = [
760
+ "heck",
761
+ "proc-macro2",
762
+ "quote",
763
+ "syn",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "is-terminal"
768
+ version = "0.4.17"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
771
+ dependencies = [
772
+ "hermit-abi",
773
+ "libc",
774
+ "windows-sys 0.61.2",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "is_terminal_polyfill"
779
+ version = "1.70.2"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
782
+
783
+ [[package]]
784
+ name = "itertools"
785
+ version = "0.10.5"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
788
+ dependencies = [
789
+ "either",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "itertools"
794
+ version = "0.14.0"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
797
+ dependencies = [
798
+ "either",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "itoa"
803
+ version = "1.0.17"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
806
+
807
+ [[package]]
808
+ name = "js-sys"
809
+ version = "0.3.93"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "797146bb2677299a1eb6b7b50a890f4c361b29ef967addf5b2fa45dae1bb6d7d"
812
+ dependencies = [
813
+ "once_cell",
814
+ "wasm-bindgen",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "kqueue"
819
+ version = "1.1.1"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
822
+ dependencies = [
823
+ "kqueue-sys",
824
+ "libc",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "kqueue-sys"
829
+ version = "1.0.4"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
832
+ dependencies = [
833
+ "bitflags 1.3.2",
834
+ "libc",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "lazy_static"
839
+ version = "1.5.0"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
842
+
843
+ [[package]]
844
+ name = "leb128fmt"
845
+ version = "0.1.0"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
848
+
849
+ [[package]]
850
+ name = "libc"
851
+ version = "0.2.183"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
854
+
855
+ [[package]]
856
+ name = "libredox"
857
+ version = "0.1.14"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
860
+ dependencies = [
861
+ "bitflags 2.11.0",
862
+ "libc",
863
+ "plain",
864
+ "redox_syscall",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "linux-raw-sys"
869
+ version = "0.12.1"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
872
+
873
+ [[package]]
874
+ name = "litemap"
875
+ version = "0.8.1"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
878
+
879
+ [[package]]
880
+ name = "littrs-ruff-python-ast"
881
+ version = "0.6.2"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "05c308139d24fd509ea8f57167c88e0e6cca85e2d618f3a63f7220b7f81cdf7e"
884
+ dependencies = [
885
+ "aho-corasick",
886
+ "bitflags 2.11.0",
887
+ "compact_str",
888
+ "get-size2",
889
+ "is-macro",
890
+ "littrs-ruff-python-trivia",
891
+ "littrs-ruff-source-file",
892
+ "littrs-ruff-text-size",
893
+ "memchr",
894
+ "rustc-hash",
895
+ "thiserror",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "littrs-ruff-python-parser"
900
+ version = "0.6.2"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "1b2a9d6578e6bc72ffc786a0ed80947156c10b906c08c76ee0959c71f69c4de8"
903
+ dependencies = [
904
+ "bitflags 2.11.0",
905
+ "bstr",
906
+ "compact_str",
907
+ "get-size2",
908
+ "littrs-ruff-python-ast",
909
+ "littrs-ruff-python-trivia",
910
+ "littrs-ruff-text-size",
911
+ "memchr",
912
+ "rustc-hash",
913
+ "static_assertions",
914
+ "unicode-ident",
915
+ "unicode-normalization",
916
+ "unicode_names2",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "littrs-ruff-python-trivia"
921
+ version = "0.6.2"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "1ca6191392165caee8c6d82792a8fb32f08b5fb84d5bd46440b17061d05e7f91"
924
+ dependencies = [
925
+ "itertools 0.14.0",
926
+ "littrs-ruff-source-file",
927
+ "littrs-ruff-text-size",
928
+ "unicode-ident",
929
+ ]
930
+
931
+ [[package]]
932
+ name = "littrs-ruff-source-file"
933
+ version = "0.6.2"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "48c75ecb141e8b341a4bbd3e928d8047e890da7da8d13142fe94a7b2407da77e"
936
+ dependencies = [
937
+ "littrs-ruff-text-size",
938
+ "memchr",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "littrs-ruff-text-size"
943
+ version = "0.6.2"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "70eac4fcd414b77f5abaa08b1b6f7dab34ed9ed54cfa2e7598b2c18816e60790"
946
+ dependencies = [
947
+ "get-size2",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "log"
952
+ version = "0.4.29"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
955
+
956
+ [[package]]
957
+ name = "manyhow"
958
+ version = "0.11.4"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
961
+ dependencies = [
962
+ "manyhow-macros",
963
+ "proc-macro2",
964
+ "quote",
965
+ "syn",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "manyhow-macros"
970
+ version = "0.11.4"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
973
+ dependencies = [
974
+ "proc-macro-utils",
975
+ "proc-macro2",
976
+ "quote",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "matchers"
981
+ version = "0.2.0"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
984
+ dependencies = [
985
+ "regex-automata",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "memchr"
990
+ version = "2.8.0"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
993
+
994
+ [[package]]
995
+ name = "miniz_oxide"
996
+ version = "0.8.9"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
999
+ dependencies = [
1000
+ "adler2",
1001
+ "simd-adler32",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "mio"
1006
+ version = "0.8.11"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1009
+ dependencies = [
1010
+ "libc",
1011
+ "log",
1012
+ "wasi",
1013
+ "windows-sys 0.48.0",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "notify"
1018
+ version = "6.1.1"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
1021
+ dependencies = [
1022
+ "bitflags 2.11.0",
1023
+ "crossbeam-channel",
1024
+ "filetime",
1025
+ "fsevent-sys",
1026
+ "inotify",
1027
+ "kqueue",
1028
+ "libc",
1029
+ "log",
1030
+ "mio",
1031
+ "walkdir",
1032
+ "windows-sys 0.48.0",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "nu-ansi-term"
1037
+ version = "0.50.3"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1040
+ dependencies = [
1041
+ "windows-sys 0.61.2",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "num-traits"
1046
+ version = "0.2.19"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1049
+ dependencies = [
1050
+ "autocfg",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "once_cell"
1055
+ version = "1.21.4"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1058
+
1059
+ [[package]]
1060
+ name = "once_cell_polyfill"
1061
+ version = "1.70.2"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1064
+
1065
+ [[package]]
1066
+ name = "oorandom"
1067
+ version = "11.1.5"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1070
+
1071
+ [[package]]
1072
+ name = "percent-encoding"
1073
+ version = "2.3.2"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1076
+
1077
+ [[package]]
1078
+ name = "phf"
1079
+ version = "0.11.3"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1082
+ dependencies = [
1083
+ "phf_shared",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "phf_codegen"
1088
+ version = "0.11.3"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1091
+ dependencies = [
1092
+ "phf_generator",
1093
+ "phf_shared",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "phf_generator"
1098
+ version = "0.11.3"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1101
+ dependencies = [
1102
+ "phf_shared",
1103
+ "rand 0.8.5",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "phf_shared"
1108
+ version = "0.11.3"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1111
+ dependencies = [
1112
+ "siphasher",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "pin-project-lite"
1117
+ version = "0.2.17"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1120
+
1121
+ [[package]]
1122
+ name = "plain"
1123
+ version = "0.2.3"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1126
+
1127
+ [[package]]
1128
+ name = "plotters"
1129
+ version = "0.3.7"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1132
+ dependencies = [
1133
+ "num-traits",
1134
+ "plotters-backend",
1135
+ "plotters-svg",
1136
+ "wasm-bindgen",
1137
+ "web-sys",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "plotters-backend"
1142
+ version = "0.3.7"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1145
+
1146
+ [[package]]
1147
+ name = "plotters-svg"
1148
+ version = "0.3.7"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1151
+ dependencies = [
1152
+ "plotters-backend",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "potential_utf"
1157
+ version = "0.1.4"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1160
+ dependencies = [
1161
+ "zerovec",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "ppv-lite86"
1166
+ version = "0.2.21"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1169
+ dependencies = [
1170
+ "zerocopy",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "prettyplease"
1175
+ version = "0.2.37"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1178
+ dependencies = [
1179
+ "proc-macro2",
1180
+ "syn",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "proc-macro-utils"
1185
+ version = "0.10.0"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
1188
+ dependencies = [
1189
+ "proc-macro2",
1190
+ "quote",
1191
+ "smallvec",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "proc-macro2"
1196
+ version = "1.0.106"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1199
+ dependencies = [
1200
+ "unicode-ident",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "proptest"
1205
+ version = "1.11.0"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1208
+ dependencies = [
1209
+ "bit-set",
1210
+ "bit-vec",
1211
+ "bitflags 2.11.0",
1212
+ "num-traits",
1213
+ "rand 0.9.2",
1214
+ "rand_chacha 0.9.0",
1215
+ "rand_xorshift",
1216
+ "regex-syntax",
1217
+ "rusty-fork",
1218
+ "tempfile",
1219
+ "unarray",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "quick-error"
1224
+ version = "1.2.3"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1227
+
1228
+ [[package]]
1229
+ name = "quote"
1230
+ version = "1.0.45"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1233
+ dependencies = [
1234
+ "proc-macro2",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "quote-use"
1239
+ version = "0.8.4"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
1242
+ dependencies = [
1243
+ "quote",
1244
+ "quote-use-macros",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "quote-use-macros"
1249
+ version = "0.8.4"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
1252
+ dependencies = [
1253
+ "proc-macro-utils",
1254
+ "proc-macro2",
1255
+ "quote",
1256
+ "syn",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "r-efi"
1261
+ version = "5.3.0"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1264
+
1265
+ [[package]]
1266
+ name = "r-efi"
1267
+ version = "6.0.0"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1270
+
1271
+ [[package]]
1272
+ name = "rand"
1273
+ version = "0.8.5"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1276
+ dependencies = [
1277
+ "libc",
1278
+ "rand_chacha 0.3.1",
1279
+ "rand_core 0.6.4",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "rand"
1284
+ version = "0.9.2"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1287
+ dependencies = [
1288
+ "rand_chacha 0.9.0",
1289
+ "rand_core 0.9.5",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "rand_chacha"
1294
+ version = "0.3.1"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1297
+ dependencies = [
1298
+ "ppv-lite86",
1299
+ "rand_core 0.6.4",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "rand_chacha"
1304
+ version = "0.9.0"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1307
+ dependencies = [
1308
+ "ppv-lite86",
1309
+ "rand_core 0.9.5",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "rand_core"
1314
+ version = "0.6.4"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1317
+ dependencies = [
1318
+ "getrandom 0.2.17",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "rand_core"
1323
+ version = "0.9.5"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1326
+ dependencies = [
1327
+ "getrandom 0.3.4",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "rand_xorshift"
1332
+ version = "0.4.0"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1335
+ dependencies = [
1336
+ "rand_core 0.9.5",
1337
+ ]
1338
+
1339
+ [[package]]
1340
+ name = "rayon"
1341
+ version = "1.11.0"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1344
+ dependencies = [
1345
+ "either",
1346
+ "rayon-core",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "rayon-core"
1351
+ version = "1.13.0"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1354
+ dependencies = [
1355
+ "crossbeam-deque",
1356
+ "crossbeam-utils",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "redox_syscall"
1361
+ version = "0.7.3"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16"
1364
+ dependencies = [
1365
+ "bitflags 2.11.0",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "regex"
1370
+ version = "1.12.3"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1373
+ dependencies = [
1374
+ "aho-corasick",
1375
+ "memchr",
1376
+ "regex-automata",
1377
+ "regex-syntax",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "regex-automata"
1382
+ version = "0.4.14"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1385
+ dependencies = [
1386
+ "aho-corasick",
1387
+ "memchr",
1388
+ "regex-syntax",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "regex-syntax"
1393
+ version = "0.8.10"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1396
+
1397
+ [[package]]
1398
+ name = "rustc-hash"
1399
+ version = "2.1.1"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1402
+
1403
+ [[package]]
1404
+ name = "rustix"
1405
+ version = "1.1.4"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1408
+ dependencies = [
1409
+ "bitflags 2.11.0",
1410
+ "errno",
1411
+ "libc",
1412
+ "linux-raw-sys",
1413
+ "windows-sys 0.61.2",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "rustversion"
1418
+ version = "1.0.22"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1421
+
1422
+ [[package]]
1423
+ name = "rusty-fork"
1424
+ version = "0.3.1"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1427
+ dependencies = [
1428
+ "fnv",
1429
+ "quick-error",
1430
+ "tempfile",
1431
+ "wait-timeout",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "ryu"
1436
+ version = "1.0.23"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1439
+
1440
+ [[package]]
1441
+ name = "same-file"
1442
+ version = "1.0.6"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1445
+ dependencies = [
1446
+ "winapi-util",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "semver"
1451
+ version = "1.0.27"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1454
+
1455
+ [[package]]
1456
+ name = "serde"
1457
+ version = "1.0.228"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1460
+ dependencies = [
1461
+ "serde_core",
1462
+ "serde_derive",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "serde_core"
1467
+ version = "1.0.228"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1470
+ dependencies = [
1471
+ "serde_derive",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "serde_derive"
1476
+ version = "1.0.228"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1479
+ dependencies = [
1480
+ "proc-macro2",
1481
+ "quote",
1482
+ "syn",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "serde_json"
1487
+ version = "1.0.149"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1490
+ dependencies = [
1491
+ "itoa",
1492
+ "memchr",
1493
+ "serde",
1494
+ "serde_core",
1495
+ "zmij",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "serde_spanned"
1500
+ version = "0.6.9"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1503
+ dependencies = [
1504
+ "serde",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "sharded-slab"
1509
+ version = "0.1.7"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1512
+ dependencies = [
1513
+ "lazy_static",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "simd-adler32"
1518
+ version = "0.3.8"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
1521
+
1522
+ [[package]]
1523
+ name = "similar"
1524
+ version = "2.7.0"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1527
+
1528
+ [[package]]
1529
+ name = "siphasher"
1530
+ version = "1.0.2"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
1533
+
1534
+ [[package]]
1535
+ name = "smallvec"
1536
+ version = "1.15.1"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1539
+
1540
+ [[package]]
1541
+ name = "stable_deref_trait"
1542
+ version = "1.2.1"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1545
+
1546
+ [[package]]
1547
+ name = "static_assertions"
1548
+ version = "1.1.0"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1551
+
1552
+ [[package]]
1553
+ name = "strsim"
1554
+ version = "0.11.1"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1557
+
1558
+ [[package]]
1559
+ name = "syn"
1560
+ version = "2.0.117"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1563
+ dependencies = [
1564
+ "proc-macro2",
1565
+ "quote",
1566
+ "unicode-ident",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "synstructure"
1571
+ version = "0.13.2"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1574
+ dependencies = [
1575
+ "proc-macro2",
1576
+ "quote",
1577
+ "syn",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "tar"
1582
+ version = "0.4.45"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973"
1585
+ dependencies = [
1586
+ "filetime",
1587
+ "libc",
1588
+ "xattr",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "tempfile"
1593
+ version = "3.27.0"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1596
+ dependencies = [
1597
+ "fastrand",
1598
+ "getrandom 0.4.2",
1599
+ "once_cell",
1600
+ "rustix",
1601
+ "windows-sys 0.61.2",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "terminal_size"
1606
+ version = "0.4.3"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
1609
+ dependencies = [
1610
+ "rustix",
1611
+ "windows-sys 0.60.2",
1612
+ ]
1613
+
1614
+ [[package]]
1615
+ name = "thiserror"
1616
+ version = "2.0.18"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1619
+ dependencies = [
1620
+ "thiserror-impl",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "thiserror-impl"
1625
+ version = "2.0.18"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1628
+ dependencies = [
1629
+ "proc-macro2",
1630
+ "quote",
1631
+ "syn",
1632
+ ]
1633
+
1634
+ [[package]]
1635
+ name = "thread_local"
1636
+ version = "1.1.9"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1639
+ dependencies = [
1640
+ "cfg-if",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "tinystr"
1645
+ version = "0.8.2"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1648
+ dependencies = [
1649
+ "displaydoc",
1650
+ "zerovec",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "tinytemplate"
1655
+ version = "1.2.1"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1658
+ dependencies = [
1659
+ "serde",
1660
+ "serde_json",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "tinyvec"
1665
+ version = "1.11.0"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1668
+ dependencies = [
1669
+ "tinyvec_macros",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "tinyvec_macros"
1674
+ version = "0.1.1"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1677
+
1678
+ [[package]]
1679
+ name = "toml"
1680
+ version = "0.8.23"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1683
+ dependencies = [
1684
+ "serde",
1685
+ "serde_spanned",
1686
+ "toml_datetime",
1687
+ "toml_edit",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "toml_datetime"
1692
+ version = "0.6.11"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1695
+ dependencies = [
1696
+ "serde",
1697
+ ]
1698
+
1699
+ [[package]]
1700
+ name = "toml_edit"
1701
+ version = "0.22.27"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1704
+ dependencies = [
1705
+ "indexmap",
1706
+ "serde",
1707
+ "serde_spanned",
1708
+ "toml_datetime",
1709
+ "toml_write",
1710
+ "winnow",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "toml_write"
1715
+ version = "0.1.2"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1718
+
1719
+ [[package]]
1720
+ name = "tracing"
1721
+ version = "0.1.44"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1724
+ dependencies = [
1725
+ "pin-project-lite",
1726
+ "tracing-attributes",
1727
+ "tracing-core",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "tracing-attributes"
1732
+ version = "0.1.31"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1735
+ dependencies = [
1736
+ "proc-macro2",
1737
+ "quote",
1738
+ "syn",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "tracing-core"
1743
+ version = "0.1.36"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1746
+ dependencies = [
1747
+ "once_cell",
1748
+ "valuable",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "tracing-log"
1753
+ version = "0.2.0"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1756
+ dependencies = [
1757
+ "log",
1758
+ "once_cell",
1759
+ "tracing-core",
1760
+ ]
1761
+
1762
+ [[package]]
1763
+ name = "tracing-subscriber"
1764
+ version = "0.3.23"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1767
+ dependencies = [
1768
+ "matchers",
1769
+ "nu-ansi-term",
1770
+ "once_cell",
1771
+ "regex-automata",
1772
+ "sharded-slab",
1773
+ "smallvec",
1774
+ "thread_local",
1775
+ "tracing",
1776
+ "tracing-core",
1777
+ "tracing-log",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "typepython-binding"
1782
+ version = "0.1.0"
1783
+ dependencies = [
1784
+ "typepython-diagnostics",
1785
+ "typepython-syntax",
1786
+ ]
1787
+
1788
+ [[package]]
1789
+ name = "typepython-checking"
1790
+ version = "0.1.0"
1791
+ dependencies = [
1792
+ "criterion",
1793
+ "typepython-binding",
1794
+ "typepython-config",
1795
+ "typepython-diagnostics",
1796
+ "typepython-graph",
1797
+ "typepython-incremental",
1798
+ "typepython-syntax",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "typepython-cli"
1803
+ version = "0.1.0"
1804
+ dependencies = [
1805
+ "anyhow",
1806
+ "clap",
1807
+ "flate2",
1808
+ "glob",
1809
+ "notify",
1810
+ "serde",
1811
+ "serde_json",
1812
+ "tar",
1813
+ "tracing",
1814
+ "tracing-subscriber",
1815
+ "typepython-binding",
1816
+ "typepython-checking",
1817
+ "typepython-config",
1818
+ "typepython-diagnostics",
1819
+ "typepython-emit",
1820
+ "typepython-graph",
1821
+ "typepython-incremental",
1822
+ "typepython-lowering",
1823
+ "typepython-lsp",
1824
+ "typepython-project",
1825
+ "typepython-syntax",
1826
+ "zip",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "typepython-config"
1831
+ version = "0.1.0"
1832
+ dependencies = [
1833
+ "serde",
1834
+ "thiserror",
1835
+ "toml",
1836
+ ]
1837
+
1838
+ [[package]]
1839
+ name = "typepython-diagnostics"
1840
+ version = "0.1.0"
1841
+ dependencies = [
1842
+ "serde",
1843
+ "serde_json",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "typepython-emit"
1848
+ version = "0.1.0"
1849
+ dependencies = [
1850
+ "insta",
1851
+ "littrs-ruff-python-ast",
1852
+ "littrs-ruff-python-parser",
1853
+ "littrs-ruff-text-size",
1854
+ "typepython-config",
1855
+ "typepython-lowering",
1856
+ "typepython-syntax",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "typepython-graph"
1861
+ version = "0.1.0"
1862
+ dependencies = [
1863
+ "criterion",
1864
+ "typepython-binding",
1865
+ "typepython-syntax",
1866
+ ]
1867
+
1868
+ [[package]]
1869
+ name = "typepython-incremental"
1870
+ version = "0.1.0"
1871
+ dependencies = [
1872
+ "serde",
1873
+ "serde_json",
1874
+ "typepython-binding",
1875
+ "typepython-graph",
1876
+ "typepython-syntax",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "typepython-lowering"
1881
+ version = "0.1.0"
1882
+ dependencies = [
1883
+ "criterion",
1884
+ "insta",
1885
+ "littrs-ruff-python-ast",
1886
+ "littrs-ruff-python-parser",
1887
+ "littrs-ruff-text-size",
1888
+ "typepython-diagnostics",
1889
+ "typepython-syntax",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "typepython-lsp"
1894
+ version = "0.1.0"
1895
+ dependencies = [
1896
+ "anyhow",
1897
+ "criterion",
1898
+ "glob",
1899
+ "serde",
1900
+ "serde_json",
1901
+ "thiserror",
1902
+ "typepython-binding",
1903
+ "typepython-checking",
1904
+ "typepython-config",
1905
+ "typepython-diagnostics",
1906
+ "typepython-emit",
1907
+ "typepython-graph",
1908
+ "typepython-incremental",
1909
+ "typepython-project",
1910
+ "typepython-syntax",
1911
+ "url",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "typepython-project"
1916
+ version = "0.1.0"
1917
+ dependencies = [
1918
+ "anyhow",
1919
+ "glob",
1920
+ "serde",
1921
+ "serde_json",
1922
+ "typepython-config",
1923
+ "typepython-diagnostics",
1924
+ "typepython-emit",
1925
+ "typepython-syntax",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "typepython-syntax"
1930
+ version = "0.1.0"
1931
+ dependencies = [
1932
+ "criterion",
1933
+ "littrs-ruff-python-ast",
1934
+ "littrs-ruff-python-parser",
1935
+ "littrs-ruff-text-size",
1936
+ "proptest",
1937
+ "serde",
1938
+ "typepython-diagnostics",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "unarray"
1943
+ version = "0.1.4"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1946
+
1947
+ [[package]]
1948
+ name = "unicode-ident"
1949
+ version = "1.0.24"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1952
+
1953
+ [[package]]
1954
+ name = "unicode-normalization"
1955
+ version = "0.1.25"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
1958
+ dependencies = [
1959
+ "tinyvec",
1960
+ ]
1961
+
1962
+ [[package]]
1963
+ name = "unicode-width"
1964
+ version = "0.2.2"
1965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1966
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1967
+
1968
+ [[package]]
1969
+ name = "unicode-xid"
1970
+ version = "0.2.6"
1971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1972
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1973
+
1974
+ [[package]]
1975
+ name = "unicode_names2"
1976
+ version = "1.3.0"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
1979
+ dependencies = [
1980
+ "phf",
1981
+ "unicode_names2_generator",
1982
+ ]
1983
+
1984
+ [[package]]
1985
+ name = "unicode_names2_generator"
1986
+ version = "1.3.0"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
1989
+ dependencies = [
1990
+ "getopts",
1991
+ "log",
1992
+ "phf_codegen",
1993
+ "rand 0.8.5",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "url"
1998
+ version = "2.5.8"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2001
+ dependencies = [
2002
+ "form_urlencoded",
2003
+ "idna",
2004
+ "percent-encoding",
2005
+ "serde",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "utf8_iter"
2010
+ version = "1.0.4"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2013
+
2014
+ [[package]]
2015
+ name = "utf8parse"
2016
+ version = "0.2.2"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2019
+
2020
+ [[package]]
2021
+ name = "valuable"
2022
+ version = "0.1.1"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2025
+
2026
+ [[package]]
2027
+ name = "wait-timeout"
2028
+ version = "0.2.1"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
2031
+ dependencies = [
2032
+ "libc",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "walkdir"
2037
+ version = "2.5.0"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2040
+ dependencies = [
2041
+ "same-file",
2042
+ "winapi-util",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "wasi"
2047
+ version = "0.11.1+wasi-snapshot-preview1"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2050
+
2051
+ [[package]]
2052
+ name = "wasip2"
2053
+ version = "1.0.1+wasi-0.2.4"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
2056
+ dependencies = [
2057
+ "wit-bindgen 0.46.0",
2058
+ ]
2059
+
2060
+ [[package]]
2061
+ name = "wasip3"
2062
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2065
+ dependencies = [
2066
+ "wit-bindgen 0.51.0",
2067
+ ]
2068
+
2069
+ [[package]]
2070
+ name = "wasm-bindgen"
2071
+ version = "0.2.116"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "7dc0882f7b5bb01ae8c5215a1230832694481c1a4be062fd410e12ea3da5b631"
2074
+ dependencies = [
2075
+ "cfg-if",
2076
+ "once_cell",
2077
+ "rustversion",
2078
+ "wasm-bindgen-macro",
2079
+ "wasm-bindgen-shared",
2080
+ ]
2081
+
2082
+ [[package]]
2083
+ name = "wasm-bindgen-macro"
2084
+ version = "0.2.116"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "75973d3066e01d035dbedaad2864c398df42f8dd7b1ea057c35b8407c015b537"
2087
+ dependencies = [
2088
+ "quote",
2089
+ "wasm-bindgen-macro-support",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "wasm-bindgen-macro-support"
2094
+ version = "0.2.116"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "91af5e4be765819e0bcfee7322c14374dc821e35e72fa663a830bbc7dc199eac"
2097
+ dependencies = [
2098
+ "bumpalo",
2099
+ "proc-macro2",
2100
+ "quote",
2101
+ "syn",
2102
+ "wasm-bindgen-shared",
2103
+ ]
2104
+
2105
+ [[package]]
2106
+ name = "wasm-bindgen-shared"
2107
+ version = "0.2.116"
2108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2109
+ checksum = "c9bf0406a78f02f336bf1e451799cca198e8acde4ffa278f0fb20487b150a633"
2110
+ dependencies = [
2111
+ "unicode-ident",
2112
+ ]
2113
+
2114
+ [[package]]
2115
+ name = "wasm-encoder"
2116
+ version = "0.244.0"
2117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2118
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2119
+ dependencies = [
2120
+ "leb128fmt",
2121
+ "wasmparser",
2122
+ ]
2123
+
2124
+ [[package]]
2125
+ name = "wasm-metadata"
2126
+ version = "0.244.0"
2127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2128
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2129
+ dependencies = [
2130
+ "anyhow",
2131
+ "indexmap",
2132
+ "wasm-encoder",
2133
+ "wasmparser",
2134
+ ]
2135
+
2136
+ [[package]]
2137
+ name = "wasmparser"
2138
+ version = "0.244.0"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2141
+ dependencies = [
2142
+ "bitflags 2.11.0",
2143
+ "hashbrown 0.15.5",
2144
+ "indexmap",
2145
+ "semver",
2146
+ ]
2147
+
2148
+ [[package]]
2149
+ name = "web-sys"
2150
+ version = "0.3.93"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "749466a37ee189057f54748b200186b59a03417a117267baf3fd89cecc9fb837"
2153
+ dependencies = [
2154
+ "js-sys",
2155
+ "wasm-bindgen",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "winapi-util"
2160
+ version = "0.1.11"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2163
+ dependencies = [
2164
+ "windows-sys 0.61.2",
2165
+ ]
2166
+
2167
+ [[package]]
2168
+ name = "windows-link"
2169
+ version = "0.2.1"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2172
+
2173
+ [[package]]
2174
+ name = "windows-sys"
2175
+ version = "0.48.0"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2178
+ dependencies = [
2179
+ "windows-targets 0.48.5",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "windows-sys"
2184
+ version = "0.60.2"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2187
+ dependencies = [
2188
+ "windows-targets 0.53.5",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "windows-sys"
2193
+ version = "0.61.2"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2196
+ dependencies = [
2197
+ "windows-link",
2198
+ ]
2199
+
2200
+ [[package]]
2201
+ name = "windows-targets"
2202
+ version = "0.48.5"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2205
+ dependencies = [
2206
+ "windows_aarch64_gnullvm 0.48.5",
2207
+ "windows_aarch64_msvc 0.48.5",
2208
+ "windows_i686_gnu 0.48.5",
2209
+ "windows_i686_msvc 0.48.5",
2210
+ "windows_x86_64_gnu 0.48.5",
2211
+ "windows_x86_64_gnullvm 0.48.5",
2212
+ "windows_x86_64_msvc 0.48.5",
2213
+ ]
2214
+
2215
+ [[package]]
2216
+ name = "windows-targets"
2217
+ version = "0.53.5"
2218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2220
+ dependencies = [
2221
+ "windows-link",
2222
+ "windows_aarch64_gnullvm 0.53.1",
2223
+ "windows_aarch64_msvc 0.53.1",
2224
+ "windows_i686_gnu 0.53.1",
2225
+ "windows_i686_gnullvm",
2226
+ "windows_i686_msvc 0.53.1",
2227
+ "windows_x86_64_gnu 0.53.1",
2228
+ "windows_x86_64_gnullvm 0.53.1",
2229
+ "windows_x86_64_msvc 0.53.1",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "windows_aarch64_gnullvm"
2234
+ version = "0.48.5"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2237
+
2238
+ [[package]]
2239
+ name = "windows_aarch64_gnullvm"
2240
+ version = "0.53.1"
2241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2242
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2243
+
2244
+ [[package]]
2245
+ name = "windows_aarch64_msvc"
2246
+ version = "0.48.5"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2249
+
2250
+ [[package]]
2251
+ name = "windows_aarch64_msvc"
2252
+ version = "0.53.1"
2253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2254
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2255
+
2256
+ [[package]]
2257
+ name = "windows_i686_gnu"
2258
+ version = "0.48.5"
2259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2260
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2261
+
2262
+ [[package]]
2263
+ name = "windows_i686_gnu"
2264
+ version = "0.53.1"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2267
+
2268
+ [[package]]
2269
+ name = "windows_i686_gnullvm"
2270
+ version = "0.53.1"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2273
+
2274
+ [[package]]
2275
+ name = "windows_i686_msvc"
2276
+ version = "0.48.5"
2277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2278
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2279
+
2280
+ [[package]]
2281
+ name = "windows_i686_msvc"
2282
+ version = "0.53.1"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2285
+
2286
+ [[package]]
2287
+ name = "windows_x86_64_gnu"
2288
+ version = "0.48.5"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2291
+
2292
+ [[package]]
2293
+ name = "windows_x86_64_gnu"
2294
+ version = "0.53.1"
2295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2296
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2297
+
2298
+ [[package]]
2299
+ name = "windows_x86_64_gnullvm"
2300
+ version = "0.48.5"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2303
+
2304
+ [[package]]
2305
+ name = "windows_x86_64_gnullvm"
2306
+ version = "0.53.1"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2309
+
2310
+ [[package]]
2311
+ name = "windows_x86_64_msvc"
2312
+ version = "0.48.5"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2315
+
2316
+ [[package]]
2317
+ name = "windows_x86_64_msvc"
2318
+ version = "0.53.1"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2321
+
2322
+ [[package]]
2323
+ name = "winnow"
2324
+ version = "0.7.15"
2325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2326
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2327
+ dependencies = [
2328
+ "memchr",
2329
+ ]
2330
+
2331
+ [[package]]
2332
+ name = "wit-bindgen"
2333
+ version = "0.46.0"
2334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2335
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
2336
+
2337
+ [[package]]
2338
+ name = "wit-bindgen"
2339
+ version = "0.51.0"
2340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2341
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2342
+ dependencies = [
2343
+ "wit-bindgen-rust-macro",
2344
+ ]
2345
+
2346
+ [[package]]
2347
+ name = "wit-bindgen-core"
2348
+ version = "0.51.0"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2351
+ dependencies = [
2352
+ "anyhow",
2353
+ "heck",
2354
+ "wit-parser",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "wit-bindgen-rust"
2359
+ version = "0.51.0"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2362
+ dependencies = [
2363
+ "anyhow",
2364
+ "heck",
2365
+ "indexmap",
2366
+ "prettyplease",
2367
+ "syn",
2368
+ "wasm-metadata",
2369
+ "wit-bindgen-core",
2370
+ "wit-component",
2371
+ ]
2372
+
2373
+ [[package]]
2374
+ name = "wit-bindgen-rust-macro"
2375
+ version = "0.51.0"
2376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2377
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2378
+ dependencies = [
2379
+ "anyhow",
2380
+ "prettyplease",
2381
+ "proc-macro2",
2382
+ "quote",
2383
+ "syn",
2384
+ "wit-bindgen-core",
2385
+ "wit-bindgen-rust",
2386
+ ]
2387
+
2388
+ [[package]]
2389
+ name = "wit-component"
2390
+ version = "0.244.0"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2393
+ dependencies = [
2394
+ "anyhow",
2395
+ "bitflags 2.11.0",
2396
+ "indexmap",
2397
+ "log",
2398
+ "serde",
2399
+ "serde_derive",
2400
+ "serde_json",
2401
+ "wasm-encoder",
2402
+ "wasm-metadata",
2403
+ "wasmparser",
2404
+ "wit-parser",
2405
+ ]
2406
+
2407
+ [[package]]
2408
+ name = "wit-parser"
2409
+ version = "0.244.0"
2410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2411
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2412
+ dependencies = [
2413
+ "anyhow",
2414
+ "id-arena",
2415
+ "indexmap",
2416
+ "log",
2417
+ "semver",
2418
+ "serde",
2419
+ "serde_derive",
2420
+ "serde_json",
2421
+ "unicode-xid",
2422
+ "wasmparser",
2423
+ ]
2424
+
2425
+ [[package]]
2426
+ name = "writeable"
2427
+ version = "0.6.2"
2428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2429
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2430
+
2431
+ [[package]]
2432
+ name = "xattr"
2433
+ version = "1.6.1"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
2436
+ dependencies = [
2437
+ "libc",
2438
+ "rustix",
2439
+ ]
2440
+
2441
+ [[package]]
2442
+ name = "yoke"
2443
+ version = "0.8.1"
2444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2445
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2446
+ dependencies = [
2447
+ "stable_deref_trait",
2448
+ "yoke-derive",
2449
+ "zerofrom",
2450
+ ]
2451
+
2452
+ [[package]]
2453
+ name = "yoke-derive"
2454
+ version = "0.8.1"
2455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2456
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2457
+ dependencies = [
2458
+ "proc-macro2",
2459
+ "quote",
2460
+ "syn",
2461
+ "synstructure",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "zerocopy"
2466
+ version = "0.8.47"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
2469
+ dependencies = [
2470
+ "zerocopy-derive",
2471
+ ]
2472
+
2473
+ [[package]]
2474
+ name = "zerocopy-derive"
2475
+ version = "0.8.47"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
2478
+ dependencies = [
2479
+ "proc-macro2",
2480
+ "quote",
2481
+ "syn",
2482
+ ]
2483
+
2484
+ [[package]]
2485
+ name = "zerofrom"
2486
+ version = "0.1.6"
2487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2488
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2489
+ dependencies = [
2490
+ "zerofrom-derive",
2491
+ ]
2492
+
2493
+ [[package]]
2494
+ name = "zerofrom-derive"
2495
+ version = "0.1.6"
2496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2497
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2498
+ dependencies = [
2499
+ "proc-macro2",
2500
+ "quote",
2501
+ "syn",
2502
+ "synstructure",
2503
+ ]
2504
+
2505
+ [[package]]
2506
+ name = "zerotrie"
2507
+ version = "0.2.3"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2510
+ dependencies = [
2511
+ "displaydoc",
2512
+ "yoke",
2513
+ "zerofrom",
2514
+ ]
2515
+
2516
+ [[package]]
2517
+ name = "zerovec"
2518
+ version = "0.11.5"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2521
+ dependencies = [
2522
+ "yoke",
2523
+ "zerofrom",
2524
+ "zerovec-derive",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "zerovec-derive"
2529
+ version = "0.11.2"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2532
+ dependencies = [
2533
+ "proc-macro2",
2534
+ "quote",
2535
+ "syn",
2536
+ ]
2537
+
2538
+ [[package]]
2539
+ name = "zip"
2540
+ version = "0.6.6"
2541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2542
+ checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
2543
+ dependencies = [
2544
+ "byteorder",
2545
+ "crc32fast",
2546
+ "crossbeam-utils",
2547
+ "flate2",
2548
+ ]
2549
+
2550
+ [[package]]
2551
+ name = "zmij"
2552
+ version = "1.0.21"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"