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