superacli 1.1.4 → 1.1.6
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.
- package/__tests__/adapter-schema.test.js +2 -0
- package/__tests__/config.test.js +62 -1
- package/__tests__/help-json.test.js +2 -0
- package/__tests__/mcp-adapter.test.js +14 -4
- package/__tests__/mcp-local.test.js +159 -0
- package/__tests__/mcp-stdio-jsonrpc.test.js +105 -0
- package/__tests__/monty-plugin.test.js +121 -0
- package/__tests__/plugin-browser-use-uninstall.test.js +23 -0
- package/__tests__/plugin-browser-use.test.js +77 -0
- package/__tests__/plugins-command.test.js +92 -1
- package/__tests__/plugins-learn.test.js +62 -0
- package/__tests__/plugins-registry.test.js +3 -1
- package/__tests__/resend-plugin.test.js +122 -0
- package/__tests__/skills.test.js +4 -0
- package/cli/adapter-schema.js +3 -2
- package/cli/adapters/mcp.js +22 -3
- package/cli/adapters/process.js +34 -7
- package/cli/config.js +27 -1
- package/cli/help-json.js +2 -2
- package/cli/mcp-diagnostics.js +152 -0
- package/cli/mcp-discovery.js +221 -0
- package/cli/mcp-local.js +267 -25
- package/cli/mcp-stdio-jsonrpc.js +246 -0
- package/cli/plugin-install-guidance.js +25 -0
- package/cli/plugins-command.js +86 -3
- package/cli/plugins-learn.js +177 -0
- package/cli/plugins-manager.js +3 -0
- package/cli/plugins-registry.js +2 -1
- package/cli/skills-mcp.js +102 -0
- package/cli/skills.js +6 -40
- package/cli/supercli.js +7 -2
- package/docs/initial/mcp-local-mode.md +35 -0
- package/docs/mcp-cheatsheet.md +324 -0
- package/docs/plugins.md +7 -0
- package/package.json +1 -1
- package/plugins/browser-use/plugin.json +23 -0
- package/plugins/browser-use/scripts/post-install.js +146 -0
- package/plugins/browser-use/scripts/post-uninstall.js +28 -0
- package/plugins/browser-use/skills/quickstart/SKILL.md +47 -0
- package/plugins/monty/README.md +49 -0
- package/plugins/monty/plugin.json +69 -0
- package/plugins/monty/scripts/post-install.js +73 -0
- package/plugins/monty/scripts/post-uninstall.js +23 -0
- package/plugins/monty/scripts/run-python.js +140 -0
- package/plugins/monty/scripts/setup-monty.js +27 -0
- package/plugins/plugins.json +29 -0
- package/plugins/resend/plugin.json +371 -0
- package/plugins/resend/scripts/post-install.js +59 -0
- package/plugins/resend/scripts/post-uninstall.js +23 -0
- package/plugins/resend/scripts/setup-resend.js +27 -0
- package/plugins/resend/skills/quickstart/SKILL.md +80 -0
- package/ref-monty/.cargo/config.toml +3 -0
- package/ref-monty/.claude/settings.json +60 -0
- package/ref-monty/.claude/skills/fastmod/SKILL.md +22 -0
- package/ref-monty/.claude/skills/python-playground/SKILL.md +47 -0
- package/ref-monty/.codecov.yml +12 -0
- package/ref-monty/.github/actions/build-pgo-wheel/action.yml +72 -0
- package/ref-monty/.github/workflows/ci.yml +776 -0
- package/ref-monty/.github/workflows/codspeed.yml +45 -0
- package/ref-monty/.github/workflows/init-npm-packages.yml +82 -0
- package/ref-monty/.pre-commit-config.yaml +47 -0
- package/ref-monty/.python-version +1 -0
- package/ref-monty/.rustfmt.toml +4 -0
- package/ref-monty/.zed/settings.json +11 -0
- package/ref-monty/CLAUDE.md +535 -0
- package/ref-monty/Cargo.lock +3798 -0
- package/ref-monty/Cargo.toml +87 -0
- package/ref-monty/LICENSE +21 -0
- package/ref-monty/Makefile +216 -0
- package/ref-monty/README.md +430 -0
- package/ref-monty/RELEASING.md +47 -0
- package/ref-monty/crates/fuzz/Cargo.toml +30 -0
- package/ref-monty/crates/fuzz/fuzz_targets/string_input_panic.rs +37 -0
- package/ref-monty/crates/fuzz/fuzz_targets/tokens_input_panic.rs +552 -0
- package/ref-monty/crates/monty/Cargo.toml +68 -0
- package/ref-monty/crates/monty/benches/main.rs +247 -0
- package/ref-monty/crates/monty/build.rs +10 -0
- package/ref-monty/crates/monty/src/args.rs +733 -0
- package/ref-monty/crates/monty/src/asyncio.rs +179 -0
- package/ref-monty/crates/monty/src/builtins/abs.rs +55 -0
- package/ref-monty/crates/monty/src/builtins/all.rs +30 -0
- package/ref-monty/crates/monty/src/builtins/any.rs +30 -0
- package/ref-monty/crates/monty/src/builtins/bin.rs +59 -0
- package/ref-monty/crates/monty/src/builtins/chr.rs +46 -0
- package/ref-monty/crates/monty/src/builtins/divmod.rs +164 -0
- package/ref-monty/crates/monty/src/builtins/enumerate.rs +52 -0
- package/ref-monty/crates/monty/src/builtins/filter.rs +67 -0
- package/ref-monty/crates/monty/src/builtins/getattr.rs +65 -0
- package/ref-monty/crates/monty/src/builtins/hash.rs +28 -0
- package/ref-monty/crates/monty/src/builtins/hex.rs +58 -0
- package/ref-monty/crates/monty/src/builtins/id.rs +24 -0
- package/ref-monty/crates/monty/src/builtins/isinstance.rs +68 -0
- package/ref-monty/crates/monty/src/builtins/len.rs +25 -0
- package/ref-monty/crates/monty/src/builtins/map.rs +98 -0
- package/ref-monty/crates/monty/src/builtins/min_max.rs +113 -0
- package/ref-monty/crates/monty/src/builtins/mod.rs +246 -0
- package/ref-monty/crates/monty/src/builtins/next.rs +21 -0
- package/ref-monty/crates/monty/src/builtins/oct.rs +59 -0
- package/ref-monty/crates/monty/src/builtins/ord.rs +67 -0
- package/ref-monty/crates/monty/src/builtins/pow.rs +365 -0
- package/ref-monty/crates/monty/src/builtins/print.rs +141 -0
- package/ref-monty/crates/monty/src/builtins/repr.rs +16 -0
- package/ref-monty/crates/monty/src/builtins/reversed.rs +28 -0
- package/ref-monty/crates/monty/src/builtins/round.rs +174 -0
- package/ref-monty/crates/monty/src/builtins/sorted.rs +151 -0
- package/ref-monty/crates/monty/src/builtins/sum.rs +66 -0
- package/ref-monty/crates/monty/src/builtins/type_.rs +16 -0
- package/ref-monty/crates/monty/src/builtins/zip.rs +77 -0
- package/ref-monty/crates/monty/src/bytecode/builder.rs +699 -0
- package/ref-monty/crates/monty/src/bytecode/code.rs +310 -0
- package/ref-monty/crates/monty/src/bytecode/compiler.rs +3206 -0
- package/ref-monty/crates/monty/src/bytecode/mod.rs +24 -0
- package/ref-monty/crates/monty/src/bytecode/op.rs +617 -0
- package/ref-monty/crates/monty/src/bytecode/vm/async_exec.rs +1058 -0
- package/ref-monty/crates/monty/src/bytecode/vm/attr.rs +63 -0
- package/ref-monty/crates/monty/src/bytecode/vm/binary.rs +487 -0
- package/ref-monty/crates/monty/src/bytecode/vm/call.rs +767 -0
- package/ref-monty/crates/monty/src/bytecode/vm/collections.rs +741 -0
- package/ref-monty/crates/monty/src/bytecode/vm/compare.rs +147 -0
- package/ref-monty/crates/monty/src/bytecode/vm/exceptions.rs +297 -0
- package/ref-monty/crates/monty/src/bytecode/vm/format.rs +132 -0
- package/ref-monty/crates/monty/src/bytecode/vm/mod.rs +1958 -0
- package/ref-monty/crates/monty/src/bytecode/vm/scheduler.rs +620 -0
- package/ref-monty/crates/monty/src/exception_private.rs +1513 -0
- package/ref-monty/crates/monty/src/exception_public.rs +346 -0
- package/ref-monty/crates/monty/src/expressions.rs +694 -0
- package/ref-monty/crates/monty/src/fstring.rs +854 -0
- package/ref-monty/crates/monty/src/function.rs +119 -0
- package/ref-monty/crates/monty/src/heap.rs +1073 -0
- package/ref-monty/crates/monty/src/heap_data.rs +985 -0
- package/ref-monty/crates/monty/src/heap_traits.rs +312 -0
- package/ref-monty/crates/monty/src/intern.rs +837 -0
- package/ref-monty/crates/monty/src/io.rs +106 -0
- package/ref-monty/crates/monty/src/lib.rs +52 -0
- package/ref-monty/crates/monty/src/modules/asyncio.rs +144 -0
- package/ref-monty/crates/monty/src/modules/math.rs +1453 -0
- package/ref-monty/crates/monty/src/modules/mod.rs +120 -0
- package/ref-monty/crates/monty/src/modules/os.rs +116 -0
- package/ref-monty/crates/monty/src/modules/pathlib.rs +33 -0
- package/ref-monty/crates/monty/src/modules/re.rs +606 -0
- package/ref-monty/crates/monty/src/modules/sys.rs +60 -0
- package/ref-monty/crates/monty/src/modules/typing.rs +70 -0
- package/ref-monty/crates/monty/src/namespace.rs +21 -0
- package/ref-monty/crates/monty/src/object.rs +1040 -0
- package/ref-monty/crates/monty/src/os.rs +215 -0
- package/ref-monty/crates/monty/src/parse.rs +1730 -0
- package/ref-monty/crates/monty/src/prepare.rs +3015 -0
- package/ref-monty/crates/monty/src/repl.rs +1109 -0
- package/ref-monty/crates/monty/src/resource.rs +559 -0
- package/ref-monty/crates/monty/src/run.rs +457 -0
- package/ref-monty/crates/monty/src/run_progress.rs +821 -0
- package/ref-monty/crates/monty/src/signature.rs +651 -0
- package/ref-monty/crates/monty/src/sorting.rs +100 -0
- package/ref-monty/crates/monty/src/types/bytes.rs +2356 -0
- package/ref-monty/crates/monty/src/types/dataclass.rs +345 -0
- package/ref-monty/crates/monty/src/types/dict.rs +879 -0
- package/ref-monty/crates/monty/src/types/dict_view.rs +619 -0
- package/ref-monty/crates/monty/src/types/iter.rs +799 -0
- package/ref-monty/crates/monty/src/types/list.rs +929 -0
- package/ref-monty/crates/monty/src/types/long_int.rs +211 -0
- package/ref-monty/crates/monty/src/types/mod.rs +48 -0
- package/ref-monty/crates/monty/src/types/module.rs +146 -0
- package/ref-monty/crates/monty/src/types/namedtuple.rs +261 -0
- package/ref-monty/crates/monty/src/types/path.rs +596 -0
- package/ref-monty/crates/monty/src/types/property.rs +35 -0
- package/ref-monty/crates/monty/src/types/py_trait.rs +322 -0
- package/ref-monty/crates/monty/src/types/range.rs +285 -0
- package/ref-monty/crates/monty/src/types/re_match.rs +522 -0
- package/ref-monty/crates/monty/src/types/re_pattern.rs +726 -0
- package/ref-monty/crates/monty/src/types/set.rs +1373 -0
- package/ref-monty/crates/monty/src/types/slice.rs +257 -0
- package/ref-monty/crates/monty/src/types/str.rs +2051 -0
- package/ref-monty/crates/monty/src/types/tuple.rs +376 -0
- package/ref-monty/crates/monty/src/types/type.rs +407 -0
- package/ref-monty/crates/monty/src/value.rs +2558 -0
- package/ref-monty/crates/monty/test_cases/args__dict_get_no_args.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__dict_get_too_many.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__dict_items_with_args.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__dict_keys_with_args.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__dict_pop_no_args.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__dict_pop_too_many.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__dict_values_with_args.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__id_too_many.py +2 -0
- package/ref-monty/crates/monty/test_cases/args__len_no_args.py +2 -0
- package/ref-monty/crates/monty/test_cases/args__len_too_many.py +2 -0
- package/ref-monty/crates/monty/test_cases/args__len_type_error_int.py +9 -0
- package/ref-monty/crates/monty/test_cases/args__len_type_error_none.py +9 -0
- package/ref-monty/crates/monty/test_cases/args__list_append_no_args.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__list_append_too_many.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__list_insert_too_few.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__list_insert_too_many.py +3 -0
- package/ref-monty/crates/monty/test_cases/args__repr_no_args.py +2 -0
- package/ref-monty/crates/monty/test_cases/arith__div_zero_float.py +2 -0
- package/ref-monty/crates/monty/test_cases/arith__div_zero_int.py +2 -0
- package/ref-monty/crates/monty/test_cases/arith__floordiv_zero_float.py +2 -0
- package/ref-monty/crates/monty/test_cases/arith__floordiv_zero_int.py +2 -0
- package/ref-monty/crates/monty/test_cases/arith__pow_zero_neg.py +2 -0
- package/ref-monty/crates/monty/test_cases/arith__pow_zero_neg_builtin.py +9 -0
- package/ref-monty/crates/monty/test_cases/assert__expr_fail.py +2 -0
- package/ref-monty/crates/monty/test_cases/assert__fail.py +2 -0
- package/ref-monty/crates/monty/test_cases/assert__fail_msg.py +2 -0
- package/ref-monty/crates/monty/test_cases/assert__fn_fail.py +3 -0
- package/ref-monty/crates/monty/test_cases/assert__ops.py +11 -0
- package/ref-monty/crates/monty/test_cases/async__asyncio_run.py +47 -0
- package/ref-monty/crates/monty/test_cases/async__basic.py +10 -0
- package/ref-monty/crates/monty/test_cases/async__closure.py +14 -0
- package/ref-monty/crates/monty/test_cases/async__double_await_coroutine.py +16 -0
- package/ref-monty/crates/monty/test_cases/async__exception.py +10 -0
- package/ref-monty/crates/monty/test_cases/async__ext_call.py +73 -0
- package/ref-monty/crates/monty/test_cases/async__gather_all.py +85 -0
- package/ref-monty/crates/monty/test_cases/async__nested_await.py +15 -0
- package/ref-monty/crates/monty/test_cases/async__nested_gather_ext.py +37 -0
- package/ref-monty/crates/monty/test_cases/async__not_awaitable.py +10 -0
- package/ref-monty/crates/monty/test_cases/async__not_imported.py +14 -0
- package/ref-monty/crates/monty/test_cases/async__recursion_depth_isolation.py +27 -0
- package/ref-monty/crates/monty/test_cases/async__return_types.py +31 -0
- package/ref-monty/crates/monty/test_cases/async__sequential.py +16 -0
- package/ref-monty/crates/monty/test_cases/async__traceback.py +19 -0
- package/ref-monty/crates/monty/test_cases/async__with_args.py +14 -0
- package/ref-monty/crates/monty/test_cases/attr__get_int_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/attr__get_list_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/attr__set_frozen_nonfield.py +12 -0
- package/ref-monty/crates/monty/test_cases/attr__set_int_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/attr__set_list_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/bench__kitchen_sink.py +68 -0
- package/ref-monty/crates/monty/test_cases/bool__ops.py +20 -0
- package/ref-monty/crates/monty/test_cases/builtin__add_type_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/builtin__filter.py +62 -0
- package/ref-monty/crates/monty/test_cases/builtin__filter_not_iterable.py +11 -0
- package/ref-monty/crates/monty/test_cases/builtin__getattr.py +84 -0
- package/ref-monty/crates/monty/test_cases/builtin__iter_funcs.py +42 -0
- package/ref-monty/crates/monty/test_cases/builtin__iter_next.py +66 -0
- package/ref-monty/crates/monty/test_cases/builtin__map.py +74 -0
- package/ref-monty/crates/monty/test_cases/builtin__map_not_iterable.py +11 -0
- package/ref-monty/crates/monty/test_cases/builtin__math_funcs.py +154 -0
- package/ref-monty/crates/monty/test_cases/builtin__more_iter_funcs.py +148 -0
- package/ref-monty/crates/monty/test_cases/builtin__next_stop_iteration.py +10 -0
- package/ref-monty/crates/monty/test_cases/builtin__print_invalid_kwarg.py +9 -0
- package/ref-monty/crates/monty/test_cases/builtin__print_kwargs.py +12 -0
- package/ref-monty/crates/monty/test_cases/builtin__repr.py +3 -0
- package/ref-monty/crates/monty/test_cases/builtin__string_funcs.py +73 -0
- package/ref-monty/crates/monty/test_cases/bytes__decode_invalid_utf8.py +18 -0
- package/ref-monty/crates/monty/test_cases/bytes__endswith_str_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/bytes__getitem_index_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/bytes__index_start_gt_end.py +10 -0
- package/ref-monty/crates/monty/test_cases/bytes__methods.py +394 -0
- package/ref-monty/crates/monty/test_cases/bytes__negative_count.py +9 -0
- package/ref-monty/crates/monty/test_cases/bytes__ops.py +90 -0
- package/ref-monty/crates/monty/test_cases/bytes__startswith_str_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/call_object.py +3 -0
- package/ref-monty/crates/monty/test_cases/chain_comparison__all.py +79 -0
- package/ref-monty/crates/monty/test_cases/closure__param_shadows_outer.py +81 -0
- package/ref-monty/crates/monty/test_cases/closure__pep448.py +203 -0
- package/ref-monty/crates/monty/test_cases/closure__undefined_nonlocal.py +13 -0
- package/ref-monty/crates/monty/test_cases/compare__mixed_types.py +120 -0
- package/ref-monty/crates/monty/test_cases/comprehension__all.py +208 -0
- package/ref-monty/crates/monty/test_cases/comprehension__scope.py +7 -0
- package/ref-monty/crates/monty/test_cases/comprehension__unbound_local.py +14 -0
- package/ref-monty/crates/monty/test_cases/dataclass__basic.py +238 -0
- package/ref-monty/crates/monty/test_cases/dataclass__call_field_error.py +12 -0
- package/ref-monty/crates/monty/test_cases/dataclass__frozen_set_error.py +12 -0
- package/ref-monty/crates/monty/test_cases/dataclass__get_missing_attr_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/dict__get_unhashable_key.py +3 -0
- package/ref-monty/crates/monty/test_cases/dict__literal_unhashable_key.py +2 -0
- package/ref-monty/crates/monty/test_cases/dict__method_pop_missing_error.py +3 -0
- package/ref-monty/crates/monty/test_cases/dict__methods.py +151 -0
- package/ref-monty/crates/monty/test_cases/dict__ops.py +133 -0
- package/ref-monty/crates/monty/test_cases/dict__pop_unhashable_key.py +4 -0
- package/ref-monty/crates/monty/test_cases/dict__popitem_empty.py +9 -0
- package/ref-monty/crates/monty/test_cases/dict__subscript_missing_key.py +3 -0
- package/ref-monty/crates/monty/test_cases/dict__unhashable_dict_key.py +2 -0
- package/ref-monty/crates/monty/test_cases/dict__unhashable_list_key.py +2 -0
- package/ref-monty/crates/monty/test_cases/dict__unpack_type_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/dict__views.py +165 -0
- package/ref-monty/crates/monty/test_cases/edge__all.py +26 -0
- package/ref-monty/crates/monty/test_cases/edge__float_int_mod.py +2 -0
- package/ref-monty/crates/monty/test_cases/edge__int_float_mod.py +2 -0
- package/ref-monty/crates/monty/test_cases/exc__args.py +16 -0
- package/ref-monty/crates/monty/test_cases/exc__str.py +15 -0
- package/ref-monty/crates/monty/test_cases/execute_ok__all.py +54 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__error_instance_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__error_no_args.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__error_string_arg.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__error_string_arg_quotes.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__error_type.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__raise_instance_via_var.py +4 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__raise_list.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__raise_number.py +2 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__raise_type_call_via_var.py +4 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__raise_type_direct.py +3 -0
- package/ref-monty/crates/monty/test_cases/execute_raise__raise_type_via_var.py +4 -0
- package/ref-monty/crates/monty/test_cases/ext_call__arg_side_effect_bug.py +22 -0
- package/ref-monty/crates/monty/test_cases/ext_call__augmented.py +17 -0
- package/ref-monty/crates/monty/test_cases/ext_call__augmented_refcount_bug.py +7 -0
- package/ref-monty/crates/monty/test_cases/ext_call__bare_raise_after_resume.py +34 -0
- package/ref-monty/crates/monty/test_cases/ext_call__basic.py +99 -0
- package/ref-monty/crates/monty/test_cases/ext_call__boolean.py +37 -0
- package/ref-monty/crates/monty/test_cases/ext_call__boolean_side_effect_hang.py +17 -0
- package/ref-monty/crates/monty/test_cases/ext_call__closure_bug.py +16 -0
- package/ref-monty/crates/monty/test_cases/ext_call__comparison.py +26 -0
- package/ref-monty/crates/monty/test_cases/ext_call__deep_call_stack.py +18 -0
- package/ref-monty/crates/monty/test_cases/ext_call__elif.py +171 -0
- package/ref-monty/crates/monty/test_cases/ext_call__exc.py +4 -0
- package/ref-monty/crates/monty/test_cases/ext_call__exc_deep_stack.py +39 -0
- package/ref-monty/crates/monty/test_cases/ext_call__exc_in_function.py +17 -0
- package/ref-monty/crates/monty/test_cases/ext_call__exc_nested_functions.py +31 -0
- package/ref-monty/crates/monty/test_cases/ext_call__ext_exc.py +171 -0
- package/ref-monty/crates/monty/test_cases/ext_call__for.py +114 -0
- package/ref-monty/crates/monty/test_cases/ext_call__fstring.py +12 -0
- package/ref-monty/crates/monty/test_cases/ext_call__if.py +135 -0
- package/ref-monty/crates/monty/test_cases/ext_call__if_condition.py +37 -0
- package/ref-monty/crates/monty/test_cases/ext_call__in_closure.py +14 -0
- package/ref-monty/crates/monty/test_cases/ext_call__in_function.py +40 -0
- package/ref-monty/crates/monty/test_cases/ext_call__in_function_simple.py +7 -0
- package/ref-monty/crates/monty/test_cases/ext_call__literals.py +17 -0
- package/ref-monty/crates/monty/test_cases/ext_call__multi_in_func.py +32 -0
- package/ref-monty/crates/monty/test_cases/ext_call__name_lookup.py +69 -0
- package/ref-monty/crates/monty/test_cases/ext_call__name_lookup_undefined.py +4 -0
- package/ref-monty/crates/monty/test_cases/ext_call__nested_calls.py +14 -0
- package/ref-monty/crates/monty/test_cases/ext_call__recursion_bug.py +19 -0
- package/ref-monty/crates/monty/test_cases/ext_call__return.py +28 -0
- package/ref-monty/crates/monty/test_cases/ext_call__side_effects.py +25 -0
- package/ref-monty/crates/monty/test_cases/ext_call__subscript.py +7 -0
- package/ref-monty/crates/monty/test_cases/ext_call__ternary.py +28 -0
- package/ref-monty/crates/monty/test_cases/ext_call__try.py +280 -0
- package/ref-monty/crates/monty/test_cases/ext_call__try_simple.py +10 -0
- package/ref-monty/crates/monty/test_cases/ext_call__unary.py +13 -0
- package/ref-monty/crates/monty/test_cases/frozenset__ops.py +178 -0
- package/ref-monty/crates/monty/test_cases/fstring__all.py +236 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_eq_align_on_str.py +3 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_float_f_on_str.py +3 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_int_d_on_float.py +3 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_int_d_on_str.py +3 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_invalid_spec.py +4 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_invalid_spec_dynamic.py +4 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_invalid_spec_str.py +4 -0
- package/ref-monty/crates/monty/test_cases/fstring__error_str_s_on_int.py +3 -0
- package/ref-monty/crates/monty/test_cases/function__call_duplicate_kwargs.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__call_unpack.py +42 -0
- package/ref-monty/crates/monty/test_cases/function__defaults.py +117 -0
- package/ref-monty/crates/monty/test_cases/function__err_duplicate_arg.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_duplicate_first_arg.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_duplicate_kwarg_cleanup.py +9 -0
- package/ref-monty/crates/monty/test_cases/function__err_kwonly_as_positional.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_missing_all_posonly.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_missing_heap_cleanup.py +9 -0
- package/ref-monty/crates/monty/test_cases/function__err_missing_kwonly.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_missing_posonly_with_kwarg.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_missing_with_posonly.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_posonly_as_kwarg.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_posonly_first_as_kwarg.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_too_many_posonly.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_too_many_with_kwonly.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_unexpected_kwarg.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_unexpected_kwarg_cleanup.py +9 -0
- package/ref-monty/crates/monty/test_cases/function__err_unexpected_kwarg_quote.py +13 -0
- package/ref-monty/crates/monty/test_cases/function__err_unexpected_kwarg_simple.py +7 -0
- package/ref-monty/crates/monty/test_cases/function__err_unpack_duplicate_arg.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__err_unpack_duplicate_heap.py +8 -0
- package/ref-monty/crates/monty/test_cases/function__err_unpack_int.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__err_unpack_nonstring_key.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__err_unpack_not_mapping.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__kwargs_unpacking.py +173 -0
- package/ref-monty/crates/monty/test_cases/function__ops.py +294 -0
- package/ref-monty/crates/monty/test_cases/function__return_none.py +42 -0
- package/ref-monty/crates/monty/test_cases/function__signatures.py +47 -0
- package/ref-monty/crates/monty/test_cases/function__too_few_args_all.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__too_few_args_one.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__too_few_args_two.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__too_many_args_one.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__too_many_args_two.py +6 -0
- package/ref-monty/crates/monty/test_cases/function__too_many_args_zero.py +6 -0
- package/ref-monty/crates/monty/test_cases/global__error_assigned_before.py +7 -0
- package/ref-monty/crates/monty/test_cases/global__ops.py +163 -0
- package/ref-monty/crates/monty/test_cases/hash__dict_unhashable.py +2 -0
- package/ref-monty/crates/monty/test_cases/hash__list_unhashable.py +2 -0
- package/ref-monty/crates/monty/test_cases/hash__ops.py +153 -0
- package/ref-monty/crates/monty/test_cases/id__bytes_literals_distinct.py +3 -0
- package/ref-monty/crates/monty/test_cases/id__int_copy_distinct.py +5 -0
- package/ref-monty/crates/monty/test_cases/id__is_number_is_number.py +3 -0
- package/ref-monty/crates/monty/test_cases/id__non_overlapping_lifetimes_distinct_types.py +10 -0
- package/ref-monty/crates/monty/test_cases/id__non_overlapping_lifetimes_same_types.py +6 -0
- package/ref-monty/crates/monty/test_cases/id__ops.py +97 -0
- package/ref-monty/crates/monty/test_cases/id__str_literals_same.py +3 -0
- package/ref-monty/crates/monty/test_cases/if__elif_else.py +207 -0
- package/ref-monty/crates/monty/test_cases/if__raise_elif.py +11 -0
- package/ref-monty/crates/monty/test_cases/if__raise_else.py +13 -0
- package/ref-monty/crates/monty/test_cases/if__raise_if.py +9 -0
- package/ref-monty/crates/monty/test_cases/if__raise_in_elif_condition.py +18 -0
- package/ref-monty/crates/monty/test_cases/if__raise_in_if_condition.py +16 -0
- package/ref-monty/crates/monty/test_cases/if_else_expr__all.py +55 -0
- package/ref-monty/crates/monty/test_cases/import__error_cannot_import.py +9 -0
- package/ref-monty/crates/monty/test_cases/import__error_module_not_found.py +9 -0
- package/ref-monty/crates/monty/test_cases/import__local_scope.py +68 -0
- package/ref-monty/crates/monty/test_cases/import__os.py +25 -0
- package/ref-monty/crates/monty/test_cases/import__relative_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/import__relative_no_module_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/import__runtime_error_when_executed.py +14 -0
- package/ref-monty/crates/monty/test_cases/import__star_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/import__sys.py +47 -0
- package/ref-monty/crates/monty/test_cases/import__sys_monty.py +28 -0
- package/ref-monty/crates/monty/test_cases/import__type_checking_guard.py +37 -0
- package/ref-monty/crates/monty/test_cases/import__typing.py +25 -0
- package/ref-monty/crates/monty/test_cases/import__typing_type_ignore.py +4 -0
- package/ref-monty/crates/monty/test_cases/int__bigint.py +467 -0
- package/ref-monty/crates/monty/test_cases/int__bigint_errors.py +260 -0
- package/ref-monty/crates/monty/test_cases/int__ops.py +219 -0
- package/ref-monty/crates/monty/test_cases/int__overflow_division.py +84 -0
- package/ref-monty/crates/monty/test_cases/is_variant__all.py +36 -0
- package/ref-monty/crates/monty/test_cases/isinstance__arg2_list_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/isinstance__arg2_type_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/iter__dict_mutation.py +4 -0
- package/ref-monty/crates/monty/test_cases/iter__for.py +243 -0
- package/ref-monty/crates/monty/test_cases/iter__for_loop_unpacking.py +66 -0
- package/ref-monty/crates/monty/test_cases/iter__generator_expr.py +20 -0
- package/ref-monty/crates/monty/test_cases/iter__generator_expr_type.py +7 -0
- package/ref-monty/crates/monty/test_cases/iter__not_iterable.py +3 -0
- package/ref-monty/crates/monty/test_cases/lambda__all.py +145 -0
- package/ref-monty/crates/monty/test_cases/list__extend_not_iterable.py +7 -0
- package/ref-monty/crates/monty/test_cases/list__getitem_out_of_bounds.py +3 -0
- package/ref-monty/crates/monty/test_cases/list__index_not_found.py +9 -0
- package/ref-monty/crates/monty/test_cases/list__index_start_gt_end.py +10 -0
- package/ref-monty/crates/monty/test_cases/list__ops.py +473 -0
- package/ref-monty/crates/monty/test_cases/list__pop_empty.py +9 -0
- package/ref-monty/crates/monty/test_cases/list__pop_out_of_range.py +9 -0
- package/ref-monty/crates/monty/test_cases/list__pop_type_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/list__remove_not_found.py +9 -0
- package/ref-monty/crates/monty/test_cases/list__setitem_dict_index.py +13 -0
- package/ref-monty/crates/monty/test_cases/list__setitem_huge_int_index.py +13 -0
- package/ref-monty/crates/monty/test_cases/list__setitem_index_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/list__setitem_type_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/list__unpack_type_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/longint__index_error.py +3 -0
- package/ref-monty/crates/monty/test_cases/longint__repeat_error.py +3 -0
- package/ref-monty/crates/monty/test_cases/loop__break_continue.py +113 -0
- package/ref-monty/crates/monty/test_cases/loop__break_finally.py +69 -0
- package/ref-monty/crates/monty/test_cases/loop__break_in_function_error.py +13 -0
- package/ref-monty/crates/monty/test_cases/loop__break_in_if_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/loop__break_nested_except_clears.py +55 -0
- package/ref-monty/crates/monty/test_cases/loop__break_outside_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/loop__continue_finally.py +81 -0
- package/ref-monty/crates/monty/test_cases/loop__continue_in_function_error.py +13 -0
- package/ref-monty/crates/monty/test_cases/loop__continue_in_if_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/loop__continue_nested_except_clears.py +60 -0
- package/ref-monty/crates/monty/test_cases/loop__continue_outside_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/math__acos_domain_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__acosh_domain_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__asin_domain_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__atanh_domain_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__cos_inf_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__cosh_overflow_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__exp_overflow_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__factorial_float_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__factorial_negative_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__floor_inf_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__floor_nan_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__floor_str_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__fmod_inf_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__gamma_neg_int_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__gcd_float_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__isqrt_negative_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__ldexp_overflow_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__log1p_domain_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__log_base1_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__log_zero_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__module.py +1432 -0
- package/ref-monty/crates/monty/test_cases/math__pow_domain_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__sin_inf_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__sqrt_negative_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__tan_inf_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/math__trunc_str_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/method__args_kwargs_unpacking.py +259 -0
- package/ref-monty/crates/monty/test_cases/name_error__unbound_local_func.py +19 -0
- package/ref-monty/crates/monty/test_cases/name_error__unbound_local_module.py +12 -0
- package/ref-monty/crates/monty/test_cases/name_error__undefined_call_chained.py +9 -0
- package/ref-monty/crates/monty/test_cases/name_error__undefined_call_in_expr.py +9 -0
- package/ref-monty/crates/monty/test_cases/name_error__undefined_call_in_function.py +16 -0
- package/ref-monty/crates/monty/test_cases/name_error__undefined_call_with_args.py +9 -0
- package/ref-monty/crates/monty/test_cases/name_error__undefined_global.py +10 -0
- package/ref-monty/crates/monty/test_cases/namedtuple__missing_attr.py +11 -0
- package/ref-monty/crates/monty/test_cases/namedtuple__ops.py +34 -0
- package/ref-monty/crates/monty/test_cases/nonlocal__error_module_level.py +3 -0
- package/ref-monty/crates/monty/test_cases/nonlocal__ops.py +353 -0
- package/ref-monty/crates/monty/test_cases/os__environ.py +40 -0
- package/ref-monty/crates/monty/test_cases/os__getenv_key_list_error.py +5 -0
- package/ref-monty/crates/monty/test_cases/os__getenv_key_type_error.py +5 -0
- package/ref-monty/crates/monty/test_cases/parse_error__complex.py +3 -0
- package/ref-monty/crates/monty/test_cases/pathlib__import.py +11 -0
- package/ref-monty/crates/monty/test_cases/pathlib__os.py +136 -0
- package/ref-monty/crates/monty/test_cases/pathlib__os_read_error.py +12 -0
- package/ref-monty/crates/monty/test_cases/pathlib__pure.py +81 -0
- package/ref-monty/crates/monty/test_cases/pyobject__cycle_dict_self.py +5 -0
- package/ref-monty/crates/monty/test_cases/pyobject__cycle_list_dict.py +6 -0
- package/ref-monty/crates/monty/test_cases/pyobject__cycle_list_self.py +5 -0
- package/ref-monty/crates/monty/test_cases/pyobject__cycle_multiple_refs.py +6 -0
- package/ref-monty/crates/monty/test_cases/range__error_no_args.py +2 -0
- package/ref-monty/crates/monty/test_cases/range__error_step_zero.py +2 -0
- package/ref-monty/crates/monty/test_cases/range__error_too_many_args.py +2 -0
- package/ref-monty/crates/monty/test_cases/range__getitem_index_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/range__ops.py +236 -0
- package/ref-monty/crates/monty/test_cases/re__basic.py +756 -0
- package/ref-monty/crates/monty/test_cases/re__grouping.py +241 -0
- package/ref-monty/crates/monty/test_cases/re__match.py +148 -0
- package/ref-monty/crates/monty/test_cases/recursion__deep_drop.py +26 -0
- package/ref-monty/crates/monty/test_cases/recursion__deep_eq.py +23 -0
- package/ref-monty/crates/monty/test_cases/recursion__deep_hash.py +46 -0
- package/ref-monty/crates/monty/test_cases/recursion__deep_repr.py +12 -0
- package/ref-monty/crates/monty/test_cases/recursion__function_depth.py +13 -0
- package/ref-monty/crates/monty/test_cases/refcount__cycle_mutual_reference.py +18 -0
- package/ref-monty/crates/monty/test_cases/refcount__cycle_self_reference.py +12 -0
- package/ref-monty/crates/monty/test_cases/refcount__dict_basic.py +5 -0
- package/ref-monty/crates/monty/test_cases/refcount__dict_get.py +5 -0
- package/ref-monty/crates/monty/test_cases/refcount__dict_keys_and.py +14 -0
- package/ref-monty/crates/monty/test_cases/refcount__dict_overwrite.py +6 -0
- package/ref-monty/crates/monty/test_cases/refcount__gather_cleanup.py +16 -0
- package/ref-monty/crates/monty/test_cases/refcount__gather_exception.py +18 -0
- package/ref-monty/crates/monty/test_cases/refcount__gather_nested_cancel.py +25 -0
- package/ref-monty/crates/monty/test_cases/refcount__immediate_skipped.py +4 -0
- package/ref-monty/crates/monty/test_cases/refcount__kwargs_unpacking.py +27 -0
- package/ref-monty/crates/monty/test_cases/refcount__list_append_multiple.py +6 -0
- package/ref-monty/crates/monty/test_cases/refcount__list_append_ref.py +5 -0
- package/ref-monty/crates/monty/test_cases/refcount__list_concat.py +5 -0
- package/ref-monty/crates/monty/test_cases/refcount__list_getitem.py +5 -0
- package/ref-monty/crates/monty/test_cases/refcount__list_iadd.py +5 -0
- package/ref-monty/crates/monty/test_cases/refcount__nested_list.py +4 -0
- package/ref-monty/crates/monty/test_cases/refcount__re_pattern_sub_error_paths.py +37 -0
- package/ref-monty/crates/monty/test_cases/refcount__re_search_match.py +34 -0
- package/ref-monty/crates/monty/test_cases/refcount__re_sub_error_paths.py +31 -0
- package/ref-monty/crates/monty/test_cases/refcount__shared_reference.py +4 -0
- package/ref-monty/crates/monty/test_cases/refcount__single_list.py +3 -0
- package/ref-monty/crates/monty/test_cases/repr__cycle_detection.py +24 -0
- package/ref-monty/crates/monty/test_cases/set__ops.py +191 -0
- package/ref-monty/crates/monty/test_cases/set__review_bugs.py +35 -0
- package/ref-monty/crates/monty/test_cases/set__unpack_type_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/slice__invalid_indices.py +2 -0
- package/ref-monty/crates/monty/test_cases/slice__kwargs.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__no_args.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__ops.py +149 -0
- package/ref-monty/crates/monty/test_cases/slice__step_zero.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__step_zero_bytes.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__step_zero_range.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__step_zero_str.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__step_zero_tuple.py +9 -0
- package/ref-monty/crates/monty/test_cases/slice__too_many_args.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__getitem_index_error.py +10 -0
- package/ref-monty/crates/monty/test_cases/str__index_not_found.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__join_no_args.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__join_non_string.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__join_not_iterable.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__join_too_many_args.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__methods.py +327 -0
- package/ref-monty/crates/monty/test_cases/str__ops.py +162 -0
- package/ref-monty/crates/monty/test_cases/str__partition_empty.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__rsplit_empty_sep.py +9 -0
- package/ref-monty/crates/monty/test_cases/str__split_empty_sep.py +9 -0
- package/ref-monty/crates/monty/test_cases/sys__types.py +7 -0
- package/ref-monty/crates/monty/test_cases/traceback__division_error.py +30 -0
- package/ref-monty/crates/monty/test_cases/traceback__index_error.py +17 -0
- package/ref-monty/crates/monty/test_cases/traceback__insert_as_int.py +10 -0
- package/ref-monty/crates/monty/test_cases/traceback__nested_call.py +29 -0
- package/ref-monty/crates/monty/test_cases/traceback__nonlocal_module_scope.py +10 -0
- package/ref-monty/crates/monty/test_cases/traceback__nonlocal_unbound.py +24 -0
- package/ref-monty/crates/monty/test_cases/traceback__range_as_int.py +9 -0
- package/ref-monty/crates/monty/test_cases/traceback__recursion_error.py +23 -0
- package/ref-monty/crates/monty/test_cases/traceback__set_mutation.py +11 -0
- package/ref-monty/crates/monty/test_cases/traceback__undefined_attr_call.py +16 -0
- package/ref-monty/crates/monty/test_cases/traceback__undefined_call.py +16 -0
- package/ref-monty/crates/monty/test_cases/traceback__undefined_raise.py +16 -0
- package/ref-monty/crates/monty/test_cases/try_except__all.py +472 -0
- package/ref-monty/crates/monty/test_cases/try_except__bare_raise_no_context.py +2 -0
- package/ref-monty/crates/monty/test_cases/try_except__invalid_type.py +5 -0
- package/ref-monty/crates/monty/test_cases/tuple__getitem_out_of_bounds.py +3 -0
- package/ref-monty/crates/monty/test_cases/tuple__index_not_found.py +9 -0
- package/ref-monty/crates/monty/test_cases/tuple__index_start_gt_end.py +10 -0
- package/ref-monty/crates/monty/test_cases/tuple__methods.py +19 -0
- package/ref-monty/crates/monty/test_cases/tuple__ops.py +133 -0
- package/ref-monty/crates/monty/test_cases/tuple__unpack_type_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/type__builtin_attr_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__bytes_negative.py +2 -0
- package/ref-monty/crates/monty/test_cases/type__cell_not_builtin.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__exception_attr_error.py +11 -0
- package/ref-monty/crates/monty/test_cases/type__float_conversion_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/type__float_repr_both_quotes.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__float_repr_newline.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__float_repr_single_quote.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__int_conversion_error.py +2 -0
- package/ref-monty/crates/monty/test_cases/type__list_not_iterable.py +2 -0
- package/ref-monty/crates/monty/test_cases/type__non_builtin_name_error.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__ops.py +200 -0
- package/ref-monty/crates/monty/test_cases/type__shadow_exc.py +3 -0
- package/ref-monty/crates/monty/test_cases/type__shadow_int.py +9 -0
- package/ref-monty/crates/monty/test_cases/type__shadow_len.py +3 -0
- package/ref-monty/crates/monty/test_cases/type__tuple_not_iterable.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_add_list.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_div_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_floordiv_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_iadd_str.py +3 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_mod_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_pow_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__int_sub_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__list_add_int.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__list_add_str.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__list_iadd_int.py +6 -0
- package/ref-monty/crates/monty/test_cases/type_error__str_add_int.py +2 -0
- package/ref-monty/crates/monty/test_cases/type_error__str_iadd_int.py +3 -0
- package/ref-monty/crates/monty/test_cases/type_error__unary_invert_str.py +3 -0
- package/ref-monty/crates/monty/test_cases/type_error__unary_minus_str.py +4 -0
- package/ref-monty/crates/monty/test_cases/type_error__unary_neg_str.py +3 -0
- package/ref-monty/crates/monty/test_cases/type_error__unary_plus_str.py +4 -0
- package/ref-monty/crates/monty/test_cases/typing__types.py +24 -0
- package/ref-monty/crates/monty/test_cases/unpack__nested.py +48 -0
- package/ref-monty/crates/monty/test_cases/unpack__non_sequence.py +9 -0
- package/ref-monty/crates/monty/test_cases/unpack__not_enough.py +9 -0
- package/ref-monty/crates/monty/test_cases/unpack__ops.py +153 -0
- package/ref-monty/crates/monty/test_cases/unpack__star_not_enough.py +9 -0
- package/ref-monty/crates/monty/test_cases/unpack__too_many.py +9 -0
- package/ref-monty/crates/monty/test_cases/version__cpython.py +4 -0
- package/ref-monty/crates/monty/test_cases/walrus__all.py +178 -0
- package/ref-monty/crates/monty/test_cases/while__all.py +206 -0
- package/ref-monty/crates/monty/tests/asyncio.rs +764 -0
- package/ref-monty/crates/monty/tests/binary_serde.rs +185 -0
- package/ref-monty/crates/monty/tests/bytecode_limits.rs +248 -0
- package/ref-monty/crates/monty/tests/datatest_runner.rs +2029 -0
- package/ref-monty/crates/monty/tests/inputs.rs +420 -0
- package/ref-monty/crates/monty/tests/json_serde.rs +250 -0
- package/ref-monty/crates/monty/tests/main.rs +71 -0
- package/ref-monty/crates/monty/tests/math_module.rs +114 -0
- package/ref-monty/crates/monty/tests/name_lookup.rs +482 -0
- package/ref-monty/crates/monty/tests/os_tests.rs +459 -0
- package/ref-monty/crates/monty/tests/parse_errors.rs +441 -0
- package/ref-monty/crates/monty/tests/print_writer.rs +238 -0
- package/ref-monty/crates/monty/tests/py_object.rs +121 -0
- package/ref-monty/crates/monty/tests/regex.rs +90 -0
- package/ref-monty/crates/monty/tests/repl.rs +344 -0
- package/ref-monty/crates/monty/tests/resource_limits.rs +1826 -0
- package/ref-monty/crates/monty/tests/try_from.rs +167 -0
- package/ref-monty/crates/monty-cli/Cargo.toml +25 -0
- package/ref-monty/crates/monty-cli/src/main.rs +541 -0
- package/ref-monty/crates/monty-js/.cargo/config.toml +2 -0
- package/ref-monty/crates/monty-js/.prettierignore +8 -0
- package/ref-monty/crates/monty-js/Cargo.toml +32 -0
- package/ref-monty/crates/monty-js/README.md +207 -0
- package/ref-monty/crates/monty-js/__test__/async.spec.ts +350 -0
- package/ref-monty/crates/monty-js/__test__/basic.spec.ts +114 -0
- package/ref-monty/crates/monty-js/__test__/exceptions.spec.ts +427 -0
- package/ref-monty/crates/monty-js/__test__/external.spec.ts +354 -0
- package/ref-monty/crates/monty-js/__test__/inputs.spec.ts +143 -0
- package/ref-monty/crates/monty-js/__test__/limits.spec.ts +162 -0
- package/ref-monty/crates/monty-js/__test__/package.json +3 -0
- package/ref-monty/crates/monty-js/__test__/print.spec.ts +229 -0
- package/ref-monty/crates/monty-js/__test__/repl.spec.ts +34 -0
- package/ref-monty/crates/monty-js/__test__/serialize.spec.ts +205 -0
- package/ref-monty/crates/monty-js/__test__/start.spec.ts +443 -0
- package/ref-monty/crates/monty-js/__test__/type_check.spec.ts +147 -0
- package/ref-monty/crates/monty-js/__test__/types.spec.ts +319 -0
- package/ref-monty/crates/monty-js/build.rs +61 -0
- package/ref-monty/crates/monty-js/index-header.d.ts +3 -0
- package/ref-monty/crates/monty-js/package-lock.json +4694 -0
- package/ref-monty/crates/monty-js/package.json +100 -0
- package/ref-monty/crates/monty-js/scripts/smoke-test.sh +69 -0
- package/ref-monty/crates/monty-js/smoke-test/package.json +17 -0
- package/ref-monty/crates/monty-js/smoke-test/test.ts +171 -0
- package/ref-monty/crates/monty-js/smoke-test/tsconfig.json +11 -0
- package/ref-monty/crates/monty-js/src/convert.rs +648 -0
- package/ref-monty/crates/monty-js/src/exceptions.rs +293 -0
- package/ref-monty/crates/monty-js/src/lib.rs +41 -0
- package/ref-monty/crates/monty-js/src/limits.rs +53 -0
- package/ref-monty/crates/monty-js/src/monty_cls.rs +1407 -0
- package/ref-monty/crates/monty-js/tsconfig.json +17 -0
- package/ref-monty/crates/monty-js/wrapper.ts +701 -0
- package/ref-monty/crates/monty-python/Cargo.toml +38 -0
- package/ref-monty/crates/monty-python/README.md +134 -0
- package/ref-monty/crates/monty-python/build.rs +4 -0
- package/ref-monty/crates/monty-python/example.py +40 -0
- package/ref-monty/crates/monty-python/exercise.py +46 -0
- package/ref-monty/crates/monty-python/pyproject.toml +57 -0
- package/ref-monty/crates/monty-python/python/pydantic_monty/__init__.py +281 -0
- package/ref-monty/crates/monty-python/python/pydantic_monty/_monty.pyi +677 -0
- package/ref-monty/crates/monty-python/python/pydantic_monty/os_access.py +933 -0
- package/ref-monty/crates/monty-python/python/pydantic_monty/py.typed +0 -0
- package/ref-monty/crates/monty-python/src/convert.rs +273 -0
- package/ref-monty/crates/monty-python/src/dataclass.rs +461 -0
- package/ref-monty/crates/monty-python/src/exceptions.rs +557 -0
- package/ref-monty/crates/monty-python/src/external.rs +165 -0
- package/ref-monty/crates/monty-python/src/lib.rs +77 -0
- package/ref-monty/crates/monty-python/src/limits.rs +142 -0
- package/ref-monty/crates/monty-python/src/monty_cls.rs +1650 -0
- package/ref-monty/crates/monty-python/src/repl.rs +470 -0
- package/ref-monty/crates/monty-python/src/serialization.rs +761 -0
- package/ref-monty/crates/monty-python/tests/test_async.py +1201 -0
- package/ref-monty/crates/monty-python/tests/test_basic.py +66 -0
- package/ref-monty/crates/monty-python/tests/test_dataclasses.py +971 -0
- package/ref-monty/crates/monty-python/tests/test_exceptions.py +361 -0
- package/ref-monty/crates/monty-python/tests/test_external.py +367 -0
- package/ref-monty/crates/monty-python/tests/test_inputs.py +126 -0
- package/ref-monty/crates/monty-python/tests/test_limits.py +257 -0
- package/ref-monty/crates/monty-python/tests/test_os_access.py +1286 -0
- package/ref-monty/crates/monty-python/tests/test_os_access_compat.py +731 -0
- package/ref-monty/crates/monty-python/tests/test_os_access_raw.py +483 -0
- package/ref-monty/crates/monty-python/tests/test_os_calls.py +819 -0
- package/ref-monty/crates/monty-python/tests/test_print.py +208 -0
- package/ref-monty/crates/monty-python/tests/test_re.py +170 -0
- package/ref-monty/crates/monty-python/tests/test_readme_examples.py +20 -0
- package/ref-monty/crates/monty-python/tests/test_repl.py +749 -0
- package/ref-monty/crates/monty-python/tests/test_serialize.py +284 -0
- package/ref-monty/crates/monty-python/tests/test_start.py +346 -0
- package/ref-monty/crates/monty-python/tests/test_threading.py +163 -0
- package/ref-monty/crates/monty-python/tests/test_type_check.py +344 -0
- package/ref-monty/crates/monty-python/tests/test_types.py +553 -0
- package/ref-monty/crates/monty-type-checking/Cargo.toml +32 -0
- package/ref-monty/crates/monty-type-checking/src/db.rs +116 -0
- package/ref-monty/crates/monty-type-checking/src/lib.rs +4 -0
- package/ref-monty/crates/monty-type-checking/src/type_check.rs +280 -0
- package/ref-monty/crates/monty-type-checking/tests/bad_types.py +109 -0
- package/ref-monty/crates/monty-type-checking/tests/bad_types_output.txt +21 -0
- package/ref-monty/crates/monty-type-checking/tests/good_types.py +475 -0
- package/ref-monty/crates/monty-type-checking/tests/main.rs +205 -0
- package/ref-monty/crates/monty-type-checking/tests/reveal_types.py +56 -0
- package/ref-monty/crates/monty-type-checking/tests/reveal_types_output.txt +41 -0
- package/ref-monty/crates/monty-typeshed/Cargo.toml +29 -0
- package/ref-monty/crates/monty-typeshed/README.md +11 -0
- package/ref-monty/crates/monty-typeshed/build.rs +101 -0
- package/ref-monty/crates/monty-typeshed/custom/README.md +1 -0
- package/ref-monty/crates/monty-typeshed/custom/asyncio.pyi +138 -0
- package/ref-monty/crates/monty-typeshed/custom/os.pyi +87 -0
- package/ref-monty/crates/monty-typeshed/custom/sys.pyi +33 -0
- package/ref-monty/crates/monty-typeshed/src/lib.rs +56 -0
- package/ref-monty/crates/monty-typeshed/update.py +321 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/source_commit.txt +1 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/VERSIONS +20 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/_collections_abc.pyi +105 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/_typeshed/__init__.pyi +394 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/asyncio.pyi +138 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/builtins.pyi +1434 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/collections/__init__.pyi +527 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/collections/abc.pyi +2 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/dataclasses.pyi +502 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/enum.pyi +376 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/math.pyi +149 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/os.pyi +87 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/pathlib/__init__.pyi +395 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/pathlib/types.pyi +8 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/re.pyi +337 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/sys.pyi +33 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/types.pyi +741 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/typing.pyi +1217 -0
- package/ref-monty/crates/monty-typeshed/vendor/typeshed/stdlib/typing_extensions.pyi +716 -0
- package/ref-monty/docs/usage-guide.md +117 -0
- package/ref-monty/examples/README.md +3 -0
- package/ref-monty/examples/expense_analysis/README.md +3 -0
- package/ref-monty/examples/expense_analysis/data.py +124 -0
- package/ref-monty/examples/expense_analysis/main.py +115 -0
- package/ref-monty/examples/sql_playground/README.md +20 -0
- package/ref-monty/examples/sql_playground/external_functions.py +129 -0
- package/ref-monty/examples/sql_playground/main.py +81 -0
- package/ref-monty/examples/sql_playground/sandbox_code.py +82 -0
- package/ref-monty/examples/sql_playground/type_stubs.pyi +14 -0
- package/ref-monty/examples/web_scraper/README.md +15 -0
- package/ref-monty/examples/web_scraper/browser.py +56 -0
- package/ref-monty/examples/web_scraper/example_code.py +59 -0
- package/ref-monty/examples/web_scraper/external_functions.py +324 -0
- package/ref-monty/examples/web_scraper/main.py +193 -0
- package/ref-monty/examples/web_scraper/sub_agent.py +79 -0
- package/ref-monty/monty-npm.md +235 -0
- package/ref-monty/pyproject.toml +162 -0
- package/ref-monty/scripts/check_imports.py +91 -0
- package/ref-monty/scripts/codecov_diff.py +412 -0
- package/ref-monty/scripts/complete_tests.py +146 -0
- package/ref-monty/scripts/flamegraph_to_text.py +208 -0
- package/ref-monty/scripts/iter_test_methods.py +540 -0
- package/ref-monty/scripts/run_traceback.py +180 -0
- package/ref-monty/scripts/startup_performance.py +130 -0
- package/ref-monty/uv.lock +1779 -0
- package/temp_resend_cli/repo/.github/scripts/pr-title-check.js +34 -0
- package/temp_resend_cli/repo/.github/workflows/ci.yml +67 -0
- package/temp_resend_cli/repo/.github/workflows/post-release.yml +51 -0
- package/temp_resend_cli/repo/.github/workflows/pr-title-check.yml +13 -0
- package/temp_resend_cli/repo/.github/workflows/release.yml +175 -0
- package/temp_resend_cli/repo/.github/workflows/test-install-unix.yml +34 -0
- package/temp_resend_cli/repo/.github/workflows/test-install-windows.yml +48 -0
- package/temp_resend_cli/repo/CHANGELOG.md +31 -0
- package/temp_resend_cli/repo/LICENSE +21 -0
- package/temp_resend_cli/repo/README.md +450 -0
- package/temp_resend_cli/repo/biome.json +36 -0
- package/temp_resend_cli/repo/install.ps1 +141 -0
- package/temp_resend_cli/repo/install.sh +301 -0
- package/temp_resend_cli/repo/package.json +61 -0
- package/temp_resend_cli/repo/pnpm-lock.yaml +2439 -0
- package/temp_resend_cli/repo/renovate.json +4 -0
- package/temp_resend_cli/repo/src/cli.ts +98 -0
- package/temp_resend_cli/repo/src/commands/api-keys/create.ts +114 -0
- package/temp_resend_cli/repo/src/commands/api-keys/delete.ts +47 -0
- package/temp_resend_cli/repo/src/commands/api-keys/index.ts +26 -0
- package/temp_resend_cli/repo/src/commands/api-keys/list.ts +35 -0
- package/temp_resend_cli/repo/src/commands/api-keys/utils.ts +8 -0
- package/temp_resend_cli/repo/src/commands/auth/index.ts +20 -0
- package/temp_resend_cli/repo/src/commands/auth/login.ts +234 -0
- package/temp_resend_cli/repo/src/commands/auth/logout.ts +105 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/create.ts +196 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/delete.ts +46 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/get.ts +59 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/index.ts +43 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/list.ts +60 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/send.ts +56 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/update.ts +95 -0
- package/temp_resend_cli/repo/src/commands/broadcasts/utils.ts +35 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/create.ts +118 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/delete.ts +48 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/get.ts +46 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/index.ts +48 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/list.ts +68 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/update.ts +88 -0
- package/temp_resend_cli/repo/src/commands/contact-properties/utils.ts +17 -0
- package/temp_resend_cli/repo/src/commands/contacts/add-segment.ts +78 -0
- package/temp_resend_cli/repo/src/commands/contacts/create.ts +122 -0
- package/temp_resend_cli/repo/src/commands/contacts/delete.ts +49 -0
- package/temp_resend_cli/repo/src/commands/contacts/get.ts +53 -0
- package/temp_resend_cli/repo/src/commands/contacts/index.ts +58 -0
- package/temp_resend_cli/repo/src/commands/contacts/list.ts +57 -0
- package/temp_resend_cli/repo/src/commands/contacts/remove-segment.ts +48 -0
- package/temp_resend_cli/repo/src/commands/contacts/segments.ts +39 -0
- package/temp_resend_cli/repo/src/commands/contacts/topics.ts +45 -0
- package/temp_resend_cli/repo/src/commands/contacts/update-topics.ts +90 -0
- package/temp_resend_cli/repo/src/commands/contacts/update.ts +77 -0
- package/temp_resend_cli/repo/src/commands/contacts/utils.ts +119 -0
- package/temp_resend_cli/repo/src/commands/doctor.ts +216 -0
- package/temp_resend_cli/repo/src/commands/domains/create.ts +83 -0
- package/temp_resend_cli/repo/src/commands/domains/delete.ts +42 -0
- package/temp_resend_cli/repo/src/commands/domains/get.ts +47 -0
- package/temp_resend_cli/repo/src/commands/domains/index.ts +35 -0
- package/temp_resend_cli/repo/src/commands/domains/list.ts +53 -0
- package/temp_resend_cli/repo/src/commands/domains/update.ts +75 -0
- package/temp_resend_cli/repo/src/commands/domains/utils.ts +44 -0
- package/temp_resend_cli/repo/src/commands/domains/verify.ts +38 -0
- package/temp_resend_cli/repo/src/commands/emails/batch.ts +140 -0
- package/temp_resend_cli/repo/src/commands/emails/get.ts +44 -0
- package/temp_resend_cli/repo/src/commands/emails/index.ts +30 -0
- package/temp_resend_cli/repo/src/commands/emails/list.ts +84 -0
- package/temp_resend_cli/repo/src/commands/emails/receiving/attachment.ts +55 -0
- package/temp_resend_cli/repo/src/commands/emails/receiving/attachments.ts +68 -0
- package/temp_resend_cli/repo/src/commands/emails/receiving/get.ts +58 -0
- package/temp_resend_cli/repo/src/commands/emails/receiving/index.ts +28 -0
- package/temp_resend_cli/repo/src/commands/emails/receiving/list.ts +59 -0
- package/temp_resend_cli/repo/src/commands/emails/receiving/utils.ts +38 -0
- package/temp_resend_cli/repo/src/commands/emails/send.ts +189 -0
- package/temp_resend_cli/repo/src/commands/open.ts +27 -0
- package/temp_resend_cli/repo/src/commands/segments/create.ts +50 -0
- package/temp_resend_cli/repo/src/commands/segments/delete.ts +47 -0
- package/temp_resend_cli/repo/src/commands/segments/get.ts +38 -0
- package/temp_resend_cli/repo/src/commands/segments/index.ts +36 -0
- package/temp_resend_cli/repo/src/commands/segments/list.ts +58 -0
- package/temp_resend_cli/repo/src/commands/segments/utils.ts +7 -0
- package/temp_resend_cli/repo/src/commands/teams/index.ts +10 -0
- package/temp_resend_cli/repo/src/commands/teams/list.ts +35 -0
- package/temp_resend_cli/repo/src/commands/teams/remove.ts +86 -0
- package/temp_resend_cli/repo/src/commands/teams/switch.ts +76 -0
- package/temp_resend_cli/repo/src/commands/topics/create.ts +73 -0
- package/temp_resend_cli/repo/src/commands/topics/delete.ts +47 -0
- package/temp_resend_cli/repo/src/commands/topics/get.ts +42 -0
- package/temp_resend_cli/repo/src/commands/topics/index.ts +42 -0
- package/temp_resend_cli/repo/src/commands/topics/list.ts +34 -0
- package/temp_resend_cli/repo/src/commands/topics/update.ts +59 -0
- package/temp_resend_cli/repo/src/commands/topics/utils.ts +16 -0
- package/temp_resend_cli/repo/src/commands/webhooks/create.ts +128 -0
- package/temp_resend_cli/repo/src/commands/webhooks/delete.ts +49 -0
- package/temp_resend_cli/repo/src/commands/webhooks/get.ts +42 -0
- package/temp_resend_cli/repo/src/commands/webhooks/index.ts +42 -0
- package/temp_resend_cli/repo/src/commands/webhooks/list.ts +55 -0
- package/temp_resend_cli/repo/src/commands/webhooks/listen.ts +379 -0
- package/temp_resend_cli/repo/src/commands/webhooks/update.ts +83 -0
- package/temp_resend_cli/repo/src/commands/webhooks/utils.ts +36 -0
- package/temp_resend_cli/repo/src/commands/whoami.ts +71 -0
- package/temp_resend_cli/repo/src/lib/actions.ts +157 -0
- package/temp_resend_cli/repo/src/lib/client.ts +37 -0
- package/temp_resend_cli/repo/src/lib/config.ts +217 -0
- package/temp_resend_cli/repo/src/lib/files.ts +15 -0
- package/temp_resend_cli/repo/src/lib/help-text.ts +38 -0
- package/temp_resend_cli/repo/src/lib/output.ts +56 -0
- package/temp_resend_cli/repo/src/lib/pagination.ts +36 -0
- package/temp_resend_cli/repo/src/lib/prompts.ts +149 -0
- package/temp_resend_cli/repo/src/lib/spinner.ts +100 -0
- package/temp_resend_cli/repo/src/lib/table.ts +57 -0
- package/temp_resend_cli/repo/src/lib/tty.ts +28 -0
- package/temp_resend_cli/repo/src/lib/update-check.ts +169 -0
- package/temp_resend_cli/repo/src/lib/version.ts +4 -0
- package/temp_resend_cli/repo/tests/commands/api-keys/create.test.ts +196 -0
- package/temp_resend_cli/repo/tests/commands/api-keys/delete.test.ts +157 -0
- package/temp_resend_cli/repo/tests/commands/api-keys/list.test.ts +134 -0
- package/temp_resend_cli/repo/tests/commands/auth/login.test.ts +153 -0
- package/temp_resend_cli/repo/tests/commands/auth/logout.test.ts +153 -0
- package/temp_resend_cli/repo/tests/commands/broadcasts/create.test.ts +454 -0
- package/temp_resend_cli/repo/tests/commands/broadcasts/delete.test.ts +183 -0
- package/temp_resend_cli/repo/tests/commands/broadcasts/get.test.ts +147 -0
- package/temp_resend_cli/repo/tests/commands/broadcasts/list.test.ts +199 -0
- package/temp_resend_cli/repo/tests/commands/broadcasts/send.test.ts +162 -0
- package/temp_resend_cli/repo/tests/commands/broadcasts/update.test.ts +288 -0
- package/temp_resend_cli/repo/tests/commands/contact-properties/create.test.ts +251 -0
- package/temp_resend_cli/repo/tests/commands/contact-properties/delete.test.ts +184 -0
- package/temp_resend_cli/repo/tests/commands/contact-properties/get.test.ts +145 -0
- package/temp_resend_cli/repo/tests/commands/contact-properties/list.test.ts +181 -0
- package/temp_resend_cli/repo/tests/commands/contact-properties/update.test.ts +217 -0
- package/temp_resend_cli/repo/tests/commands/contacts/add-segment.test.ts +189 -0
- package/temp_resend_cli/repo/tests/commands/contacts/create.test.ts +271 -0
- package/temp_resend_cli/repo/tests/commands/contacts/delete.test.ts +193 -0
- package/temp_resend_cli/repo/tests/commands/contacts/get.test.ts +149 -0
- package/temp_resend_cli/repo/tests/commands/contacts/list.test.ts +176 -0
- package/temp_resend_cli/repo/tests/commands/contacts/remove-segment.test.ts +167 -0
- package/temp_resend_cli/repo/tests/commands/contacts/segments.test.ts +168 -0
- package/temp_resend_cli/repo/tests/commands/contacts/topics.test.ts +164 -0
- package/temp_resend_cli/repo/tests/commands/contacts/update-topics.test.ts +248 -0
- package/temp_resend_cli/repo/tests/commands/contacts/update.test.ts +206 -0
- package/temp_resend_cli/repo/tests/commands/doctor.test.ts +164 -0
- package/temp_resend_cli/repo/tests/commands/domains/create.test.ts +193 -0
- package/temp_resend_cli/repo/tests/commands/domains/delete.test.ts +157 -0
- package/temp_resend_cli/repo/tests/commands/domains/get.test.ts +138 -0
- package/temp_resend_cli/repo/tests/commands/domains/list.test.ts +165 -0
- package/temp_resend_cli/repo/tests/commands/domains/update.test.ts +224 -0
- package/temp_resend_cli/repo/tests/commands/domains/verify.test.ts +118 -0
- package/temp_resend_cli/repo/tests/commands/emails/batch.test.ts +324 -0
- package/temp_resend_cli/repo/tests/commands/emails/get.test.ts +132 -0
- package/temp_resend_cli/repo/tests/commands/emails/receiving/attachment.test.ts +141 -0
- package/temp_resend_cli/repo/tests/commands/emails/receiving/attachments.test.ts +169 -0
- package/temp_resend_cli/repo/tests/commands/emails/receiving/get.test.ts +141 -0
- package/temp_resend_cli/repo/tests/commands/emails/receiving/list.test.ts +182 -0
- package/temp_resend_cli/repo/tests/commands/emails/send.test.ts +312 -0
- package/temp_resend_cli/repo/tests/commands/segments/create.test.ts +164 -0
- package/temp_resend_cli/repo/tests/commands/segments/delete.test.ts +183 -0
- package/temp_resend_cli/repo/tests/commands/segments/get.test.ts +138 -0
- package/temp_resend_cli/repo/tests/commands/segments/list.test.ts +174 -0
- package/temp_resend_cli/repo/tests/commands/teams/list.test.ts +62 -0
- package/temp_resend_cli/repo/tests/commands/teams/remove.test.ts +110 -0
- package/temp_resend_cli/repo/tests/commands/teams/switch.test.ts +103 -0
- package/temp_resend_cli/repo/tests/commands/topics/create.test.ts +192 -0
- package/temp_resend_cli/repo/tests/commands/topics/delete.test.ts +157 -0
- package/temp_resend_cli/repo/tests/commands/topics/get.test.ts +126 -0
- package/temp_resend_cli/repo/tests/commands/topics/list.test.ts +125 -0
- package/temp_resend_cli/repo/tests/commands/topics/update.test.ts +178 -0
- package/temp_resend_cli/repo/tests/commands/webhooks/create.test.ts +225 -0
- package/temp_resend_cli/repo/tests/commands/webhooks/delete.test.ts +157 -0
- package/temp_resend_cli/repo/tests/commands/webhooks/get.test.ts +126 -0
- package/temp_resend_cli/repo/tests/commands/webhooks/list.test.ts +178 -0
- package/temp_resend_cli/repo/tests/commands/webhooks/update.test.ts +207 -0
- package/temp_resend_cli/repo/tests/commands/whoami.test.ts +98 -0
- package/temp_resend_cli/repo/tests/e2e/smoke.test.ts +93 -0
- package/temp_resend_cli/repo/tests/helpers.ts +86 -0
- package/temp_resend_cli/repo/tests/lib/client.test.ts +71 -0
- package/temp_resend_cli/repo/tests/lib/config.test.ts +451 -0
- package/temp_resend_cli/repo/tests/lib/files.test.ts +73 -0
- package/temp_resend_cli/repo/tests/lib/help-text.test.ts +97 -0
- package/temp_resend_cli/repo/tests/lib/output.test.ts +136 -0
- package/temp_resend_cli/repo/tests/lib/prompts.test.ts +185 -0
- package/temp_resend_cli/repo/tests/lib/spinner.test.ts +166 -0
- package/temp_resend_cli/repo/tests/lib/table.test.ts +63 -0
- package/temp_resend_cli/repo/tests/lib/tty.test.ts +89 -0
- package/temp_resend_cli/repo/tests/lib/update-check.test.ts +179 -0
- package/temp_resend_cli/repo/tsconfig.json +14 -0
- package/temp_resend_cli/repo/vitest.config.e2e.ts +8 -0
- package/temp_resend_cli/repo/vitest.config.ts +10 -0
- package/tests/test-mcp-browser-use-smoke.sh +28 -56
- package/tests/test-monty-smoke.sh +32 -0
- package/tests/test-resend-smoke.sh +36 -0
|
@@ -0,0 +1,3798 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.25.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "aes"
|
|
22
|
+
version = "0.8.4"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cfg-if",
|
|
27
|
+
"cipher",
|
|
28
|
+
"cpufeatures",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "ahash"
|
|
33
|
+
version = "0.8.12"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"cfg-if",
|
|
38
|
+
"getrandom 0.3.4",
|
|
39
|
+
"once_cell",
|
|
40
|
+
"serde",
|
|
41
|
+
"version_check",
|
|
42
|
+
"zerocopy",
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
[[package]]
|
|
46
|
+
name = "aho-corasick"
|
|
47
|
+
version = "1.1.4"
|
|
48
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
49
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
50
|
+
dependencies = [
|
|
51
|
+
"memchr",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "aligned-vec"
|
|
56
|
+
version = "0.6.4"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
|
|
59
|
+
dependencies = [
|
|
60
|
+
"equator",
|
|
61
|
+
]
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "allocator-api2"
|
|
65
|
+
version = "0.2.21"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "anes"
|
|
71
|
+
version = "0.1.6"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "anstream"
|
|
77
|
+
version = "0.6.21"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
80
|
+
dependencies = [
|
|
81
|
+
"anstyle",
|
|
82
|
+
"anstyle-parse",
|
|
83
|
+
"anstyle-query",
|
|
84
|
+
"anstyle-wincon",
|
|
85
|
+
"colorchoice",
|
|
86
|
+
"is_terminal_polyfill",
|
|
87
|
+
"utf8parse",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "anstyle"
|
|
92
|
+
version = "1.0.13"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "anstyle-parse"
|
|
98
|
+
version = "0.2.7"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"utf8parse",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "anstyle-query"
|
|
107
|
+
version = "1.1.5"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"windows-sys 0.61.2",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "anstyle-wincon"
|
|
116
|
+
version = "3.0.11"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
119
|
+
dependencies = [
|
|
120
|
+
"anstyle",
|
|
121
|
+
"once_cell_polyfill",
|
|
122
|
+
"windows-sys 0.61.2",
|
|
123
|
+
]
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "anyhow"
|
|
127
|
+
version = "1.0.100"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "approx"
|
|
133
|
+
version = "0.5.1"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"num-traits",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "arbitrary"
|
|
142
|
+
version = "1.4.2"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"derive_arbitrary",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "arc-swap"
|
|
151
|
+
version = "1.8.0"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "51d03449bb8ca2cc2ef70869af31463d1ae5ccc8fa3e334b307203fbf815207e"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"rustversion",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "arrayvec"
|
|
160
|
+
version = "0.7.6"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "atomic-polyfill"
|
|
166
|
+
version = "1.0.3"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"critical-section",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "attribute-derive"
|
|
175
|
+
version = "0.10.5"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"attribute-derive-macro",
|
|
180
|
+
"derive-where",
|
|
181
|
+
"manyhow",
|
|
182
|
+
"proc-macro2",
|
|
183
|
+
"quote",
|
|
184
|
+
"syn",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "attribute-derive-macro"
|
|
189
|
+
version = "0.10.5"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"collection_literals",
|
|
194
|
+
"interpolator",
|
|
195
|
+
"manyhow",
|
|
196
|
+
"proc-macro-utils",
|
|
197
|
+
"proc-macro2",
|
|
198
|
+
"quote",
|
|
199
|
+
"quote-use",
|
|
200
|
+
"syn",
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "autocfg"
|
|
205
|
+
version = "1.5.0"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "backtrace"
|
|
211
|
+
version = "0.3.76"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"addr2line",
|
|
216
|
+
"cfg-if",
|
|
217
|
+
"libc",
|
|
218
|
+
"miniz_oxide",
|
|
219
|
+
"object",
|
|
220
|
+
"rustc-demangle",
|
|
221
|
+
"windows-link",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "base64ct"
|
|
226
|
+
version = "1.8.2"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "7d809780667f4410e7c41b07f52439b94d2bdf8528eeedc287fa38d3b7f95d82"
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "bit-set"
|
|
232
|
+
version = "0.8.0"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"bit-vec",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "bit-vec"
|
|
241
|
+
version = "0.8.0"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "bitflags"
|
|
247
|
+
version = "1.3.2"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "bitflags"
|
|
253
|
+
version = "2.10.0"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "bitvec"
|
|
259
|
+
version = "1.0.1"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
262
|
+
dependencies = [
|
|
263
|
+
"funty",
|
|
264
|
+
"radium",
|
|
265
|
+
"tap",
|
|
266
|
+
"wyz",
|
|
267
|
+
]
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "block-buffer"
|
|
271
|
+
version = "0.10.4"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
274
|
+
dependencies = [
|
|
275
|
+
"generic-array",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "boxcar"
|
|
280
|
+
version = "0.2.14"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "bstr"
|
|
286
|
+
version = "1.12.1"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"memchr",
|
|
291
|
+
"regex-automata",
|
|
292
|
+
"serde",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "bumpalo"
|
|
297
|
+
version = "3.19.1"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "bytemuck"
|
|
303
|
+
version = "1.24.0"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "byteorder"
|
|
309
|
+
version = "1.5.0"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "bzip2"
|
|
315
|
+
version = "0.4.4"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"bzip2-sys",
|
|
320
|
+
"libc",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "bzip2-sys"
|
|
325
|
+
version = "0.1.13+1.0.8"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
328
|
+
dependencies = [
|
|
329
|
+
"cc",
|
|
330
|
+
"pkg-config",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "camino"
|
|
335
|
+
version = "1.2.2"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"serde_core",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "cast"
|
|
344
|
+
version = "0.3.0"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "castaway"
|
|
350
|
+
version = "0.2.4"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"rustversion",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "cc"
|
|
359
|
+
version = "1.2.52"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "cd4932aefd12402b36c60956a4fe0035421f544799057659ff86f923657aada3"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"find-msvc-tools",
|
|
364
|
+
"jobserver",
|
|
365
|
+
"libc",
|
|
366
|
+
"shlex",
|
|
367
|
+
]
|
|
368
|
+
|
|
369
|
+
[[package]]
|
|
370
|
+
name = "cfg-if"
|
|
371
|
+
version = "1.0.4"
|
|
372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "cfg_aliases"
|
|
377
|
+
version = "0.2.1"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "ciborium"
|
|
383
|
+
version = "0.2.2"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
386
|
+
dependencies = [
|
|
387
|
+
"ciborium-io",
|
|
388
|
+
"ciborium-ll",
|
|
389
|
+
"serde",
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "ciborium-io"
|
|
394
|
+
version = "0.2.2"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "ciborium-ll"
|
|
400
|
+
version = "0.2.2"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"ciborium-io",
|
|
405
|
+
"half",
|
|
406
|
+
]
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "cipher"
|
|
410
|
+
version = "0.4.4"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
413
|
+
dependencies = [
|
|
414
|
+
"crypto-common",
|
|
415
|
+
"inout",
|
|
416
|
+
]
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "clap"
|
|
420
|
+
version = "4.5.54"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"clap_builder",
|
|
425
|
+
"clap_derive",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "clap_builder"
|
|
430
|
+
version = "4.5.54"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"anstream",
|
|
435
|
+
"anstyle",
|
|
436
|
+
"clap_lex",
|
|
437
|
+
"strsim",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "clap_derive"
|
|
442
|
+
version = "4.5.49"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"heck",
|
|
447
|
+
"proc-macro2",
|
|
448
|
+
"quote",
|
|
449
|
+
"syn",
|
|
450
|
+
]
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "clap_lex"
|
|
454
|
+
version = "0.7.6"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "clipboard-win"
|
|
460
|
+
version = "5.4.1"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"error-code",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "cobs"
|
|
469
|
+
version = "0.3.0"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"thiserror",
|
|
474
|
+
]
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "codspeed"
|
|
478
|
+
version = "4.2.1"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "5f0d98d97fd75ca4489a1a0997820a6521531085e7c8a98941bd0e1264d567dd"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"anyhow",
|
|
483
|
+
"cc",
|
|
484
|
+
"colored 2.2.0",
|
|
485
|
+
"getrandom 0.2.16",
|
|
486
|
+
"glob",
|
|
487
|
+
"libc",
|
|
488
|
+
"nix 0.30.1",
|
|
489
|
+
"serde",
|
|
490
|
+
"serde_json",
|
|
491
|
+
"statrs",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "codspeed-criterion-compat"
|
|
496
|
+
version = "4.2.1"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "d16fe2db207123f7b3a3b5cfff0c22f99469f7534145f3573f57f4c8a5653c2c"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"clap",
|
|
501
|
+
"codspeed",
|
|
502
|
+
"codspeed-criterion-compat-walltime",
|
|
503
|
+
"colored 2.2.0",
|
|
504
|
+
"regex",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "codspeed-criterion-compat-walltime"
|
|
509
|
+
version = "4.2.1"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "b035c7f9846b143aeabb3833f5b584023eb97b43ecbff3d997db74c4372df2bd"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"anes",
|
|
514
|
+
"cast",
|
|
515
|
+
"ciborium",
|
|
516
|
+
"clap",
|
|
517
|
+
"codspeed",
|
|
518
|
+
"criterion-plot",
|
|
519
|
+
"is-terminal",
|
|
520
|
+
"itertools 0.10.5",
|
|
521
|
+
"num-traits",
|
|
522
|
+
"once_cell",
|
|
523
|
+
"oorandom",
|
|
524
|
+
"plotters",
|
|
525
|
+
"rayon",
|
|
526
|
+
"regex",
|
|
527
|
+
"serde",
|
|
528
|
+
"serde_derive",
|
|
529
|
+
"serde_json",
|
|
530
|
+
"tinytemplate",
|
|
531
|
+
"walkdir",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "collection_literals"
|
|
536
|
+
version = "1.0.3"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "colorchoice"
|
|
542
|
+
version = "1.0.4"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "colored"
|
|
548
|
+
version = "2.2.0"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
|
|
551
|
+
dependencies = [
|
|
552
|
+
"lazy_static",
|
|
553
|
+
"windows-sys 0.59.0",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "colored"
|
|
558
|
+
version = "3.0.0"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"windows-sys 0.59.0",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "compact_str"
|
|
567
|
+
version = "0.9.0"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"castaway",
|
|
572
|
+
"cfg-if",
|
|
573
|
+
"itoa",
|
|
574
|
+
"rustversion",
|
|
575
|
+
"ryu",
|
|
576
|
+
"static_assertions",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "constant_time_eq"
|
|
581
|
+
version = "0.1.5"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "convert_case"
|
|
587
|
+
version = "0.10.0"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"unicode-segmentation",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "cpp_demangle"
|
|
596
|
+
version = "0.4.5"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"cfg-if",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "cpufeatures"
|
|
605
|
+
version = "0.2.17"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"libc",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "crc32fast"
|
|
614
|
+
version = "1.5.0"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"cfg-if",
|
|
619
|
+
]
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "criterion"
|
|
623
|
+
version = "0.5.1"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
626
|
+
dependencies = [
|
|
627
|
+
"anes",
|
|
628
|
+
"cast",
|
|
629
|
+
"ciborium",
|
|
630
|
+
"clap",
|
|
631
|
+
"criterion-plot",
|
|
632
|
+
"is-terminal",
|
|
633
|
+
"itertools 0.10.5",
|
|
634
|
+
"num-traits",
|
|
635
|
+
"once_cell",
|
|
636
|
+
"oorandom",
|
|
637
|
+
"plotters",
|
|
638
|
+
"rayon",
|
|
639
|
+
"regex",
|
|
640
|
+
"serde",
|
|
641
|
+
"serde_derive",
|
|
642
|
+
"serde_json",
|
|
643
|
+
"tinytemplate",
|
|
644
|
+
"walkdir",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "criterion-plot"
|
|
649
|
+
version = "0.5.0"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"cast",
|
|
654
|
+
"itertools 0.10.5",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "critical-section"
|
|
659
|
+
version = "1.2.0"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "crossbeam-deque"
|
|
665
|
+
version = "0.8.6"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
668
|
+
dependencies = [
|
|
669
|
+
"crossbeam-epoch",
|
|
670
|
+
"crossbeam-utils",
|
|
671
|
+
]
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "crossbeam-epoch"
|
|
675
|
+
version = "0.9.18"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
678
|
+
dependencies = [
|
|
679
|
+
"crossbeam-utils",
|
|
680
|
+
]
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "crossbeam-queue"
|
|
684
|
+
version = "0.3.12"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
687
|
+
dependencies = [
|
|
688
|
+
"crossbeam-utils",
|
|
689
|
+
]
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "crossbeam-utils"
|
|
693
|
+
version = "0.8.21"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "crunchy"
|
|
699
|
+
version = "0.2.4"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "crypto-common"
|
|
705
|
+
version = "0.1.7"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"generic-array",
|
|
710
|
+
"typenum",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "ctor"
|
|
715
|
+
version = "0.6.3"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"ctor-proc-macro",
|
|
720
|
+
"dtor",
|
|
721
|
+
]
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "ctor-proc-macro"
|
|
725
|
+
version = "0.0.7"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "darling"
|
|
731
|
+
version = "0.21.3"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"darling_core",
|
|
736
|
+
"darling_macro",
|
|
737
|
+
]
|
|
738
|
+
|
|
739
|
+
[[package]]
|
|
740
|
+
name = "darling_core"
|
|
741
|
+
version = "0.21.3"
|
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
744
|
+
dependencies = [
|
|
745
|
+
"fnv",
|
|
746
|
+
"ident_case",
|
|
747
|
+
"proc-macro2",
|
|
748
|
+
"quote",
|
|
749
|
+
"strsim",
|
|
750
|
+
"syn",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "darling_macro"
|
|
755
|
+
version = "0.21.3"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"darling_core",
|
|
760
|
+
"quote",
|
|
761
|
+
"syn",
|
|
762
|
+
]
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "dashmap"
|
|
766
|
+
version = "6.1.0"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"cfg-if",
|
|
771
|
+
"crossbeam-utils",
|
|
772
|
+
"hashbrown 0.14.5",
|
|
773
|
+
"lock_api",
|
|
774
|
+
"once_cell",
|
|
775
|
+
"parking_lot_core",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "datatest-stable"
|
|
780
|
+
version = "0.2.10"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "833306ca7eec4d95844e65f0d7502db43888c5c1006c6c517e8cf51a27d15431"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"camino",
|
|
785
|
+
"fancy-regex 0.14.0",
|
|
786
|
+
"libtest-mimic",
|
|
787
|
+
"walkdir",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "debugid"
|
|
792
|
+
version = "0.8.0"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
|
|
795
|
+
dependencies = [
|
|
796
|
+
"uuid",
|
|
797
|
+
]
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "deranged"
|
|
801
|
+
version = "0.5.5"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
804
|
+
dependencies = [
|
|
805
|
+
"powerfmt",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "derive-where"
|
|
810
|
+
version = "1.6.0"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "ef941ded77d15ca19b40374869ac6000af1c9f2a4c0f3d4c70926287e6364a8f"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"proc-macro2",
|
|
815
|
+
"quote",
|
|
816
|
+
"syn",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "derive_arbitrary"
|
|
821
|
+
version = "1.4.2"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"proc-macro2",
|
|
826
|
+
"quote",
|
|
827
|
+
"syn",
|
|
828
|
+
]
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "diff"
|
|
832
|
+
version = "0.1.13"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "digest"
|
|
838
|
+
version = "0.10.7"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"block-buffer",
|
|
843
|
+
"crypto-common",
|
|
844
|
+
"subtle",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "drop_bomb"
|
|
849
|
+
version = "0.1.5"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "dtor"
|
|
855
|
+
version = "0.1.1"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
|
|
858
|
+
dependencies = [
|
|
859
|
+
"dtor-proc-macro",
|
|
860
|
+
]
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "dtor-proc-macro"
|
|
864
|
+
version = "0.0.6"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "dunce"
|
|
870
|
+
version = "1.0.5"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "either"
|
|
876
|
+
version = "1.15.0"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "embedded-io"
|
|
882
|
+
version = "0.4.0"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "embedded-io"
|
|
888
|
+
version = "0.6.1"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "endian-type"
|
|
894
|
+
version = "0.1.2"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "env_home"
|
|
900
|
+
version = "0.1.0"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "equator"
|
|
906
|
+
version = "0.4.2"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"equator-macro",
|
|
911
|
+
]
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "equator-macro"
|
|
915
|
+
version = "0.4.2"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
|
|
918
|
+
dependencies = [
|
|
919
|
+
"proc-macro2",
|
|
920
|
+
"quote",
|
|
921
|
+
"syn",
|
|
922
|
+
]
|
|
923
|
+
|
|
924
|
+
[[package]]
|
|
925
|
+
name = "equivalent"
|
|
926
|
+
version = "1.0.2"
|
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "errno"
|
|
932
|
+
version = "0.3.14"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"libc",
|
|
937
|
+
"windows-sys 0.61.2",
|
|
938
|
+
]
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "error-code"
|
|
942
|
+
version = "3.3.2"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "escape8259"
|
|
948
|
+
version = "0.5.3"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "5692dd7b5a1978a5aeb0ce83b7655c58ca8efdcb79d21036ea249da95afec2c6"
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "fancy-regex"
|
|
954
|
+
version = "0.14.0"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"bit-set",
|
|
959
|
+
"regex-automata",
|
|
960
|
+
"regex-syntax",
|
|
961
|
+
]
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "fancy-regex"
|
|
965
|
+
version = "0.17.0"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "72cf461f865c862bb7dc573f643dd6a2b6842f7c30b07882b56bd148cc2761b8"
|
|
968
|
+
dependencies = [
|
|
969
|
+
"bit-set",
|
|
970
|
+
"regex-automata",
|
|
971
|
+
"regex-syntax",
|
|
972
|
+
]
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "fastrand"
|
|
976
|
+
version = "2.3.0"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "fd-lock"
|
|
982
|
+
version = "4.0.4"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"cfg-if",
|
|
987
|
+
"rustix",
|
|
988
|
+
"windows-sys 0.59.0",
|
|
989
|
+
]
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "filetime"
|
|
993
|
+
version = "0.2.26"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
|
|
996
|
+
dependencies = [
|
|
997
|
+
"cfg-if",
|
|
998
|
+
"libc",
|
|
999
|
+
"libredox",
|
|
1000
|
+
"windows-sys 0.60.2",
|
|
1001
|
+
]
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "find-msvc-tools"
|
|
1005
|
+
version = "0.1.7"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "f449e6c6c08c865631d4890cfacf252b3d396c9bcc83adb6623cdb02a8336c41"
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "findshlibs"
|
|
1011
|
+
version = "0.10.2"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"cc",
|
|
1016
|
+
"lazy_static",
|
|
1017
|
+
"libc",
|
|
1018
|
+
"winapi",
|
|
1019
|
+
]
|
|
1020
|
+
|
|
1021
|
+
[[package]]
|
|
1022
|
+
name = "flate2"
|
|
1023
|
+
version = "1.1.5"
|
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
1026
|
+
dependencies = [
|
|
1027
|
+
"crc32fast",
|
|
1028
|
+
"miniz_oxide",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "fnv"
|
|
1033
|
+
version = "1.0.7"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1036
|
+
|
|
1037
|
+
[[package]]
|
|
1038
|
+
name = "foldhash"
|
|
1039
|
+
version = "0.1.5"
|
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1042
|
+
|
|
1043
|
+
[[package]]
|
|
1044
|
+
name = "foldhash"
|
|
1045
|
+
version = "0.2.0"
|
|
1046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1047
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "funty"
|
|
1051
|
+
version = "2.0.0"
|
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "futures"
|
|
1057
|
+
version = "0.3.31"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"futures-channel",
|
|
1062
|
+
"futures-core",
|
|
1063
|
+
"futures-executor",
|
|
1064
|
+
"futures-io",
|
|
1065
|
+
"futures-sink",
|
|
1066
|
+
"futures-task",
|
|
1067
|
+
"futures-util",
|
|
1068
|
+
]
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "futures-channel"
|
|
1072
|
+
version = "0.3.31"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1075
|
+
dependencies = [
|
|
1076
|
+
"futures-core",
|
|
1077
|
+
"futures-sink",
|
|
1078
|
+
]
|
|
1079
|
+
|
|
1080
|
+
[[package]]
|
|
1081
|
+
name = "futures-core"
|
|
1082
|
+
version = "0.3.31"
|
|
1083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1084
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "futures-executor"
|
|
1088
|
+
version = "0.3.31"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"futures-core",
|
|
1093
|
+
"futures-task",
|
|
1094
|
+
"futures-util",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "futures-io"
|
|
1099
|
+
version = "0.3.31"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "futures-macro"
|
|
1105
|
+
version = "0.3.31"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1108
|
+
dependencies = [
|
|
1109
|
+
"proc-macro2",
|
|
1110
|
+
"quote",
|
|
1111
|
+
"syn",
|
|
1112
|
+
]
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "futures-sink"
|
|
1116
|
+
version = "0.3.31"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "futures-task"
|
|
1122
|
+
version = "0.3.31"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "futures-util"
|
|
1128
|
+
version = "0.3.31"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1131
|
+
dependencies = [
|
|
1132
|
+
"futures-channel",
|
|
1133
|
+
"futures-core",
|
|
1134
|
+
"futures-io",
|
|
1135
|
+
"futures-macro",
|
|
1136
|
+
"futures-sink",
|
|
1137
|
+
"futures-task",
|
|
1138
|
+
"memchr",
|
|
1139
|
+
"pin-project-lite",
|
|
1140
|
+
"pin-utils",
|
|
1141
|
+
"slab",
|
|
1142
|
+
]
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "generic-array"
|
|
1146
|
+
version = "0.14.7"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1149
|
+
dependencies = [
|
|
1150
|
+
"typenum",
|
|
1151
|
+
"version_check",
|
|
1152
|
+
]
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "get-size-derive2"
|
|
1156
|
+
version = "0.7.3"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "ab21d7bd2c625f2064f04ce54bcb88bc57c45724cde45cba326d784e22d3f71a"
|
|
1159
|
+
dependencies = [
|
|
1160
|
+
"attribute-derive",
|
|
1161
|
+
"quote",
|
|
1162
|
+
"syn",
|
|
1163
|
+
]
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "get-size2"
|
|
1167
|
+
version = "0.7.3"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "879272b0de109e2b67b39fcfe3d25fdbba96ac07e44a254f5a0b4d7ff55340cb"
|
|
1170
|
+
dependencies = [
|
|
1171
|
+
"compact_str",
|
|
1172
|
+
"get-size-derive2",
|
|
1173
|
+
"hashbrown 0.16.1",
|
|
1174
|
+
"indexmap",
|
|
1175
|
+
"ordermap",
|
|
1176
|
+
"smallvec",
|
|
1177
|
+
]
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "getopts"
|
|
1181
|
+
version = "0.2.24"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"unicode-width",
|
|
1186
|
+
]
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "getrandom"
|
|
1190
|
+
version = "0.2.16"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
1193
|
+
dependencies = [
|
|
1194
|
+
"cfg-if",
|
|
1195
|
+
"libc",
|
|
1196
|
+
"wasi",
|
|
1197
|
+
]
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "getrandom"
|
|
1201
|
+
version = "0.3.4"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1204
|
+
dependencies = [
|
|
1205
|
+
"cfg-if",
|
|
1206
|
+
"libc",
|
|
1207
|
+
"r-efi",
|
|
1208
|
+
"wasip2",
|
|
1209
|
+
]
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "gimli"
|
|
1213
|
+
version = "0.32.3"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "glob"
|
|
1219
|
+
version = "0.3.3"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1222
|
+
|
|
1223
|
+
[[package]]
|
|
1224
|
+
name = "half"
|
|
1225
|
+
version = "2.7.1"
|
|
1226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1228
|
+
dependencies = [
|
|
1229
|
+
"cfg-if",
|
|
1230
|
+
"crunchy",
|
|
1231
|
+
"zerocopy",
|
|
1232
|
+
]
|
|
1233
|
+
|
|
1234
|
+
[[package]]
|
|
1235
|
+
name = "hash32"
|
|
1236
|
+
version = "0.2.1"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
|
|
1239
|
+
dependencies = [
|
|
1240
|
+
"byteorder",
|
|
1241
|
+
]
|
|
1242
|
+
|
|
1243
|
+
[[package]]
|
|
1244
|
+
name = "hashbrown"
|
|
1245
|
+
version = "0.14.5"
|
|
1246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1247
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1248
|
+
|
|
1249
|
+
[[package]]
|
|
1250
|
+
name = "hashbrown"
|
|
1251
|
+
version = "0.15.5"
|
|
1252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1254
|
+
dependencies = [
|
|
1255
|
+
"allocator-api2",
|
|
1256
|
+
"equivalent",
|
|
1257
|
+
"foldhash 0.1.5",
|
|
1258
|
+
]
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "hashbrown"
|
|
1262
|
+
version = "0.16.1"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1265
|
+
dependencies = [
|
|
1266
|
+
"allocator-api2",
|
|
1267
|
+
"equivalent",
|
|
1268
|
+
"foldhash 0.2.0",
|
|
1269
|
+
]
|
|
1270
|
+
|
|
1271
|
+
[[package]]
|
|
1272
|
+
name = "hashlink"
|
|
1273
|
+
version = "0.10.0"
|
|
1274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1275
|
+
checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
|
|
1276
|
+
dependencies = [
|
|
1277
|
+
"hashbrown 0.15.5",
|
|
1278
|
+
]
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "heapless"
|
|
1282
|
+
version = "0.7.17"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
|
|
1285
|
+
dependencies = [
|
|
1286
|
+
"atomic-polyfill",
|
|
1287
|
+
"hash32",
|
|
1288
|
+
"rustc_version",
|
|
1289
|
+
"serde",
|
|
1290
|
+
"spin 0.9.8",
|
|
1291
|
+
"stable_deref_trait",
|
|
1292
|
+
]
|
|
1293
|
+
|
|
1294
|
+
[[package]]
|
|
1295
|
+
name = "heck"
|
|
1296
|
+
version = "0.5.0"
|
|
1297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "hermit-abi"
|
|
1302
|
+
version = "0.5.2"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "hmac"
|
|
1308
|
+
version = "0.12.1"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1311
|
+
dependencies = [
|
|
1312
|
+
"digest",
|
|
1313
|
+
]
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "home"
|
|
1317
|
+
version = "0.5.12"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"windows-sys 0.61.2",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "ident_case"
|
|
1326
|
+
version = "1.0.1"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "indexmap"
|
|
1332
|
+
version = "2.13.0"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"equivalent",
|
|
1337
|
+
"hashbrown 0.16.1",
|
|
1338
|
+
"serde",
|
|
1339
|
+
"serde_core",
|
|
1340
|
+
]
|
|
1341
|
+
|
|
1342
|
+
[[package]]
|
|
1343
|
+
name = "inferno"
|
|
1344
|
+
version = "0.11.21"
|
|
1345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
+
checksum = "232929e1d75fe899576a3d5c7416ad0d88dbfbb3c3d6aa00873a7408a50ddb88"
|
|
1347
|
+
dependencies = [
|
|
1348
|
+
"ahash",
|
|
1349
|
+
"indexmap",
|
|
1350
|
+
"is-terminal",
|
|
1351
|
+
"itoa",
|
|
1352
|
+
"log",
|
|
1353
|
+
"num-format",
|
|
1354
|
+
"once_cell",
|
|
1355
|
+
"quick-xml",
|
|
1356
|
+
"rgb",
|
|
1357
|
+
"str_stack",
|
|
1358
|
+
]
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "inout"
|
|
1362
|
+
version = "0.1.4"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"generic-array",
|
|
1367
|
+
]
|
|
1368
|
+
|
|
1369
|
+
[[package]]
|
|
1370
|
+
name = "interpolator"
|
|
1371
|
+
version = "0.5.0"
|
|
1372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1373
|
+
checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
|
|
1374
|
+
|
|
1375
|
+
[[package]]
|
|
1376
|
+
name = "intrusive-collections"
|
|
1377
|
+
version = "0.9.7"
|
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
+
checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
|
|
1380
|
+
dependencies = [
|
|
1381
|
+
"memoffset",
|
|
1382
|
+
]
|
|
1383
|
+
|
|
1384
|
+
[[package]]
|
|
1385
|
+
name = "inventory"
|
|
1386
|
+
version = "0.3.21"
|
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
+
checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
|
|
1389
|
+
dependencies = [
|
|
1390
|
+
"rustversion",
|
|
1391
|
+
]
|
|
1392
|
+
|
|
1393
|
+
[[package]]
|
|
1394
|
+
name = "is-macro"
|
|
1395
|
+
version = "0.3.7"
|
|
1396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
+
checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
|
|
1398
|
+
dependencies = [
|
|
1399
|
+
"heck",
|
|
1400
|
+
"proc-macro2",
|
|
1401
|
+
"quote",
|
|
1402
|
+
"syn",
|
|
1403
|
+
]
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "is-terminal"
|
|
1407
|
+
version = "0.4.17"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"hermit-abi",
|
|
1412
|
+
"libc",
|
|
1413
|
+
"windows-sys 0.61.2",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "is_executable"
|
|
1418
|
+
version = "1.0.5"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "baabb8b4867b26294d818bf3f651a454b6901431711abb96e296245888d6e8c4"
|
|
1421
|
+
dependencies = [
|
|
1422
|
+
"windows-sys 0.60.2",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "is_terminal_polyfill"
|
|
1427
|
+
version = "1.70.2"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "itertools"
|
|
1433
|
+
version = "0.10.5"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"either",
|
|
1438
|
+
]
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "itertools"
|
|
1442
|
+
version = "0.14.0"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"either",
|
|
1447
|
+
]
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "itoa"
|
|
1451
|
+
version = "1.0.17"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
1454
|
+
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "jobserver"
|
|
1457
|
+
version = "0.1.34"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1460
|
+
dependencies = [
|
|
1461
|
+
"getrandom 0.3.4",
|
|
1462
|
+
"libc",
|
|
1463
|
+
]
|
|
1464
|
+
|
|
1465
|
+
[[package]]
|
|
1466
|
+
name = "js-sys"
|
|
1467
|
+
version = "0.3.83"
|
|
1468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
1470
|
+
dependencies = [
|
|
1471
|
+
"once_cell",
|
|
1472
|
+
"wasm-bindgen",
|
|
1473
|
+
]
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "lazy_static"
|
|
1477
|
+
version = "1.5.0"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1480
|
+
|
|
1481
|
+
[[package]]
|
|
1482
|
+
name = "libc"
|
|
1483
|
+
version = "0.2.180"
|
|
1484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
1486
|
+
|
|
1487
|
+
[[package]]
|
|
1488
|
+
name = "libfuzzer-sys"
|
|
1489
|
+
version = "0.4.10"
|
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
+
checksum = "5037190e1f70cbeef565bd267599242926f724d3b8a9f510fd7e0b540cfa4404"
|
|
1492
|
+
dependencies = [
|
|
1493
|
+
"arbitrary",
|
|
1494
|
+
"cc",
|
|
1495
|
+
]
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "libloading"
|
|
1499
|
+
version = "0.9.0"
|
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
+
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
|
|
1502
|
+
dependencies = [
|
|
1503
|
+
"cfg-if",
|
|
1504
|
+
"windows-link",
|
|
1505
|
+
]
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "libm"
|
|
1509
|
+
version = "0.2.16"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1512
|
+
|
|
1513
|
+
[[package]]
|
|
1514
|
+
name = "libredox"
|
|
1515
|
+
version = "0.1.12"
|
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
1518
|
+
dependencies = [
|
|
1519
|
+
"bitflags 2.10.0",
|
|
1520
|
+
"libc",
|
|
1521
|
+
"redox_syscall 0.7.0",
|
|
1522
|
+
]
|
|
1523
|
+
|
|
1524
|
+
[[package]]
|
|
1525
|
+
name = "libtest-mimic"
|
|
1526
|
+
version = "0.8.1"
|
|
1527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
+
checksum = "5297962ef19edda4ce33aaa484386e0a5b3d7f2f4e037cbeee00503ef6b29d33"
|
|
1529
|
+
dependencies = [
|
|
1530
|
+
"anstream",
|
|
1531
|
+
"anstyle",
|
|
1532
|
+
"clap",
|
|
1533
|
+
"escape8259",
|
|
1534
|
+
]
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "linux-raw-sys"
|
|
1538
|
+
version = "0.11.0"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "lock_api"
|
|
1544
|
+
version = "0.4.14"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1547
|
+
dependencies = [
|
|
1548
|
+
"scopeguard",
|
|
1549
|
+
]
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "log"
|
|
1553
|
+
version = "0.4.29"
|
|
1554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1556
|
+
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "manyhow"
|
|
1559
|
+
version = "0.11.4"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
|
|
1562
|
+
dependencies = [
|
|
1563
|
+
"manyhow-macros",
|
|
1564
|
+
"proc-macro2",
|
|
1565
|
+
"quote",
|
|
1566
|
+
"syn",
|
|
1567
|
+
]
|
|
1568
|
+
|
|
1569
|
+
[[package]]
|
|
1570
|
+
name = "manyhow-macros"
|
|
1571
|
+
version = "0.11.4"
|
|
1572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
+
checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
|
|
1574
|
+
dependencies = [
|
|
1575
|
+
"proc-macro-utils",
|
|
1576
|
+
"proc-macro2",
|
|
1577
|
+
"quote",
|
|
1578
|
+
]
|
|
1579
|
+
|
|
1580
|
+
[[package]]
|
|
1581
|
+
name = "matches"
|
|
1582
|
+
version = "0.1.10"
|
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
+
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
|
1585
|
+
|
|
1586
|
+
[[package]]
|
|
1587
|
+
name = "matchit"
|
|
1588
|
+
version = "0.9.1"
|
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
+
checksum = "b3eede3bdf92f3b4f9dc04072a9ce5ab557d5ec9038773bf9ffcd5588b3cc05b"
|
|
1591
|
+
|
|
1592
|
+
[[package]]
|
|
1593
|
+
name = "memchr"
|
|
1594
|
+
version = "2.7.6"
|
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
1597
|
+
|
|
1598
|
+
[[package]]
|
|
1599
|
+
name = "memmap2"
|
|
1600
|
+
version = "0.9.9"
|
|
1601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1602
|
+
checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
|
|
1603
|
+
dependencies = [
|
|
1604
|
+
"libc",
|
|
1605
|
+
]
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "memoffset"
|
|
1609
|
+
version = "0.9.1"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1612
|
+
dependencies = [
|
|
1613
|
+
"autocfg",
|
|
1614
|
+
]
|
|
1615
|
+
|
|
1616
|
+
[[package]]
|
|
1617
|
+
name = "miniz_oxide"
|
|
1618
|
+
version = "0.8.9"
|
|
1619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1621
|
+
dependencies = [
|
|
1622
|
+
"adler2",
|
|
1623
|
+
"simd-adler32",
|
|
1624
|
+
]
|
|
1625
|
+
|
|
1626
|
+
[[package]]
|
|
1627
|
+
name = "monty"
|
|
1628
|
+
version = "0.0.8"
|
|
1629
|
+
dependencies = [
|
|
1630
|
+
"ahash",
|
|
1631
|
+
"codspeed-criterion-compat",
|
|
1632
|
+
"criterion",
|
|
1633
|
+
"datatest-stable",
|
|
1634
|
+
"fancy-regex 0.17.0",
|
|
1635
|
+
"hashbrown 0.16.1",
|
|
1636
|
+
"indexmap",
|
|
1637
|
+
"itertools 0.14.0",
|
|
1638
|
+
"libm",
|
|
1639
|
+
"num-bigint",
|
|
1640
|
+
"num-integer",
|
|
1641
|
+
"num-traits",
|
|
1642
|
+
"postcard",
|
|
1643
|
+
"pprof",
|
|
1644
|
+
"pyo3",
|
|
1645
|
+
"pyo3-build-config",
|
|
1646
|
+
"ruff_python_ast",
|
|
1647
|
+
"ruff_python_parser",
|
|
1648
|
+
"ruff_text_size",
|
|
1649
|
+
"serde",
|
|
1650
|
+
"serde_json",
|
|
1651
|
+
"similar",
|
|
1652
|
+
"smallvec",
|
|
1653
|
+
"strum",
|
|
1654
|
+
]
|
|
1655
|
+
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "monty-cli"
|
|
1658
|
+
version = "0.0.8"
|
|
1659
|
+
dependencies = [
|
|
1660
|
+
"clap",
|
|
1661
|
+
"monty",
|
|
1662
|
+
"monty_type_checking",
|
|
1663
|
+
"rustyline",
|
|
1664
|
+
]
|
|
1665
|
+
|
|
1666
|
+
[[package]]
|
|
1667
|
+
name = "monty-fuzz"
|
|
1668
|
+
version = "0.0.8"
|
|
1669
|
+
dependencies = [
|
|
1670
|
+
"arbitrary",
|
|
1671
|
+
"libfuzzer-sys",
|
|
1672
|
+
"monty",
|
|
1673
|
+
]
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "monty-js"
|
|
1677
|
+
version = "0.0.8"
|
|
1678
|
+
dependencies = [
|
|
1679
|
+
"monty",
|
|
1680
|
+
"monty_type_checking",
|
|
1681
|
+
"napi",
|
|
1682
|
+
"napi-build",
|
|
1683
|
+
"napi-derive",
|
|
1684
|
+
"num-bigint",
|
|
1685
|
+
"postcard",
|
|
1686
|
+
"serde",
|
|
1687
|
+
]
|
|
1688
|
+
|
|
1689
|
+
[[package]]
|
|
1690
|
+
name = "monty_type_checking"
|
|
1691
|
+
version = "0.0.8"
|
|
1692
|
+
dependencies = [
|
|
1693
|
+
"monty_typeshed",
|
|
1694
|
+
"pretty_assertions",
|
|
1695
|
+
"ruff_db",
|
|
1696
|
+
"ruff_python_ast",
|
|
1697
|
+
"ruff_text_size",
|
|
1698
|
+
"salsa",
|
|
1699
|
+
"ty_module_resolver",
|
|
1700
|
+
"ty_python_semantic",
|
|
1701
|
+
]
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "monty_typeshed"
|
|
1705
|
+
version = "0.0.8"
|
|
1706
|
+
dependencies = [
|
|
1707
|
+
"path-slash",
|
|
1708
|
+
"ruff_db",
|
|
1709
|
+
"walkdir",
|
|
1710
|
+
"zip",
|
|
1711
|
+
]
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "napi"
|
|
1715
|
+
version = "3.8.2"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "909805cbad4d569e69b80e101290fe72e92b9742ba9e333b0c1e83b22fb7447b"
|
|
1718
|
+
dependencies = [
|
|
1719
|
+
"bitflags 2.10.0",
|
|
1720
|
+
"ctor",
|
|
1721
|
+
"futures",
|
|
1722
|
+
"napi-build",
|
|
1723
|
+
"napi-sys",
|
|
1724
|
+
"nohash-hasher",
|
|
1725
|
+
"rustc-hash",
|
|
1726
|
+
]
|
|
1727
|
+
|
|
1728
|
+
[[package]]
|
|
1729
|
+
name = "napi-build"
|
|
1730
|
+
version = "2.3.1"
|
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
+
checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
1733
|
+
|
|
1734
|
+
[[package]]
|
|
1735
|
+
name = "napi-derive"
|
|
1736
|
+
version = "3.5.1"
|
|
1737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1738
|
+
checksum = "04ba21bbdf40b33496b4ee6eadfc64d17a6a6cde57cd31549117b0882d1fef86"
|
|
1739
|
+
dependencies = [
|
|
1740
|
+
"convert_case",
|
|
1741
|
+
"ctor",
|
|
1742
|
+
"napi-derive-backend",
|
|
1743
|
+
"proc-macro2",
|
|
1744
|
+
"quote",
|
|
1745
|
+
"syn",
|
|
1746
|
+
]
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "napi-derive-backend"
|
|
1750
|
+
version = "5.0.1"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "e9a63791e230572c3218a7acd86ca0a0529fc64294bcbea567cf906d7b04e077"
|
|
1753
|
+
dependencies = [
|
|
1754
|
+
"convert_case",
|
|
1755
|
+
"proc-macro2",
|
|
1756
|
+
"quote",
|
|
1757
|
+
"semver",
|
|
1758
|
+
"syn",
|
|
1759
|
+
]
|
|
1760
|
+
|
|
1761
|
+
[[package]]
|
|
1762
|
+
name = "napi-sys"
|
|
1763
|
+
version = "3.2.1"
|
|
1764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
+
checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
|
|
1766
|
+
dependencies = [
|
|
1767
|
+
"libloading",
|
|
1768
|
+
]
|
|
1769
|
+
|
|
1770
|
+
[[package]]
|
|
1771
|
+
name = "nibble_vec"
|
|
1772
|
+
version = "0.1.0"
|
|
1773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
|
+
checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
|
|
1775
|
+
dependencies = [
|
|
1776
|
+
"smallvec",
|
|
1777
|
+
]
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "nix"
|
|
1781
|
+
version = "0.26.4"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
|
|
1784
|
+
dependencies = [
|
|
1785
|
+
"bitflags 1.3.2",
|
|
1786
|
+
"cfg-if",
|
|
1787
|
+
"libc",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "nix"
|
|
1792
|
+
version = "0.29.0"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
|
|
1795
|
+
dependencies = [
|
|
1796
|
+
"bitflags 2.10.0",
|
|
1797
|
+
"cfg-if",
|
|
1798
|
+
"cfg_aliases",
|
|
1799
|
+
"libc",
|
|
1800
|
+
]
|
|
1801
|
+
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "nix"
|
|
1804
|
+
version = "0.30.1"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
|
|
1807
|
+
dependencies = [
|
|
1808
|
+
"bitflags 2.10.0",
|
|
1809
|
+
"cfg-if",
|
|
1810
|
+
"cfg_aliases",
|
|
1811
|
+
"libc",
|
|
1812
|
+
]
|
|
1813
|
+
|
|
1814
|
+
[[package]]
|
|
1815
|
+
name = "nohash-hasher"
|
|
1816
|
+
version = "0.2.0"
|
|
1817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1818
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
1819
|
+
|
|
1820
|
+
[[package]]
|
|
1821
|
+
name = "num-bigint"
|
|
1822
|
+
version = "0.4.6"
|
|
1823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1825
|
+
dependencies = [
|
|
1826
|
+
"num-integer",
|
|
1827
|
+
"num-traits",
|
|
1828
|
+
"serde",
|
|
1829
|
+
]
|
|
1830
|
+
|
|
1831
|
+
[[package]]
|
|
1832
|
+
name = "num-conv"
|
|
1833
|
+
version = "0.1.0"
|
|
1834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "num-format"
|
|
1839
|
+
version = "0.4.4"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
|
|
1842
|
+
dependencies = [
|
|
1843
|
+
"arrayvec",
|
|
1844
|
+
"itoa",
|
|
1845
|
+
]
|
|
1846
|
+
|
|
1847
|
+
[[package]]
|
|
1848
|
+
name = "num-integer"
|
|
1849
|
+
version = "0.1.46"
|
|
1850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1852
|
+
dependencies = [
|
|
1853
|
+
"num-traits",
|
|
1854
|
+
]
|
|
1855
|
+
|
|
1856
|
+
[[package]]
|
|
1857
|
+
name = "num-traits"
|
|
1858
|
+
version = "0.2.19"
|
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1861
|
+
dependencies = [
|
|
1862
|
+
"autocfg",
|
|
1863
|
+
]
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "object"
|
|
1867
|
+
version = "0.37.3"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"memchr",
|
|
1872
|
+
]
|
|
1873
|
+
|
|
1874
|
+
[[package]]
|
|
1875
|
+
name = "once_cell"
|
|
1876
|
+
version = "1.21.3"
|
|
1877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1878
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1879
|
+
|
|
1880
|
+
[[package]]
|
|
1881
|
+
name = "once_cell_polyfill"
|
|
1882
|
+
version = "1.70.2"
|
|
1883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "oorandom"
|
|
1888
|
+
version = "11.1.5"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1891
|
+
|
|
1892
|
+
[[package]]
|
|
1893
|
+
name = "ordermap"
|
|
1894
|
+
version = "1.1.0"
|
|
1895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
+
checksum = "cfa78c92071bbd3628c22b1a964f7e0eb201dc1456555db072beb1662ecd6715"
|
|
1897
|
+
dependencies = [
|
|
1898
|
+
"indexmap",
|
|
1899
|
+
]
|
|
1900
|
+
|
|
1901
|
+
[[package]]
|
|
1902
|
+
name = "parking_lot"
|
|
1903
|
+
version = "0.12.5"
|
|
1904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1906
|
+
dependencies = [
|
|
1907
|
+
"lock_api",
|
|
1908
|
+
"parking_lot_core",
|
|
1909
|
+
]
|
|
1910
|
+
|
|
1911
|
+
[[package]]
|
|
1912
|
+
name = "parking_lot_core"
|
|
1913
|
+
version = "0.9.12"
|
|
1914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1916
|
+
dependencies = [
|
|
1917
|
+
"cfg-if",
|
|
1918
|
+
"libc",
|
|
1919
|
+
"redox_syscall 0.5.18",
|
|
1920
|
+
"smallvec",
|
|
1921
|
+
"windows-link",
|
|
1922
|
+
]
|
|
1923
|
+
|
|
1924
|
+
[[package]]
|
|
1925
|
+
name = "password-hash"
|
|
1926
|
+
version = "0.4.2"
|
|
1927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
+
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
|
|
1929
|
+
dependencies = [
|
|
1930
|
+
"base64ct",
|
|
1931
|
+
"rand_core 0.6.4",
|
|
1932
|
+
"subtle",
|
|
1933
|
+
]
|
|
1934
|
+
|
|
1935
|
+
[[package]]
|
|
1936
|
+
name = "path-slash"
|
|
1937
|
+
version = "0.2.1"
|
|
1938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
+
checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
|
|
1940
|
+
|
|
1941
|
+
[[package]]
|
|
1942
|
+
name = "pathdiff"
|
|
1943
|
+
version = "0.2.3"
|
|
1944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1945
|
+
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
1946
|
+
|
|
1947
|
+
[[package]]
|
|
1948
|
+
name = "pbkdf2"
|
|
1949
|
+
version = "0.11.0"
|
|
1950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1951
|
+
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
|
|
1952
|
+
dependencies = [
|
|
1953
|
+
"digest",
|
|
1954
|
+
"hmac",
|
|
1955
|
+
"password-hash",
|
|
1956
|
+
"sha2",
|
|
1957
|
+
]
|
|
1958
|
+
|
|
1959
|
+
[[package]]
|
|
1960
|
+
name = "phf"
|
|
1961
|
+
version = "0.11.3"
|
|
1962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1963
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
1964
|
+
dependencies = [
|
|
1965
|
+
"phf_shared",
|
|
1966
|
+
]
|
|
1967
|
+
|
|
1968
|
+
[[package]]
|
|
1969
|
+
name = "phf_codegen"
|
|
1970
|
+
version = "0.11.3"
|
|
1971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
1973
|
+
dependencies = [
|
|
1974
|
+
"phf_generator",
|
|
1975
|
+
"phf_shared",
|
|
1976
|
+
]
|
|
1977
|
+
|
|
1978
|
+
[[package]]
|
|
1979
|
+
name = "phf_generator"
|
|
1980
|
+
version = "0.11.3"
|
|
1981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
1983
|
+
dependencies = [
|
|
1984
|
+
"phf_shared",
|
|
1985
|
+
"rand 0.8.5",
|
|
1986
|
+
]
|
|
1987
|
+
|
|
1988
|
+
[[package]]
|
|
1989
|
+
name = "phf_shared"
|
|
1990
|
+
version = "0.11.3"
|
|
1991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
1993
|
+
dependencies = [
|
|
1994
|
+
"siphasher",
|
|
1995
|
+
]
|
|
1996
|
+
|
|
1997
|
+
[[package]]
|
|
1998
|
+
name = "pin-project-lite"
|
|
1999
|
+
version = "0.2.16"
|
|
2000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2002
|
+
|
|
2003
|
+
[[package]]
|
|
2004
|
+
name = "pin-utils"
|
|
2005
|
+
version = "0.1.0"
|
|
2006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2007
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2008
|
+
|
|
2009
|
+
[[package]]
|
|
2010
|
+
name = "pkg-config"
|
|
2011
|
+
version = "0.3.32"
|
|
2012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2013
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2014
|
+
|
|
2015
|
+
[[package]]
|
|
2016
|
+
name = "plotters"
|
|
2017
|
+
version = "0.3.7"
|
|
2018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
2020
|
+
dependencies = [
|
|
2021
|
+
"num-traits",
|
|
2022
|
+
"plotters-backend",
|
|
2023
|
+
"plotters-svg",
|
|
2024
|
+
"wasm-bindgen",
|
|
2025
|
+
"web-sys",
|
|
2026
|
+
]
|
|
2027
|
+
|
|
2028
|
+
[[package]]
|
|
2029
|
+
name = "plotters-backend"
|
|
2030
|
+
version = "0.3.7"
|
|
2031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
2033
|
+
|
|
2034
|
+
[[package]]
|
|
2035
|
+
name = "plotters-svg"
|
|
2036
|
+
version = "0.3.7"
|
|
2037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
2039
|
+
dependencies = [
|
|
2040
|
+
"plotters-backend",
|
|
2041
|
+
]
|
|
2042
|
+
|
|
2043
|
+
[[package]]
|
|
2044
|
+
name = "portable-atomic"
|
|
2045
|
+
version = "1.13.0"
|
|
2046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2047
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
2048
|
+
|
|
2049
|
+
[[package]]
|
|
2050
|
+
name = "postcard"
|
|
2051
|
+
version = "1.1.3"
|
|
2052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
2054
|
+
dependencies = [
|
|
2055
|
+
"cobs",
|
|
2056
|
+
"embedded-io 0.4.0",
|
|
2057
|
+
"embedded-io 0.6.1",
|
|
2058
|
+
"heapless",
|
|
2059
|
+
"serde",
|
|
2060
|
+
]
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "powerfmt"
|
|
2064
|
+
version = "0.2.0"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
2067
|
+
|
|
2068
|
+
[[package]]
|
|
2069
|
+
name = "pprof"
|
|
2070
|
+
version = "0.15.0"
|
|
2071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2072
|
+
checksum = "38a01da47675efa7673b032bf8efd8214f1917d89685e07e395ab125ea42b187"
|
|
2073
|
+
dependencies = [
|
|
2074
|
+
"aligned-vec",
|
|
2075
|
+
"backtrace",
|
|
2076
|
+
"cfg-if",
|
|
2077
|
+
"criterion",
|
|
2078
|
+
"findshlibs",
|
|
2079
|
+
"inferno",
|
|
2080
|
+
"libc",
|
|
2081
|
+
"log",
|
|
2082
|
+
"nix 0.26.4",
|
|
2083
|
+
"once_cell",
|
|
2084
|
+
"smallvec",
|
|
2085
|
+
"spin 0.10.0",
|
|
2086
|
+
"symbolic-demangle",
|
|
2087
|
+
"tempfile",
|
|
2088
|
+
"thiserror",
|
|
2089
|
+
]
|
|
2090
|
+
|
|
2091
|
+
[[package]]
|
|
2092
|
+
name = "ppv-lite86"
|
|
2093
|
+
version = "0.2.21"
|
|
2094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2096
|
+
dependencies = [
|
|
2097
|
+
"zerocopy",
|
|
2098
|
+
]
|
|
2099
|
+
|
|
2100
|
+
[[package]]
|
|
2101
|
+
name = "pretty_assertions"
|
|
2102
|
+
version = "1.4.1"
|
|
2103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
2105
|
+
dependencies = [
|
|
2106
|
+
"diff",
|
|
2107
|
+
"yansi",
|
|
2108
|
+
]
|
|
2109
|
+
|
|
2110
|
+
[[package]]
|
|
2111
|
+
name = "proc-macro-utils"
|
|
2112
|
+
version = "0.10.0"
|
|
2113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2114
|
+
checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
|
|
2115
|
+
dependencies = [
|
|
2116
|
+
"proc-macro2",
|
|
2117
|
+
"quote",
|
|
2118
|
+
"smallvec",
|
|
2119
|
+
]
|
|
2120
|
+
|
|
2121
|
+
[[package]]
|
|
2122
|
+
name = "proc-macro2"
|
|
2123
|
+
version = "1.0.105"
|
|
2124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
+
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
2126
|
+
dependencies = [
|
|
2127
|
+
"unicode-ident",
|
|
2128
|
+
]
|
|
2129
|
+
|
|
2130
|
+
[[package]]
|
|
2131
|
+
name = "pydantic-monty"
|
|
2132
|
+
version = "0.0.8"
|
|
2133
|
+
dependencies = [
|
|
2134
|
+
"indexmap",
|
|
2135
|
+
"monty",
|
|
2136
|
+
"monty_type_checking",
|
|
2137
|
+
"num-bigint",
|
|
2138
|
+
"postcard",
|
|
2139
|
+
"pyo3",
|
|
2140
|
+
"pyo3-build-config",
|
|
2141
|
+
"send_wrapper",
|
|
2142
|
+
"serde",
|
|
2143
|
+
"sha2",
|
|
2144
|
+
]
|
|
2145
|
+
|
|
2146
|
+
[[package]]
|
|
2147
|
+
name = "pyo3"
|
|
2148
|
+
version = "0.28.0"
|
|
2149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2150
|
+
checksum = "fcf3ccafdf54c050be48a3a086d372f77ba6615f5057211607cd30e5ac5cec6d"
|
|
2151
|
+
dependencies = [
|
|
2152
|
+
"indexmap",
|
|
2153
|
+
"libc",
|
|
2154
|
+
"num-bigint",
|
|
2155
|
+
"num-traits",
|
|
2156
|
+
"once_cell",
|
|
2157
|
+
"portable-atomic",
|
|
2158
|
+
"pyo3-build-config",
|
|
2159
|
+
"pyo3-ffi",
|
|
2160
|
+
"pyo3-macros",
|
|
2161
|
+
]
|
|
2162
|
+
|
|
2163
|
+
[[package]]
|
|
2164
|
+
name = "pyo3-build-config"
|
|
2165
|
+
version = "0.28.0"
|
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
+
checksum = "972720a441c91fd9c49f212a1d2d74c6e3803b231ebc8d66c51efbd7ccab11c8"
|
|
2168
|
+
dependencies = [
|
|
2169
|
+
"python3-dll-a",
|
|
2170
|
+
"target-lexicon",
|
|
2171
|
+
]
|
|
2172
|
+
|
|
2173
|
+
[[package]]
|
|
2174
|
+
name = "pyo3-ffi"
|
|
2175
|
+
version = "0.28.0"
|
|
2176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2177
|
+
checksum = "5994456d9dab8934d600d3867571b6410f24fbd6002570ad56356733eb54859b"
|
|
2178
|
+
dependencies = [
|
|
2179
|
+
"libc",
|
|
2180
|
+
"pyo3-build-config",
|
|
2181
|
+
]
|
|
2182
|
+
|
|
2183
|
+
[[package]]
|
|
2184
|
+
name = "pyo3-macros"
|
|
2185
|
+
version = "0.28.0"
|
|
2186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2187
|
+
checksum = "11ce9cc8d81b3c4969748807604d92b4eef363c5bb82b1a1bdb34ec6f1093a18"
|
|
2188
|
+
dependencies = [
|
|
2189
|
+
"proc-macro2",
|
|
2190
|
+
"pyo3-macros-backend",
|
|
2191
|
+
"quote",
|
|
2192
|
+
"syn",
|
|
2193
|
+
]
|
|
2194
|
+
|
|
2195
|
+
[[package]]
|
|
2196
|
+
name = "pyo3-macros-backend"
|
|
2197
|
+
version = "0.28.0"
|
|
2198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2199
|
+
checksum = "eaf4b60036a154d23282679b658e3cc7d88d3b8c9a40b43824785f232d2e1b98"
|
|
2200
|
+
dependencies = [
|
|
2201
|
+
"heck",
|
|
2202
|
+
"proc-macro2",
|
|
2203
|
+
"pyo3-build-config",
|
|
2204
|
+
"quote",
|
|
2205
|
+
"syn",
|
|
2206
|
+
]
|
|
2207
|
+
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "python3-dll-a"
|
|
2210
|
+
version = "0.2.14"
|
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
+
checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
|
|
2213
|
+
dependencies = [
|
|
2214
|
+
"cc",
|
|
2215
|
+
]
|
|
2216
|
+
|
|
2217
|
+
[[package]]
|
|
2218
|
+
name = "quick-xml"
|
|
2219
|
+
version = "0.26.0"
|
|
2220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2221
|
+
checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
|
|
2222
|
+
dependencies = [
|
|
2223
|
+
"memchr",
|
|
2224
|
+
]
|
|
2225
|
+
|
|
2226
|
+
[[package]]
|
|
2227
|
+
name = "quote"
|
|
2228
|
+
version = "1.0.43"
|
|
2229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2230
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
2231
|
+
dependencies = [
|
|
2232
|
+
"proc-macro2",
|
|
2233
|
+
]
|
|
2234
|
+
|
|
2235
|
+
[[package]]
|
|
2236
|
+
name = "quote-use"
|
|
2237
|
+
version = "0.8.4"
|
|
2238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2239
|
+
checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
|
|
2240
|
+
dependencies = [
|
|
2241
|
+
"quote",
|
|
2242
|
+
"quote-use-macros",
|
|
2243
|
+
]
|
|
2244
|
+
|
|
2245
|
+
[[package]]
|
|
2246
|
+
name = "quote-use-macros"
|
|
2247
|
+
version = "0.8.4"
|
|
2248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2249
|
+
checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
|
|
2250
|
+
dependencies = [
|
|
2251
|
+
"proc-macro-utils",
|
|
2252
|
+
"proc-macro2",
|
|
2253
|
+
"quote",
|
|
2254
|
+
"syn",
|
|
2255
|
+
]
|
|
2256
|
+
|
|
2257
|
+
[[package]]
|
|
2258
|
+
name = "r-efi"
|
|
2259
|
+
version = "5.3.0"
|
|
2260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2262
|
+
|
|
2263
|
+
[[package]]
|
|
2264
|
+
name = "radium"
|
|
2265
|
+
version = "0.7.0"
|
|
2266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2267
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
2268
|
+
|
|
2269
|
+
[[package]]
|
|
2270
|
+
name = "radix_trie"
|
|
2271
|
+
version = "0.2.1"
|
|
2272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2273
|
+
checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
|
|
2274
|
+
dependencies = [
|
|
2275
|
+
"endian-type",
|
|
2276
|
+
"nibble_vec",
|
|
2277
|
+
]
|
|
2278
|
+
|
|
2279
|
+
[[package]]
|
|
2280
|
+
name = "rand"
|
|
2281
|
+
version = "0.8.5"
|
|
2282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2284
|
+
dependencies = [
|
|
2285
|
+
"libc",
|
|
2286
|
+
"rand_chacha 0.3.1",
|
|
2287
|
+
"rand_core 0.6.4",
|
|
2288
|
+
]
|
|
2289
|
+
|
|
2290
|
+
[[package]]
|
|
2291
|
+
name = "rand"
|
|
2292
|
+
version = "0.9.2"
|
|
2293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2294
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2295
|
+
dependencies = [
|
|
2296
|
+
"rand_chacha 0.9.0",
|
|
2297
|
+
"rand_core 0.9.3",
|
|
2298
|
+
]
|
|
2299
|
+
|
|
2300
|
+
[[package]]
|
|
2301
|
+
name = "rand_chacha"
|
|
2302
|
+
version = "0.3.1"
|
|
2303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2304
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2305
|
+
dependencies = [
|
|
2306
|
+
"ppv-lite86",
|
|
2307
|
+
"rand_core 0.6.4",
|
|
2308
|
+
]
|
|
2309
|
+
|
|
2310
|
+
[[package]]
|
|
2311
|
+
name = "rand_chacha"
|
|
2312
|
+
version = "0.9.0"
|
|
2313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2315
|
+
dependencies = [
|
|
2316
|
+
"ppv-lite86",
|
|
2317
|
+
"rand_core 0.9.3",
|
|
2318
|
+
]
|
|
2319
|
+
|
|
2320
|
+
[[package]]
|
|
2321
|
+
name = "rand_core"
|
|
2322
|
+
version = "0.6.4"
|
|
2323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2324
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2325
|
+
dependencies = [
|
|
2326
|
+
"getrandom 0.2.16",
|
|
2327
|
+
]
|
|
2328
|
+
|
|
2329
|
+
[[package]]
|
|
2330
|
+
name = "rand_core"
|
|
2331
|
+
version = "0.9.3"
|
|
2332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2333
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2334
|
+
dependencies = [
|
|
2335
|
+
"getrandom 0.3.4",
|
|
2336
|
+
]
|
|
2337
|
+
|
|
2338
|
+
[[package]]
|
|
2339
|
+
name = "rayon"
|
|
2340
|
+
version = "1.11.0"
|
|
2341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2342
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
2343
|
+
dependencies = [
|
|
2344
|
+
"either",
|
|
2345
|
+
"rayon-core",
|
|
2346
|
+
]
|
|
2347
|
+
|
|
2348
|
+
[[package]]
|
|
2349
|
+
name = "rayon-core"
|
|
2350
|
+
version = "1.13.0"
|
|
2351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2352
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2353
|
+
dependencies = [
|
|
2354
|
+
"crossbeam-deque",
|
|
2355
|
+
"crossbeam-utils",
|
|
2356
|
+
]
|
|
2357
|
+
|
|
2358
|
+
[[package]]
|
|
2359
|
+
name = "redox_syscall"
|
|
2360
|
+
version = "0.5.18"
|
|
2361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2362
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2363
|
+
dependencies = [
|
|
2364
|
+
"bitflags 2.10.0",
|
|
2365
|
+
]
|
|
2366
|
+
|
|
2367
|
+
[[package]]
|
|
2368
|
+
name = "redox_syscall"
|
|
2369
|
+
version = "0.7.0"
|
|
2370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
+
checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27"
|
|
2372
|
+
dependencies = [
|
|
2373
|
+
"bitflags 2.10.0",
|
|
2374
|
+
]
|
|
2375
|
+
|
|
2376
|
+
[[package]]
|
|
2377
|
+
name = "regex"
|
|
2378
|
+
version = "1.12.3"
|
|
2379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2380
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
2381
|
+
dependencies = [
|
|
2382
|
+
"aho-corasick",
|
|
2383
|
+
"memchr",
|
|
2384
|
+
"regex-automata",
|
|
2385
|
+
"regex-syntax",
|
|
2386
|
+
]
|
|
2387
|
+
|
|
2388
|
+
[[package]]
|
|
2389
|
+
name = "regex-automata"
|
|
2390
|
+
version = "0.4.13"
|
|
2391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
2393
|
+
dependencies = [
|
|
2394
|
+
"aho-corasick",
|
|
2395
|
+
"memchr",
|
|
2396
|
+
"regex-syntax",
|
|
2397
|
+
]
|
|
2398
|
+
|
|
2399
|
+
[[package]]
|
|
2400
|
+
name = "regex-syntax"
|
|
2401
|
+
version = "0.8.8"
|
|
2402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2403
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
2404
|
+
|
|
2405
|
+
[[package]]
|
|
2406
|
+
name = "rgb"
|
|
2407
|
+
version = "0.8.52"
|
|
2408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2409
|
+
checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"
|
|
2410
|
+
dependencies = [
|
|
2411
|
+
"bytemuck",
|
|
2412
|
+
]
|
|
2413
|
+
|
|
2414
|
+
[[package]]
|
|
2415
|
+
name = "ruff_annotate_snippets"
|
|
2416
|
+
version = "0.1.0"
|
|
2417
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2418
|
+
dependencies = [
|
|
2419
|
+
"anstyle",
|
|
2420
|
+
"memchr",
|
|
2421
|
+
"unicode-width",
|
|
2422
|
+
]
|
|
2423
|
+
|
|
2424
|
+
[[package]]
|
|
2425
|
+
name = "ruff_db"
|
|
2426
|
+
version = "0.0.0"
|
|
2427
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2428
|
+
dependencies = [
|
|
2429
|
+
"anstyle",
|
|
2430
|
+
"arc-swap",
|
|
2431
|
+
"camino",
|
|
2432
|
+
"dashmap",
|
|
2433
|
+
"dunce",
|
|
2434
|
+
"filetime",
|
|
2435
|
+
"get-size2",
|
|
2436
|
+
"glob",
|
|
2437
|
+
"is_executable",
|
|
2438
|
+
"matchit",
|
|
2439
|
+
"path-slash",
|
|
2440
|
+
"pathdiff",
|
|
2441
|
+
"ruff_annotate_snippets",
|
|
2442
|
+
"ruff_diagnostics",
|
|
2443
|
+
"ruff_memory_usage",
|
|
2444
|
+
"ruff_notebook",
|
|
2445
|
+
"ruff_python_ast",
|
|
2446
|
+
"ruff_python_parser",
|
|
2447
|
+
"ruff_python_trivia",
|
|
2448
|
+
"ruff_source_file",
|
|
2449
|
+
"ruff_text_size",
|
|
2450
|
+
"rustc-hash",
|
|
2451
|
+
"salsa",
|
|
2452
|
+
"serde",
|
|
2453
|
+
"serde_json",
|
|
2454
|
+
"similar",
|
|
2455
|
+
"supports-hyperlinks",
|
|
2456
|
+
"thiserror",
|
|
2457
|
+
"tracing",
|
|
2458
|
+
"ty_static",
|
|
2459
|
+
"web-time",
|
|
2460
|
+
"which",
|
|
2461
|
+
"zip",
|
|
2462
|
+
]
|
|
2463
|
+
|
|
2464
|
+
[[package]]
|
|
2465
|
+
name = "ruff_diagnostics"
|
|
2466
|
+
version = "0.0.0"
|
|
2467
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2468
|
+
dependencies = [
|
|
2469
|
+
"get-size2",
|
|
2470
|
+
"is-macro",
|
|
2471
|
+
"ruff_text_size",
|
|
2472
|
+
"serde",
|
|
2473
|
+
]
|
|
2474
|
+
|
|
2475
|
+
[[package]]
|
|
2476
|
+
name = "ruff_index"
|
|
2477
|
+
version = "0.0.0"
|
|
2478
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2479
|
+
dependencies = [
|
|
2480
|
+
"get-size2",
|
|
2481
|
+
"ruff_macros",
|
|
2482
|
+
"salsa",
|
|
2483
|
+
]
|
|
2484
|
+
|
|
2485
|
+
[[package]]
|
|
2486
|
+
name = "ruff_macros"
|
|
2487
|
+
version = "0.0.0"
|
|
2488
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2489
|
+
dependencies = [
|
|
2490
|
+
"heck",
|
|
2491
|
+
"itertools 0.14.0",
|
|
2492
|
+
"proc-macro2",
|
|
2493
|
+
"quote",
|
|
2494
|
+
"regex",
|
|
2495
|
+
"ruff_python_trivia",
|
|
2496
|
+
"syn",
|
|
2497
|
+
]
|
|
2498
|
+
|
|
2499
|
+
[[package]]
|
|
2500
|
+
name = "ruff_memory_usage"
|
|
2501
|
+
version = "0.0.0"
|
|
2502
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2503
|
+
dependencies = [
|
|
2504
|
+
"get-size2",
|
|
2505
|
+
]
|
|
2506
|
+
|
|
2507
|
+
[[package]]
|
|
2508
|
+
name = "ruff_notebook"
|
|
2509
|
+
version = "0.0.0"
|
|
2510
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2511
|
+
dependencies = [
|
|
2512
|
+
"anyhow",
|
|
2513
|
+
"itertools 0.14.0",
|
|
2514
|
+
"rand 0.9.2",
|
|
2515
|
+
"ruff_diagnostics",
|
|
2516
|
+
"ruff_source_file",
|
|
2517
|
+
"ruff_text_size",
|
|
2518
|
+
"serde",
|
|
2519
|
+
"serde_json",
|
|
2520
|
+
"serde_with",
|
|
2521
|
+
"thiserror",
|
|
2522
|
+
"uuid",
|
|
2523
|
+
]
|
|
2524
|
+
|
|
2525
|
+
[[package]]
|
|
2526
|
+
name = "ruff_python_ast"
|
|
2527
|
+
version = "0.0.0"
|
|
2528
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2529
|
+
dependencies = [
|
|
2530
|
+
"aho-corasick",
|
|
2531
|
+
"bitflags 2.10.0",
|
|
2532
|
+
"compact_str",
|
|
2533
|
+
"get-size2",
|
|
2534
|
+
"is-macro",
|
|
2535
|
+
"memchr",
|
|
2536
|
+
"ruff_python_trivia",
|
|
2537
|
+
"ruff_source_file",
|
|
2538
|
+
"ruff_text_size",
|
|
2539
|
+
"rustc-hash",
|
|
2540
|
+
"salsa",
|
|
2541
|
+
"thiserror",
|
|
2542
|
+
]
|
|
2543
|
+
|
|
2544
|
+
[[package]]
|
|
2545
|
+
name = "ruff_python_literal"
|
|
2546
|
+
version = "0.0.0"
|
|
2547
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2548
|
+
dependencies = [
|
|
2549
|
+
"bitflags 2.10.0",
|
|
2550
|
+
"itertools 0.14.0",
|
|
2551
|
+
"ruff_python_ast",
|
|
2552
|
+
"unic-ucd-category",
|
|
2553
|
+
]
|
|
2554
|
+
|
|
2555
|
+
[[package]]
|
|
2556
|
+
name = "ruff_python_parser"
|
|
2557
|
+
version = "0.0.0"
|
|
2558
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2559
|
+
dependencies = [
|
|
2560
|
+
"bitflags 2.10.0",
|
|
2561
|
+
"bstr",
|
|
2562
|
+
"compact_str",
|
|
2563
|
+
"get-size2",
|
|
2564
|
+
"memchr",
|
|
2565
|
+
"ruff_python_ast",
|
|
2566
|
+
"ruff_python_trivia",
|
|
2567
|
+
"ruff_text_size",
|
|
2568
|
+
"rustc-hash",
|
|
2569
|
+
"static_assertions",
|
|
2570
|
+
"unicode-ident",
|
|
2571
|
+
"unicode-normalization",
|
|
2572
|
+
"unicode_names2",
|
|
2573
|
+
]
|
|
2574
|
+
|
|
2575
|
+
[[package]]
|
|
2576
|
+
name = "ruff_python_stdlib"
|
|
2577
|
+
version = "0.0.0"
|
|
2578
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2579
|
+
dependencies = [
|
|
2580
|
+
"bitflags 2.10.0",
|
|
2581
|
+
"unicode-ident",
|
|
2582
|
+
]
|
|
2583
|
+
|
|
2584
|
+
[[package]]
|
|
2585
|
+
name = "ruff_python_trivia"
|
|
2586
|
+
version = "0.0.0"
|
|
2587
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2588
|
+
dependencies = [
|
|
2589
|
+
"itertools 0.14.0",
|
|
2590
|
+
"ruff_source_file",
|
|
2591
|
+
"ruff_text_size",
|
|
2592
|
+
"unicode-ident",
|
|
2593
|
+
]
|
|
2594
|
+
|
|
2595
|
+
[[package]]
|
|
2596
|
+
name = "ruff_source_file"
|
|
2597
|
+
version = "0.0.0"
|
|
2598
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2599
|
+
dependencies = [
|
|
2600
|
+
"get-size2",
|
|
2601
|
+
"memchr",
|
|
2602
|
+
"ruff_text_size",
|
|
2603
|
+
"serde",
|
|
2604
|
+
]
|
|
2605
|
+
|
|
2606
|
+
[[package]]
|
|
2607
|
+
name = "ruff_text_size"
|
|
2608
|
+
version = "0.0.0"
|
|
2609
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
2610
|
+
dependencies = [
|
|
2611
|
+
"get-size2",
|
|
2612
|
+
"serde",
|
|
2613
|
+
]
|
|
2614
|
+
|
|
2615
|
+
[[package]]
|
|
2616
|
+
name = "rustc-demangle"
|
|
2617
|
+
version = "0.1.26"
|
|
2618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2619
|
+
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
|
|
2620
|
+
|
|
2621
|
+
[[package]]
|
|
2622
|
+
name = "rustc-hash"
|
|
2623
|
+
version = "2.1.1"
|
|
2624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2626
|
+
|
|
2627
|
+
[[package]]
|
|
2628
|
+
name = "rustc_version"
|
|
2629
|
+
version = "0.4.1"
|
|
2630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2632
|
+
dependencies = [
|
|
2633
|
+
"semver",
|
|
2634
|
+
]
|
|
2635
|
+
|
|
2636
|
+
[[package]]
|
|
2637
|
+
name = "rustix"
|
|
2638
|
+
version = "1.1.3"
|
|
2639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
2641
|
+
dependencies = [
|
|
2642
|
+
"bitflags 2.10.0",
|
|
2643
|
+
"errno",
|
|
2644
|
+
"libc",
|
|
2645
|
+
"linux-raw-sys",
|
|
2646
|
+
"windows-sys 0.61.2",
|
|
2647
|
+
]
|
|
2648
|
+
|
|
2649
|
+
[[package]]
|
|
2650
|
+
name = "rustversion"
|
|
2651
|
+
version = "1.0.22"
|
|
2652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2653
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2654
|
+
|
|
2655
|
+
[[package]]
|
|
2656
|
+
name = "rustyline"
|
|
2657
|
+
version = "15.0.0"
|
|
2658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
+
checksum = "2ee1e066dc922e513bda599c6ccb5f3bb2b0ea5870a579448f2622993f0a9a2f"
|
|
2660
|
+
dependencies = [
|
|
2661
|
+
"bitflags 2.10.0",
|
|
2662
|
+
"cfg-if",
|
|
2663
|
+
"clipboard-win",
|
|
2664
|
+
"fd-lock",
|
|
2665
|
+
"home",
|
|
2666
|
+
"libc",
|
|
2667
|
+
"log",
|
|
2668
|
+
"memchr",
|
|
2669
|
+
"nix 0.29.0",
|
|
2670
|
+
"radix_trie",
|
|
2671
|
+
"unicode-segmentation",
|
|
2672
|
+
"unicode-width",
|
|
2673
|
+
"utf8parse",
|
|
2674
|
+
"windows-sys 0.59.0",
|
|
2675
|
+
]
|
|
2676
|
+
|
|
2677
|
+
[[package]]
|
|
2678
|
+
name = "ryu"
|
|
2679
|
+
version = "1.0.22"
|
|
2680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2681
|
+
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
2682
|
+
|
|
2683
|
+
[[package]]
|
|
2684
|
+
name = "salsa"
|
|
2685
|
+
version = "0.26.0"
|
|
2686
|
+
source = "git+https://github.com/salsa-rs/salsa.git?rev=53421c2fff87426fa0bb51cab06632b87646de13#53421c2fff87426fa0bb51cab06632b87646de13"
|
|
2687
|
+
dependencies = [
|
|
2688
|
+
"boxcar",
|
|
2689
|
+
"compact_str",
|
|
2690
|
+
"crossbeam-queue",
|
|
2691
|
+
"crossbeam-utils",
|
|
2692
|
+
"hashbrown 0.15.5",
|
|
2693
|
+
"hashlink",
|
|
2694
|
+
"indexmap",
|
|
2695
|
+
"intrusive-collections",
|
|
2696
|
+
"inventory",
|
|
2697
|
+
"ordermap",
|
|
2698
|
+
"parking_lot",
|
|
2699
|
+
"portable-atomic",
|
|
2700
|
+
"rustc-hash",
|
|
2701
|
+
"salsa-macro-rules",
|
|
2702
|
+
"salsa-macros",
|
|
2703
|
+
"smallvec",
|
|
2704
|
+
"thin-vec",
|
|
2705
|
+
"tracing",
|
|
2706
|
+
]
|
|
2707
|
+
|
|
2708
|
+
[[package]]
|
|
2709
|
+
name = "salsa-macro-rules"
|
|
2710
|
+
version = "0.26.0"
|
|
2711
|
+
source = "git+https://github.com/salsa-rs/salsa.git?rev=53421c2fff87426fa0bb51cab06632b87646de13#53421c2fff87426fa0bb51cab06632b87646de13"
|
|
2712
|
+
|
|
2713
|
+
[[package]]
|
|
2714
|
+
name = "salsa-macros"
|
|
2715
|
+
version = "0.26.0"
|
|
2716
|
+
source = "git+https://github.com/salsa-rs/salsa.git?rev=53421c2fff87426fa0bb51cab06632b87646de13#53421c2fff87426fa0bb51cab06632b87646de13"
|
|
2717
|
+
dependencies = [
|
|
2718
|
+
"proc-macro2",
|
|
2719
|
+
"quote",
|
|
2720
|
+
"syn",
|
|
2721
|
+
"synstructure",
|
|
2722
|
+
]
|
|
2723
|
+
|
|
2724
|
+
[[package]]
|
|
2725
|
+
name = "same-file"
|
|
2726
|
+
version = "1.0.6"
|
|
2727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2728
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2729
|
+
dependencies = [
|
|
2730
|
+
"winapi-util",
|
|
2731
|
+
]
|
|
2732
|
+
|
|
2733
|
+
[[package]]
|
|
2734
|
+
name = "scopeguard"
|
|
2735
|
+
version = "1.2.0"
|
|
2736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2737
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2738
|
+
|
|
2739
|
+
[[package]]
|
|
2740
|
+
name = "semver"
|
|
2741
|
+
version = "1.0.27"
|
|
2742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2743
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2744
|
+
|
|
2745
|
+
[[package]]
|
|
2746
|
+
name = "send_wrapper"
|
|
2747
|
+
version = "0.6.0"
|
|
2748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2749
|
+
checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
|
|
2750
|
+
|
|
2751
|
+
[[package]]
|
|
2752
|
+
name = "serde"
|
|
2753
|
+
version = "1.0.228"
|
|
2754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2755
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2756
|
+
dependencies = [
|
|
2757
|
+
"serde_core",
|
|
2758
|
+
"serde_derive",
|
|
2759
|
+
]
|
|
2760
|
+
|
|
2761
|
+
[[package]]
|
|
2762
|
+
name = "serde_core"
|
|
2763
|
+
version = "1.0.228"
|
|
2764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2765
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2766
|
+
dependencies = [
|
|
2767
|
+
"serde_derive",
|
|
2768
|
+
]
|
|
2769
|
+
|
|
2770
|
+
[[package]]
|
|
2771
|
+
name = "serde_derive"
|
|
2772
|
+
version = "1.0.228"
|
|
2773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2774
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2775
|
+
dependencies = [
|
|
2776
|
+
"proc-macro2",
|
|
2777
|
+
"quote",
|
|
2778
|
+
"syn",
|
|
2779
|
+
]
|
|
2780
|
+
|
|
2781
|
+
[[package]]
|
|
2782
|
+
name = "serde_json"
|
|
2783
|
+
version = "1.0.149"
|
|
2784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2785
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
2786
|
+
dependencies = [
|
|
2787
|
+
"itoa",
|
|
2788
|
+
"memchr",
|
|
2789
|
+
"serde",
|
|
2790
|
+
"serde_core",
|
|
2791
|
+
"zmij",
|
|
2792
|
+
]
|
|
2793
|
+
|
|
2794
|
+
[[package]]
|
|
2795
|
+
name = "serde_with"
|
|
2796
|
+
version = "3.16.1"
|
|
2797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2798
|
+
checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
|
|
2799
|
+
dependencies = [
|
|
2800
|
+
"serde_core",
|
|
2801
|
+
"serde_with_macros",
|
|
2802
|
+
]
|
|
2803
|
+
|
|
2804
|
+
[[package]]
|
|
2805
|
+
name = "serde_with_macros"
|
|
2806
|
+
version = "3.16.1"
|
|
2807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2808
|
+
checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
|
|
2809
|
+
dependencies = [
|
|
2810
|
+
"darling",
|
|
2811
|
+
"proc-macro2",
|
|
2812
|
+
"quote",
|
|
2813
|
+
"syn",
|
|
2814
|
+
]
|
|
2815
|
+
|
|
2816
|
+
[[package]]
|
|
2817
|
+
name = "sha1"
|
|
2818
|
+
version = "0.10.6"
|
|
2819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2820
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2821
|
+
dependencies = [
|
|
2822
|
+
"cfg-if",
|
|
2823
|
+
"cpufeatures",
|
|
2824
|
+
"digest",
|
|
2825
|
+
]
|
|
2826
|
+
|
|
2827
|
+
[[package]]
|
|
2828
|
+
name = "sha2"
|
|
2829
|
+
version = "0.10.9"
|
|
2830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2831
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2832
|
+
dependencies = [
|
|
2833
|
+
"cfg-if",
|
|
2834
|
+
"cpufeatures",
|
|
2835
|
+
"digest",
|
|
2836
|
+
]
|
|
2837
|
+
|
|
2838
|
+
[[package]]
|
|
2839
|
+
name = "shlex"
|
|
2840
|
+
version = "1.3.0"
|
|
2841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2842
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2843
|
+
|
|
2844
|
+
[[package]]
|
|
2845
|
+
name = "simd-adler32"
|
|
2846
|
+
version = "0.3.8"
|
|
2847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
2849
|
+
|
|
2850
|
+
[[package]]
|
|
2851
|
+
name = "similar"
|
|
2852
|
+
version = "2.7.0"
|
|
2853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2854
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
2855
|
+
|
|
2856
|
+
[[package]]
|
|
2857
|
+
name = "siphasher"
|
|
2858
|
+
version = "1.0.1"
|
|
2859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
2861
|
+
|
|
2862
|
+
[[package]]
|
|
2863
|
+
name = "slab"
|
|
2864
|
+
version = "0.4.11"
|
|
2865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2866
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2867
|
+
|
|
2868
|
+
[[package]]
|
|
2869
|
+
name = "smallvec"
|
|
2870
|
+
version = "1.15.1"
|
|
2871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2873
|
+
dependencies = [
|
|
2874
|
+
"serde",
|
|
2875
|
+
]
|
|
2876
|
+
|
|
2877
|
+
[[package]]
|
|
2878
|
+
name = "spin"
|
|
2879
|
+
version = "0.9.8"
|
|
2880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2881
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2882
|
+
dependencies = [
|
|
2883
|
+
"lock_api",
|
|
2884
|
+
]
|
|
2885
|
+
|
|
2886
|
+
[[package]]
|
|
2887
|
+
name = "spin"
|
|
2888
|
+
version = "0.10.0"
|
|
2889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
+
checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
|
|
2891
|
+
dependencies = [
|
|
2892
|
+
"lock_api",
|
|
2893
|
+
]
|
|
2894
|
+
|
|
2895
|
+
[[package]]
|
|
2896
|
+
name = "stable_deref_trait"
|
|
2897
|
+
version = "1.2.1"
|
|
2898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2899
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2900
|
+
|
|
2901
|
+
[[package]]
|
|
2902
|
+
name = "static_assertions"
|
|
2903
|
+
version = "1.1.0"
|
|
2904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2905
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2906
|
+
|
|
2907
|
+
[[package]]
|
|
2908
|
+
name = "statrs"
|
|
2909
|
+
version = "0.18.0"
|
|
2910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2911
|
+
checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
|
|
2912
|
+
dependencies = [
|
|
2913
|
+
"approx",
|
|
2914
|
+
"num-traits",
|
|
2915
|
+
]
|
|
2916
|
+
|
|
2917
|
+
[[package]]
|
|
2918
|
+
name = "str_stack"
|
|
2919
|
+
version = "0.1.0"
|
|
2920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2921
|
+
checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
|
|
2922
|
+
|
|
2923
|
+
[[package]]
|
|
2924
|
+
name = "strsim"
|
|
2925
|
+
version = "0.11.1"
|
|
2926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2927
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2928
|
+
|
|
2929
|
+
[[package]]
|
|
2930
|
+
name = "strum"
|
|
2931
|
+
version = "0.27.2"
|
|
2932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2933
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
2934
|
+
dependencies = [
|
|
2935
|
+
"strum_macros",
|
|
2936
|
+
]
|
|
2937
|
+
|
|
2938
|
+
[[package]]
|
|
2939
|
+
name = "strum_macros"
|
|
2940
|
+
version = "0.27.2"
|
|
2941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2942
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
2943
|
+
dependencies = [
|
|
2944
|
+
"heck",
|
|
2945
|
+
"proc-macro2",
|
|
2946
|
+
"quote",
|
|
2947
|
+
"syn",
|
|
2948
|
+
]
|
|
2949
|
+
|
|
2950
|
+
[[package]]
|
|
2951
|
+
name = "subtle"
|
|
2952
|
+
version = "2.6.1"
|
|
2953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2954
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2955
|
+
|
|
2956
|
+
[[package]]
|
|
2957
|
+
name = "supports-hyperlinks"
|
|
2958
|
+
version = "3.2.0"
|
|
2959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2960
|
+
checksum = "e396b6523b11ccb83120b115a0b7366de372751aa6edf19844dfb13a6af97e91"
|
|
2961
|
+
|
|
2962
|
+
[[package]]
|
|
2963
|
+
name = "symbolic-common"
|
|
2964
|
+
version = "12.17.0"
|
|
2965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2966
|
+
checksum = "b3d8046c5674ab857104bc4559d505f4809b8060d57806e45d49737c97afeb60"
|
|
2967
|
+
dependencies = [
|
|
2968
|
+
"debugid",
|
|
2969
|
+
"memmap2",
|
|
2970
|
+
"stable_deref_trait",
|
|
2971
|
+
"uuid",
|
|
2972
|
+
]
|
|
2973
|
+
|
|
2974
|
+
[[package]]
|
|
2975
|
+
name = "symbolic-demangle"
|
|
2976
|
+
version = "12.17.0"
|
|
2977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2978
|
+
checksum = "1accb6e5c4b0f682de907623912e616b44be1c9e725775155546669dbff720ec"
|
|
2979
|
+
dependencies = [
|
|
2980
|
+
"cpp_demangle",
|
|
2981
|
+
"rustc-demangle",
|
|
2982
|
+
"symbolic-common",
|
|
2983
|
+
]
|
|
2984
|
+
|
|
2985
|
+
[[package]]
|
|
2986
|
+
name = "syn"
|
|
2987
|
+
version = "2.0.114"
|
|
2988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2989
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
2990
|
+
dependencies = [
|
|
2991
|
+
"proc-macro2",
|
|
2992
|
+
"quote",
|
|
2993
|
+
"unicode-ident",
|
|
2994
|
+
]
|
|
2995
|
+
|
|
2996
|
+
[[package]]
|
|
2997
|
+
name = "synstructure"
|
|
2998
|
+
version = "0.13.2"
|
|
2999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3000
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3001
|
+
dependencies = [
|
|
3002
|
+
"proc-macro2",
|
|
3003
|
+
"quote",
|
|
3004
|
+
"syn",
|
|
3005
|
+
]
|
|
3006
|
+
|
|
3007
|
+
[[package]]
|
|
3008
|
+
name = "tap"
|
|
3009
|
+
version = "1.0.1"
|
|
3010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3011
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
3012
|
+
|
|
3013
|
+
[[package]]
|
|
3014
|
+
name = "target-lexicon"
|
|
3015
|
+
version = "0.13.4"
|
|
3016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3017
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
3018
|
+
|
|
3019
|
+
[[package]]
|
|
3020
|
+
name = "tempfile"
|
|
3021
|
+
version = "3.24.0"
|
|
3022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3023
|
+
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
3024
|
+
dependencies = [
|
|
3025
|
+
"fastrand",
|
|
3026
|
+
"getrandom 0.3.4",
|
|
3027
|
+
"once_cell",
|
|
3028
|
+
"rustix",
|
|
3029
|
+
"windows-sys 0.61.2",
|
|
3030
|
+
]
|
|
3031
|
+
|
|
3032
|
+
[[package]]
|
|
3033
|
+
name = "test-case"
|
|
3034
|
+
version = "3.3.1"
|
|
3035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3036
|
+
checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8"
|
|
3037
|
+
dependencies = [
|
|
3038
|
+
"test-case-macros",
|
|
3039
|
+
]
|
|
3040
|
+
|
|
3041
|
+
[[package]]
|
|
3042
|
+
name = "test-case-core"
|
|
3043
|
+
version = "3.3.1"
|
|
3044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3045
|
+
checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
|
|
3046
|
+
dependencies = [
|
|
3047
|
+
"cfg-if",
|
|
3048
|
+
"proc-macro2",
|
|
3049
|
+
"quote",
|
|
3050
|
+
"syn",
|
|
3051
|
+
]
|
|
3052
|
+
|
|
3053
|
+
[[package]]
|
|
3054
|
+
name = "test-case-macros"
|
|
3055
|
+
version = "3.3.1"
|
|
3056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3057
|
+
checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
|
|
3058
|
+
dependencies = [
|
|
3059
|
+
"proc-macro2",
|
|
3060
|
+
"quote",
|
|
3061
|
+
"syn",
|
|
3062
|
+
"test-case-core",
|
|
3063
|
+
]
|
|
3064
|
+
|
|
3065
|
+
[[package]]
|
|
3066
|
+
name = "thin-vec"
|
|
3067
|
+
version = "0.2.14"
|
|
3068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3069
|
+
checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
|
|
3070
|
+
|
|
3071
|
+
[[package]]
|
|
3072
|
+
name = "thiserror"
|
|
3073
|
+
version = "2.0.17"
|
|
3074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3075
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
3076
|
+
dependencies = [
|
|
3077
|
+
"thiserror-impl",
|
|
3078
|
+
]
|
|
3079
|
+
|
|
3080
|
+
[[package]]
|
|
3081
|
+
name = "thiserror-impl"
|
|
3082
|
+
version = "2.0.17"
|
|
3083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3084
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
3085
|
+
dependencies = [
|
|
3086
|
+
"proc-macro2",
|
|
3087
|
+
"quote",
|
|
3088
|
+
"syn",
|
|
3089
|
+
]
|
|
3090
|
+
|
|
3091
|
+
[[package]]
|
|
3092
|
+
name = "time"
|
|
3093
|
+
version = "0.3.44"
|
|
3094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3095
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
|
3096
|
+
dependencies = [
|
|
3097
|
+
"deranged",
|
|
3098
|
+
"num-conv",
|
|
3099
|
+
"powerfmt",
|
|
3100
|
+
"serde",
|
|
3101
|
+
"time-core",
|
|
3102
|
+
]
|
|
3103
|
+
|
|
3104
|
+
[[package]]
|
|
3105
|
+
name = "time-core"
|
|
3106
|
+
version = "0.1.6"
|
|
3107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3108
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
3109
|
+
|
|
3110
|
+
[[package]]
|
|
3111
|
+
name = "tinytemplate"
|
|
3112
|
+
version = "1.2.1"
|
|
3113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3114
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
3115
|
+
dependencies = [
|
|
3116
|
+
"serde",
|
|
3117
|
+
"serde_json",
|
|
3118
|
+
]
|
|
3119
|
+
|
|
3120
|
+
[[package]]
|
|
3121
|
+
name = "tinyvec"
|
|
3122
|
+
version = "1.10.0"
|
|
3123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3124
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
3125
|
+
dependencies = [
|
|
3126
|
+
"tinyvec_macros",
|
|
3127
|
+
]
|
|
3128
|
+
|
|
3129
|
+
[[package]]
|
|
3130
|
+
name = "tinyvec_macros"
|
|
3131
|
+
version = "0.1.1"
|
|
3132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3133
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3134
|
+
|
|
3135
|
+
[[package]]
|
|
3136
|
+
name = "tracing"
|
|
3137
|
+
version = "0.1.44"
|
|
3138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3139
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3140
|
+
dependencies = [
|
|
3141
|
+
"pin-project-lite",
|
|
3142
|
+
"tracing-attributes",
|
|
3143
|
+
"tracing-core",
|
|
3144
|
+
]
|
|
3145
|
+
|
|
3146
|
+
[[package]]
|
|
3147
|
+
name = "tracing-attributes"
|
|
3148
|
+
version = "0.1.31"
|
|
3149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3150
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3151
|
+
dependencies = [
|
|
3152
|
+
"proc-macro2",
|
|
3153
|
+
"quote",
|
|
3154
|
+
"syn",
|
|
3155
|
+
]
|
|
3156
|
+
|
|
3157
|
+
[[package]]
|
|
3158
|
+
name = "tracing-core"
|
|
3159
|
+
version = "0.1.36"
|
|
3160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3161
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3162
|
+
dependencies = [
|
|
3163
|
+
"once_cell",
|
|
3164
|
+
]
|
|
3165
|
+
|
|
3166
|
+
[[package]]
|
|
3167
|
+
name = "ty_combine"
|
|
3168
|
+
version = "0.0.0"
|
|
3169
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
3170
|
+
dependencies = [
|
|
3171
|
+
"ordermap",
|
|
3172
|
+
"ruff_db",
|
|
3173
|
+
"ruff_python_ast",
|
|
3174
|
+
]
|
|
3175
|
+
|
|
3176
|
+
[[package]]
|
|
3177
|
+
name = "ty_module_resolver"
|
|
3178
|
+
version = "0.0.0"
|
|
3179
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
3180
|
+
dependencies = [
|
|
3181
|
+
"camino",
|
|
3182
|
+
"compact_str",
|
|
3183
|
+
"get-size2",
|
|
3184
|
+
"regex",
|
|
3185
|
+
"regex-syntax",
|
|
3186
|
+
"ruff_db",
|
|
3187
|
+
"ruff_memory_usage",
|
|
3188
|
+
"ruff_python_ast",
|
|
3189
|
+
"ruff_python_stdlib",
|
|
3190
|
+
"rustc-hash",
|
|
3191
|
+
"salsa",
|
|
3192
|
+
"strum",
|
|
3193
|
+
"strum_macros",
|
|
3194
|
+
"thiserror",
|
|
3195
|
+
"tracing",
|
|
3196
|
+
]
|
|
3197
|
+
|
|
3198
|
+
[[package]]
|
|
3199
|
+
name = "ty_python_semantic"
|
|
3200
|
+
version = "0.0.0"
|
|
3201
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
3202
|
+
dependencies = [
|
|
3203
|
+
"anyhow",
|
|
3204
|
+
"bitflags 2.10.0",
|
|
3205
|
+
"bitvec",
|
|
3206
|
+
"compact_str",
|
|
3207
|
+
"drop_bomb",
|
|
3208
|
+
"get-size2",
|
|
3209
|
+
"hashbrown 0.16.1",
|
|
3210
|
+
"indexmap",
|
|
3211
|
+
"itertools 0.14.0",
|
|
3212
|
+
"memchr",
|
|
3213
|
+
"ordermap",
|
|
3214
|
+
"ruff_db",
|
|
3215
|
+
"ruff_diagnostics",
|
|
3216
|
+
"ruff_index",
|
|
3217
|
+
"ruff_macros",
|
|
3218
|
+
"ruff_memory_usage",
|
|
3219
|
+
"ruff_python_ast",
|
|
3220
|
+
"ruff_python_literal",
|
|
3221
|
+
"ruff_python_parser",
|
|
3222
|
+
"ruff_python_stdlib",
|
|
3223
|
+
"ruff_python_trivia",
|
|
3224
|
+
"ruff_source_file",
|
|
3225
|
+
"ruff_text_size",
|
|
3226
|
+
"rustc-hash",
|
|
3227
|
+
"salsa",
|
|
3228
|
+
"smallvec",
|
|
3229
|
+
"static_assertions",
|
|
3230
|
+
"strsim",
|
|
3231
|
+
"strum",
|
|
3232
|
+
"strum_macros",
|
|
3233
|
+
"test-case",
|
|
3234
|
+
"thiserror",
|
|
3235
|
+
"tracing",
|
|
3236
|
+
"ty_combine",
|
|
3237
|
+
"ty_module_resolver",
|
|
3238
|
+
"ty_site_packages",
|
|
3239
|
+
]
|
|
3240
|
+
|
|
3241
|
+
[[package]]
|
|
3242
|
+
name = "ty_site_packages"
|
|
3243
|
+
version = "0.0.0"
|
|
3244
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
3245
|
+
dependencies = [
|
|
3246
|
+
"camino",
|
|
3247
|
+
"colored 3.0.0",
|
|
3248
|
+
"get-size2",
|
|
3249
|
+
"indexmap",
|
|
3250
|
+
"ruff_annotate_snippets",
|
|
3251
|
+
"ruff_db",
|
|
3252
|
+
"ruff_python_ast",
|
|
3253
|
+
"ruff_python_trivia",
|
|
3254
|
+
"ruff_source_file",
|
|
3255
|
+
"ruff_text_size",
|
|
3256
|
+
"strum",
|
|
3257
|
+
"strum_macros",
|
|
3258
|
+
"tracing",
|
|
3259
|
+
"ty_static",
|
|
3260
|
+
"which",
|
|
3261
|
+
]
|
|
3262
|
+
|
|
3263
|
+
[[package]]
|
|
3264
|
+
name = "ty_static"
|
|
3265
|
+
version = "0.0.1"
|
|
3266
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
3267
|
+
dependencies = [
|
|
3268
|
+
"ruff_macros",
|
|
3269
|
+
]
|
|
3270
|
+
|
|
3271
|
+
[[package]]
|
|
3272
|
+
name = "typenum"
|
|
3273
|
+
version = "1.19.0"
|
|
3274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3275
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
3276
|
+
|
|
3277
|
+
[[package]]
|
|
3278
|
+
name = "unic-char-property"
|
|
3279
|
+
version = "0.9.0"
|
|
3280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3281
|
+
checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
|
|
3282
|
+
dependencies = [
|
|
3283
|
+
"unic-char-range",
|
|
3284
|
+
]
|
|
3285
|
+
|
|
3286
|
+
[[package]]
|
|
3287
|
+
name = "unic-char-range"
|
|
3288
|
+
version = "0.9.0"
|
|
3289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3290
|
+
checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
|
|
3291
|
+
|
|
3292
|
+
[[package]]
|
|
3293
|
+
name = "unic-common"
|
|
3294
|
+
version = "0.9.0"
|
|
3295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3296
|
+
checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
|
|
3297
|
+
|
|
3298
|
+
[[package]]
|
|
3299
|
+
name = "unic-ucd-category"
|
|
3300
|
+
version = "0.9.0"
|
|
3301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3302
|
+
checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0"
|
|
3303
|
+
dependencies = [
|
|
3304
|
+
"matches",
|
|
3305
|
+
"unic-char-property",
|
|
3306
|
+
"unic-char-range",
|
|
3307
|
+
"unic-ucd-version",
|
|
3308
|
+
]
|
|
3309
|
+
|
|
3310
|
+
[[package]]
|
|
3311
|
+
name = "unic-ucd-version"
|
|
3312
|
+
version = "0.9.0"
|
|
3313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3314
|
+
checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
|
|
3315
|
+
dependencies = [
|
|
3316
|
+
"unic-common",
|
|
3317
|
+
]
|
|
3318
|
+
|
|
3319
|
+
[[package]]
|
|
3320
|
+
name = "unicode-ident"
|
|
3321
|
+
version = "1.0.22"
|
|
3322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3323
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
3324
|
+
|
|
3325
|
+
[[package]]
|
|
3326
|
+
name = "unicode-normalization"
|
|
3327
|
+
version = "0.1.25"
|
|
3328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3329
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
3330
|
+
dependencies = [
|
|
3331
|
+
"tinyvec",
|
|
3332
|
+
]
|
|
3333
|
+
|
|
3334
|
+
[[package]]
|
|
3335
|
+
name = "unicode-segmentation"
|
|
3336
|
+
version = "1.12.0"
|
|
3337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3338
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3339
|
+
|
|
3340
|
+
[[package]]
|
|
3341
|
+
name = "unicode-width"
|
|
3342
|
+
version = "0.2.2"
|
|
3343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3344
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3345
|
+
|
|
3346
|
+
[[package]]
|
|
3347
|
+
name = "unicode_names2"
|
|
3348
|
+
version = "1.3.0"
|
|
3349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3350
|
+
checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
|
|
3351
|
+
dependencies = [
|
|
3352
|
+
"phf",
|
|
3353
|
+
"unicode_names2_generator",
|
|
3354
|
+
]
|
|
3355
|
+
|
|
3356
|
+
[[package]]
|
|
3357
|
+
name = "unicode_names2_generator"
|
|
3358
|
+
version = "1.3.0"
|
|
3359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3360
|
+
checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
|
|
3361
|
+
dependencies = [
|
|
3362
|
+
"getopts",
|
|
3363
|
+
"log",
|
|
3364
|
+
"phf_codegen",
|
|
3365
|
+
"rand 0.8.5",
|
|
3366
|
+
]
|
|
3367
|
+
|
|
3368
|
+
[[package]]
|
|
3369
|
+
name = "utf8parse"
|
|
3370
|
+
version = "0.2.2"
|
|
3371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3372
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3373
|
+
|
|
3374
|
+
[[package]]
|
|
3375
|
+
name = "uuid"
|
|
3376
|
+
version = "1.19.0"
|
|
3377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3378
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
3379
|
+
dependencies = [
|
|
3380
|
+
"getrandom 0.3.4",
|
|
3381
|
+
"js-sys",
|
|
3382
|
+
"rand 0.9.2",
|
|
3383
|
+
"uuid-macro-internal",
|
|
3384
|
+
"wasm-bindgen",
|
|
3385
|
+
]
|
|
3386
|
+
|
|
3387
|
+
[[package]]
|
|
3388
|
+
name = "uuid-macro-internal"
|
|
3389
|
+
version = "1.19.0"
|
|
3390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3391
|
+
checksum = "39d11901c36b3650df7acb0f9ebe624f35b5ac4e1922ecd3c57f444648429594"
|
|
3392
|
+
dependencies = [
|
|
3393
|
+
"proc-macro2",
|
|
3394
|
+
"quote",
|
|
3395
|
+
"syn",
|
|
3396
|
+
]
|
|
3397
|
+
|
|
3398
|
+
[[package]]
|
|
3399
|
+
name = "version_check"
|
|
3400
|
+
version = "0.9.5"
|
|
3401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3402
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3403
|
+
|
|
3404
|
+
[[package]]
|
|
3405
|
+
name = "walkdir"
|
|
3406
|
+
version = "2.5.0"
|
|
3407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3408
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3409
|
+
dependencies = [
|
|
3410
|
+
"same-file",
|
|
3411
|
+
"winapi-util",
|
|
3412
|
+
]
|
|
3413
|
+
|
|
3414
|
+
[[package]]
|
|
3415
|
+
name = "wasi"
|
|
3416
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3418
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3419
|
+
|
|
3420
|
+
[[package]]
|
|
3421
|
+
name = "wasip2"
|
|
3422
|
+
version = "1.0.1+wasi-0.2.4"
|
|
3423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3424
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
3425
|
+
dependencies = [
|
|
3426
|
+
"wit-bindgen",
|
|
3427
|
+
]
|
|
3428
|
+
|
|
3429
|
+
[[package]]
|
|
3430
|
+
name = "wasm-bindgen"
|
|
3431
|
+
version = "0.2.106"
|
|
3432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3433
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
3434
|
+
dependencies = [
|
|
3435
|
+
"cfg-if",
|
|
3436
|
+
"once_cell",
|
|
3437
|
+
"rustversion",
|
|
3438
|
+
"wasm-bindgen-macro",
|
|
3439
|
+
"wasm-bindgen-shared",
|
|
3440
|
+
]
|
|
3441
|
+
|
|
3442
|
+
[[package]]
|
|
3443
|
+
name = "wasm-bindgen-macro"
|
|
3444
|
+
version = "0.2.106"
|
|
3445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3446
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
3447
|
+
dependencies = [
|
|
3448
|
+
"quote",
|
|
3449
|
+
"wasm-bindgen-macro-support",
|
|
3450
|
+
]
|
|
3451
|
+
|
|
3452
|
+
[[package]]
|
|
3453
|
+
name = "wasm-bindgen-macro-support"
|
|
3454
|
+
version = "0.2.106"
|
|
3455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3456
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
3457
|
+
dependencies = [
|
|
3458
|
+
"bumpalo",
|
|
3459
|
+
"proc-macro2",
|
|
3460
|
+
"quote",
|
|
3461
|
+
"syn",
|
|
3462
|
+
"wasm-bindgen-shared",
|
|
3463
|
+
]
|
|
3464
|
+
|
|
3465
|
+
[[package]]
|
|
3466
|
+
name = "wasm-bindgen-shared"
|
|
3467
|
+
version = "0.2.106"
|
|
3468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3469
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
3470
|
+
dependencies = [
|
|
3471
|
+
"unicode-ident",
|
|
3472
|
+
]
|
|
3473
|
+
|
|
3474
|
+
[[package]]
|
|
3475
|
+
name = "web-sys"
|
|
3476
|
+
version = "0.3.83"
|
|
3477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3478
|
+
checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
|
|
3479
|
+
dependencies = [
|
|
3480
|
+
"js-sys",
|
|
3481
|
+
"wasm-bindgen",
|
|
3482
|
+
]
|
|
3483
|
+
|
|
3484
|
+
[[package]]
|
|
3485
|
+
name = "web-time"
|
|
3486
|
+
version = "1.1.0"
|
|
3487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3488
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3489
|
+
dependencies = [
|
|
3490
|
+
"js-sys",
|
|
3491
|
+
"wasm-bindgen",
|
|
3492
|
+
]
|
|
3493
|
+
|
|
3494
|
+
[[package]]
|
|
3495
|
+
name = "which"
|
|
3496
|
+
version = "8.0.0"
|
|
3497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3498
|
+
checksum = "d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d"
|
|
3499
|
+
dependencies = [
|
|
3500
|
+
"env_home",
|
|
3501
|
+
"rustix",
|
|
3502
|
+
"winsafe",
|
|
3503
|
+
]
|
|
3504
|
+
|
|
3505
|
+
[[package]]
|
|
3506
|
+
name = "winapi"
|
|
3507
|
+
version = "0.3.9"
|
|
3508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3509
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3510
|
+
dependencies = [
|
|
3511
|
+
"winapi-i686-pc-windows-gnu",
|
|
3512
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3513
|
+
]
|
|
3514
|
+
|
|
3515
|
+
[[package]]
|
|
3516
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3517
|
+
version = "0.4.0"
|
|
3518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3519
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3520
|
+
|
|
3521
|
+
[[package]]
|
|
3522
|
+
name = "winapi-util"
|
|
3523
|
+
version = "0.1.11"
|
|
3524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3525
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3526
|
+
dependencies = [
|
|
3527
|
+
"windows-sys 0.61.2",
|
|
3528
|
+
]
|
|
3529
|
+
|
|
3530
|
+
[[package]]
|
|
3531
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3532
|
+
version = "0.4.0"
|
|
3533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3534
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3535
|
+
|
|
3536
|
+
[[package]]
|
|
3537
|
+
name = "windows-link"
|
|
3538
|
+
version = "0.2.1"
|
|
3539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3540
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3541
|
+
|
|
3542
|
+
[[package]]
|
|
3543
|
+
name = "windows-sys"
|
|
3544
|
+
version = "0.59.0"
|
|
3545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3546
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3547
|
+
dependencies = [
|
|
3548
|
+
"windows-targets 0.52.6",
|
|
3549
|
+
]
|
|
3550
|
+
|
|
3551
|
+
[[package]]
|
|
3552
|
+
name = "windows-sys"
|
|
3553
|
+
version = "0.60.2"
|
|
3554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3555
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3556
|
+
dependencies = [
|
|
3557
|
+
"windows-targets 0.53.5",
|
|
3558
|
+
]
|
|
3559
|
+
|
|
3560
|
+
[[package]]
|
|
3561
|
+
name = "windows-sys"
|
|
3562
|
+
version = "0.61.2"
|
|
3563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3564
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3565
|
+
dependencies = [
|
|
3566
|
+
"windows-link",
|
|
3567
|
+
]
|
|
3568
|
+
|
|
3569
|
+
[[package]]
|
|
3570
|
+
name = "windows-targets"
|
|
3571
|
+
version = "0.52.6"
|
|
3572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3573
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3574
|
+
dependencies = [
|
|
3575
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3576
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3577
|
+
"windows_i686_gnu 0.52.6",
|
|
3578
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3579
|
+
"windows_i686_msvc 0.52.6",
|
|
3580
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3581
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3582
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3583
|
+
]
|
|
3584
|
+
|
|
3585
|
+
[[package]]
|
|
3586
|
+
name = "windows-targets"
|
|
3587
|
+
version = "0.53.5"
|
|
3588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3589
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3590
|
+
dependencies = [
|
|
3591
|
+
"windows-link",
|
|
3592
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3593
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3594
|
+
"windows_i686_gnu 0.53.1",
|
|
3595
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3596
|
+
"windows_i686_msvc 0.53.1",
|
|
3597
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3598
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3599
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3600
|
+
]
|
|
3601
|
+
|
|
3602
|
+
[[package]]
|
|
3603
|
+
name = "windows_aarch64_gnullvm"
|
|
3604
|
+
version = "0.52.6"
|
|
3605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3606
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3607
|
+
|
|
3608
|
+
[[package]]
|
|
3609
|
+
name = "windows_aarch64_gnullvm"
|
|
3610
|
+
version = "0.53.1"
|
|
3611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3612
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3613
|
+
|
|
3614
|
+
[[package]]
|
|
3615
|
+
name = "windows_aarch64_msvc"
|
|
3616
|
+
version = "0.52.6"
|
|
3617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3618
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3619
|
+
|
|
3620
|
+
[[package]]
|
|
3621
|
+
name = "windows_aarch64_msvc"
|
|
3622
|
+
version = "0.53.1"
|
|
3623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3624
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3625
|
+
|
|
3626
|
+
[[package]]
|
|
3627
|
+
name = "windows_i686_gnu"
|
|
3628
|
+
version = "0.52.6"
|
|
3629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3630
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3631
|
+
|
|
3632
|
+
[[package]]
|
|
3633
|
+
name = "windows_i686_gnu"
|
|
3634
|
+
version = "0.53.1"
|
|
3635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3636
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3637
|
+
|
|
3638
|
+
[[package]]
|
|
3639
|
+
name = "windows_i686_gnullvm"
|
|
3640
|
+
version = "0.52.6"
|
|
3641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3642
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3643
|
+
|
|
3644
|
+
[[package]]
|
|
3645
|
+
name = "windows_i686_gnullvm"
|
|
3646
|
+
version = "0.53.1"
|
|
3647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3648
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3649
|
+
|
|
3650
|
+
[[package]]
|
|
3651
|
+
name = "windows_i686_msvc"
|
|
3652
|
+
version = "0.52.6"
|
|
3653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3654
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3655
|
+
|
|
3656
|
+
[[package]]
|
|
3657
|
+
name = "windows_i686_msvc"
|
|
3658
|
+
version = "0.53.1"
|
|
3659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3660
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3661
|
+
|
|
3662
|
+
[[package]]
|
|
3663
|
+
name = "windows_x86_64_gnu"
|
|
3664
|
+
version = "0.52.6"
|
|
3665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3666
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3667
|
+
|
|
3668
|
+
[[package]]
|
|
3669
|
+
name = "windows_x86_64_gnu"
|
|
3670
|
+
version = "0.53.1"
|
|
3671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3672
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3673
|
+
|
|
3674
|
+
[[package]]
|
|
3675
|
+
name = "windows_x86_64_gnullvm"
|
|
3676
|
+
version = "0.52.6"
|
|
3677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3678
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3679
|
+
|
|
3680
|
+
[[package]]
|
|
3681
|
+
name = "windows_x86_64_gnullvm"
|
|
3682
|
+
version = "0.53.1"
|
|
3683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3684
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3685
|
+
|
|
3686
|
+
[[package]]
|
|
3687
|
+
name = "windows_x86_64_msvc"
|
|
3688
|
+
version = "0.52.6"
|
|
3689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3690
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3691
|
+
|
|
3692
|
+
[[package]]
|
|
3693
|
+
name = "windows_x86_64_msvc"
|
|
3694
|
+
version = "0.53.1"
|
|
3695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3696
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3697
|
+
|
|
3698
|
+
[[package]]
|
|
3699
|
+
name = "winsafe"
|
|
3700
|
+
version = "0.0.19"
|
|
3701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3702
|
+
checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
|
|
3703
|
+
|
|
3704
|
+
[[package]]
|
|
3705
|
+
name = "wit-bindgen"
|
|
3706
|
+
version = "0.46.0"
|
|
3707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3708
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
3709
|
+
|
|
3710
|
+
[[package]]
|
|
3711
|
+
name = "wyz"
|
|
3712
|
+
version = "0.5.1"
|
|
3713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3714
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
3715
|
+
dependencies = [
|
|
3716
|
+
"tap",
|
|
3717
|
+
]
|
|
3718
|
+
|
|
3719
|
+
[[package]]
|
|
3720
|
+
name = "yansi"
|
|
3721
|
+
version = "1.0.1"
|
|
3722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3723
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
3724
|
+
|
|
3725
|
+
[[package]]
|
|
3726
|
+
name = "zerocopy"
|
|
3727
|
+
version = "0.8.33"
|
|
3728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3729
|
+
checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
|
|
3730
|
+
dependencies = [
|
|
3731
|
+
"zerocopy-derive",
|
|
3732
|
+
]
|
|
3733
|
+
|
|
3734
|
+
[[package]]
|
|
3735
|
+
name = "zerocopy-derive"
|
|
3736
|
+
version = "0.8.33"
|
|
3737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3738
|
+
checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
|
|
3739
|
+
dependencies = [
|
|
3740
|
+
"proc-macro2",
|
|
3741
|
+
"quote",
|
|
3742
|
+
"syn",
|
|
3743
|
+
]
|
|
3744
|
+
|
|
3745
|
+
[[package]]
|
|
3746
|
+
name = "zip"
|
|
3747
|
+
version = "0.6.6"
|
|
3748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3749
|
+
checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
|
|
3750
|
+
dependencies = [
|
|
3751
|
+
"aes",
|
|
3752
|
+
"byteorder",
|
|
3753
|
+
"bzip2",
|
|
3754
|
+
"constant_time_eq",
|
|
3755
|
+
"crc32fast",
|
|
3756
|
+
"crossbeam-utils",
|
|
3757
|
+
"flate2",
|
|
3758
|
+
"hmac",
|
|
3759
|
+
"pbkdf2",
|
|
3760
|
+
"sha1",
|
|
3761
|
+
"time",
|
|
3762
|
+
"zstd",
|
|
3763
|
+
]
|
|
3764
|
+
|
|
3765
|
+
[[package]]
|
|
3766
|
+
name = "zmij"
|
|
3767
|
+
version = "1.0.12"
|
|
3768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3769
|
+
checksum = "2fc5a66a20078bf1251bde995aa2fdcc4b800c70b5d92dd2c62abc5c60f679f8"
|
|
3770
|
+
|
|
3771
|
+
[[package]]
|
|
3772
|
+
name = "zstd"
|
|
3773
|
+
version = "0.11.2+zstd.1.5.2"
|
|
3774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3775
|
+
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
|
3776
|
+
dependencies = [
|
|
3777
|
+
"zstd-safe",
|
|
3778
|
+
]
|
|
3779
|
+
|
|
3780
|
+
[[package]]
|
|
3781
|
+
name = "zstd-safe"
|
|
3782
|
+
version = "5.0.2+zstd.1.5.2"
|
|
3783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3784
|
+
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
|
|
3785
|
+
dependencies = [
|
|
3786
|
+
"libc",
|
|
3787
|
+
"zstd-sys",
|
|
3788
|
+
]
|
|
3789
|
+
|
|
3790
|
+
[[package]]
|
|
3791
|
+
name = "zstd-sys"
|
|
3792
|
+
version = "2.0.16+zstd.1.5.7"
|
|
3793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3794
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
3795
|
+
dependencies = [
|
|
3796
|
+
"cc",
|
|
3797
|
+
"pkg-config",
|
|
3798
|
+
]
|