pyrefly 0.2.0__tar.gz → 0.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyrefly-0.2.0 → pyrefly-0.4.0}/Cargo.lock +272 -108
- {pyrefly-0.2.0 → pyrefly-0.4.0}/Cargo.toml +7 -1
- {pyrefly-0.2.0 → pyrefly-0.4.0}/PKG-INFO +1 -1
- pyrefly-0.4.0/bin/main.rs +217 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/answers.rs +135 -9
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/attr.rs +310 -156
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/call.rs +320 -119
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/callable.rs +168 -45
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/class/class_field.rs +279 -145
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/class/class_metadata.rs +148 -39
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/class/classdef.rs +34 -21
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/class/dataclass.rs +32 -14
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/class/enums.rs +3 -4
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/class/named_tuple.rs +25 -16
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/class/new_type.rs +39 -16
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/class/typed_dict.rs +31 -11
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/expr.rs +507 -274
- pyrefly-0.4.0/lib/alt/function.rs +429 -0
- pyrefly-0.4.0/lib/alt/id_cache.rs +240 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/mod.rs +2 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/narrow.rs +114 -47
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/solve.rs +909 -420
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/special_calls.rs +35 -24
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/specials.rs +67 -31
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/traits.rs +12 -6
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/types/class_metadata.rs +21 -7
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/types/decorated_function.rs +15 -2
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/types/yields.rs +11 -5
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/ast.rs +46 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/binding/binding.rs +146 -82
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/binding/bindings.rs +48 -13
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/binding/class.rs +261 -54
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/binding/expr.rs +41 -23
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/binding/function.rs +42 -14
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/binding/narrow.rs +23 -17
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/binding/pattern.rs +5 -3
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/binding/scope.rs +46 -9
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/binding/stmt.rs +124 -32
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/commands/buck_check.rs +13 -17
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/commands/check.rs +128 -86
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/commands/lsp.rs +128 -87
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/commands/mod.rs +0 -1
- pyrefly-0.4.0/lib/commands/run.rs +21 -0
- pyrefly-0.4.0/lib/config.rs +231 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/dunder.rs +2 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/error/collector.rs +40 -21
- pyrefly-0.4.0/lib/error/context.rs +123 -0
- pyrefly-0.4.0/lib/error/display.rs +173 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/error/error.rs +14 -5
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/error/expectation.rs +4 -4
- pyrefly-0.4.0/lib/error/kind.rs +170 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/error/legacy.rs +5 -3
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/error/mod.rs +2 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/lib.rs +6 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/metadata.rs +89 -2
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/module/display.rs +1 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/module/module_info.rs +1 -4
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/module/module_name.rs +16 -4
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/module/source_db.rs +3 -8
- pyrefly-0.4.0/lib/playground.rs +356 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/report/binding_memory.rs +75 -2
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/report/debug_info.rs +1 -1
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/report/mod.rs +1 -0
- pyrefly-0.4.0/lib/report/trace.rs +74 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/solver/solver.rs +98 -61
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/solver/subset.rs +40 -19
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/solver/type_order.rs +1 -1
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/state/epoch.rs +3 -1
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/state/loader.rs +10 -10
- pyrefly-0.2.0/lib/state/ide.rs → pyrefly-0.4.0/lib/state/lsp.rs +84 -27
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/state/mod.rs +2 -1
- pyrefly-0.4.0/lib/state/require.rs +115 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/state/state.rs +238 -151
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/state/steps.rs +53 -32
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/state/subscriber.rs +38 -1
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/assign.rs +34 -22
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/attributes.rs +37 -17
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/callable.rs +77 -31
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/class_keywords.rs +2 -2
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/class_overrides.rs +45 -23
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/class_subtyping.rs +14 -14
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/class_super.rs +3 -1
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/config.rs +30 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/constructors.rs +22 -11
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/contextual.rs +23 -23
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/dataclasses.rs +14 -14
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/descriptors.rs +87 -6
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/enums.rs +2 -2
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/flow.rs +32 -8
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/imports.rs +42 -3
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/legacy_generic.rs +35 -1
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/lsp/completion.rs +56 -12
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/lsp/definition.rs +30 -3
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/lsp/hover.rs +109 -3
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/lsp/inlay_hint.rs +6 -3
- pyrefly-0.4.0/lib/test/lsp/lsp_interaction.rs +141 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/lsp/mod.rs +1 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/mod.rs +1 -2
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/mro.rs +10 -10
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/named_tuple.rs +34 -2
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/narrow.rs +35 -2
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/new_type.rs +25 -12
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/operators.rs +33 -4
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/overload.rs +77 -7
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/paramspec.rs +33 -22
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/protocol.rs +21 -21
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/returns.rs +8 -8
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/simple.rs +107 -54
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/state.rs +87 -37
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/tuple.rs +13 -4
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/type_alias.rs +133 -4
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/type_var_tuple.rs +26 -3
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/typed_dict.rs +30 -18
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/util.rs +33 -36
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/with.rs +4 -4
- pyrefly-0.2.0/lib/test/yield.rs → pyrefly-0.4.0/lib/test/yields.rs +25 -12
- pyrefly-0.4.0/lib/types/alias.rs +53 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/annotation.rs +8 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/callable.rs +202 -48
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/class.rs +118 -12
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/display.rs +30 -53
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/literal.rs +27 -27
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/mod.rs +1 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/param_spec.rs +26 -2
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/qname.rs +55 -25
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/stdlib.rs +12 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/type_var.rs +33 -2
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/type_var_tuple.rs +26 -2
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/typed_dict.rs +33 -14
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/types.rs +308 -136
- pyrefly-0.4.0/lib/util/assert_size.rs +29 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/display.rs +12 -8
- pyrefly-0.4.0/lib/util/globs.rs +332 -0
- pyrefly-0.4.0/lib/util/listing.rs +23 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/lock.rs +4 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/locked_map.rs +4 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/mod.rs +5 -0
- pyrefly-0.4.0/lib/util/mutable.rs +74 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/notify_watcher.rs +8 -5
- pyrefly-0.2.0/lib/test/stdlib.rs → pyrefly-0.4.0/lib/util/reduced_stdlib.rs +13 -6
- pyrefly-0.4.0/lib/util/thread_pool.rs +59 -0
- pyrefly-0.4.0/lib/util/trace.rs +52 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/upgrade_lock.rs +1 -1
- pyrefly-0.2.0/lib/config.rs → pyrefly-0.4.0/lib/util/watcher.rs +7 -1
- pyrefly-0.4.0/rust-toolchain +1 -0
- pyrefly-0.2.0/bin/main.rs +0 -138
- pyrefly-0.2.0/bin/notify_watcher.rs +0 -58
- pyrefly-0.2.0/lib/commands/common.rs +0 -33
- pyrefly-0.2.0/lib/commands/run.rs +0 -52
- pyrefly-0.2.0/lib/error/kind.rs +0 -36
- pyrefly-0.2.0/lib/util/globs.rs +0 -109
- pyrefly-0.2.0/lib/util/trace.rs +0 -45
- pyrefly-0.2.0/lib/util/watcher.rs +0 -17
- pyrefly-0.2.0/rust-toolchain +0 -1
- {pyrefly-0.2.0 → pyrefly-0.4.0}/.gitignore +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/build.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/class/mod.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/types/legacy_lookup.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/types/mod.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/alt/unwrap.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/binding/mod.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/binding/table.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/binding/target.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/commands/util.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/error/style.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/export/definitions.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/export/exports.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/export/mod.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/export/special.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/graph/calculation.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/graph/index.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/graph/index_map.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/graph/mod.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/module/bundled.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/module/finder.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/module/ignore.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/module/mod.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/module/module_path.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/module/short_identifier.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/solver/mod.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/state/dirty.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/state/handle.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/decorators.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/test/perf.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/module.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/quantified.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/simplify.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/special_form.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/types/tuple.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/arc_id.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/args.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/enum_heap.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/exclusive_lock.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/forgetter.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/fs_anyhow.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/memory.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/no_hash.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/prelude.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/recurser.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/uniques.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/util/with_hash.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/lib/visitors.rs +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/pyproject.toml +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/__future__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/__main__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_ast.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_asyncio.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_bisect.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_blake2.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_bootlocale.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_bz2.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_codecs.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_collections_abc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_compat_pickle.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_compression.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_contextvars.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_csv.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_ctypes.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_curses.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_curses_panel.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_dbm.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_decimal.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_dummy_thread.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_dummy_threading.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_frozen_importlib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_frozen_importlib_external.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_gdbm.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_hashlib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_heapq.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_imp.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_interpchannels.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_interpqueues.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_interpreters.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_io.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_json.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_locale.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_lsprof.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_lzma.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_markupbase.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_msi.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_multibytecodec.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_operator.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_osx_support.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_pickle.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_posixsubprocess.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_py_abc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_pydecimal.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_queue.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_random.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_sitebuiltins.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_socket.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_sqlite3.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_ssl.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_stat.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_struct.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_thread.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_threading_local.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_tkinter.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_tracemalloc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_typeshed/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_typeshed/dbapi.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_typeshed/importlib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_typeshed/wsgi.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_typeshed/xml.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_warnings.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_weakref.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_weakrefset.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/_winapi.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/abc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/aifc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/antigravity.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/argparse.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/array.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ast.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asynchat.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/base_events.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/base_futures.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/base_subprocess.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/base_tasks.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/constants.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/coroutines.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/events.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/exceptions.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/format_helpers.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/futures.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/locks.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/log.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/mixins.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/proactor_events.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/protocols.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/queues.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/runners.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/selector_events.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/sslproto.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/staggered.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/streams.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/subprocess.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/taskgroups.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/tasks.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/threads.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/timeouts.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/transports.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/trsock.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/unix_events.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/windows_events.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncio/windows_utils.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/asyncore.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/atexit.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/audioop.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/base64.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/bdb.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/binascii.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/binhex.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/bisect.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/builtins.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/bz2.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/cProfile.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/calendar.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/cgi.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/cgitb.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/chunk.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/cmath.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/cmd.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/code.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/codecs.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/codeop.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/collections/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/collections/abc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/colorsys.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/compileall.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/concurrent/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/concurrent/futures/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/concurrent/futures/_base.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/concurrent/futures/process.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/concurrent/futures/thread.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/configparser.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/contextlib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/contextvars.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/copy.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/copyreg.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/crypt.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/csv.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ctypes/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ctypes/_endian.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ctypes/macholib/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ctypes/macholib/dyld.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ctypes/macholib/dylib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ctypes/macholib/framework.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ctypes/util.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ctypes/wintypes.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/curses/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/curses/ascii.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/curses/has_key.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/curses/panel.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/curses/textpad.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/dataclasses.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/datetime.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/dbm/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/dbm/dumb.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/dbm/gnu.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/dbm/ndbm.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/dbm/sqlite3.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/decimal.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/difflib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/dis.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/_msvccompiler.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/archive_util.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/bcppcompiler.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/ccompiler.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/cmd.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/bdist.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/bdist_dumb.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/bdist_msi.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/bdist_packager.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/bdist_rpm.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/bdist_wininst.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/build.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/build_clib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/build_ext.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/build_py.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/build_scripts.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/check.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/clean.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/config.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/install.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/install_data.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/install_egg_info.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/install_headers.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/install_lib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/install_scripts.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/register.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/sdist.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/command/upload.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/config.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/core.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/cygwinccompiler.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/debug.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/dep_util.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/dir_util.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/dist.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/errors.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/extension.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/fancy_getopt.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/file_util.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/filelist.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/log.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/msvccompiler.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/spawn.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/sysconfig.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/text_file.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/unixccompiler.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/util.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/distutils/version.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/doctest.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/dummy_threading.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/_header_value_parser.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/_policybase.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/base64mime.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/charset.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/contentmanager.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/encoders.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/errors.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/feedparser.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/generator.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/header.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/headerregistry.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/iterators.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/message.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/mime/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/mime/application.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/mime/audio.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/mime/base.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/mime/image.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/mime/message.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/mime/multipart.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/mime/nonmultipart.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/mime/text.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/parser.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/policy.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/quoprimime.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/email/utils.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/aliases.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/ascii.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/base64_codec.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/big5.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/big5hkscs.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/bz2_codec.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/charmap.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp037.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1006.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1026.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1125.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1140.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1250.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1251.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1252.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1253.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1254.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1255.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1256.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1257.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp1258.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp273.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp424.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp437.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp500.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp720.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp737.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp775.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp850.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp852.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp855.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp856.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp857.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp858.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp860.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp861.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp862.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp863.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp864.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp865.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp866.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp869.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp874.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp875.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp932.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp949.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/cp950.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/euc_jis_2004.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/euc_jisx0213.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/euc_jp.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/euc_kr.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/gb18030.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/gb2312.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/gbk.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/hex_codec.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/hp_roman8.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/hz.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/idna.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso2022_jp.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso2022_jp_1.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso2022_jp_2.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso2022_jp_2004.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso2022_jp_3.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso2022_jp_ext.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso2022_kr.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_1.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_10.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_11.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_13.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_14.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_15.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_16.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_2.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_3.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_4.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_5.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_6.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_7.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_8.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/iso8859_9.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/johab.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/koi8_r.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/koi8_t.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/koi8_u.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/kz1048.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/latin_1.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/mac_arabic.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/mac_centeuro.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/mac_croatian.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/mac_cyrillic.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/mac_farsi.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/mac_greek.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/mac_iceland.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/mac_latin2.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/mac_roman.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/mac_romanian.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/mac_turkish.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/mbcs.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/oem.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/palmos.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/ptcp154.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/punycode.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/quopri_codec.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/raw_unicode_escape.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/rot_13.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/shift_jis.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/shift_jis_2004.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/shift_jisx0213.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/tis_620.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/undefined.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/unicode_escape.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/utf_16.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/utf_16_be.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/utf_16_le.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/utf_32.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/utf_32_be.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/utf_32_le.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/utf_7.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/utf_8.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/utf_8_sig.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/uu_codec.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/encodings/zlib_codec.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ensurepip/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/enum.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/errno.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/faulthandler.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/fcntl.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/filecmp.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/fileinput.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/fnmatch.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/formatter.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/fractions.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ftplib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/functools.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/gc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/genericpath.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/getopt.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/getpass.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/gettext.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/glob.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/graphlib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/grp.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/gzip.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/hashlib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/heapq.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/hmac.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/html/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/html/entities.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/html/parser.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/http/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/http/client.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/http/cookiejar.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/http/cookies.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/http/server.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/imaplib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/imghdr.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/imp.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/_abc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/_bootstrap.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/_bootstrap_external.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/abc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/machinery.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/metadata/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/metadata/_meta.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/metadata/diagnose.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/readers.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/resources/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/resources/_common.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/resources/_functional.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/resources/abc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/resources/readers.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/resources/simple.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/simple.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/importlib/util.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/inspect.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/io.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ipaddress.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/itertools.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/json/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/json/decoder.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/json/encoder.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/json/scanner.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/json/tool.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/keyword.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/btm_matcher.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixer_base.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_apply.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_asserts.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_basestring.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_buffer.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_dict.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_except.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_exec.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_execfile.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_exitfunc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_filter.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_funcattrs.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_future.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_getcwdu.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_has_key.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_idioms.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_import.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_imports.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_imports2.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_input.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_intern.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_isinstance.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_itertools.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_itertools_imports.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_long.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_map.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_metaclass.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_methodattrs.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_ne.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_next.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_nonzero.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_numliterals.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_operator.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_paren.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_print.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_raise.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_raw_input.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_reduce.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_reload.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_renames.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_repr.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_set_literal.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_standarderror.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_sys_exc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_throw.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_tuple_params.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_types.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_unicode.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_urllib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_ws_comma.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_xrange.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_xreadlines.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/fixes/fix_zip.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/main.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/pgen2/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/pgen2/driver.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/pgen2/grammar.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/pgen2/literals.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/pgen2/parse.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/pgen2/pgen.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/pgen2/token.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/pgen2/tokenize.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/pygram.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/pytree.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lib2to3/refactor.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/linecache.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/locale.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/logging/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/logging/config.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/logging/handlers.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/lzma.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/mailbox.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/mailcap.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/marshal.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/math.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/mimetypes.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/mmap.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/modulefinder.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/msilib/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/msilib/schema.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/msilib/sequence.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/msilib/text.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/msvcrt.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/connection.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/context.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/dummy/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/dummy/connection.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/forkserver.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/heap.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/managers.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/pool.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/popen_fork.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/popen_forkserver.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/popen_spawn_posix.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/popen_spawn_win32.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/process.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/queues.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/reduction.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/resource_sharer.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/resource_tracker.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/shared_memory.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/sharedctypes.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/spawn.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/synchronize.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/multiprocessing/util.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/netrc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/nis.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/nntplib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/nt.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ntpath.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/nturl2path.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/numbers.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/opcode.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/operator.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/optparse.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/os/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/os/path.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ossaudiodev.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/parser.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pathlib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pdb.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pickle.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pickletools.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pipes.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pkgutil.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/platform.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/plistlib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/poplib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/posix.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/posixpath.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pprint.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/profile.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pstats.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pty.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pwd.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/py_compile.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pyclbr.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pydoc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pydoc_data/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pydoc_data/topics.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pyexpat/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pyexpat/errors.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/pyexpat/model.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/queue.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/quopri.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/random.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/re.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/readline.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/reprlib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/resource.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/rlcompleter.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/runpy.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/sched.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/secrets.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/select.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/selectors.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/shelve.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/shlex.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/shutil.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/signal.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/site.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/smtpd.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/smtplib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/sndhdr.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/socket.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/socketserver.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/spwd.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/sqlite3/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/sqlite3/dbapi2.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/sqlite3/dump.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/sre_compile.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/sre_constants.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/sre_parse.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/ssl.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/stat.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/statistics.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/string.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/stringprep.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/struct.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/subprocess.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/sunau.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/symbol.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/symtable.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/sys/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/sys/_monitoring.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/sysconfig.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/syslog.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tabnanny.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tarfile.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/telnetlib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tempfile.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/termios.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/textwrap.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/this.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/threading.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/time.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/timeit.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/colorchooser.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/commondialog.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/constants.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/dialog.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/dnd.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/filedialog.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/font.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/messagebox.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/scrolledtext.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/simpledialog.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/tix.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tkinter/ttk.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/token.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tokenize.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tomllib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/trace.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/traceback.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tracemalloc.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/tty.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/turtle.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/types.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/typing.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/typing_extensions.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unicodedata.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unittest/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unittest/_log.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unittest/async_case.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unittest/case.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unittest/loader.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unittest/main.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unittest/mock.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unittest/result.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unittest/runner.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unittest/signals.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unittest/suite.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/unittest/util.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/urllib/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/urllib/error.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/urllib/parse.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/urllib/request.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/urllib/response.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/urllib/robotparser.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/uu.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/uuid.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/warnings.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/wave.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/weakref.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/webbrowser.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/winreg.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/winsound.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/wsgiref/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/wsgiref/handlers.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/wsgiref/headers.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/wsgiref/simple_server.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/wsgiref/types.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/wsgiref/util.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/wsgiref/validate.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xdrlib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/dom/NodeFilter.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/dom/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/dom/domreg.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/dom/expatbuilder.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/dom/minicompat.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/dom/minidom.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/dom/pulldom.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/dom/xmlbuilder.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/etree/ElementInclude.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/etree/ElementPath.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/etree/ElementTree.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/etree/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/etree/cElementTree.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/parsers/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/parsers/expat/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/parsers/expat/errors.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/parsers/expat/model.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/sax/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/sax/_exceptions.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/sax/expatreader.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/sax/handler.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/sax/saxutils.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xml/sax/xmlreader.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xmlrpc/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xmlrpc/client.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xmlrpc/server.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/xxlimited.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/zipapp.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/zipfile/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/zipfile/_path/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/zipfile/_path/glob.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/zipimport.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/zlib.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/zoneinfo/__init__.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/zoneinfo/_common.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed/zoneinfo/_tzpath.pyi +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/third_party/typeshed_metadata.json +0 -0
- {pyrefly-0.2.0 → pyrefly-0.4.0}/wasm/lib.rs +0 -0
@@ -26,7 +26,7 @@ dependencies = [
|
|
26
26
|
"cfg-if",
|
27
27
|
"once_cell",
|
28
28
|
"version_check",
|
29
|
-
"zerocopy",
|
29
|
+
"zerocopy 0.7.35",
|
30
30
|
]
|
31
31
|
|
32
32
|
[[package]]
|
@@ -75,7 +75,7 @@ checksum = "fe233a377643e0fc1a56421d7c90acdec45c291b30345eb9f08e8d0ddce5a4ab"
|
|
75
75
|
dependencies = [
|
76
76
|
"proc-macro2",
|
77
77
|
"quote",
|
78
|
-
"syn 2.0.
|
78
|
+
"syn 2.0.100",
|
79
79
|
]
|
80
80
|
|
81
81
|
[[package]]
|
@@ -151,9 +151,9 @@ dependencies = [
|
|
151
151
|
|
152
152
|
[[package]]
|
153
153
|
name = "anyhow"
|
154
|
-
version = "1.0.
|
154
|
+
version = "1.0.97"
|
155
155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
156
|
-
checksum = "
|
156
|
+
checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
|
157
157
|
|
158
158
|
[[package]]
|
159
159
|
name = "argfile"
|
@@ -165,6 +165,17 @@ dependencies = [
|
|
165
165
|
"os_str_bytes",
|
166
166
|
]
|
167
167
|
|
168
|
+
[[package]]
|
169
|
+
name = "async-trait"
|
170
|
+
version = "0.1.87"
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
172
|
+
checksum = "d556ec1359574147ec0c4fc5eb525f3f23263a592b1a9c07e0a75b427de55c97"
|
173
|
+
dependencies = [
|
174
|
+
"proc-macro2",
|
175
|
+
"quote",
|
176
|
+
"syn 2.0.100",
|
177
|
+
]
|
178
|
+
|
168
179
|
[[package]]
|
169
180
|
name = "atomic"
|
170
181
|
version = "0.5.3"
|
@@ -200,9 +211,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
200
211
|
|
201
212
|
[[package]]
|
202
213
|
name = "bitflags"
|
203
|
-
version = "2.
|
214
|
+
version = "2.9.0"
|
204
215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
205
|
-
checksum = "
|
216
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
206
217
|
|
207
218
|
[[package]]
|
208
219
|
name = "bstr"
|
@@ -229,9 +240,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
229
240
|
|
230
241
|
[[package]]
|
231
242
|
name = "bytes"
|
232
|
-
version = "1.10.
|
243
|
+
version = "1.10.1"
|
233
244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
234
|
-
checksum = "
|
245
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
235
246
|
|
236
247
|
[[package]]
|
237
248
|
name = "castaway"
|
@@ -273,9 +284,9 @@ dependencies = [
|
|
273
284
|
|
274
285
|
[[package]]
|
275
286
|
name = "clap"
|
276
|
-
version = "4.5.
|
287
|
+
version = "4.5.32"
|
277
288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
278
|
-
checksum = "
|
289
|
+
checksum = "6088f3ae8c3608d19260cd7445411865a485688711b78b5be70d78cd96136f83"
|
279
290
|
dependencies = [
|
280
291
|
"clap_builder",
|
281
292
|
"clap_derive",
|
@@ -283,9 +294,9 @@ dependencies = [
|
|
283
294
|
|
284
295
|
[[package]]
|
285
296
|
name = "clap_builder"
|
286
|
-
version = "4.5.
|
297
|
+
version = "4.5.32"
|
287
298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
288
|
-
checksum = "
|
299
|
+
checksum = "22a7ef7f676155edfb82daa97f99441f3ebf4a58d5e32f295a56259f1b6facc8"
|
289
300
|
dependencies = [
|
290
301
|
"anstream",
|
291
302
|
"anstyle",
|
@@ -298,14 +309,14 @@ dependencies = [
|
|
298
309
|
|
299
310
|
[[package]]
|
300
311
|
name = "clap_derive"
|
301
|
-
version = "4.5.
|
312
|
+
version = "4.5.32"
|
302
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
303
|
-
checksum = "
|
314
|
+
checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
|
304
315
|
dependencies = [
|
305
316
|
"heck",
|
306
317
|
"proc-macro2",
|
307
318
|
"quote",
|
308
|
-
"syn 2.0.
|
319
|
+
"syn 2.0.100",
|
309
320
|
]
|
310
321
|
|
311
322
|
[[package]]
|
@@ -334,6 +345,19 @@ dependencies = [
|
|
334
345
|
"static_assertions",
|
335
346
|
]
|
336
347
|
|
348
|
+
[[package]]
|
349
|
+
name = "console"
|
350
|
+
version = "0.15.11"
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
352
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
353
|
+
dependencies = [
|
354
|
+
"encode_unicode",
|
355
|
+
"libc",
|
356
|
+
"once_cell",
|
357
|
+
"unicode-width 0.2.0",
|
358
|
+
"windows-sys 0.59.0",
|
359
|
+
]
|
360
|
+
|
337
361
|
[[package]]
|
338
362
|
name = "convert_case"
|
339
363
|
version = "0.6.0"
|
@@ -429,7 +453,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
429
453
|
dependencies = [
|
430
454
|
"proc-macro2",
|
431
455
|
"quote",
|
432
|
-
"syn 2.0.
|
456
|
+
"syn 2.0.100",
|
433
457
|
]
|
434
458
|
|
435
459
|
[[package]]
|
@@ -449,14 +473,20 @@ checksum = "83e195b4945e88836d826124af44fdcb262ec01ef94d44f14f4fb5103f19892a"
|
|
449
473
|
dependencies = [
|
450
474
|
"proc-macro2",
|
451
475
|
"quote",
|
452
|
-
"syn 2.0.
|
476
|
+
"syn 2.0.100",
|
453
477
|
]
|
454
478
|
|
455
479
|
[[package]]
|
456
480
|
name = "either"
|
457
|
-
version = "1.
|
481
|
+
version = "1.15.0"
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
483
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
484
|
+
|
485
|
+
[[package]]
|
486
|
+
name = "encode_unicode"
|
487
|
+
version = "1.0.0"
|
458
488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
459
|
-
checksum = "
|
489
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
460
490
|
|
461
491
|
[[package]]
|
462
492
|
name = "enum-iterator"
|
@@ -475,7 +505,7 @@ checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
|
|
475
505
|
dependencies = [
|
476
506
|
"proc-macro2",
|
477
507
|
"quote",
|
478
|
-
"syn 2.0.
|
508
|
+
"syn 2.0.100",
|
479
509
|
]
|
480
510
|
|
481
511
|
[[package]]
|
@@ -605,7 +635,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
605
635
|
dependencies = [
|
606
636
|
"proc-macro2",
|
607
637
|
"quote",
|
608
|
-
"syn 2.0.
|
638
|
+
"syn 2.0.100",
|
609
639
|
]
|
610
640
|
|
611
641
|
[[package]]
|
@@ -857,7 +887,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
857
887
|
dependencies = [
|
858
888
|
"proc-macro2",
|
859
889
|
"quote",
|
860
|
-
"syn 2.0.
|
890
|
+
"syn 2.0.100",
|
861
891
|
]
|
862
892
|
|
863
893
|
[[package]]
|
@@ -883,14 +913,31 @@ dependencies = [
|
|
883
913
|
|
884
914
|
[[package]]
|
885
915
|
name = "indexmap"
|
886
|
-
version = "2.
|
916
|
+
version = "2.8.0"
|
887
917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
888
|
-
checksum = "
|
918
|
+
checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
|
889
919
|
dependencies = [
|
890
920
|
"equivalent",
|
891
921
|
"hashbrown 0.15.2",
|
892
922
|
]
|
893
923
|
|
924
|
+
[[package]]
|
925
|
+
name = "indicatif"
|
926
|
+
version = "0.17.11"
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
928
|
+
checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
|
929
|
+
dependencies = [
|
930
|
+
"console",
|
931
|
+
"futures-core",
|
932
|
+
"number_prefix",
|
933
|
+
"portable-atomic",
|
934
|
+
"rayon",
|
935
|
+
"tokio",
|
936
|
+
"unicode-segmentation",
|
937
|
+
"unicode-width 0.2.0",
|
938
|
+
"web-time",
|
939
|
+
]
|
940
|
+
|
894
941
|
[[package]]
|
895
942
|
name = "inotify"
|
896
943
|
version = "0.9.6"
|
@@ -929,7 +976,7 @@ dependencies = [
|
|
929
976
|
"heck",
|
930
977
|
"proc-macro2",
|
931
978
|
"quote",
|
932
|
-
"syn 2.0.
|
979
|
+
"syn 2.0.100",
|
933
980
|
]
|
934
981
|
|
935
982
|
[[package]]
|
@@ -976,9 +1023,9 @@ dependencies = [
|
|
976
1023
|
|
977
1024
|
[[package]]
|
978
1025
|
name = "itoa"
|
979
|
-
version = "1.0.
|
1026
|
+
version = "1.0.15"
|
980
1027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
981
|
-
checksum = "
|
1028
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
982
1029
|
|
983
1030
|
[[package]]
|
984
1031
|
name = "jobserver"
|
@@ -1027,9 +1074,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1027
1074
|
|
1028
1075
|
[[package]]
|
1029
1076
|
name = "libc"
|
1030
|
-
version = "0.2.
|
1077
|
+
version = "0.2.171"
|
1031
1078
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1032
|
-
checksum = "
|
1079
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
1033
1080
|
|
1034
1081
|
[[package]]
|
1035
1082
|
name = "libredox"
|
@@ -1037,16 +1084,16 @@ version = "0.1.3"
|
|
1037
1084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1038
1085
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
1039
1086
|
dependencies = [
|
1040
|
-
"bitflags 2.
|
1087
|
+
"bitflags 2.9.0",
|
1041
1088
|
"libc",
|
1042
|
-
"redox_syscall 0.5.
|
1089
|
+
"redox_syscall 0.5.10",
|
1043
1090
|
]
|
1044
1091
|
|
1045
1092
|
[[package]]
|
1046
1093
|
name = "linux-raw-sys"
|
1047
|
-
version = "0.
|
1094
|
+
version = "0.9.2"
|
1048
1095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1049
|
-
checksum = "
|
1096
|
+
checksum = "6db9c683daf087dc577b7506e9695b3d556a9f3849903fa28186283afd6809e9"
|
1050
1097
|
|
1051
1098
|
[[package]]
|
1052
1099
|
name = "litemap"
|
@@ -1224,6 +1271,12 @@ dependencies = [
|
|
1224
1271
|
"libc",
|
1225
1272
|
]
|
1226
1273
|
|
1274
|
+
[[package]]
|
1275
|
+
name = "number_prefix"
|
1276
|
+
version = "0.4.0"
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1278
|
+
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
1279
|
+
|
1227
1280
|
[[package]]
|
1228
1281
|
name = "object"
|
1229
1282
|
version = "0.36.7"
|
@@ -1235,9 +1288,9 @@ dependencies = [
|
|
1235
1288
|
|
1236
1289
|
[[package]]
|
1237
1290
|
name = "once_cell"
|
1238
|
-
version = "1.
|
1291
|
+
version = "1.21.1"
|
1239
1292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1240
|
-
checksum = "
|
1293
|
+
checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
|
1241
1294
|
|
1242
1295
|
[[package]]
|
1243
1296
|
name = "os_str_bytes"
|
@@ -1297,7 +1350,7 @@ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
1297
1350
|
dependencies = [
|
1298
1351
|
"cfg-if",
|
1299
1352
|
"libc",
|
1300
|
-
"redox_syscall 0.5.
|
1353
|
+
"redox_syscall 0.5.10",
|
1301
1354
|
"smallvec",
|
1302
1355
|
"windows-targets 0.52.6",
|
1303
1356
|
]
|
@@ -1325,9 +1378,15 @@ dependencies = [
|
|
1325
1378
|
"regex",
|
1326
1379
|
"regex-syntax 0.7.5",
|
1327
1380
|
"structmeta",
|
1328
|
-
"syn 2.0.
|
1381
|
+
"syn 2.0.100",
|
1329
1382
|
]
|
1330
1383
|
|
1384
|
+
[[package]]
|
1385
|
+
name = "paste"
|
1386
|
+
version = "1.0.15"
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1388
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
1389
|
+
|
1331
1390
|
[[package]]
|
1332
1391
|
name = "percent-encoding"
|
1333
1392
|
version = "2.3.1"
|
@@ -1386,9 +1445,15 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1386
1445
|
|
1387
1446
|
[[package]]
|
1388
1447
|
name = "pkg-config"
|
1389
|
-
version = "0.3.
|
1448
|
+
version = "0.3.32"
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1450
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
1451
|
+
|
1452
|
+
[[package]]
|
1453
|
+
name = "portable-atomic"
|
1454
|
+
version = "1.11.0"
|
1390
1455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1391
|
-
checksum = "
|
1456
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
1392
1457
|
|
1393
1458
|
[[package]]
|
1394
1459
|
name = "powerfmt"
|
@@ -1398,11 +1463,11 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1398
1463
|
|
1399
1464
|
[[package]]
|
1400
1465
|
name = "ppv-lite86"
|
1401
|
-
version = "0.2.
|
1466
|
+
version = "0.2.21"
|
1402
1467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1403
|
-
checksum = "
|
1468
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
1404
1469
|
dependencies = [
|
1405
|
-
"zerocopy",
|
1470
|
+
"zerocopy 0.8.23",
|
1406
1471
|
]
|
1407
1472
|
|
1408
1473
|
[[package]]
|
@@ -1417,9 +1482,9 @@ dependencies = [
|
|
1417
1482
|
|
1418
1483
|
[[package]]
|
1419
1484
|
name = "proc-macro2"
|
1420
|
-
version = "1.0.
|
1485
|
+
version = "1.0.94"
|
1421
1486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1422
|
-
checksum = "
|
1487
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
1423
1488
|
dependencies = [
|
1424
1489
|
"unicode-ident",
|
1425
1490
|
]
|
@@ -1458,17 +1523,20 @@ dependencies = [
|
|
1458
1523
|
|
1459
1524
|
[[package]]
|
1460
1525
|
name = "pyrefly"
|
1461
|
-
version = "0.
|
1526
|
+
version = "0.4.0"
|
1462
1527
|
dependencies = [
|
1463
1528
|
"anyhow",
|
1464
1529
|
"argfile",
|
1530
|
+
"async-trait",
|
1465
1531
|
"clap",
|
1466
1532
|
"convert_case",
|
1533
|
+
"crossbeam-channel",
|
1467
1534
|
"dupe",
|
1468
1535
|
"enum-iterator",
|
1469
1536
|
"equivalent",
|
1470
1537
|
"glob",
|
1471
1538
|
"human_bytes",
|
1539
|
+
"indicatif",
|
1472
1540
|
"itertools 0.14.0",
|
1473
1541
|
"lock_free_hashtable",
|
1474
1542
|
"lsp-server",
|
@@ -1476,6 +1544,7 @@ dependencies = [
|
|
1476
1544
|
"memory-stats",
|
1477
1545
|
"notify",
|
1478
1546
|
"parse-display",
|
1547
|
+
"paste",
|
1479
1548
|
"pretty_assertions",
|
1480
1549
|
"rayon",
|
1481
1550
|
"regex",
|
@@ -1491,6 +1560,8 @@ dependencies = [
|
|
1491
1560
|
"tar",
|
1492
1561
|
"tempfile",
|
1493
1562
|
"thiserror",
|
1563
|
+
"tokio",
|
1564
|
+
"toml",
|
1494
1565
|
"tracing",
|
1495
1566
|
"tracing-subscriber",
|
1496
1567
|
"vec1",
|
@@ -1510,9 +1581,9 @@ dependencies = [
|
|
1510
1581
|
|
1511
1582
|
[[package]]
|
1512
1583
|
name = "quote"
|
1513
|
-
version = "1.0.
|
1584
|
+
version = "1.0.40"
|
1514
1585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1515
|
-
checksum = "
|
1586
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
1516
1587
|
dependencies = [
|
1517
1588
|
"proc-macro2",
|
1518
1589
|
]
|
@@ -1578,11 +1649,11 @@ dependencies = [
|
|
1578
1649
|
|
1579
1650
|
[[package]]
|
1580
1651
|
name = "redox_syscall"
|
1581
|
-
version = "0.5.
|
1652
|
+
version = "0.5.10"
|
1582
1653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1583
|
-
checksum = "
|
1654
|
+
checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
|
1584
1655
|
dependencies = [
|
1585
|
-
"bitflags 2.
|
1656
|
+
"bitflags 2.9.0",
|
1586
1657
|
]
|
1587
1658
|
|
1588
1659
|
[[package]]
|
@@ -1647,7 +1718,7 @@ version = "0.0.0"
|
|
1647
1718
|
source = "git+https://github.com/astral-sh/ruff/?rev=112e9d2d8258e72dcf5c21c7d811957f12325af1#112e9d2d8258e72dcf5c21c7d811957f12325af1"
|
1648
1719
|
dependencies = [
|
1649
1720
|
"aho-corasick",
|
1650
|
-
"bitflags 2.
|
1721
|
+
"bitflags 2.9.0",
|
1651
1722
|
"compact_str",
|
1652
1723
|
"is-macro",
|
1653
1724
|
"itertools 0.13.0",
|
@@ -1663,7 +1734,7 @@ name = "ruff_python_parser"
|
|
1663
1734
|
version = "0.0.0"
|
1664
1735
|
source = "git+https://github.com/astral-sh/ruff/?rev=112e9d2d8258e72dcf5c21c7d811957f12325af1#112e9d2d8258e72dcf5c21c7d811957f12325af1"
|
1665
1736
|
dependencies = [
|
1666
|
-
"bitflags 2.
|
1737
|
+
"bitflags 2.9.0",
|
1667
1738
|
"bstr",
|
1668
1739
|
"compact_str",
|
1669
1740
|
"memchr",
|
@@ -1716,11 +1787,11 @@ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1716
1787
|
|
1717
1788
|
[[package]]
|
1718
1789
|
name = "rustix"
|
1719
|
-
version = "0.
|
1790
|
+
version = "1.0.2"
|
1720
1791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1721
|
-
checksum = "
|
1792
|
+
checksum = "f7178faa4b75a30e269c71e61c353ce2748cf3d76f0c44c393f4e60abf49b825"
|
1722
1793
|
dependencies = [
|
1723
|
-
"bitflags 2.
|
1794
|
+
"bitflags 2.9.0",
|
1724
1795
|
"errno",
|
1725
1796
|
"libc",
|
1726
1797
|
"linux-raw-sys",
|
@@ -1729,15 +1800,15 @@ dependencies = [
|
|
1729
1800
|
|
1730
1801
|
[[package]]
|
1731
1802
|
name = "rustversion"
|
1732
|
-
version = "1.0.
|
1803
|
+
version = "1.0.20"
|
1733
1804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1734
|
-
checksum = "
|
1805
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
1735
1806
|
|
1736
1807
|
[[package]]
|
1737
1808
|
name = "ryu"
|
1738
|
-
version = "1.0.
|
1809
|
+
version = "1.0.20"
|
1739
1810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1740
|
-
checksum = "
|
1811
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
1741
1812
|
|
1742
1813
|
[[package]]
|
1743
1814
|
name = "same-file"
|
@@ -1756,29 +1827,29 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1756
1827
|
|
1757
1828
|
[[package]]
|
1758
1829
|
name = "serde"
|
1759
|
-
version = "1.0.
|
1830
|
+
version = "1.0.219"
|
1760
1831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1761
|
-
checksum = "
|
1832
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
1762
1833
|
dependencies = [
|
1763
1834
|
"serde_derive",
|
1764
1835
|
]
|
1765
1836
|
|
1766
1837
|
[[package]]
|
1767
1838
|
name = "serde_derive"
|
1768
|
-
version = "1.0.
|
1839
|
+
version = "1.0.219"
|
1769
1840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1770
|
-
checksum = "
|
1841
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
1771
1842
|
dependencies = [
|
1772
1843
|
"proc-macro2",
|
1773
1844
|
"quote",
|
1774
|
-
"syn 2.0.
|
1845
|
+
"syn 2.0.100",
|
1775
1846
|
]
|
1776
1847
|
|
1777
1848
|
[[package]]
|
1778
1849
|
name = "serde_json"
|
1779
|
-
version = "1.0.
|
1850
|
+
version = "1.0.140"
|
1780
1851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1781
|
-
checksum = "
|
1852
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
1782
1853
|
dependencies = [
|
1783
1854
|
"itoa",
|
1784
1855
|
"memchr",
|
@@ -1788,13 +1859,22 @@ dependencies = [
|
|
1788
1859
|
|
1789
1860
|
[[package]]
|
1790
1861
|
name = "serde_repr"
|
1791
|
-
version = "0.1.
|
1862
|
+
version = "0.1.20"
|
1792
1863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1793
|
-
checksum = "
|
1864
|
+
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
1794
1865
|
dependencies = [
|
1795
1866
|
"proc-macro2",
|
1796
1867
|
"quote",
|
1797
|
-
"syn 2.0.
|
1868
|
+
"syn 2.0.100",
|
1869
|
+
]
|
1870
|
+
|
1871
|
+
[[package]]
|
1872
|
+
name = "serde_spanned"
|
1873
|
+
version = "0.6.8"
|
1874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1875
|
+
checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
|
1876
|
+
dependencies = [
|
1877
|
+
"serde",
|
1798
1878
|
]
|
1799
1879
|
|
1800
1880
|
[[package]]
|
@@ -1896,7 +1976,7 @@ dependencies = [
|
|
1896
1976
|
"proc-macro2",
|
1897
1977
|
"quote",
|
1898
1978
|
"structmeta-derive",
|
1899
|
-
"syn 2.0.
|
1979
|
+
"syn 2.0.100",
|
1900
1980
|
]
|
1901
1981
|
|
1902
1982
|
[[package]]
|
@@ -1907,7 +1987,7 @@ checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
|
|
1907
1987
|
dependencies = [
|
1908
1988
|
"proc-macro2",
|
1909
1989
|
"quote",
|
1910
|
-
"syn 2.0.
|
1990
|
+
"syn 2.0.100",
|
1911
1991
|
]
|
1912
1992
|
|
1913
1993
|
[[package]]
|
@@ -1923,9 +2003,9 @@ dependencies = [
|
|
1923
2003
|
|
1924
2004
|
[[package]]
|
1925
2005
|
name = "syn"
|
1926
|
-
version = "2.0.
|
2006
|
+
version = "2.0.100"
|
1927
2007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1928
|
-
checksum = "
|
2008
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
1929
2009
|
dependencies = [
|
1930
2010
|
"proc-macro2",
|
1931
2011
|
"quote",
|
@@ -1940,7 +2020,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
1940
2020
|
dependencies = [
|
1941
2021
|
"proc-macro2",
|
1942
2022
|
"quote",
|
1943
|
-
"syn 2.0.
|
2023
|
+
"syn 2.0.100",
|
1944
2024
|
]
|
1945
2025
|
|
1946
2026
|
[[package]]
|
@@ -1956,9 +2036,9 @@ dependencies = [
|
|
1956
2036
|
|
1957
2037
|
[[package]]
|
1958
2038
|
name = "tempfile"
|
1959
|
-
version = "3.
|
2039
|
+
version = "3.18.0"
|
1960
2040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1961
|
-
checksum = "
|
2041
|
+
checksum = "2c317e0a526ee6120d8dabad239c8dadca62b24b6f168914bbbc8e2fb1f0e567"
|
1962
2042
|
dependencies = [
|
1963
2043
|
"cfg-if",
|
1964
2044
|
"fastrand",
|
@@ -1970,9 +2050,9 @@ dependencies = [
|
|
1970
2050
|
|
1971
2051
|
[[package]]
|
1972
2052
|
name = "terminal_size"
|
1973
|
-
version = "0.4.
|
2053
|
+
version = "0.4.2"
|
1974
2054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1975
|
-
checksum = "
|
2055
|
+
checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed"
|
1976
2056
|
dependencies = [
|
1977
2057
|
"rustix",
|
1978
2058
|
"windows-sys 0.59.0",
|
@@ -1980,22 +2060,22 @@ dependencies = [
|
|
1980
2060
|
|
1981
2061
|
[[package]]
|
1982
2062
|
name = "thiserror"
|
1983
|
-
version = "2.0.
|
2063
|
+
version = "2.0.12"
|
1984
2064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1985
|
-
checksum = "
|
2065
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
1986
2066
|
dependencies = [
|
1987
2067
|
"thiserror-impl",
|
1988
2068
|
]
|
1989
2069
|
|
1990
2070
|
[[package]]
|
1991
2071
|
name = "thiserror-impl"
|
1992
|
-
version = "2.0.
|
2072
|
+
version = "2.0.12"
|
1993
2073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1994
|
-
checksum = "
|
2074
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
1995
2075
|
dependencies = [
|
1996
2076
|
"proc-macro2",
|
1997
2077
|
"quote",
|
1998
|
-
"syn 2.0.
|
2078
|
+
"syn 2.0.100",
|
1999
2079
|
]
|
2000
2080
|
|
2001
2081
|
[[package]]
|
@@ -2010,9 +2090,9 @@ dependencies = [
|
|
2010
2090
|
|
2011
2091
|
[[package]]
|
2012
2092
|
name = "time"
|
2013
|
-
version = "0.3.
|
2093
|
+
version = "0.3.39"
|
2014
2094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2015
|
-
checksum = "
|
2095
|
+
checksum = "dad298b01a40a23aac4580b67e3dbedb7cc8402f3592d7f49469de2ea4aecdd8"
|
2016
2096
|
dependencies = [
|
2017
2097
|
"deranged",
|
2018
2098
|
"itoa",
|
@@ -2027,15 +2107,15 @@ dependencies = [
|
|
2027
2107
|
|
2028
2108
|
[[package]]
|
2029
2109
|
name = "time-core"
|
2030
|
-
version = "0.1.
|
2110
|
+
version = "0.1.3"
|
2031
2111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2032
|
-
checksum = "
|
2112
|
+
checksum = "765c97a5b985b7c11d7bc27fa927dc4fe6af3a6dfb021d28deb60d3bf51e76ef"
|
2033
2113
|
|
2034
2114
|
[[package]]
|
2035
2115
|
name = "time-macros"
|
2036
|
-
version = "0.2.
|
2116
|
+
version = "0.2.20"
|
2037
2117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2038
|
-
checksum = "
|
2118
|
+
checksum = "e8093bc3e81c3bc5f7879de09619d06c9a5a5e45ca44dfeeb7225bae38005c5c"
|
2039
2119
|
dependencies = [
|
2040
2120
|
"num-conv",
|
2041
2121
|
"time-core",
|
@@ -2053,9 +2133,9 @@ dependencies = [
|
|
2053
2133
|
|
2054
2134
|
[[package]]
|
2055
2135
|
name = "tinyvec"
|
2056
|
-
version = "1.
|
2136
|
+
version = "1.9.0"
|
2057
2137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2058
|
-
checksum = "
|
2138
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
2059
2139
|
dependencies = [
|
2060
2140
|
"tinyvec_macros",
|
2061
2141
|
]
|
@@ -2068,12 +2148,59 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2068
2148
|
|
2069
2149
|
[[package]]
|
2070
2150
|
name = "tokio"
|
2071
|
-
version = "1.
|
2151
|
+
version = "1.44.1"
|
2072
2152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2073
|
-
checksum = "
|
2153
|
+
checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
|
2074
2154
|
dependencies = [
|
2075
2155
|
"backtrace",
|
2156
|
+
"bytes",
|
2076
2157
|
"pin-project-lite",
|
2158
|
+
"tokio-macros",
|
2159
|
+
]
|
2160
|
+
|
2161
|
+
[[package]]
|
2162
|
+
name = "tokio-macros"
|
2163
|
+
version = "2.5.0"
|
2164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2165
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
2166
|
+
dependencies = [
|
2167
|
+
"proc-macro2",
|
2168
|
+
"quote",
|
2169
|
+
"syn 2.0.100",
|
2170
|
+
]
|
2171
|
+
|
2172
|
+
[[package]]
|
2173
|
+
name = "toml"
|
2174
|
+
version = "0.8.20"
|
2175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2176
|
+
checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148"
|
2177
|
+
dependencies = [
|
2178
|
+
"serde",
|
2179
|
+
"serde_spanned",
|
2180
|
+
"toml_datetime",
|
2181
|
+
"toml_edit",
|
2182
|
+
]
|
2183
|
+
|
2184
|
+
[[package]]
|
2185
|
+
name = "toml_datetime"
|
2186
|
+
version = "0.6.8"
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2188
|
+
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
|
2189
|
+
dependencies = [
|
2190
|
+
"serde",
|
2191
|
+
]
|
2192
|
+
|
2193
|
+
[[package]]
|
2194
|
+
name = "toml_edit"
|
2195
|
+
version = "0.22.24"
|
2196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2197
|
+
checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
|
2198
|
+
dependencies = [
|
2199
|
+
"indexmap",
|
2200
|
+
"serde",
|
2201
|
+
"serde_spanned",
|
2202
|
+
"toml_datetime",
|
2203
|
+
"winnow",
|
2077
2204
|
]
|
2078
2205
|
|
2079
2206
|
[[package]]
|
@@ -2095,7 +2222,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
2095
2222
|
dependencies = [
|
2096
2223
|
"proc-macro2",
|
2097
2224
|
"quote",
|
2098
|
-
"syn 2.0.
|
2225
|
+
"syn 2.0.100",
|
2099
2226
|
]
|
2100
2227
|
|
2101
2228
|
[[package]]
|
@@ -2171,9 +2298,9 @@ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
2171
2298
|
|
2172
2299
|
[[package]]
|
2173
2300
|
name = "unicode-ident"
|
2174
|
-
version = "1.0.
|
2301
|
+
version = "1.0.18"
|
2175
2302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2176
|
-
checksum = "
|
2303
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
2177
2304
|
|
2178
2305
|
[[package]]
|
2179
2306
|
name = "unicode-normalization"
|
@@ -2322,7 +2449,7 @@ dependencies = [
|
|
2322
2449
|
"log",
|
2323
2450
|
"proc-macro2",
|
2324
2451
|
"quote",
|
2325
|
-
"syn 2.0.
|
2452
|
+
"syn 2.0.100",
|
2326
2453
|
"wasm-bindgen-shared",
|
2327
2454
|
]
|
2328
2455
|
|
@@ -2344,7 +2471,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
2344
2471
|
dependencies = [
|
2345
2472
|
"proc-macro2",
|
2346
2473
|
"quote",
|
2347
|
-
"syn 2.0.
|
2474
|
+
"syn 2.0.100",
|
2348
2475
|
"wasm-bindgen-backend",
|
2349
2476
|
"wasm-bindgen-shared",
|
2350
2477
|
]
|
@@ -2358,6 +2485,16 @@ dependencies = [
|
|
2358
2485
|
"unicode-ident",
|
2359
2486
|
]
|
2360
2487
|
|
2488
|
+
[[package]]
|
2489
|
+
name = "web-time"
|
2490
|
+
version = "1.1.0"
|
2491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2492
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
2493
|
+
dependencies = [
|
2494
|
+
"js-sys",
|
2495
|
+
"wasm-bindgen",
|
2496
|
+
]
|
2497
|
+
|
2361
2498
|
[[package]]
|
2362
2499
|
name = "winapi"
|
2363
2500
|
version = "0.3.9"
|
@@ -2618,13 +2755,22 @@ version = "0.52.6"
|
|
2618
2755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2619
2756
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2620
2757
|
|
2758
|
+
[[package]]
|
2759
|
+
name = "winnow"
|
2760
|
+
version = "0.7.4"
|
2761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2762
|
+
checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36"
|
2763
|
+
dependencies = [
|
2764
|
+
"memchr",
|
2765
|
+
]
|
2766
|
+
|
2621
2767
|
[[package]]
|
2622
2768
|
name = "wit-bindgen-rt"
|
2623
2769
|
version = "0.33.0"
|
2624
2770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2625
2771
|
checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
|
2626
2772
|
dependencies = [
|
2627
|
-
"bitflags 2.
|
2773
|
+
"bitflags 2.9.0",
|
2628
2774
|
]
|
2629
2775
|
|
2630
2776
|
[[package]]
|
@@ -2641,12 +2787,11 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
2641
2787
|
|
2642
2788
|
[[package]]
|
2643
2789
|
name = "xattr"
|
2644
|
-
version = "1.
|
2790
|
+
version = "1.5.0"
|
2645
2791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2646
|
-
checksum = "
|
2792
|
+
checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
|
2647
2793
|
dependencies = [
|
2648
2794
|
"libc",
|
2649
|
-
"linux-raw-sys",
|
2650
2795
|
"rustix",
|
2651
2796
|
]
|
2652
2797
|
|
@@ -2676,7 +2821,7 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
2676
2821
|
dependencies = [
|
2677
2822
|
"proc-macro2",
|
2678
2823
|
"quote",
|
2679
|
-
"syn 2.0.
|
2824
|
+
"syn 2.0.100",
|
2680
2825
|
"synstructure",
|
2681
2826
|
]
|
2682
2827
|
|
@@ -2686,8 +2831,16 @@ version = "0.7.35"
|
|
2686
2831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2687
2832
|
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
2688
2833
|
dependencies = [
|
2689
|
-
"
|
2690
|
-
|
2834
|
+
"zerocopy-derive 0.7.35",
|
2835
|
+
]
|
2836
|
+
|
2837
|
+
[[package]]
|
2838
|
+
name = "zerocopy"
|
2839
|
+
version = "0.8.23"
|
2840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2841
|
+
checksum = "fd97444d05a4328b90e75e503a34bad781f14e28a823ad3557f0750df1ebcbc6"
|
2842
|
+
dependencies = [
|
2843
|
+
"zerocopy-derive 0.8.23",
|
2691
2844
|
]
|
2692
2845
|
|
2693
2846
|
[[package]]
|
@@ -2698,7 +2851,18 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
2698
2851
|
dependencies = [
|
2699
2852
|
"proc-macro2",
|
2700
2853
|
"quote",
|
2701
|
-
"syn 2.0.
|
2854
|
+
"syn 2.0.100",
|
2855
|
+
]
|
2856
|
+
|
2857
|
+
[[package]]
|
2858
|
+
name = "zerocopy-derive"
|
2859
|
+
version = "0.8.23"
|
2860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2861
|
+
checksum = "6352c01d0edd5db859a63e2605f4ea3183ddbd15e2c4a9e7d32184df75e4f154"
|
2862
|
+
dependencies = [
|
2863
|
+
"proc-macro2",
|
2864
|
+
"quote",
|
2865
|
+
"syn 2.0.100",
|
2702
2866
|
]
|
2703
2867
|
|
2704
2868
|
[[package]]
|
@@ -2718,7 +2882,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
2718
2882
|
dependencies = [
|
2719
2883
|
"proc-macro2",
|
2720
2884
|
"quote",
|
2721
|
-
"syn 2.0.
|
2885
|
+
"syn 2.0.100",
|
2722
2886
|
"synstructure",
|
2723
2887
|
]
|
2724
2888
|
|
@@ -2741,7 +2905,7 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
2741
2905
|
dependencies = [
|
2742
2906
|
"proc-macro2",
|
2743
2907
|
"quote",
|
2744
|
-
"syn 2.0.
|
2908
|
+
"syn 2.0.100",
|
2745
2909
|
]
|
2746
2910
|
|
2747
2911
|
[[package]]
|