pyrefly 0.19.0__tar.gz → 0.19.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyrefly-0.19.0 → pyrefly-0.19.2}/Cargo.lock +588 -485
- pyrefly-0.19.2/Cargo.toml +17 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/PKG-INFO +1 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/Cargo.toml +5 -2
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/bin/main.rs +1 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/attr.rs +26 -12
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/class/class_field.rs +44 -11
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/class/classdef.rs +14 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/class/named_tuple.rs +1 -2
- pyrefly-0.19.2/pyrefly/lib/alt/class/variance_inference.rs +537 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/function.rs +2 -11
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/solve.rs +92 -24
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/types/class_metadata.rs +52 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/binding/binding.rs +94 -6
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/binding/bindings.rs +123 -30
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/binding/class.rs +6 -14
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/binding/expr.rs +31 -26
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/binding/function.rs +3 -3
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/binding/pattern.rs +8 -7
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/binding/scope.rs +18 -8
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/binding/stmt.rs +62 -34
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/binding/target.rs +73 -40
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/commands/autotype.rs +34 -24
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/commands/check.rs +53 -18
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/commands/config_migration.rs +238 -131
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/commands/init.rs +21 -5
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/commands/lsp.rs +156 -21
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/common/symbol_kind.rs +27 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/config.rs +3 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/environment/environment.rs +10 -3
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/mypy/mod.rs +1 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/mypy/pyproject.rs +12 -12
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/error/context.rs +4 -12
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/error/display.rs +0 -3
- pyrefly-0.19.2/pyrefly/lib/error/error.rs +208 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/error/kind.rs +93 -12
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/error/legacy.rs +2 -3
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/export/definitions.rs +32 -11
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/export/exports.rs +10 -8
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/lib.rs +1 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/module/module_info.rs +72 -4
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/solver/solver.rs +31 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/solver/subset.rs +10 -8
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/solver/type_order.rs +6 -3
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/ide.rs +46 -19
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/loader.rs +2 -2
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/lsp.rs +762 -222
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/mod.rs +1 -0
- pyrefly-0.19.2/pyrefly/lib/state/semantic_tokens.rs +143 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/state.rs +10 -4
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/assign.rs +19 -3
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/attributes.rs +3 -3
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/class_overrides.rs +19 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/class_subtyping.rs +3 -2
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/constructors.rs +3 -2
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/contextual.rs +30 -0
- pyrefly-0.19.2/pyrefly/lib/test/cycles.rs +227 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/dataclasses.rs +61 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/decorators.rs +1 -1
- pyrefly-0.19.2/pyrefly/lib/test/delayed_inference.rs +299 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/flow.rs +5 -4
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/generic_basic.rs +11 -10
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/generic_restrictions.rs +3 -4
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/literal.rs +9 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/definition.rs +382 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/hover_type.rs +28 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/lsp_interaction.rs +2 -2
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/lsp_interaction_util.rs +1 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/mod.rs +1 -0
- pyrefly-0.19.2/pyrefly/lib/test/lsp/semantic_tokens.rs +224 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/mod.rs +1 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/named_tuple.rs +2 -2
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/narrow.rs +1 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/paramspec.rs +10 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/pattern_match.rs +13 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/simple.rs +13 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/type_alias.rs +1 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/type_var_tuple.rs +7 -5
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/typed_dict.rs +11 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/variance_inference.rs +57 -6
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/annotation.rs +6 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/callable.rs +11 -7
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/display.rs +112 -34
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/lit_int.rs +4 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/simplify.rs +3 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/type_var.rs +32 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/types.rs +4 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_derive/Cargo.toml +1 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/Cargo.toml +1 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/globs.rs +103 -28
- pyrefly-0.19.0/Cargo.toml +0 -11
- pyrefly-0.19.0/pyrefly/lib/alt/class/variance_inference.rs +0 -69
- pyrefly-0.19.0/pyrefly/lib/error/error.rs +0 -152
- pyrefly-0.19.0/pyrefly/lib/test/delayed_inference.rs +0 -185
- {pyrefly-0.19.0 → pyrefly-0.19.2}/README.md +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyproject.toml +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/.gitignore +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/README.md +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/build.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/answers.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/call.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/callable.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/class/class_metadata.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/class/dataclass.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/class/enums.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/class/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/class/new_type.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/class/targs.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/class/typed_dict.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/debugging.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/expr.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/narrow.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/operators.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/special_calls.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/specials.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/traits.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/types/decorated_function.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/types/legacy_lookup.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/types/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/types/yields.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/alt/unwrap.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/binding/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/binding/narrow.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/binding/table.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/commands/buck_check.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/commands/config_finder.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/commands/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/commands/run.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/commands/suppress.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/commands/util.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/common/files.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/common/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/base.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/environment/finder.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/environment/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/environment/venv.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/error.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/finder.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/mypy/ini.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/mypy/regex_converter.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/pyright.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/config/util.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/dunder.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/error/collector.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/error/expectation.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/error/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/error/style.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/error/summarise.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/export/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/export/special.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/graph/calculation.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/graph/index.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/graph/index_map.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/graph/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/module/bundled.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/module/display.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/module/finder.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/module/ignore.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/module/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/module/module_name.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/module/module_path.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/module/short_identifier.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/module/source_db.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/module/wildcard.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/playground.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/report/binding_memory.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/report/debug_info.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/report/glean/convert.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/report/glean/facts.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/report/glean/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/report/glean/schema/builtin.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/report/glean/schema/digest.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/report/glean/schema/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/report/glean/schema/python.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/report/glean/schema/src.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/report/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/report/trace.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/ruff/ast.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/ruff/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/solver/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/dirty.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/epoch.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/errors.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/handle.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/load.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/memory.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/require.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/steps.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/state/subscriber.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/sys_info.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/attribute_narrow.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/callable.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/calls.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/class_keywords.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/class_super.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/descriptors.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/enums.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/imports.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/code_actions.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/completion.rs +1 -1
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/document_symbols.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/hover_docstring.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/inlay_hint.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/local_find_refs.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/signature_help.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/bar.py +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/foo.py +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/foo_relative.py +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/imports_builtins.py +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/bar.py +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/foo.py +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/pyrefly.toml +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/tests_requiring_config/with_synthetic_bindings.py +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/lsp/test_files/type_errors.py +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/metadata.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/mro.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/new_type.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/operators.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/overload.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/perf.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/protocol.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/returns.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/scope.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/state.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/subscript_narrow.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/suppression.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/tuple.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/typing_self.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/untyped_def_behaviors.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/util.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/var_resolution.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/with.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/test/yields.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/alias.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/class.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/equality.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/literal.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/lsp.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/mod.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/module.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/param_spec.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/qname.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/quantified.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/special_form.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/stdlib.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/tuple.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/type_info.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/type_var_tuple.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/lib/types/typed_dict.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/pyrefly.dotslash.py +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/rust-toolchain +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/__future__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/__main__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_ast.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_asyncio.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_bisect.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_blake2.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_bootlocale.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_bz2.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_codecs.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_collections_abc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_compat_pickle.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_compression.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_contextvars.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_csv.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_ctypes.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_curses.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_curses_panel.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_dbm.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_decimal.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_frozen_importlib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_frozen_importlib_external.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_gdbm.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_hashlib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_heapq.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_imp.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_interpchannels.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_interpqueues.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_interpreters.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_io.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_json.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_locale.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_lsprof.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_lzma.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_markupbase.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_msi.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_multibytecodec.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_operator.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_osx_support.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_pickle.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_posixsubprocess.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_py_abc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_pydecimal.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_queue.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_random.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_sitebuiltins.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_socket.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_sqlite3.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_ssl.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_stat.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_struct.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_thread.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_threading_local.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_tkinter.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_tracemalloc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_typeshed/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_typeshed/_type_checker_internals.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_typeshed/dbapi.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_typeshed/importlib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_typeshed/wsgi.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_typeshed/xml.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_warnings.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_weakref.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_weakrefset.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/_winapi.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/abc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/aifc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/annotationlib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/antigravity.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/argparse.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/array.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ast.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asynchat.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/base_events.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/base_futures.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/base_subprocess.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/base_tasks.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/constants.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/coroutines.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/events.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/exceptions.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/format_helpers.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/futures.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/graph.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/locks.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/log.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/mixins.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/proactor_events.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/protocols.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/queues.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/runners.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/selector_events.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/sslproto.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/staggered.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/streams.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/subprocess.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/taskgroups.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/tasks.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/threads.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/timeouts.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/transports.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/trsock.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/unix_events.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/windows_events.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncio/windows_utils.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/asyncore.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/atexit.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/audioop.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/base64.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/bdb.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/binascii.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/binhex.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/bisect.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/builtins.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/bz2.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/cProfile.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/calendar.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/cgi.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/cgitb.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/chunk.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/cmath.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/cmd.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/code.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/codecs.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/codeop.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/collections/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/collections/abc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/colorsys.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compileall.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/_common/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/_common/_streams.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/bz2/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/gzip/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/lzma/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/compression/zlib/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/concurrent/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/_base.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/interpreter.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/process.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/concurrent/futures/thread.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/configparser.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/contextlib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/contextvars.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/copy.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/copyreg.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/crypt.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/csv.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/_endian.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/dyld.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/dylib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/macholib/framework.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/util.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ctypes/wintypes.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/curses/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/curses/ascii.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/curses/has_key.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/curses/panel.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/curses/textpad.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dataclasses.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/datetime.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dbm/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dbm/dumb.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dbm/gnu.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dbm/ndbm.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dbm/sqlite3.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/decimal.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/difflib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/dis.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/_msvccompiler.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/archive_util.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/bcppcompiler.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/ccompiler.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/cmd.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_dumb.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_msi.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_packager.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_rpm.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/bdist_wininst.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/build.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_clib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_ext.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_py.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/build_scripts.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/check.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/clean.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/config.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/install.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_data.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_egg_info.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_headers.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_lib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/install_scripts.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/register.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/sdist.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/command/upload.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/config.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/core.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/cygwinccompiler.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/debug.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/dep_util.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/dir_util.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/dist.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/errors.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/extension.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/fancy_getopt.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/file_util.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/filelist.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/log.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/msvccompiler.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/spawn.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/sysconfig.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/text_file.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/unixccompiler.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/util.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/distutils/version.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/doctest.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/_header_value_parser.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/_policybase.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/base64mime.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/charset.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/contentmanager.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/encoders.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/errors.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/feedparser.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/generator.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/header.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/headerregistry.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/iterators.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/message.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/application.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/audio.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/base.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/image.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/message.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/multipart.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/nonmultipart.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/mime/text.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/parser.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/policy.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/quoprimime.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/email/utils.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/aliases.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/ascii.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/base64_codec.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/big5.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/big5hkscs.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/bz2_codec.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/charmap.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp037.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1006.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1026.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1125.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1140.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1250.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1251.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1252.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1253.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1254.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1255.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1256.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1257.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp1258.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp273.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp424.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp437.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp500.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp720.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp737.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp775.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp850.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp852.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp855.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp856.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp857.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp858.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp860.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp861.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp862.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp863.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp864.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp865.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp866.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp869.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp874.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp875.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp932.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp949.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/cp950.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jis_2004.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jisx0213.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/euc_jp.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/euc_kr.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/gb18030.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/gb2312.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/gbk.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/hex_codec.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/hp_roman8.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/hz.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/idna.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_1.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_2.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_2004.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_3.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_jp_ext.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso2022_kr.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_1.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_10.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_11.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_13.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_14.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_15.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_16.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_2.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_3.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_4.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_5.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_6.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_7.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_8.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/iso8859_9.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/johab.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_r.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_t.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/koi8_u.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/kz1048.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/latin_1.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_arabic.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_croatian.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_cyrillic.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_farsi.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_greek.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_iceland.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_latin2.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_roman.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_romanian.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mac_turkish.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/mbcs.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/oem.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/palmos.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/ptcp154.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/punycode.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/quopri_codec.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/raw_unicode_escape.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/rot_13.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jis.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jis_2004.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/shift_jisx0213.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/tis_620.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/undefined.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/unicode_escape.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16_be.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_16_le.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32_be.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_32_le.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_7.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_8.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/utf_8_sig.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/uu_codec.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/encodings/zlib_codec.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ensurepip/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/enum.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/errno.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/faulthandler.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/fcntl.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/filecmp.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/fileinput.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/fnmatch.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/formatter.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/fractions.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ftplib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/functools.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/gc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/genericpath.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/getopt.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/getpass.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/gettext.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/glob.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/graphlib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/grp.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/gzip.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/hashlib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/heapq.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/hmac.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/html/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/html/entities.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/html/parser.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/http/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/http/client.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/http/cookiejar.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/http/cookies.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/http/server.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/imaplib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/imghdr.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/imp.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/_abc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/_bootstrap.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/_bootstrap_external.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/abc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/machinery.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/_meta.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/metadata/diagnose.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/readers.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/resources/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/resources/_common.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/resources/_functional.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/resources/abc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/resources/readers.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/resources/simple.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/simple.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/importlib/util.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/inspect.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/io.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ipaddress.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/itertools.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/json/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/json/decoder.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/json/encoder.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/json/scanner.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/json/tool.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/keyword.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/btm_matcher.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixer_base.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_apply.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_asserts.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_basestring.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_buffer.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_dict.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_except.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_exec.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_execfile.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_exitfunc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_filter.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_funcattrs.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_future.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_getcwdu.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_has_key.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_idioms.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_import.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_imports2.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_input.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_intern.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_isinstance.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_long.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_map.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_metaclass.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_methodattrs.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_ne.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_next.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_nonzero.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_numliterals.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_operator.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_paren.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_print.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_raise.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_raw_input.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_reduce.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_reload.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_renames.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_repr.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_set_literal.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_standarderror.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_sys_exc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_throw.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_tuple_params.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_types.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_unicode.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_urllib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_ws_comma.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_xrange.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_xreadlines.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/fixes/fix_zip.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/main.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/driver.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/grammar.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/literals.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/parse.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/pgen.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/token.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pgen2/tokenize.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pygram.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/pytree.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lib2to3/refactor.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/linecache.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/locale.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/logging/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/logging/config.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/logging/handlers.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/lzma.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/mailbox.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/mailcap.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/marshal.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/math.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/mimetypes.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/mmap.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/modulefinder.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/msilib/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/msilib/schema.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/msilib/sequence.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/msilib/text.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/msvcrt.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/connection.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/context.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/dummy/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/dummy/connection.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/forkserver.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/heap.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/managers.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/pool.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_fork.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_forkserver.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_spawn_posix.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/popen_spawn_win32.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/process.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/queues.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/reduction.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/resource_sharer.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/resource_tracker.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/shared_memory.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/sharedctypes.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/spawn.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/synchronize.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/multiprocessing/util.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/netrc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/nis.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/nntplib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/nt.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ntpath.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/nturl2path.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/numbers.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/opcode.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/operator.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/optparse.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/os/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/os/path.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ossaudiodev.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/parser.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pathlib/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pathlib/types.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pdb.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pickle.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pickletools.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pipes.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pkgutil.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/platform.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/plistlib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/poplib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/posix.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/posixpath.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pprint.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/profile.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pstats.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pty.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pwd.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/py_compile.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pyclbr.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pydoc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pydoc_data/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pydoc_data/topics.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pyexpat/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pyexpat/errors.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/pyexpat/model.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/queue.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/quopri.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/random.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/re.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/readline.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/reprlib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/resource.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/rlcompleter.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/runpy.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sched.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/secrets.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/select.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/selectors.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/shelve.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/shlex.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/shutil.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/signal.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/site.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/smtpd.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/smtplib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sndhdr.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/socket.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/socketserver.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/spwd.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sqlite3/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sqlite3/dbapi2.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sqlite3/dump.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sre_compile.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sre_constants.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sre_parse.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/ssl.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/stat.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/statistics.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/string/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/string/templatelib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/stringprep.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/struct.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/subprocess.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sunau.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/symbol.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/symtable.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sys/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sys/_monitoring.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/sysconfig.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/syslog.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tabnanny.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tarfile.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/telnetlib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tempfile.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/termios.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/textwrap.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/this.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/threading.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/time.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/timeit.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/colorchooser.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/commondialog.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/constants.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/dialog.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/dnd.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/filedialog.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/font.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/messagebox.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/scrolledtext.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/simpledialog.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/tix.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tkinter/ttk.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/token.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tokenize.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tomllib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/trace.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/traceback.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tracemalloc.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/tty.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/turtle.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/types.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/typing.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/typing_extensions.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unicodedata.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/_log.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/async_case.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/case.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/loader.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/main.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/mock.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/result.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/runner.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/signals.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/suite.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/unittest/util.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/urllib/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/urllib/error.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/urllib/parse.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/urllib/request.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/urllib/response.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/urllib/robotparser.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/uu.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/uuid.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/venv/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/warnings.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wave.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/weakref.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/webbrowser.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/winreg.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/winsound.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/handlers.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/headers.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/simple_server.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/types.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/util.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/wsgiref/validate.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xdrlib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/NodeFilter.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/domreg.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/expatbuilder.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/minicompat.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/minidom.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/pulldom.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/dom/xmlbuilder.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementInclude.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementPath.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/etree/ElementTree.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/etree/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/etree/cElementTree.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/parsers/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/errors.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/parsers/expat/model.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/sax/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/sax/_exceptions.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/sax/expatreader.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/sax/handler.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/sax/saxutils.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xml/sax/xmlreader.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xmlrpc/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xmlrpc/client.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xmlrpc/server.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/xxlimited.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zipapp.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zipfile/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zipfile/_path/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zipfile/_path/glob.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zipimport.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zlib.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zoneinfo/__init__.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zoneinfo/_common.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed/stdlib/zoneinfo/_tzpath.pyi +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly/third_party/typeshed_metadata.json +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_derive/.gitignore +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_derive/src/lib.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_derive/src/type_eq.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_derive/src/visit.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/arc_id.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/args.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/assert_size.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/display.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/events.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/exclusive_lock.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/forgetter.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/fs_anyhow.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/gas.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/lib.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/lock.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/locked_map.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/memory.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/no_hash.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/prelude.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/recurser.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/ruff_visitors.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/small_set1.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/task_heap.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/test_path.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/thread_pool.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/trace.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/uniques.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/upgrade_lock.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/upward_search.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/visit.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/watcher.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/pyrefly_util/src/with_hash.rs +0 -0
- {pyrefly-0.19.0 → pyrefly-0.19.2}/rust-toolchain +0 -0
@@ -2,31 +2,37 @@
|
|
2
2
|
# It is not intended for manual editing.
|
3
3
|
version = 4
|
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
|
+
|
5
11
|
[[package]]
|
6
12
|
name = "addr2line"
|
7
|
-
version = "0.
|
13
|
+
version = "0.19.0"
|
8
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
15
|
+
checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
|
10
16
|
dependencies = [
|
11
17
|
"gimli",
|
12
18
|
]
|
13
19
|
|
14
20
|
[[package]]
|
15
|
-
name = "
|
16
|
-
version = "
|
21
|
+
name = "adler"
|
22
|
+
version = "1.0.2"
|
17
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
-
checksum = "
|
24
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
19
25
|
|
20
26
|
[[package]]
|
21
27
|
name = "ahash"
|
22
|
-
version = "0.8.
|
28
|
+
version = "0.8.11"
|
23
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
-
checksum = "
|
30
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
25
31
|
dependencies = [
|
26
32
|
"cfg-if",
|
27
33
|
"once_cell",
|
28
34
|
"version_check",
|
29
|
-
"zerocopy",
|
35
|
+
"zerocopy 0.7.35",
|
30
36
|
]
|
31
37
|
|
32
38
|
[[package]]
|
@@ -47,7 +53,7 @@ dependencies = [
|
|
47
53
|
"allocative_derive",
|
48
54
|
"anyhow",
|
49
55
|
"bumpalo",
|
50
|
-
"compact_str 0.8.
|
56
|
+
"compact_str 0.8.0",
|
51
57
|
"ctor",
|
52
58
|
"dashmap",
|
53
59
|
"either",
|
@@ -101,9 +107,9 @@ dependencies = [
|
|
101
107
|
|
102
108
|
[[package]]
|
103
109
|
name = "anstream"
|
104
|
-
version = "0.6.
|
110
|
+
version = "0.6.18"
|
105
111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
106
|
-
checksum = "
|
112
|
+
checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
|
107
113
|
dependencies = [
|
108
114
|
"anstyle",
|
109
115
|
"anstyle-parse",
|
@@ -116,50 +122,50 @@ dependencies = [
|
|
116
122
|
|
117
123
|
[[package]]
|
118
124
|
name = "anstyle"
|
119
|
-
version = "1.0.
|
125
|
+
version = "1.0.10"
|
120
126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
121
|
-
checksum = "
|
127
|
+
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
|
122
128
|
|
123
129
|
[[package]]
|
124
130
|
name = "anstyle-parse"
|
125
|
-
version = "0.2.
|
131
|
+
version = "0.2.0"
|
126
132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
127
|
-
checksum = "
|
133
|
+
checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
|
128
134
|
dependencies = [
|
129
135
|
"utf8parse",
|
130
136
|
]
|
131
137
|
|
132
138
|
[[package]]
|
133
139
|
name = "anstyle-query"
|
134
|
-
version = "1.
|
140
|
+
version = "1.0.0"
|
135
141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
136
|
-
checksum = "
|
142
|
+
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
|
137
143
|
dependencies = [
|
138
|
-
"windows-sys 0.
|
144
|
+
"windows-sys 0.48.0",
|
139
145
|
]
|
140
146
|
|
141
147
|
[[package]]
|
142
148
|
name = "anstyle-wincon"
|
143
|
-
version = "3.0.
|
149
|
+
version = "3.0.7"
|
144
150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
145
|
-
checksum = "
|
151
|
+
checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
|
146
152
|
dependencies = [
|
147
153
|
"anstyle",
|
148
|
-
"
|
154
|
+
"once_cell",
|
149
155
|
"windows-sys 0.59.0",
|
150
156
|
]
|
151
157
|
|
152
158
|
[[package]]
|
153
159
|
name = "anyhow"
|
154
|
-
version = "1.0.
|
160
|
+
version = "1.0.95"
|
155
161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
156
|
-
checksum = "
|
162
|
+
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
|
157
163
|
|
158
164
|
[[package]]
|
159
165
|
name = "append-only-vec"
|
160
|
-
version = "0.1.
|
166
|
+
version = "0.1.2"
|
161
167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
162
|
-
checksum = "
|
168
|
+
checksum = "5608767d94038891df4c7bb82f6b1beb55fe3d204735985e20de329bc35d5fee"
|
163
169
|
|
164
170
|
[[package]]
|
165
171
|
name = "argfile"
|
@@ -173,41 +179,44 @@ dependencies = [
|
|
173
179
|
|
174
180
|
[[package]]
|
175
181
|
name = "arrayref"
|
176
|
-
version = "0.3.
|
182
|
+
version = "0.3.6"
|
177
183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
178
|
-
checksum = "
|
184
|
+
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
|
179
185
|
|
180
186
|
[[package]]
|
181
187
|
name = "arrayvec"
|
182
|
-
version = "0.7.
|
188
|
+
version = "0.7.4"
|
183
189
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
184
|
-
checksum = "
|
190
|
+
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
|
185
191
|
|
186
192
|
[[package]]
|
187
193
|
name = "atomic"
|
188
|
-
version = "0.5.
|
194
|
+
version = "0.5.1"
|
189
195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
190
|
-
checksum = "
|
196
|
+
checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
|
197
|
+
dependencies = [
|
198
|
+
"autocfg",
|
199
|
+
]
|
191
200
|
|
192
201
|
[[package]]
|
193
202
|
name = "autocfg"
|
194
|
-
version = "1.
|
203
|
+
version = "1.1.0"
|
195
204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
196
|
-
checksum = "
|
205
|
+
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
197
206
|
|
198
207
|
[[package]]
|
199
208
|
name = "backtrace"
|
200
|
-
version = "0.3.
|
209
|
+
version = "0.3.67"
|
201
210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
202
|
-
checksum = "
|
211
|
+
checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
|
203
212
|
dependencies = [
|
204
213
|
"addr2line",
|
214
|
+
"cc",
|
205
215
|
"cfg-if",
|
206
216
|
"libc",
|
207
217
|
"miniz_oxide",
|
208
218
|
"object",
|
209
219
|
"rustc-demangle",
|
210
|
-
"windows-targets 0.52.6",
|
211
220
|
]
|
212
221
|
|
213
222
|
[[package]]
|
@@ -224,9 +233,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
224
233
|
|
225
234
|
[[package]]
|
226
235
|
name = "bitflags"
|
227
|
-
version = "2.9.
|
236
|
+
version = "2.9.0"
|
228
237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
229
|
-
checksum = "
|
238
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
230
239
|
|
231
240
|
[[package]]
|
232
241
|
name = "blake3"
|
@@ -246,9 +255,9 @@ dependencies = [
|
|
246
255
|
|
247
256
|
[[package]]
|
248
257
|
name = "block-buffer"
|
249
|
-
version = "0.10.
|
258
|
+
version = "0.10.2"
|
250
259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
251
|
-
checksum = "
|
260
|
+
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
|
252
261
|
dependencies = [
|
253
262
|
"generic-array",
|
254
263
|
]
|
@@ -266,9 +275,9 @@ dependencies = [
|
|
266
275
|
|
267
276
|
[[package]]
|
268
277
|
name = "bumpalo"
|
269
|
-
version = "3.
|
278
|
+
version = "3.16.0"
|
270
279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
271
|
-
checksum = "
|
280
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
272
281
|
|
273
282
|
[[package]]
|
274
283
|
name = "byteorder"
|
@@ -296,9 +305,9 @@ dependencies = [
|
|
296
305
|
|
297
306
|
[[package]]
|
298
307
|
name = "cc"
|
299
|
-
version = "1.2.
|
308
|
+
version = "1.2.10"
|
300
309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
301
|
-
checksum = "
|
310
|
+
checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
|
302
311
|
dependencies = [
|
303
312
|
"jobserver",
|
304
313
|
"libc",
|
@@ -307,27 +316,27 @@ dependencies = [
|
|
307
316
|
|
308
317
|
[[package]]
|
309
318
|
name = "cfg-if"
|
310
|
-
version = "1.0.
|
319
|
+
version = "1.0.0"
|
311
320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
312
|
-
checksum = "
|
321
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
313
322
|
|
314
323
|
[[package]]
|
315
324
|
name = "chrono"
|
316
|
-
version = "0.4.
|
325
|
+
version = "0.4.39"
|
317
326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
318
|
-
checksum = "
|
327
|
+
checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
|
319
328
|
dependencies = [
|
320
329
|
"android-tzdata",
|
321
330
|
"iana-time-zone",
|
322
331
|
"num-traits",
|
323
|
-
"windows-
|
332
|
+
"windows-targets 0.52.6",
|
324
333
|
]
|
325
334
|
|
326
335
|
[[package]]
|
327
336
|
name = "clap"
|
328
|
-
version = "4.5.
|
337
|
+
version = "4.5.38"
|
329
338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
330
|
-
checksum = "
|
339
|
+
checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000"
|
331
340
|
dependencies = [
|
332
341
|
"clap_builder",
|
333
342
|
"clap_derive",
|
@@ -335,9 +344,9 @@ dependencies = [
|
|
335
344
|
|
336
345
|
[[package]]
|
337
346
|
name = "clap_builder"
|
338
|
-
version = "4.5.
|
347
|
+
version = "4.5.38"
|
339
348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
340
|
-
checksum = "
|
349
|
+
checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120"
|
341
350
|
dependencies = [
|
342
351
|
"anstream",
|
343
352
|
"anstyle",
|
@@ -345,14 +354,14 @@ dependencies = [
|
|
345
354
|
"strsim 0.11.1",
|
346
355
|
"terminal_size",
|
347
356
|
"unicase",
|
348
|
-
"unicode-width",
|
357
|
+
"unicode-width 0.2.0",
|
349
358
|
]
|
350
359
|
|
351
360
|
[[package]]
|
352
361
|
name = "clap_derive"
|
353
|
-
version = "4.5.
|
362
|
+
version = "4.5.32"
|
354
363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
355
|
-
checksum = "
|
364
|
+
checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
|
356
365
|
dependencies = [
|
357
366
|
"heck",
|
358
367
|
"proc-macro2",
|
@@ -362,27 +371,38 @@ dependencies = [
|
|
362
371
|
|
363
372
|
[[package]]
|
364
373
|
name = "clap_lex"
|
365
|
-
version = "0.7.
|
374
|
+
version = "0.7.4"
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
376
|
+
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
377
|
+
|
378
|
+
[[package]]
|
379
|
+
name = "codespan-reporting"
|
380
|
+
version = "0.12.0"
|
366
381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
367
|
-
checksum = "
|
382
|
+
checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
|
383
|
+
dependencies = [
|
384
|
+
"serde",
|
385
|
+
"termcolor",
|
386
|
+
"unicode-width 0.2.0",
|
387
|
+
]
|
368
388
|
|
369
389
|
[[package]]
|
370
390
|
name = "colorchoice"
|
371
|
-
version = "1.0.
|
391
|
+
version = "1.0.0"
|
372
392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
373
|
-
checksum = "
|
393
|
+
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
|
374
394
|
|
375
395
|
[[package]]
|
376
396
|
name = "compact_str"
|
377
|
-
version = "0.8.
|
397
|
+
version = "0.8.0"
|
378
398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
379
|
-
checksum = "
|
399
|
+
checksum = "6050c3a16ddab2e412160b31f2c871015704239bca62f72f6e5f0be631d3f644"
|
380
400
|
dependencies = [
|
381
401
|
"castaway",
|
382
402
|
"cfg-if",
|
383
|
-
"itoa 1.0.
|
403
|
+
"itoa 1.0.14",
|
384
404
|
"rustversion",
|
385
|
-
"ryu 1.0.
|
405
|
+
"ryu 1.0.17",
|
386
406
|
"static_assertions",
|
387
407
|
]
|
388
408
|
|
@@ -394,9 +414,9 @@ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
394
414
|
dependencies = [
|
395
415
|
"castaway",
|
396
416
|
"cfg-if",
|
397
|
-
"itoa 1.0.
|
417
|
+
"itoa 1.0.14",
|
398
418
|
"rustversion",
|
399
|
-
"ryu 1.0.
|
419
|
+
"ryu 1.0.17",
|
400
420
|
"static_assertions",
|
401
421
|
]
|
402
422
|
|
@@ -411,15 +431,15 @@ dependencies = [
|
|
411
431
|
|
412
432
|
[[package]]
|
413
433
|
name = "console"
|
414
|
-
version = "0.15.
|
434
|
+
version = "0.15.7"
|
415
435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
416
|
-
checksum = "
|
436
|
+
checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
|
417
437
|
dependencies = [
|
418
438
|
"encode_unicode",
|
439
|
+
"lazy_static",
|
419
440
|
"libc",
|
420
|
-
"
|
421
|
-
"
|
422
|
-
"windows-sys 0.59.0",
|
441
|
+
"unicode-width 0.1.12",
|
442
|
+
"windows-sys 0.45.0",
|
423
443
|
]
|
424
444
|
|
425
445
|
[[package]]
|
@@ -503,6 +523,60 @@ dependencies = [
|
|
503
523
|
"syn 1.0.109",
|
504
524
|
]
|
505
525
|
|
526
|
+
[[package]]
|
527
|
+
name = "cxx"
|
528
|
+
version = "1.0.150"
|
529
|
+
source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
|
530
|
+
dependencies = [
|
531
|
+
"cc",
|
532
|
+
"cxxbridge-cmd",
|
533
|
+
"cxxbridge-flags",
|
534
|
+
"cxxbridge-macro",
|
535
|
+
"foldhash",
|
536
|
+
"link-cplusplus",
|
537
|
+
]
|
538
|
+
|
539
|
+
[[package]]
|
540
|
+
name = "cxx-build"
|
541
|
+
version = "1.0.150"
|
542
|
+
source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
|
543
|
+
dependencies = [
|
544
|
+
"cc",
|
545
|
+
"codespan-reporting",
|
546
|
+
"proc-macro2",
|
547
|
+
"quote",
|
548
|
+
"scratch",
|
549
|
+
"syn 2.0.101",
|
550
|
+
]
|
551
|
+
|
552
|
+
[[package]]
|
553
|
+
name = "cxxbridge-cmd"
|
554
|
+
version = "1.0.150"
|
555
|
+
source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
|
556
|
+
dependencies = [
|
557
|
+
"clap",
|
558
|
+
"codespan-reporting",
|
559
|
+
"proc-macro2",
|
560
|
+
"quote",
|
561
|
+
"syn 2.0.101",
|
562
|
+
]
|
563
|
+
|
564
|
+
[[package]]
|
565
|
+
name = "cxxbridge-flags"
|
566
|
+
version = "1.0.150"
|
567
|
+
source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
|
568
|
+
|
569
|
+
[[package]]
|
570
|
+
name = "cxxbridge-macro"
|
571
|
+
version = "1.0.150"
|
572
|
+
source = "git+https://github.com/facebookexperimental/cxx.git?rev=fbe91091fd26aea4a30fd08b8f0230078f4db2ce#fbe91091fd26aea4a30fd08b8f0230078f4db2ce"
|
573
|
+
dependencies = [
|
574
|
+
"proc-macro2",
|
575
|
+
"quote",
|
576
|
+
"rustversion",
|
577
|
+
"syn 2.0.101",
|
578
|
+
]
|
579
|
+
|
506
580
|
[[package]]
|
507
581
|
name = "darling"
|
508
582
|
version = "0.13.4"
|
@@ -548,23 +622,23 @@ dependencies = [
|
|
548
622
|
"hashbrown 0.14.5",
|
549
623
|
"lock_api",
|
550
624
|
"once_cell",
|
551
|
-
"parking_lot_core 0.9.
|
625
|
+
"parking_lot_core 0.9.9",
|
552
626
|
]
|
553
627
|
|
554
628
|
[[package]]
|
555
629
|
name = "deranged"
|
556
|
-
version = "0.4.
|
630
|
+
version = "0.4.1"
|
557
631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
558
|
-
checksum = "
|
632
|
+
checksum = "28cfac68e08048ae1883171632c2aef3ebc555621ae56fbccce1cbf22dd7f058"
|
559
633
|
dependencies = [
|
560
634
|
"powerfmt",
|
561
635
|
]
|
562
636
|
|
563
637
|
[[package]]
|
564
638
|
name = "diff"
|
565
|
-
version = "0.1.
|
639
|
+
version = "0.1.12"
|
566
640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
567
|
-
checksum = "
|
641
|
+
checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
|
568
642
|
|
569
643
|
[[package]]
|
570
644
|
name = "digest"
|
@@ -580,8 +654,7 @@ dependencies = [
|
|
580
654
|
[[package]]
|
581
655
|
name = "displaydoc"
|
582
656
|
version = "0.2.5"
|
583
|
-
source = "
|
584
|
-
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
657
|
+
source = "git+https://github.com/yaahc/displaydoc?rev=7dc6e324b1788a6b7fb9f3a1953c512923a3e9f0#7dc6e324b1788a6b7fb9f3a1953c512923a3e9f0"
|
585
658
|
dependencies = [
|
586
659
|
"proc-macro2",
|
587
660
|
"quote",
|
@@ -616,24 +689,24 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
616
689
|
|
617
690
|
[[package]]
|
618
691
|
name = "encode_unicode"
|
619
|
-
version = "
|
692
|
+
version = "0.3.6"
|
620
693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
621
|
-
checksum = "
|
694
|
+
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
622
695
|
|
623
696
|
[[package]]
|
624
697
|
name = "enum-iterator"
|
625
|
-
version = "1.
|
698
|
+
version = "1.4.1"
|
626
699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
627
|
-
checksum = "
|
700
|
+
checksum = "7add3873b5dd076766ee79c8e406ad1a472c385476b9e38849f8eec24f1be689"
|
628
701
|
dependencies = [
|
629
702
|
"enum-iterator-derive",
|
630
703
|
]
|
631
704
|
|
632
705
|
[[package]]
|
633
706
|
name = "enum-iterator-derive"
|
634
|
-
version = "1.
|
707
|
+
version = "1.2.1"
|
635
708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
636
|
-
checksum = "
|
709
|
+
checksum = "eecf8589574ce9b895052fa12d69af7a233f99e6107f5cb8dd1044f2a17bfdcb"
|
637
710
|
dependencies = [
|
638
711
|
"proc-macro2",
|
639
712
|
"quote",
|
@@ -652,15 +725,15 @@ dependencies = [
|
|
652
725
|
|
653
726
|
[[package]]
|
654
727
|
name = "equivalent"
|
655
|
-
version = "1.0.
|
728
|
+
version = "1.0.0"
|
656
729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
657
|
-
checksum = "
|
730
|
+
checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1"
|
658
731
|
|
659
732
|
[[package]]
|
660
733
|
name = "errno"
|
661
|
-
version = "0.3.
|
734
|
+
version = "0.3.10"
|
662
735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
663
|
-
checksum = "
|
736
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
664
737
|
dependencies = [
|
665
738
|
"libc",
|
666
739
|
"windows-sys 0.59.0",
|
@@ -690,6 +763,12 @@ version = "1.0.7"
|
|
690
763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
691
764
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
692
765
|
|
766
|
+
[[package]]
|
767
|
+
name = "foldhash"
|
768
|
+
version = "0.1.4"
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
770
|
+
checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
|
771
|
+
|
693
772
|
[[package]]
|
694
773
|
name = "form_urlencoded"
|
695
774
|
version = "1.2.1"
|
@@ -710,9 +789,9 @@ dependencies = [
|
|
710
789
|
|
711
790
|
[[package]]
|
712
791
|
name = "fsevent-sys"
|
713
|
-
version = "4.
|
792
|
+
version = "4.0.0"
|
714
793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
715
|
-
checksum = "
|
794
|
+
checksum = "5c0e564d24da983c053beff1bb7178e237501206840a3e6bf4e267b9e8ae734a"
|
716
795
|
dependencies = [
|
717
796
|
"libc",
|
718
797
|
]
|
@@ -834,11 +913,11 @@ dependencies = [
|
|
834
913
|
|
835
914
|
[[package]]
|
836
915
|
name = "getopts"
|
837
|
-
version = "0.2.
|
916
|
+
version = "0.2.21"
|
838
917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
839
|
-
checksum = "
|
918
|
+
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
|
840
919
|
dependencies = [
|
841
|
-
"unicode-width",
|
920
|
+
"unicode-width 0.1.12",
|
842
921
|
]
|
843
922
|
|
844
923
|
[[package]]
|
@@ -868,9 +947,9 @@ dependencies = [
|
|
868
947
|
|
869
948
|
[[package]]
|
870
949
|
name = "gimli"
|
871
|
-
version = "0.
|
950
|
+
version = "0.27.2"
|
872
951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
873
|
-
checksum = "
|
952
|
+
checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
|
874
953
|
|
875
954
|
[[package]]
|
876
955
|
name = "glob"
|
@@ -890,9 +969,9 @@ dependencies = [
|
|
890
969
|
|
891
970
|
[[package]]
|
892
971
|
name = "hashbrown"
|
893
|
-
version = "0.15.
|
972
|
+
version = "0.15.2"
|
894
973
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
895
|
-
checksum = "
|
974
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
896
975
|
|
897
976
|
[[package]]
|
898
977
|
name = "heck"
|
@@ -901,19 +980,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
980
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
902
981
|
|
903
982
|
[[package]]
|
904
|
-
name = "
|
905
|
-
version = "0.
|
983
|
+
name = "hermit-abi"
|
984
|
+
version = "0.3.9"
|
906
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
907
|
-
checksum = "
|
986
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
908
987
|
|
909
988
|
[[package]]
|
910
|
-
name = "
|
911
|
-
version = "0.
|
989
|
+
name = "hex"
|
990
|
+
version = "0.4.3"
|
912
991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
913
|
-
checksum = "
|
914
|
-
dependencies = [
|
915
|
-
"windows-sys 0.59.0",
|
916
|
-
]
|
992
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
917
993
|
|
918
994
|
[[package]]
|
919
995
|
name = "human_bytes"
|
@@ -923,46 +999,45 @@ checksum = "91f255a4535024abf7640cb288260811fc14794f62b063652ed349f9a6c2348e"
|
|
923
999
|
|
924
1000
|
[[package]]
|
925
1001
|
name = "iana-time-zone"
|
926
|
-
version = "0.1.
|
1002
|
+
version = "0.1.53"
|
927
1003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
928
|
-
checksum = "
|
1004
|
+
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
|
929
1005
|
dependencies = [
|
930
1006
|
"android_system_properties",
|
931
1007
|
"core-foundation-sys",
|
932
1008
|
"iana-time-zone-haiku",
|
933
1009
|
"js-sys",
|
934
|
-
"log",
|
935
1010
|
"wasm-bindgen",
|
936
|
-
"
|
1011
|
+
"winapi",
|
937
1012
|
]
|
938
1013
|
|
939
1014
|
[[package]]
|
940
1015
|
name = "iana-time-zone-haiku"
|
941
|
-
version = "0.1.
|
1016
|
+
version = "0.1.1"
|
942
1017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
943
|
-
checksum = "
|
1018
|
+
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
|
944
1019
|
dependencies = [
|
945
|
-
"
|
1020
|
+
"cxx",
|
1021
|
+
"cxx-build",
|
946
1022
|
]
|
947
1023
|
|
948
1024
|
[[package]]
|
949
1025
|
name = "icu_collections"
|
950
|
-
version = "
|
1026
|
+
version = "1.5.0"
|
951
1027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
|
-
checksum = "
|
1028
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
953
1029
|
dependencies = [
|
954
1030
|
"displaydoc",
|
955
|
-
"potential_utf",
|
956
1031
|
"yoke",
|
957
1032
|
"zerofrom",
|
958
1033
|
"zerovec",
|
959
1034
|
]
|
960
1035
|
|
961
1036
|
[[package]]
|
962
|
-
name = "
|
963
|
-
version = "
|
1037
|
+
name = "icu_locid"
|
1038
|
+
version = "1.5.0"
|
964
1039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
965
|
-
checksum = "
|
1040
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
966
1041
|
dependencies = [
|
967
1042
|
"displaydoc",
|
968
1043
|
"litemap",
|
@@ -971,11 +1046,31 @@ dependencies = [
|
|
971
1046
|
"zerovec",
|
972
1047
|
]
|
973
1048
|
|
1049
|
+
[[package]]
|
1050
|
+
name = "icu_locid_transform"
|
1051
|
+
version = "1.5.0"
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1053
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
1054
|
+
dependencies = [
|
1055
|
+
"displaydoc",
|
1056
|
+
"icu_locid",
|
1057
|
+
"icu_locid_transform_data",
|
1058
|
+
"icu_provider",
|
1059
|
+
"tinystr",
|
1060
|
+
"zerovec",
|
1061
|
+
]
|
1062
|
+
|
1063
|
+
[[package]]
|
1064
|
+
name = "icu_locid_transform_data"
|
1065
|
+
version = "1.5.0"
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1067
|
+
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
1068
|
+
|
974
1069
|
[[package]]
|
975
1070
|
name = "icu_normalizer"
|
976
|
-
version = "
|
1071
|
+
version = "1.5.0"
|
977
1072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
978
|
-
checksum = "
|
1073
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
979
1074
|
dependencies = [
|
980
1075
|
"displaydoc",
|
981
1076
|
"icu_collections",
|
@@ -983,54 +1078,67 @@ dependencies = [
|
|
983
1078
|
"icu_properties",
|
984
1079
|
"icu_provider",
|
985
1080
|
"smallvec",
|
1081
|
+
"utf16_iter",
|
1082
|
+
"utf8_iter",
|
1083
|
+
"write16",
|
986
1084
|
"zerovec",
|
987
1085
|
]
|
988
1086
|
|
989
1087
|
[[package]]
|
990
1088
|
name = "icu_normalizer_data"
|
991
|
-
version = "
|
1089
|
+
version = "1.5.0"
|
992
1090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
993
|
-
checksum = "
|
1091
|
+
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
|
994
1092
|
|
995
1093
|
[[package]]
|
996
1094
|
name = "icu_properties"
|
997
|
-
version = "
|
1095
|
+
version = "1.5.1"
|
998
1096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
999
|
-
checksum = "
|
1097
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
1000
1098
|
dependencies = [
|
1001
1099
|
"displaydoc",
|
1002
1100
|
"icu_collections",
|
1003
|
-
"
|
1101
|
+
"icu_locid_transform",
|
1004
1102
|
"icu_properties_data",
|
1005
1103
|
"icu_provider",
|
1006
|
-
"
|
1007
|
-
"zerotrie",
|
1104
|
+
"tinystr",
|
1008
1105
|
"zerovec",
|
1009
1106
|
]
|
1010
1107
|
|
1011
1108
|
[[package]]
|
1012
1109
|
name = "icu_properties_data"
|
1013
|
-
version = "
|
1110
|
+
version = "1.5.0"
|
1014
1111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1015
|
-
checksum = "
|
1112
|
+
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
1016
1113
|
|
1017
1114
|
[[package]]
|
1018
1115
|
name = "icu_provider"
|
1019
|
-
version = "
|
1116
|
+
version = "1.5.0"
|
1020
1117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1021
|
-
checksum = "
|
1118
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
1022
1119
|
dependencies = [
|
1023
1120
|
"displaydoc",
|
1024
|
-
"
|
1121
|
+
"icu_locid",
|
1122
|
+
"icu_provider_macros",
|
1025
1123
|
"stable_deref_trait",
|
1026
1124
|
"tinystr",
|
1027
1125
|
"writeable",
|
1028
1126
|
"yoke",
|
1029
1127
|
"zerofrom",
|
1030
|
-
"zerotrie",
|
1031
1128
|
"zerovec",
|
1032
1129
|
]
|
1033
1130
|
|
1131
|
+
[[package]]
|
1132
|
+
name = "icu_provider_macros"
|
1133
|
+
version = "1.5.0"
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1135
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
1136
|
+
dependencies = [
|
1137
|
+
"proc-macro2",
|
1138
|
+
"quote",
|
1139
|
+
"syn 2.0.101",
|
1140
|
+
]
|
1141
|
+
|
1034
1142
|
[[package]]
|
1035
1143
|
name = "ident_case"
|
1036
1144
|
version = "1.0.1"
|
@@ -1050,9 +1158,9 @@ dependencies = [
|
|
1050
1158
|
|
1051
1159
|
[[package]]
|
1052
1160
|
name = "idna_adapter"
|
1053
|
-
version = "1.2.
|
1161
|
+
version = "1.2.0"
|
1054
1162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1055
|
-
checksum = "
|
1163
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
1056
1164
|
dependencies = [
|
1057
1165
|
"icu_normalizer",
|
1058
1166
|
"icu_properties",
|
@@ -1065,14 +1173,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
1173
|
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
1066
1174
|
dependencies = [
|
1067
1175
|
"equivalent",
|
1068
|
-
"hashbrown 0.15.
|
1176
|
+
"hashbrown 0.15.2",
|
1069
1177
|
]
|
1070
1178
|
|
1071
1179
|
[[package]]
|
1072
1180
|
name = "indicatif"
|
1073
|
-
version = "0.17.
|
1181
|
+
version = "0.17.9"
|
1074
1182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1075
|
-
checksum = "
|
1183
|
+
checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281"
|
1076
1184
|
dependencies = [
|
1077
1185
|
"console",
|
1078
1186
|
"futures-core",
|
@@ -1081,15 +1189,15 @@ dependencies = [
|
|
1081
1189
|
"rayon",
|
1082
1190
|
"tokio",
|
1083
1191
|
"unicode-segmentation",
|
1084
|
-
"unicode-width",
|
1192
|
+
"unicode-width 0.2.0",
|
1085
1193
|
"web-time",
|
1086
1194
|
]
|
1087
1195
|
|
1088
1196
|
[[package]]
|
1089
1197
|
name = "inotify"
|
1090
|
-
version = "0.9.
|
1198
|
+
version = "0.9.2"
|
1091
1199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1092
|
-
checksum = "
|
1200
|
+
checksum = "d19f57db1baad9d09e43a3cd76dcf82ebdafd37d75c9498b87762dba77c93f15"
|
1093
1201
|
dependencies = [
|
1094
1202
|
"bitflags 1.3.2",
|
1095
1203
|
"inotify-sys",
|
@@ -1098,29 +1206,29 @@ dependencies = [
|
|
1098
1206
|
|
1099
1207
|
[[package]]
|
1100
1208
|
name = "inotify-sys"
|
1101
|
-
version = "0.1.
|
1209
|
+
version = "0.1.3"
|
1102
1210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1103
|
-
checksum = "
|
1211
|
+
checksum = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0"
|
1104
1212
|
dependencies = [
|
1105
1213
|
"libc",
|
1106
1214
|
]
|
1107
1215
|
|
1108
1216
|
[[package]]
|
1109
1217
|
name = "instant"
|
1110
|
-
version = "0.1.
|
1218
|
+
version = "0.1.12"
|
1111
1219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1112
|
-
checksum = "
|
1220
|
+
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
1113
1221
|
dependencies = [
|
1114
1222
|
"cfg-if",
|
1115
1223
|
]
|
1116
1224
|
|
1117
1225
|
[[package]]
|
1118
1226
|
name = "is-macro"
|
1119
|
-
version = "0.3.
|
1227
|
+
version = "0.3.6"
|
1120
1228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1121
|
-
checksum = "
|
1229
|
+
checksum = "2069faacbe981460232f880d26bf3c7634e322d49053aa48c27e3ae642f728f1"
|
1122
1230
|
dependencies = [
|
1123
|
-
"
|
1231
|
+
"Inflector",
|
1124
1232
|
"proc-macro2",
|
1125
1233
|
"quote",
|
1126
1234
|
"syn 2.0.101",
|
@@ -1167,37 +1275,16 @@ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
|
1167
1275
|
|
1168
1276
|
[[package]]
|
1169
1277
|
name = "itoa"
|
1170
|
-
version = "1.0.
|
1171
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1172
|
-
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
1173
|
-
|
1174
|
-
[[package]]
|
1175
|
-
name = "jemalloc-sys"
|
1176
|
-
version = "0.5.4+5.3.0-patched"
|
1177
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1178
|
-
checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
|
1179
|
-
dependencies = [
|
1180
|
-
"cc",
|
1181
|
-
"libc",
|
1182
|
-
]
|
1183
|
-
|
1184
|
-
[[package]]
|
1185
|
-
name = "jemallocator"
|
1186
|
-
version = "0.5.4"
|
1278
|
+
version = "1.0.14"
|
1187
1279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1188
|
-
checksum = "
|
1189
|
-
dependencies = [
|
1190
|
-
"jemalloc-sys",
|
1191
|
-
"libc",
|
1192
|
-
]
|
1280
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
1193
1281
|
|
1194
1282
|
[[package]]
|
1195
1283
|
name = "jobserver"
|
1196
|
-
version = "0.1.
|
1284
|
+
version = "0.1.32"
|
1197
1285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1198
|
-
checksum = "
|
1286
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
1199
1287
|
dependencies = [
|
1200
|
-
"getrandom 0.3.3",
|
1201
1288
|
"libc",
|
1202
1289
|
]
|
1203
1290
|
|
@@ -1213,9 +1300,9 @@ dependencies = [
|
|
1213
1300
|
|
1214
1301
|
[[package]]
|
1215
1302
|
name = "kqueue"
|
1216
|
-
version = "1.
|
1303
|
+
version = "1.0.4"
|
1217
1304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1218
|
-
checksum = "
|
1305
|
+
checksum = "058a107a784f8be94c7d35c1300f4facced2e93d2fbe5b1452b44e905ddca4a9"
|
1219
1306
|
dependencies = [
|
1220
1307
|
"kqueue-sys",
|
1221
1308
|
"libc",
|
@@ -1223,9 +1310,9 @@ dependencies = [
|
|
1223
1310
|
|
1224
1311
|
[[package]]
|
1225
1312
|
name = "kqueue-sys"
|
1226
|
-
version = "1.0.
|
1313
|
+
version = "1.0.3"
|
1227
1314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1228
|
-
checksum = "
|
1315
|
+
checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587"
|
1229
1316
|
dependencies = [
|
1230
1317
|
"bitflags 1.3.2",
|
1231
1318
|
"libc",
|
@@ -1249,16 +1336,19 @@ version = "0.1.3"
|
|
1249
1336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1250
1337
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
1251
1338
|
dependencies = [
|
1252
|
-
"bitflags 2.9.
|
1339
|
+
"bitflags 2.9.0",
|
1253
1340
|
"libc",
|
1254
|
-
"redox_syscall 0.5.
|
1341
|
+
"redox_syscall 0.5.6",
|
1255
1342
|
]
|
1256
1343
|
|
1257
1344
|
[[package]]
|
1258
|
-
name = "
|
1259
|
-
version = "0.
|
1345
|
+
name = "link-cplusplus"
|
1346
|
+
version = "1.0.9"
|
1260
1347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1261
|
-
checksum = "
|
1348
|
+
checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9"
|
1349
|
+
dependencies = [
|
1350
|
+
"cc",
|
1351
|
+
]
|
1262
1352
|
|
1263
1353
|
[[package]]
|
1264
1354
|
name = "linux-raw-sys"
|
@@ -1268,15 +1358,15 @@ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1268
1358
|
|
1269
1359
|
[[package]]
|
1270
1360
|
name = "litemap"
|
1271
|
-
version = "0.
|
1361
|
+
version = "0.7.3"
|
1272
1362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1273
|
-
checksum = "
|
1363
|
+
checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704"
|
1274
1364
|
|
1275
1365
|
[[package]]
|
1276
1366
|
name = "lock_api"
|
1277
|
-
version = "0.4.
|
1367
|
+
version = "0.4.12"
|
1278
1368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1279
|
-
checksum = "
|
1369
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
1280
1370
|
dependencies = [
|
1281
1371
|
"autocfg",
|
1282
1372
|
"scopeguard",
|
@@ -1290,7 +1380,7 @@ checksum = "fc989b5e3e04411250b5d1ce0d880e5de77b36703f3012d56acb43e6ff07f31b"
|
|
1290
1380
|
dependencies = [
|
1291
1381
|
"allocative",
|
1292
1382
|
"atomic",
|
1293
|
-
"parking_lot 0.12.
|
1383
|
+
"parking_lot 0.12.3",
|
1294
1384
|
]
|
1295
1385
|
|
1296
1386
|
[[package]]
|
@@ -1301,14 +1391,13 @@ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1301
1391
|
|
1302
1392
|
[[package]]
|
1303
1393
|
name = "lsp-server"
|
1304
|
-
version = "0.7.
|
1394
|
+
version = "0.7.2"
|
1305
1395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1306
|
-
checksum = "
|
1396
|
+
checksum = "37ea9ae5a5082ca3b6ae824fc7666cd206b99168a4d4c769ad8fe9cc740df6a6"
|
1307
1397
|
dependencies = [
|
1308
1398
|
"crossbeam-channel",
|
1309
1399
|
"log",
|
1310
1400
|
"serde",
|
1311
|
-
"serde_derive",
|
1312
1401
|
"serde_json",
|
1313
1402
|
]
|
1314
1403
|
|
@@ -1337,7 +1426,7 @@ version = "0.1.0"
|
|
1337
1426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1338
1427
|
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
1339
1428
|
dependencies = [
|
1340
|
-
"regex-automata 0.1.
|
1429
|
+
"regex-automata 0.1.9",
|
1341
1430
|
]
|
1342
1431
|
|
1343
1432
|
[[package]]
|
@@ -1367,11 +1456,11 @@ dependencies = [
|
|
1367
1456
|
|
1368
1457
|
[[package]]
|
1369
1458
|
name = "miniz_oxide"
|
1370
|
-
version = "0.
|
1459
|
+
version = "0.6.2"
|
1371
1460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1372
|
-
checksum = "
|
1461
|
+
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
|
1373
1462
|
dependencies = [
|
1374
|
-
"
|
1463
|
+
"adler",
|
1375
1464
|
]
|
1376
1465
|
|
1377
1466
|
[[package]]
|
@@ -1388,20 +1477,21 @@ dependencies = [
|
|
1388
1477
|
|
1389
1478
|
[[package]]
|
1390
1479
|
name = "mio"
|
1391
|
-
version = "1.0.
|
1480
|
+
version = "1.0.2"
|
1392
1481
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1393
|
-
checksum = "
|
1482
|
+
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
|
1394
1483
|
dependencies = [
|
1484
|
+
"hermit-abi",
|
1395
1485
|
"libc",
|
1396
1486
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
1397
|
-
"windows-sys 0.
|
1487
|
+
"windows-sys 0.52.0",
|
1398
1488
|
]
|
1399
1489
|
|
1400
1490
|
[[package]]
|
1401
1491
|
name = "notify"
|
1402
|
-
version = "5.
|
1492
|
+
version = "5.0.0"
|
1403
1493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1404
|
-
checksum = "
|
1494
|
+
checksum = "ed2c66da08abae1c024c01d635253e402341b4060a12e99b31c7594063bf490a"
|
1405
1495
|
dependencies = [
|
1406
1496
|
"bitflags 1.3.2",
|
1407
1497
|
"crossbeam-channel",
|
@@ -1412,7 +1502,7 @@ dependencies = [
|
|
1412
1502
|
"libc",
|
1413
1503
|
"mio 0.8.11",
|
1414
1504
|
"walkdir",
|
1415
|
-
"
|
1505
|
+
"winapi",
|
1416
1506
|
]
|
1417
1507
|
|
1418
1508
|
[[package]]
|
@@ -1462,9 +1552,9 @@ dependencies = [
|
|
1462
1552
|
|
1463
1553
|
[[package]]
|
1464
1554
|
name = "num_threads"
|
1465
|
-
version = "0.1.
|
1555
|
+
version = "0.1.3"
|
1466
1556
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1467
|
-
checksum = "
|
1557
|
+
checksum = "97ba99ba6393e2c3734791401b66902d981cb03bf190af674ca69949b6d5fb15"
|
1468
1558
|
dependencies = [
|
1469
1559
|
"libc",
|
1470
1560
|
]
|
@@ -1477,9 +1567,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
1477
1567
|
|
1478
1568
|
[[package]]
|
1479
1569
|
name = "object"
|
1480
|
-
version = "0.
|
1570
|
+
version = "0.30.4"
|
1481
1571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1482
|
-
checksum = "
|
1572
|
+
checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385"
|
1483
1573
|
dependencies = [
|
1484
1574
|
"memchr",
|
1485
1575
|
]
|
@@ -1490,17 +1580,11 @@ version = "1.21.3"
|
|
1490
1580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1491
1581
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
1492
1582
|
|
1493
|
-
[[package]]
|
1494
|
-
name = "once_cell_polyfill"
|
1495
|
-
version = "1.70.1"
|
1496
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1497
|
-
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
1498
|
-
|
1499
1583
|
[[package]]
|
1500
1584
|
name = "os_str_bytes"
|
1501
|
-
version = "6.6.
|
1585
|
+
version = "6.6.0"
|
1502
1586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1503
|
-
checksum = "
|
1587
|
+
checksum = "5b7ebac344522a099ad6b4ec72b21e428bdcd5ee390b277bd858a464fbca5ac8"
|
1504
1588
|
dependencies = [
|
1505
1589
|
"memchr",
|
1506
1590
|
]
|
@@ -1519,44 +1603,44 @@ checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
|
|
1519
1603
|
dependencies = [
|
1520
1604
|
"instant",
|
1521
1605
|
"lock_api",
|
1522
|
-
"parking_lot_core 0.8.
|
1606
|
+
"parking_lot_core 0.8.5",
|
1523
1607
|
]
|
1524
1608
|
|
1525
1609
|
[[package]]
|
1526
1610
|
name = "parking_lot"
|
1527
|
-
version = "0.12.
|
1611
|
+
version = "0.12.3"
|
1528
1612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1529
|
-
checksum = "
|
1613
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
1530
1614
|
dependencies = [
|
1531
1615
|
"lock_api",
|
1532
|
-
"parking_lot_core 0.9.
|
1616
|
+
"parking_lot_core 0.9.9",
|
1533
1617
|
]
|
1534
1618
|
|
1535
1619
|
[[package]]
|
1536
1620
|
name = "parking_lot_core"
|
1537
|
-
version = "0.8.
|
1621
|
+
version = "0.8.5"
|
1538
1622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1539
|
-
checksum = "
|
1623
|
+
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
|
1540
1624
|
dependencies = [
|
1541
1625
|
"cfg-if",
|
1542
1626
|
"instant",
|
1543
1627
|
"libc",
|
1544
|
-
"redox_syscall 0.2.
|
1628
|
+
"redox_syscall 0.2.10",
|
1545
1629
|
"smallvec",
|
1546
1630
|
"winapi",
|
1547
1631
|
]
|
1548
1632
|
|
1549
1633
|
[[package]]
|
1550
1634
|
name = "parking_lot_core"
|
1551
|
-
version = "0.9.
|
1635
|
+
version = "0.9.9"
|
1552
1636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1553
|
-
checksum = "
|
1637
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
1554
1638
|
dependencies = [
|
1555
1639
|
"cfg-if",
|
1556
1640
|
"libc",
|
1557
|
-
"redox_syscall 0.
|
1641
|
+
"redox_syscall 0.4.1",
|
1558
1642
|
"smallvec",
|
1559
|
-
"windows-targets 0.
|
1643
|
+
"windows-targets 0.48.5",
|
1560
1644
|
]
|
1561
1645
|
|
1562
1646
|
[[package]]
|
@@ -1593,18 +1677,18 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1593
1677
|
|
1594
1678
|
[[package]]
|
1595
1679
|
name = "path-absolutize"
|
1596
|
-
version = "3.1.
|
1680
|
+
version = "3.1.0"
|
1597
1681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1598
|
-
checksum = "
|
1682
|
+
checksum = "43eb3595c63a214e1b37b44f44b0a84900ef7ae0b4c5efce59e123d246d7a0de"
|
1599
1683
|
dependencies = [
|
1600
1684
|
"path-dedot",
|
1601
1685
|
]
|
1602
1686
|
|
1603
1687
|
[[package]]
|
1604
1688
|
name = "path-dedot"
|
1605
|
-
version = "3.1.
|
1689
|
+
version = "3.1.0"
|
1606
1690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1607
|
-
checksum = "
|
1691
|
+
checksum = "9d55e486337acb9973cdea3ec5638c1b3bcb22e573b2b7b41969e0c744d5a15e"
|
1608
1692
|
dependencies = [
|
1609
1693
|
"once_cell",
|
1610
1694
|
]
|
@@ -1626,9 +1710,9 @@ dependencies = [
|
|
1626
1710
|
|
1627
1711
|
[[package]]
|
1628
1712
|
name = "phf_codegen"
|
1629
|
-
version = "0.11.
|
1713
|
+
version = "0.11.2"
|
1630
1714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1631
|
-
checksum = "
|
1715
|
+
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
|
1632
1716
|
dependencies = [
|
1633
1717
|
"phf_generator",
|
1634
1718
|
"phf_shared",
|
@@ -1636,9 +1720,9 @@ dependencies = [
|
|
1636
1720
|
|
1637
1721
|
[[package]]
|
1638
1722
|
name = "phf_generator"
|
1639
|
-
version = "0.11.
|
1723
|
+
version = "0.11.1"
|
1640
1724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1641
|
-
checksum = "
|
1725
|
+
checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
|
1642
1726
|
dependencies = [
|
1643
1727
|
"phf_shared",
|
1644
1728
|
"rand",
|
@@ -1655,9 +1739,9 @@ dependencies = [
|
|
1655
1739
|
|
1656
1740
|
[[package]]
|
1657
1741
|
name = "pin-project-lite"
|
1658
|
-
version = "0.2.
|
1742
|
+
version = "0.2.15"
|
1659
1743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1660
|
-
checksum = "
|
1744
|
+
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
1661
1745
|
|
1662
1746
|
[[package]]
|
1663
1747
|
name = "pin-utils"
|
@@ -1667,24 +1751,15 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1667
1751
|
|
1668
1752
|
[[package]]
|
1669
1753
|
name = "pkg-config"
|
1670
|
-
version = "0.3.
|
1754
|
+
version = "0.3.30"
|
1671
1755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1672
|
-
checksum = "
|
1756
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
1673
1757
|
|
1674
1758
|
[[package]]
|
1675
1759
|
name = "portable-atomic"
|
1676
|
-
version = "1.11.
|
1677
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1678
|
-
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
1679
|
-
|
1680
|
-
[[package]]
|
1681
|
-
name = "potential_utf"
|
1682
|
-
version = "0.1.2"
|
1760
|
+
version = "1.11.0"
|
1683
1761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1684
|
-
checksum = "
|
1685
|
-
dependencies = [
|
1686
|
-
"zerovec",
|
1687
|
-
]
|
1762
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
1688
1763
|
|
1689
1764
|
[[package]]
|
1690
1765
|
name = "powerfmt"
|
@@ -1698,17 +1773,17 @@ version = "0.2.21"
|
|
1698
1773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1699
1774
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
1700
1775
|
dependencies = [
|
1701
|
-
"zerocopy",
|
1776
|
+
"zerocopy 0.8.25",
|
1702
1777
|
]
|
1703
1778
|
|
1704
1779
|
[[package]]
|
1705
1780
|
name = "pretty_assertions"
|
1706
|
-
version = "1.4.
|
1781
|
+
version = "1.4.0"
|
1707
1782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1708
|
-
checksum = "
|
1783
|
+
checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
|
1709
1784
|
dependencies = [
|
1710
1785
|
"diff",
|
1711
|
-
"yansi",
|
1786
|
+
"yansi 0.5.1",
|
1712
1787
|
]
|
1713
1788
|
|
1714
1789
|
[[package]]
|
@@ -1752,9 +1827,21 @@ dependencies = [
|
|
1752
1827
|
"prost",
|
1753
1828
|
]
|
1754
1829
|
|
1830
|
+
[[package]]
|
1831
|
+
name = "pulldown-cmark"
|
1832
|
+
version = "0.9.1"
|
1833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1834
|
+
checksum = "34f197a544b0c9ab3ae46c359a7ec9cbbb5c7bf97054266fecb7ead794a181d6"
|
1835
|
+
dependencies = [
|
1836
|
+
"bitflags 1.3.2",
|
1837
|
+
"getopts",
|
1838
|
+
"memchr",
|
1839
|
+
"unicase",
|
1840
|
+
]
|
1841
|
+
|
1755
1842
|
[[package]]
|
1756
1843
|
name = "pyrefly"
|
1757
|
-
version = "0.19.
|
1844
|
+
version = "0.19.2"
|
1758
1845
|
dependencies = [
|
1759
1846
|
"anstream",
|
1760
1847
|
"anyhow",
|
@@ -1770,7 +1857,6 @@ dependencies = [
|
|
1770
1857
|
"equivalent",
|
1771
1858
|
"indicatif",
|
1772
1859
|
"itertools 0.14.0",
|
1773
|
-
"jemallocator",
|
1774
1860
|
"lsp-server",
|
1775
1861
|
"lsp-types",
|
1776
1862
|
"num-bigint",
|
@@ -1779,10 +1865,12 @@ dependencies = [
|
|
1779
1865
|
"paste",
|
1780
1866
|
"path-absolutize",
|
1781
1867
|
"pretty_assertions",
|
1868
|
+
"pulldown-cmark",
|
1782
1869
|
"pyrefly_derive",
|
1783
1870
|
"pyrefly_util",
|
1784
1871
|
"regex",
|
1785
1872
|
"regex-syntax 0.7.5",
|
1873
|
+
"ruff_annotate_snippets",
|
1786
1874
|
"ruff_python_ast",
|
1787
1875
|
"ruff_python_parser",
|
1788
1876
|
"ruff_source_file",
|
@@ -1797,19 +1885,21 @@ dependencies = [
|
|
1797
1885
|
"tar",
|
1798
1886
|
"tempfile",
|
1799
1887
|
"thiserror 2.0.12",
|
1888
|
+
"tikv-jemallocator",
|
1800
1889
|
"tokio",
|
1801
1890
|
"toml",
|
1891
|
+
"toml_edit",
|
1802
1892
|
"tracing",
|
1803
1893
|
"vec1",
|
1804
1894
|
"walkdir",
|
1805
1895
|
"which",
|
1806
|
-
"yansi",
|
1896
|
+
"yansi 1.0.1",
|
1807
1897
|
"zstd",
|
1808
1898
|
]
|
1809
1899
|
|
1810
1900
|
[[package]]
|
1811
1901
|
name = "pyrefly_derive"
|
1812
|
-
version = "0.
|
1902
|
+
version = "0.19.2"
|
1813
1903
|
dependencies = [
|
1814
1904
|
"proc-macro2",
|
1815
1905
|
"quote",
|
@@ -1818,7 +1908,7 @@ dependencies = [
|
|
1818
1908
|
|
1819
1909
|
[[package]]
|
1820
1910
|
name = "pyrefly_util"
|
1821
|
-
version = "0.19.
|
1911
|
+
version = "0.19.2"
|
1822
1912
|
dependencies = [
|
1823
1913
|
"anstream",
|
1824
1914
|
"anyhow",
|
@@ -1867,8 +1957,7 @@ dependencies = [
|
|
1867
1957
|
[[package]]
|
1868
1958
|
name = "quickcheck"
|
1869
1959
|
version = "1.0.3"
|
1870
|
-
source = "
|
1871
|
-
checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
|
1960
|
+
source = "git+https://github.com/jakoschiko/quickcheck?rev=6ecdf5bb4b0132ce66670b4d46453aa022ea892c#6ecdf5bb4b0132ce66670b4d46453aa022ea892c"
|
1872
1961
|
dependencies = [
|
1873
1962
|
"env_logger",
|
1874
1963
|
"log",
|
@@ -1942,20 +2031,29 @@ dependencies = [
|
|
1942
2031
|
|
1943
2032
|
[[package]]
|
1944
2033
|
name = "redox_syscall"
|
1945
|
-
version = "0.2.
|
2034
|
+
version = "0.2.10"
|
1946
2035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1947
|
-
checksum = "
|
2036
|
+
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
|
1948
2037
|
dependencies = [
|
1949
2038
|
"bitflags 1.3.2",
|
1950
2039
|
]
|
1951
2040
|
|
1952
2041
|
[[package]]
|
1953
2042
|
name = "redox_syscall"
|
1954
|
-
version = "0.
|
2043
|
+
version = "0.4.1"
|
1955
2044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1956
|
-
checksum = "
|
2045
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
1957
2046
|
dependencies = [
|
1958
|
-
"bitflags
|
2047
|
+
"bitflags 1.3.2",
|
2048
|
+
]
|
2049
|
+
|
2050
|
+
[[package]]
|
2051
|
+
name = "redox_syscall"
|
2052
|
+
version = "0.5.6"
|
2053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2054
|
+
checksum = "355ae415ccd3a04315d3f8246e86d67689ea74d88d915576e1589a351062a13b"
|
2055
|
+
dependencies = [
|
2056
|
+
"bitflags 2.9.0",
|
1959
2057
|
]
|
1960
2058
|
|
1961
2059
|
[[package]]
|
@@ -1972,11 +2070,12 @@ dependencies = [
|
|
1972
2070
|
|
1973
2071
|
[[package]]
|
1974
2072
|
name = "regex-automata"
|
1975
|
-
version = "0.1.
|
2073
|
+
version = "0.1.9"
|
1976
2074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1977
|
-
checksum = "
|
2075
|
+
checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4"
|
1978
2076
|
dependencies = [
|
1979
|
-
"
|
2077
|
+
"byteorder",
|
2078
|
+
"regex-syntax 0.6.27",
|
1980
2079
|
]
|
1981
2080
|
|
1982
2081
|
[[package]]
|
@@ -1992,9 +2091,9 @@ dependencies = [
|
|
1992
2091
|
|
1993
2092
|
[[package]]
|
1994
2093
|
name = "regex-syntax"
|
1995
|
-
version = "0.6.
|
2094
|
+
version = "0.6.27"
|
1996
2095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1997
|
-
checksum = "
|
2096
|
+
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
|
1998
2097
|
|
1999
2098
|
[[package]]
|
2000
2099
|
name = "regex-syntax"
|
@@ -2014,13 +2113,23 @@ version = "1.9.3"
|
|
2014
2113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2015
2114
|
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
2016
2115
|
|
2116
|
+
[[package]]
|
2117
|
+
name = "ruff_annotate_snippets"
|
2118
|
+
version = "0.1.0"
|
2119
|
+
source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c372b3effba90032#6e785867c3a97691972e8a49c372b3effba90032"
|
2120
|
+
dependencies = [
|
2121
|
+
"anstyle",
|
2122
|
+
"memchr",
|
2123
|
+
"unicode-width 0.2.0",
|
2124
|
+
]
|
2125
|
+
|
2017
2126
|
[[package]]
|
2018
2127
|
name = "ruff_python_ast"
|
2019
2128
|
version = "0.0.0"
|
2020
2129
|
source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c372b3effba90032#6e785867c3a97691972e8a49c372b3effba90032"
|
2021
2130
|
dependencies = [
|
2022
2131
|
"aho-corasick",
|
2023
|
-
"bitflags 2.9.
|
2132
|
+
"bitflags 2.9.0",
|
2024
2133
|
"compact_str 0.9.0",
|
2025
2134
|
"is-macro",
|
2026
2135
|
"itertools 0.14.0",
|
@@ -2036,7 +2145,7 @@ name = "ruff_python_parser"
|
|
2036
2145
|
version = "0.0.0"
|
2037
2146
|
source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c372b3effba90032#6e785867c3a97691972e8a49c372b3effba90032"
|
2038
2147
|
dependencies = [
|
2039
|
-
"bitflags 2.9.
|
2148
|
+
"bitflags 2.9.0",
|
2040
2149
|
"bstr",
|
2041
2150
|
"compact_str 0.9.0",
|
2042
2151
|
"memchr",
|
@@ -2077,9 +2186,9 @@ source = "git+https://github.com/astral-sh/ruff/?rev=6e785867c3a97691972e8a49c37
|
|
2077
2186
|
|
2078
2187
|
[[package]]
|
2079
2188
|
name = "rustc-demangle"
|
2080
|
-
version = "0.1.
|
2189
|
+
version = "0.1.21"
|
2081
2190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2082
|
-
checksum = "
|
2191
|
+
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
|
2083
2192
|
|
2084
2193
|
[[package]]
|
2085
2194
|
name = "rustc-hash"
|
@@ -2087,37 +2196,24 @@ version = "2.1.1"
|
|
2087
2196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2088
2197
|
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
2089
2198
|
|
2090
|
-
[[package]]
|
2091
|
-
name = "rustix"
|
2092
|
-
version = "0.38.44"
|
2093
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2094
|
-
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
2095
|
-
dependencies = [
|
2096
|
-
"bitflags 2.9.1",
|
2097
|
-
"errno",
|
2098
|
-
"libc",
|
2099
|
-
"linux-raw-sys 0.4.15",
|
2100
|
-
"windows-sys 0.59.0",
|
2101
|
-
]
|
2102
|
-
|
2103
2199
|
[[package]]
|
2104
2200
|
name = "rustix"
|
2105
2201
|
version = "1.0.7"
|
2106
2202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2107
2203
|
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
2108
2204
|
dependencies = [
|
2109
|
-
"bitflags 2.9.
|
2205
|
+
"bitflags 2.9.0",
|
2110
2206
|
"errno",
|
2111
2207
|
"libc",
|
2112
|
-
"linux-raw-sys
|
2208
|
+
"linux-raw-sys",
|
2113
2209
|
"windows-sys 0.59.0",
|
2114
2210
|
]
|
2115
2211
|
|
2116
2212
|
[[package]]
|
2117
2213
|
name = "rustversion"
|
2118
|
-
version = "1.0.
|
2214
|
+
version = "1.0.14"
|
2119
2215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2120
|
-
checksum = "
|
2216
|
+
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
2121
2217
|
|
2122
2218
|
[[package]]
|
2123
2219
|
name = "ryu"
|
@@ -2127,9 +2223,9 @@ checksum = "b96a9549dc8d48f2c283938303c4b5a77aa29bfbc5b54b084fb1630408899a8f"
|
|
2127
2223
|
|
2128
2224
|
[[package]]
|
2129
2225
|
name = "ryu"
|
2130
|
-
version = "1.0.
|
2226
|
+
version = "1.0.17"
|
2131
2227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2132
|
-
checksum = "
|
2228
|
+
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
|
2133
2229
|
|
2134
2230
|
[[package]]
|
2135
2231
|
name = "same-file"
|
@@ -2146,11 +2242,17 @@ version = "1.2.0"
|
|
2146
2242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2147
2243
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
2148
2244
|
|
2245
|
+
[[package]]
|
2246
|
+
name = "scratch"
|
2247
|
+
version = "1.0.6"
|
2248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2249
|
+
checksum = "764cad9e7e1ca5fe15b552859ff5d96a314e6ed2934f2260168cd5dfa5891409"
|
2250
|
+
|
2149
2251
|
[[package]]
|
2150
2252
|
name = "serde"
|
2151
|
-
version = "1.0.
|
2253
|
+
version = "1.0.217"
|
2152
2254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2153
|
-
checksum = "
|
2255
|
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
2154
2256
|
dependencies = [
|
2155
2257
|
"serde_derive",
|
2156
2258
|
]
|
@@ -2191,9 +2293,9 @@ dependencies = [
|
|
2191
2293
|
|
2192
2294
|
[[package]]
|
2193
2295
|
name = "serde_derive"
|
2194
|
-
version = "1.0.
|
2296
|
+
version = "1.0.217"
|
2195
2297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2196
|
-
checksum = "
|
2298
|
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
2197
2299
|
dependencies = [
|
2198
2300
|
"proc-macro2",
|
2199
2301
|
"quote",
|
@@ -2206,9 +2308,9 @@ version = "1.0.140"
|
|
2206
2308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2207
2309
|
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
2208
2310
|
dependencies = [
|
2209
|
-
"itoa 1.0.
|
2311
|
+
"itoa 1.0.14",
|
2210
2312
|
"memchr",
|
2211
|
-
"ryu 1.0.
|
2313
|
+
"ryu 1.0.17",
|
2212
2314
|
"serde",
|
2213
2315
|
]
|
2214
2316
|
|
@@ -2225,9 +2327,9 @@ dependencies = [
|
|
2225
2327
|
|
2226
2328
|
[[package]]
|
2227
2329
|
name = "serde_repr"
|
2228
|
-
version = "0.1.
|
2330
|
+
version = "0.1.19"
|
2229
2331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2230
|
-
checksum = "
|
2332
|
+
checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
|
2231
2333
|
dependencies = [
|
2232
2334
|
"proc-macro2",
|
2233
2335
|
"quote",
|
@@ -2236,9 +2338,9 @@ dependencies = [
|
|
2236
2338
|
|
2237
2339
|
[[package]]
|
2238
2340
|
name = "serde_spanned"
|
2239
|
-
version = "0.6.
|
2341
|
+
version = "0.6.8"
|
2240
2342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2241
|
-
checksum = "
|
2343
|
+
checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
|
2242
2344
|
dependencies = [
|
2243
2345
|
"serde",
|
2244
2346
|
]
|
@@ -2269,9 +2371,9 @@ dependencies = [
|
|
2269
2371
|
|
2270
2372
|
[[package]]
|
2271
2373
|
name = "sharded-slab"
|
2272
|
-
version = "0.1.
|
2374
|
+
version = "0.1.4"
|
2273
2375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2274
|
-
checksum = "
|
2376
|
+
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
|
2275
2377
|
dependencies = [
|
2276
2378
|
"lazy_static",
|
2277
2379
|
]
|
@@ -2308,15 +2410,15 @@ dependencies = [
|
|
2308
2410
|
|
2309
2411
|
[[package]]
|
2310
2412
|
name = "smallvec"
|
2311
|
-
version = "1.15.
|
2413
|
+
version = "1.15.0"
|
2312
2414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2313
|
-
checksum = "
|
2415
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
2314
2416
|
|
2315
2417
|
[[package]]
|
2316
2418
|
name = "socket2"
|
2317
|
-
version = "0.5.
|
2419
|
+
version = "0.5.8"
|
2318
2420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2319
|
-
checksum = "
|
2421
|
+
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
|
2320
2422
|
dependencies = [
|
2321
2423
|
"libc",
|
2322
2424
|
"windows-sys 0.52.0",
|
@@ -2435,9 +2537,9 @@ dependencies = [
|
|
2435
2537
|
|
2436
2538
|
[[package]]
|
2437
2539
|
name = "synstructure"
|
2438
|
-
version = "0.13.
|
2540
|
+
version = "0.13.1"
|
2439
2541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2440
|
-
checksum = "
|
2542
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
2441
2543
|
dependencies = [
|
2442
2544
|
"proc-macro2",
|
2443
2545
|
"quote",
|
@@ -2457,24 +2559,33 @@ dependencies = [
|
|
2457
2559
|
|
2458
2560
|
[[package]]
|
2459
2561
|
name = "tempfile"
|
2460
|
-
version = "3.
|
2562
|
+
version = "3.19.1"
|
2461
2563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2462
|
-
checksum = "
|
2564
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
2463
2565
|
dependencies = [
|
2464
2566
|
"fastrand",
|
2465
2567
|
"getrandom 0.3.3",
|
2466
2568
|
"once_cell",
|
2467
|
-
"rustix
|
2569
|
+
"rustix",
|
2468
2570
|
"windows-sys 0.59.0",
|
2469
2571
|
]
|
2470
2572
|
|
2573
|
+
[[package]]
|
2574
|
+
name = "termcolor"
|
2575
|
+
version = "1.4.1"
|
2576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2577
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
2578
|
+
dependencies = [
|
2579
|
+
"winapi-util",
|
2580
|
+
]
|
2581
|
+
|
2471
2582
|
[[package]]
|
2472
2583
|
name = "terminal_size"
|
2473
2584
|
version = "0.4.2"
|
2474
2585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2475
2586
|
checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed"
|
2476
2587
|
dependencies = [
|
2477
|
-
"rustix
|
2588
|
+
"rustix",
|
2478
2589
|
"windows-sys 0.59.0",
|
2479
2590
|
]
|
2480
2591
|
|
@@ -2520,14 +2631,33 @@ dependencies = [
|
|
2520
2631
|
|
2521
2632
|
[[package]]
|
2522
2633
|
name = "thread_local"
|
2523
|
-
version = "1.1.
|
2634
|
+
version = "1.1.4"
|
2524
2635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2525
|
-
checksum = "
|
2636
|
+
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
|
2526
2637
|
dependencies = [
|
2527
|
-
"cfg-if",
|
2528
2638
|
"once_cell",
|
2529
2639
|
]
|
2530
2640
|
|
2641
|
+
[[package]]
|
2642
|
+
name = "tikv-jemalloc-sys"
|
2643
|
+
version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
|
2644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2645
|
+
checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d"
|
2646
|
+
dependencies = [
|
2647
|
+
"cc",
|
2648
|
+
"libc",
|
2649
|
+
]
|
2650
|
+
|
2651
|
+
[[package]]
|
2652
|
+
name = "tikv-jemallocator"
|
2653
|
+
version = "0.6.0"
|
2654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2655
|
+
checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865"
|
2656
|
+
dependencies = [
|
2657
|
+
"libc",
|
2658
|
+
"tikv-jemalloc-sys",
|
2659
|
+
]
|
2660
|
+
|
2531
2661
|
[[package]]
|
2532
2662
|
name = "time"
|
2533
2663
|
version = "0.3.41"
|
@@ -2535,7 +2665,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2535
2665
|
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
2536
2666
|
dependencies = [
|
2537
2667
|
"deranged",
|
2538
|
-
"itoa 1.0.
|
2668
|
+
"itoa 1.0.14",
|
2539
2669
|
"libc",
|
2540
2670
|
"num-conv",
|
2541
2671
|
"num_threads",
|
@@ -2563,9 +2693,9 @@ dependencies = [
|
|
2563
2693
|
|
2564
2694
|
[[package]]
|
2565
2695
|
name = "tinystr"
|
2566
|
-
version = "0.
|
2696
|
+
version = "0.7.6"
|
2567
2697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2568
|
-
checksum = "
|
2698
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
2569
2699
|
dependencies = [
|
2570
2700
|
"displaydoc",
|
2571
2701
|
"zerovec",
|
@@ -2573,30 +2703,30 @@ dependencies = [
|
|
2573
2703
|
|
2574
2704
|
[[package]]
|
2575
2705
|
name = "tinyvec"
|
2576
|
-
version = "1.
|
2706
|
+
version = "1.8.0"
|
2577
2707
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2578
|
-
checksum = "
|
2708
|
+
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
|
2579
2709
|
dependencies = [
|
2580
2710
|
"tinyvec_macros",
|
2581
2711
|
]
|
2582
2712
|
|
2583
2713
|
[[package]]
|
2584
2714
|
name = "tinyvec_macros"
|
2585
|
-
version = "0.1.
|
2715
|
+
version = "0.1.0"
|
2586
2716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2587
|
-
checksum = "
|
2717
|
+
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
2588
2718
|
|
2589
2719
|
[[package]]
|
2590
2720
|
name = "tokio"
|
2591
|
-
version = "1.45.
|
2721
|
+
version = "1.45.0"
|
2592
2722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2593
|
-
checksum = "
|
2723
|
+
checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
|
2594
2724
|
dependencies = [
|
2595
2725
|
"backtrace",
|
2596
2726
|
"bytes",
|
2597
2727
|
"libc",
|
2598
|
-
"mio 1.0.
|
2599
|
-
"parking_lot 0.12.
|
2728
|
+
"mio 1.0.2",
|
2729
|
+
"parking_lot 0.12.3",
|
2600
2730
|
"pin-project-lite",
|
2601
2731
|
"signal-hook-registry",
|
2602
2732
|
"socket2",
|
@@ -2633,9 +2763,9 @@ dependencies = [
|
|
2633
2763
|
|
2634
2764
|
[[package]]
|
2635
2765
|
name = "toml"
|
2636
|
-
version = "0.8.
|
2766
|
+
version = "0.8.22"
|
2637
2767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2638
|
-
checksum = "
|
2768
|
+
checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
|
2639
2769
|
dependencies = [
|
2640
2770
|
"serde",
|
2641
2771
|
"serde_spanned",
|
@@ -2645,18 +2775,18 @@ dependencies = [
|
|
2645
2775
|
|
2646
2776
|
[[package]]
|
2647
2777
|
name = "toml_datetime"
|
2648
|
-
version = "0.6.
|
2778
|
+
version = "0.6.9"
|
2649
2779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2650
|
-
checksum = "
|
2780
|
+
checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
|
2651
2781
|
dependencies = [
|
2652
2782
|
"serde",
|
2653
2783
|
]
|
2654
2784
|
|
2655
2785
|
[[package]]
|
2656
2786
|
name = "toml_edit"
|
2657
|
-
version = "0.22.
|
2787
|
+
version = "0.22.26"
|
2658
2788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2659
|
-
checksum = "
|
2789
|
+
checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
|
2660
2790
|
dependencies = [
|
2661
2791
|
"indexmap",
|
2662
2792
|
"serde",
|
@@ -2668,9 +2798,9 @@ dependencies = [
|
|
2668
2798
|
|
2669
2799
|
[[package]]
|
2670
2800
|
name = "toml_write"
|
2671
|
-
version = "0.1.
|
2801
|
+
version = "0.1.1"
|
2672
2802
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2673
|
-
checksum = "
|
2803
|
+
checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
|
2674
2804
|
|
2675
2805
|
[[package]]
|
2676
2806
|
name = "tracing"
|
@@ -2685,9 +2815,9 @@ dependencies = [
|
|
2685
2815
|
|
2686
2816
|
[[package]]
|
2687
2817
|
name = "tracing-attributes"
|
2688
|
-
version = "0.1.
|
2818
|
+
version = "0.1.28"
|
2689
2819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2690
|
-
checksum = "
|
2820
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
2691
2821
|
dependencies = [
|
2692
2822
|
"proc-macro2",
|
2693
2823
|
"quote",
|
@@ -2696,9 +2826,9 @@ dependencies = [
|
|
2696
2826
|
|
2697
2827
|
[[package]]
|
2698
2828
|
name = "tracing-core"
|
2699
|
-
version = "0.1.
|
2829
|
+
version = "0.1.33"
|
2700
2830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2701
|
-
checksum = "
|
2831
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
2702
2832
|
dependencies = [
|
2703
2833
|
"once_cell",
|
2704
2834
|
"valuable",
|
@@ -2735,7 +2865,7 @@ dependencies = [
|
|
2735
2865
|
"matchers",
|
2736
2866
|
"nu-ansi-term",
|
2737
2867
|
"once_cell",
|
2738
|
-
"parking_lot 0.12.
|
2868
|
+
"parking_lot 0.12.3",
|
2739
2869
|
"regex",
|
2740
2870
|
"serde",
|
2741
2871
|
"serde_json",
|
@@ -2751,9 +2881,9 @@ dependencies = [
|
|
2751
2881
|
|
2752
2882
|
[[package]]
|
2753
2883
|
name = "triomphe"
|
2754
|
-
version = "0.1.
|
2884
|
+
version = "0.1.11"
|
2755
2885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2756
|
-
checksum = "
|
2886
|
+
checksum = "859eb650cfee7434994602c3a68b25d77ad9e68c8a6cd491616ef86661382eb3"
|
2757
2887
|
dependencies = [
|
2758
2888
|
"serde",
|
2759
2889
|
"stable_deref_trait",
|
@@ -2761,9 +2891,9 @@ dependencies = [
|
|
2761
2891
|
|
2762
2892
|
[[package]]
|
2763
2893
|
name = "typenum"
|
2764
|
-
version = "1.
|
2894
|
+
version = "1.17.0"
|
2765
2895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2766
|
-
checksum = "
|
2896
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
2767
2897
|
|
2768
2898
|
[[package]]
|
2769
2899
|
name = "unicase"
|
@@ -2773,15 +2903,15 @@ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
2773
2903
|
|
2774
2904
|
[[package]]
|
2775
2905
|
name = "unicode-ident"
|
2776
|
-
version = "1.0.
|
2906
|
+
version = "1.0.16"
|
2777
2907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2778
|
-
checksum = "
|
2908
|
+
checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
|
2779
2909
|
|
2780
2910
|
[[package]]
|
2781
2911
|
name = "unicode-normalization"
|
2782
|
-
version = "0.1.
|
2912
|
+
version = "0.1.23"
|
2783
2913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2784
|
-
checksum = "
|
2914
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
2785
2915
|
dependencies = [
|
2786
2916
|
"tinyvec",
|
2787
2917
|
]
|
@@ -2794,15 +2924,21 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
2794
2924
|
|
2795
2925
|
[[package]]
|
2796
2926
|
name = "unicode-width"
|
2797
|
-
version = "0.
|
2927
|
+
version = "0.1.12"
|
2798
2928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2799
|
-
checksum = "
|
2929
|
+
checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6"
|
2930
|
+
|
2931
|
+
[[package]]
|
2932
|
+
name = "unicode-width"
|
2933
|
+
version = "0.2.0"
|
2934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2935
|
+
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
2800
2936
|
|
2801
2937
|
[[package]]
|
2802
2938
|
name = "unicode_names2"
|
2803
|
-
version = "1.
|
2939
|
+
version = "1.2.2"
|
2804
2940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2805
|
-
checksum = "
|
2941
|
+
checksum = "addeebf294df7922a1164f729fb27ebbbcea99cc32b3bf08afab62757f707677"
|
2806
2942
|
dependencies = [
|
2807
2943
|
"phf",
|
2808
2944
|
"unicode_names2_generator",
|
@@ -2810,9 +2946,9 @@ dependencies = [
|
|
2810
2946
|
|
2811
2947
|
[[package]]
|
2812
2948
|
name = "unicode_names2_generator"
|
2813
|
-
version = "1.
|
2949
|
+
version = "1.2.2"
|
2814
2950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2815
|
-
checksum = "
|
2951
|
+
checksum = "f444b8bba042fe3c1251ffaca35c603f2dc2ccc08d595c65a8c4f76f3e8426c0"
|
2816
2952
|
dependencies = [
|
2817
2953
|
"getopts",
|
2818
2954
|
"log",
|
@@ -2832,6 +2968,12 @@ dependencies = [
|
|
2832
2968
|
"serde",
|
2833
2969
|
]
|
2834
2970
|
|
2971
|
+
[[package]]
|
2972
|
+
name = "utf16_iter"
|
2973
|
+
version = "1.0.5"
|
2974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2975
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
2976
|
+
|
2835
2977
|
[[package]]
|
2836
2978
|
name = "utf8_iter"
|
2837
2979
|
version = "1.0.4"
|
@@ -2840,21 +2982,21 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2840
2982
|
|
2841
2983
|
[[package]]
|
2842
2984
|
name = "utf8parse"
|
2843
|
-
version = "0.2.
|
2985
|
+
version = "0.2.1"
|
2844
2986
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2845
|
-
checksum = "
|
2987
|
+
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
2846
2988
|
|
2847
2989
|
[[package]]
|
2848
2990
|
name = "valuable"
|
2849
|
-
version = "0.1.
|
2991
|
+
version = "0.1.0"
|
2850
2992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2851
|
-
checksum = "
|
2993
|
+
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
2852
2994
|
|
2853
2995
|
[[package]]
|
2854
2996
|
name = "vec1"
|
2855
|
-
version = "1.
|
2997
|
+
version = "1.10.1"
|
2856
2998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2857
|
-
checksum = "
|
2999
|
+
checksum = "2bda7c41ca331fe9a1c278a9e7ee055f4be7f5eb1c2b72f079b4ff8b5fce9d5c"
|
2858
3000
|
dependencies = [
|
2859
3001
|
"serde",
|
2860
3002
|
]
|
@@ -2978,14 +3120,13 @@ dependencies = [
|
|
2978
3120
|
|
2979
3121
|
[[package]]
|
2980
3122
|
name = "which"
|
2981
|
-
version = "4.4
|
3123
|
+
version = "4.2.4"
|
2982
3124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2983
|
-
checksum = "
|
3125
|
+
checksum = "2a5a7e487e921cf220206864a94a89b6c6905bfc19f1057fa26a4cb360e5c1d2"
|
2984
3126
|
dependencies = [
|
2985
3127
|
"either",
|
2986
|
-
"
|
2987
|
-
"
|
2988
|
-
"rustix 0.38.44",
|
3128
|
+
"lazy_static",
|
3129
|
+
"libc",
|
2989
3130
|
]
|
2990
3131
|
|
2991
3132
|
[[package]]
|
@@ -3006,11 +3147,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3006
3147
|
|
3007
3148
|
[[package]]
|
3008
3149
|
name = "winapi-util"
|
3009
|
-
version = "0.1.
|
3150
|
+
version = "0.1.5"
|
3010
3151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3011
|
-
checksum = "
|
3152
|
+
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
3012
3153
|
dependencies = [
|
3013
|
-
"
|
3154
|
+
"winapi",
|
3014
3155
|
]
|
3015
3156
|
|
3016
3157
|
[[package]]
|
@@ -3019,72 +3160,13 @@ version = "0.4.0"
|
|
3019
3160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3020
3161
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
3021
3162
|
|
3022
|
-
[[package]]
|
3023
|
-
name = "windows-core"
|
3024
|
-
version = "0.61.2"
|
3025
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3026
|
-
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
3027
|
-
dependencies = [
|
3028
|
-
"windows-implement",
|
3029
|
-
"windows-interface",
|
3030
|
-
"windows-link",
|
3031
|
-
"windows-result",
|
3032
|
-
"windows-strings",
|
3033
|
-
]
|
3034
|
-
|
3035
|
-
[[package]]
|
3036
|
-
name = "windows-implement"
|
3037
|
-
version = "0.60.0"
|
3038
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3039
|
-
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
3040
|
-
dependencies = [
|
3041
|
-
"proc-macro2",
|
3042
|
-
"quote",
|
3043
|
-
"syn 2.0.101",
|
3044
|
-
]
|
3045
|
-
|
3046
|
-
[[package]]
|
3047
|
-
name = "windows-interface"
|
3048
|
-
version = "0.59.1"
|
3049
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3050
|
-
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
3051
|
-
dependencies = [
|
3052
|
-
"proc-macro2",
|
3053
|
-
"quote",
|
3054
|
-
"syn 2.0.101",
|
3055
|
-
]
|
3056
|
-
|
3057
|
-
[[package]]
|
3058
|
-
name = "windows-link"
|
3059
|
-
version = "0.1.1"
|
3060
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3061
|
-
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
3062
|
-
|
3063
|
-
[[package]]
|
3064
|
-
name = "windows-result"
|
3065
|
-
version = "0.3.4"
|
3066
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3067
|
-
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
3068
|
-
dependencies = [
|
3069
|
-
"windows-link",
|
3070
|
-
]
|
3071
|
-
|
3072
|
-
[[package]]
|
3073
|
-
name = "windows-strings"
|
3074
|
-
version = "0.4.2"
|
3075
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3076
|
-
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
3077
|
-
dependencies = [
|
3078
|
-
"windows-link",
|
3079
|
-
]
|
3080
|
-
|
3081
3163
|
[[package]]
|
3082
3164
|
name = "windows-sys"
|
3083
3165
|
version = "0.45.0"
|
3084
3166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3085
3167
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
3086
3168
|
dependencies = [
|
3087
|
-
"windows-targets 0.42.
|
3169
|
+
"windows-targets 0.42.1",
|
3088
3170
|
]
|
3089
3171
|
|
3090
3172
|
[[package]]
|
@@ -3116,17 +3198,17 @@ dependencies = [
|
|
3116
3198
|
|
3117
3199
|
[[package]]
|
3118
3200
|
name = "windows-targets"
|
3119
|
-
version = "0.42.
|
3201
|
+
version = "0.42.1"
|
3120
3202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3121
|
-
checksum = "
|
3203
|
+
checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
|
3122
3204
|
dependencies = [
|
3123
|
-
"windows_aarch64_gnullvm 0.42.
|
3124
|
-
"windows_aarch64_msvc 0.42.
|
3125
|
-
"windows_i686_gnu 0.42.
|
3126
|
-
"windows_i686_msvc 0.42.
|
3127
|
-
"windows_x86_64_gnu 0.42.
|
3128
|
-
"windows_x86_64_gnullvm 0.42.
|
3129
|
-
"windows_x86_64_msvc 0.42.
|
3205
|
+
"windows_aarch64_gnullvm 0.42.1",
|
3206
|
+
"windows_aarch64_msvc 0.42.1",
|
3207
|
+
"windows_i686_gnu 0.42.1",
|
3208
|
+
"windows_i686_msvc 0.42.1",
|
3209
|
+
"windows_x86_64_gnu 0.42.1",
|
3210
|
+
"windows_x86_64_gnullvm 0.42.1",
|
3211
|
+
"windows_x86_64_msvc 0.42.1",
|
3130
3212
|
]
|
3131
3213
|
|
3132
3214
|
[[package]]
|
@@ -3162,9 +3244,9 @@ dependencies = [
|
|
3162
3244
|
|
3163
3245
|
[[package]]
|
3164
3246
|
name = "windows_aarch64_gnullvm"
|
3165
|
-
version = "0.42.
|
3247
|
+
version = "0.42.1"
|
3166
3248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3167
|
-
checksum = "
|
3249
|
+
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
|
3168
3250
|
|
3169
3251
|
[[package]]
|
3170
3252
|
name = "windows_aarch64_gnullvm"
|
@@ -3180,9 +3262,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3180
3262
|
|
3181
3263
|
[[package]]
|
3182
3264
|
name = "windows_aarch64_msvc"
|
3183
|
-
version = "0.42.
|
3265
|
+
version = "0.42.1"
|
3184
3266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3185
|
-
checksum = "
|
3267
|
+
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
|
3186
3268
|
|
3187
3269
|
[[package]]
|
3188
3270
|
name = "windows_aarch64_msvc"
|
@@ -3198,9 +3280,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3198
3280
|
|
3199
3281
|
[[package]]
|
3200
3282
|
name = "windows_i686_gnu"
|
3201
|
-
version = "0.42.
|
3283
|
+
version = "0.42.1"
|
3202
3284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3203
|
-
checksum = "
|
3285
|
+
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
|
3204
3286
|
|
3205
3287
|
[[package]]
|
3206
3288
|
name = "windows_i686_gnu"
|
@@ -3222,9 +3304,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3222
3304
|
|
3223
3305
|
[[package]]
|
3224
3306
|
name = "windows_i686_msvc"
|
3225
|
-
version = "0.42.
|
3307
|
+
version = "0.42.1"
|
3226
3308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3227
|
-
checksum = "
|
3309
|
+
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
|
3228
3310
|
|
3229
3311
|
[[package]]
|
3230
3312
|
name = "windows_i686_msvc"
|
@@ -3240,9 +3322,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3240
3322
|
|
3241
3323
|
[[package]]
|
3242
3324
|
name = "windows_x86_64_gnu"
|
3243
|
-
version = "0.42.
|
3325
|
+
version = "0.42.1"
|
3244
3326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3245
|
-
checksum = "
|
3327
|
+
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
|
3246
3328
|
|
3247
3329
|
[[package]]
|
3248
3330
|
name = "windows_x86_64_gnu"
|
@@ -3258,9 +3340,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3258
3340
|
|
3259
3341
|
[[package]]
|
3260
3342
|
name = "windows_x86_64_gnullvm"
|
3261
|
-
version = "0.42.
|
3343
|
+
version = "0.42.1"
|
3262
3344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3263
|
-
checksum = "
|
3345
|
+
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
|
3264
3346
|
|
3265
3347
|
[[package]]
|
3266
3348
|
name = "windows_x86_64_gnullvm"
|
@@ -3276,9 +3358,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3276
3358
|
|
3277
3359
|
[[package]]
|
3278
3360
|
name = "windows_x86_64_msvc"
|
3279
|
-
version = "0.42.
|
3361
|
+
version = "0.42.1"
|
3280
3362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3281
|
-
checksum = "
|
3363
|
+
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
|
3282
3364
|
|
3283
3365
|
[[package]]
|
3284
3366
|
name = "windows_x86_64_msvc"
|
@@ -3307,14 +3389,20 @@ version = "0.39.0"
|
|
3307
3389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3308
3390
|
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
3309
3391
|
dependencies = [
|
3310
|
-
"bitflags 2.9.
|
3392
|
+
"bitflags 2.9.0",
|
3311
3393
|
]
|
3312
3394
|
|
3395
|
+
[[package]]
|
3396
|
+
name = "write16"
|
3397
|
+
version = "1.0.0"
|
3398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3399
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
3400
|
+
|
3313
3401
|
[[package]]
|
3314
3402
|
name = "writeable"
|
3315
|
-
version = "0.
|
3403
|
+
version = "0.5.5"
|
3316
3404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3317
|
-
checksum = "
|
3405
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
3318
3406
|
|
3319
3407
|
[[package]]
|
3320
3408
|
name = "xattr"
|
@@ -3323,9 +3411,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3323
3411
|
checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
|
3324
3412
|
dependencies = [
|
3325
3413
|
"libc",
|
3326
|
-
"rustix
|
3414
|
+
"rustix",
|
3327
3415
|
]
|
3328
3416
|
|
3417
|
+
[[package]]
|
3418
|
+
name = "yansi"
|
3419
|
+
version = "0.5.1"
|
3420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3421
|
+
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
|
3422
|
+
|
3329
3423
|
[[package]]
|
3330
3424
|
name = "yansi"
|
3331
3425
|
version = "1.0.1"
|
@@ -3334,9 +3428,9 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
3334
3428
|
|
3335
3429
|
[[package]]
|
3336
3430
|
name = "yoke"
|
3337
|
-
version = "0.
|
3431
|
+
version = "0.7.4"
|
3338
3432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3339
|
-
checksum = "
|
3433
|
+
checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5"
|
3340
3434
|
dependencies = [
|
3341
3435
|
"serde",
|
3342
3436
|
"stable_deref_trait",
|
@@ -3346,9 +3440,9 @@ dependencies = [
|
|
3346
3440
|
|
3347
3441
|
[[package]]
|
3348
3442
|
name = "yoke-derive"
|
3349
|
-
version = "0.
|
3443
|
+
version = "0.7.4"
|
3350
3444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3351
|
-
checksum = "
|
3445
|
+
checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95"
|
3352
3446
|
dependencies = [
|
3353
3447
|
"proc-macro2",
|
3354
3448
|
"quote",
|
@@ -3356,13 +3450,33 @@ dependencies = [
|
|
3356
3450
|
"synstructure",
|
3357
3451
|
]
|
3358
3452
|
|
3453
|
+
[[package]]
|
3454
|
+
name = "zerocopy"
|
3455
|
+
version = "0.7.35"
|
3456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3457
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
3458
|
+
dependencies = [
|
3459
|
+
"zerocopy-derive 0.7.35",
|
3460
|
+
]
|
3461
|
+
|
3359
3462
|
[[package]]
|
3360
3463
|
name = "zerocopy"
|
3361
3464
|
version = "0.8.25"
|
3362
3465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3363
3466
|
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
3364
3467
|
dependencies = [
|
3365
|
-
"zerocopy-derive",
|
3468
|
+
"zerocopy-derive 0.8.25",
|
3469
|
+
]
|
3470
|
+
|
3471
|
+
[[package]]
|
3472
|
+
name = "zerocopy-derive"
|
3473
|
+
version = "0.7.35"
|
3474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3475
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
3476
|
+
dependencies = [
|
3477
|
+
"proc-macro2",
|
3478
|
+
"quote",
|
3479
|
+
"syn 2.0.101",
|
3366
3480
|
]
|
3367
3481
|
|
3368
3482
|
[[package]]
|
@@ -3378,18 +3492,18 @@ dependencies = [
|
|
3378
3492
|
|
3379
3493
|
[[package]]
|
3380
3494
|
name = "zerofrom"
|
3381
|
-
version = "0.1.
|
3495
|
+
version = "0.1.4"
|
3382
3496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3383
|
-
checksum = "
|
3497
|
+
checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55"
|
3384
3498
|
dependencies = [
|
3385
3499
|
"zerofrom-derive",
|
3386
3500
|
]
|
3387
3501
|
|
3388
3502
|
[[package]]
|
3389
3503
|
name = "zerofrom-derive"
|
3390
|
-
version = "0.1.
|
3504
|
+
version = "0.1.4"
|
3391
3505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3392
|
-
checksum = "
|
3506
|
+
checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5"
|
3393
3507
|
dependencies = [
|
3394
3508
|
"proc-macro2",
|
3395
3509
|
"quote",
|
@@ -3397,22 +3511,11 @@ dependencies = [
|
|
3397
3511
|
"synstructure",
|
3398
3512
|
]
|
3399
3513
|
|
3400
|
-
[[package]]
|
3401
|
-
name = "zerotrie"
|
3402
|
-
version = "0.2.2"
|
3403
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3404
|
-
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
3405
|
-
dependencies = [
|
3406
|
-
"displaydoc",
|
3407
|
-
"yoke",
|
3408
|
-
"zerofrom",
|
3409
|
-
]
|
3410
|
-
|
3411
3514
|
[[package]]
|
3412
3515
|
name = "zerovec"
|
3413
|
-
version = "0.
|
3516
|
+
version = "0.10.4"
|
3414
3517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3415
|
-
checksum = "
|
3518
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
3416
3519
|
dependencies = [
|
3417
3520
|
"yoke",
|
3418
3521
|
"zerofrom",
|
@@ -3421,9 +3524,9 @@ dependencies = [
|
|
3421
3524
|
|
3422
3525
|
[[package]]
|
3423
3526
|
name = "zerovec-derive"
|
3424
|
-
version = "0.
|
3527
|
+
version = "0.10.3"
|
3425
3528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3426
|
-
checksum = "
|
3529
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
3427
3530
|
dependencies = [
|
3428
3531
|
"proc-macro2",
|
3429
3532
|
"quote",
|
@@ -3432,27 +3535,27 @@ dependencies = [
|
|
3432
3535
|
|
3433
3536
|
[[package]]
|
3434
3537
|
name = "zstd"
|
3435
|
-
version = "0.13.
|
3538
|
+
version = "0.13.2"
|
3436
3539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3437
|
-
checksum = "
|
3540
|
+
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
3438
3541
|
dependencies = [
|
3439
3542
|
"zstd-safe",
|
3440
3543
|
]
|
3441
3544
|
|
3442
3545
|
[[package]]
|
3443
3546
|
name = "zstd-safe"
|
3444
|
-
version = "7.2.
|
3547
|
+
version = "7.2.1"
|
3445
3548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3446
|
-
checksum = "
|
3549
|
+
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
3447
3550
|
dependencies = [
|
3448
3551
|
"zstd-sys",
|
3449
3552
|
]
|
3450
3553
|
|
3451
3554
|
[[package]]
|
3452
3555
|
name = "zstd-sys"
|
3453
|
-
version = "2.0.
|
3556
|
+
version = "2.0.12+zstd.1.5.6"
|
3454
3557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3455
|
-
checksum = "
|
3558
|
+
checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13"
|
3456
3559
|
dependencies = [
|
3457
3560
|
"cc",
|
3458
3561
|
"pkg-config",
|