bijux-cli 0.2.0__tar.gz → 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bijux_cli-0.3.0/Cargo.lock +1187 -0
- bijux_cli-0.3.0/Cargo.toml +68 -0
- bijux_cli-0.3.0/PKG-INFO +84 -0
- bijux_cli-0.3.0/crates/bijux-cli/Cargo.toml +48 -0
- bijux_cli-0.3.0/crates/bijux-cli/README.md +36 -0
- bijux_cli-0.3.0/crates/bijux-cli/build.rs +325 -0
- bijux_cli-0.3.0/crates/bijux-cli/contracts/official_product_namespace_registry.json +79 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/config.rs +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/diagnostics.rs +15 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/install.rs +12 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/kernel.rs +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/mod.rs +15 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/output.rs +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/parser.rs +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/plugins.rs +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/repl.rs +13 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/routing.rs +22 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/runtime.rs +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/telemetry.rs +7 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/api/version.rs +78 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/bin/bijux.rs +11 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/bootstrap/mod.rs +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/bootstrap/repl.rs +161 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/bootstrap/run.rs +75 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/bootstrap/wiring.rs +28 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/contracts/command.rs +110 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/contracts/config.rs +254 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/contracts/diagnostics.rs +100 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/contracts/envelope.rs +114 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/contracts/execution.rs +153 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/contracts/marker.rs +9 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/contracts/mod.rs +41 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/contracts/plugin.rs +181 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/contracts/product_mount.rs +146 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/contracts/query.rs +24 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/contracts/schema.rs +24 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/config/error.rs +47 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/config/mod.rs +12 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/config/operations.rs +55 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/config/serialization.rs +36 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/config/service.rs +206 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/config/storage.rs +193 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/config/validation.rs +95 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/diagnostics/mod.rs +14 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/diagnostics/parity_status.rs +29 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/diagnostics/routing_inventory.rs +49 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/diagnostics/state_diagnostics.rs +82 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/diagnostics/state_paths.rs +390 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/history/mod.rs +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/history/operations.rs +102 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/install/compatibility.rs +395 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/install/completion.rs +99 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/install/diagnostics.rs +73 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/install/io.rs +50 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/install/metadata.rs +149 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/install/mod.rs +519 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/install/paths.rs +158 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/install/query.rs +58 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/install/state.rs +188 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/memory/mod.rs +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/memory/operations.rs +62 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/mod.rs +15 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/plugins/constants.rs +33 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/plugins/diagnostics.rs +203 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/plugins/discovery.rs +92 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/plugins/entrypoint.rs +152 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/plugins/errors.rs +94 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/plugins/manifest.rs +341 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/plugins/mod.rs +59 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/plugins/models.rs +131 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/plugins/operations.rs +566 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/plugins/registry.rs +563 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/plugins/runtime.rs +248 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/features/plugins/scaffold.rs +154 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/infrastructure/env.rs +20 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/infrastructure/fs_store.rs +76 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/infrastructure/mod.rs +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/infrastructure/process.rs +14 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/infrastructure/serde_json_codec.rs +12 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/infrastructure/state_store.rs +502 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/dispatch/delegation.rs +46 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/dispatch/help.rs +226 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/dispatch/policy.rs +67 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/dispatch/route_exec.rs +105 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/dispatch/suggest.rs +144 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/dispatch.rs +710 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/handlers/cli.rs +855 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/handlers/config.rs +159 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/handlers/history.rs +73 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/handlers/install.rs +255 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/handlers/memory.rs +45 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/handlers/mod.rs +10 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/handlers/plugins.rs +143 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/handlers/root.rs +23 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/help.rs +329 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/mod.rs +7 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/cli/parser.rs +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/mod.rs +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/repl/completion.rs +296 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/repl/diagnostics.rs +146 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/repl/execution.rs +511 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/repl/history.rs +537 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/repl/mod.rs +26 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/repl/reference.rs +9 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/repl/session.rs +165 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/interface/repl/types.rs +172 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/kernel/mod.rs +11 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/kernel/pipeline.rs +743 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/kernel/policy.rs +69 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/kernel/tests.rs +1100 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/lib.rs +13 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/routing/catalog.rs +51 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/routing/mod.rs +15 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/routing/model.rs +144 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/routing/parser.rs +446 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/routing/registry.rs +359 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/shared/argv.rs +190 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/shared/error.rs +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/shared/mod.rs +7 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/shared/output.rs +222 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/shared/paths.rs +16 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/shared/telemetry.rs +780 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/shared/time.rs +10 -0
- bijux_cli-0.3.0/crates/bijux-cli/src/shared/version.rs +150 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/boundaries/architecture_boundaries.rs +112 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/boundaries/cli_kernel_domain_boundaries.rs +255 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/boundaries/config_architecture_boundaries.rs +183 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/boundaries/mod.rs +8 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/boundaries/python_bridge_ownership_boundaries.rs +48 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/boundaries/runtime_query_architecture_boundaries.rs +196 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/interfaces/documented_env_surface.rs +79 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/interfaces/mod.rs +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/interfaces/query_interfaces.rs +144 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/mod.rs +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/ownership/mod.rs +8 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/ownership/plugin_template_contracts.rs +490 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/ownership/python_e2e_equivalence_coverage.rs +133 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/ownership/release_contracts.rs +237 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/ownership/release_tree_contracts.rs +57 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture/ownership/runtime_control_plane_boundaries.rs +65 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/architecture.rs +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/fixtures/coverage/python_e2e_equivalence_inventory.json +38 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/fixtures/routing/cli_subcommands.txt +25 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/fixtures/routing/invalid_command_suggestions.json +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/fixtures/routing/parse_cases.json +77 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/fixtures/routing/plugin_namespace_commands.txt +3 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/fixtures/routing/python_documented_commands.txt +14 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/fixtures/routing/rust_routed_root_commands.txt +15 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_clear_text.txt +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_export_json_compact.txt +1 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_export_text.txt +3 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_export_yaml_pretty.txt +3 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_get_json_compact.txt +1 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_get_json_pretty.txt +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_get_text.txt +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_get_yaml_pretty.txt +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_reload_text.txt +3 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_root_json_compact.txt +1 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_root_json_pretty.txt +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_root_text.txt +2 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_root_yaml_pretty.txt +2 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_set_json_compact.txt +1 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_set_json_pretty.txt +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_set_text.txt +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_set_yaml_pretty.txt +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/config_unset_text.txt +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_audit.txt +15 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_cli.txt +32 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_cli_config_get.txt +19 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_cli_config_set.txt +19 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_cli_paths.txt +16 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_cli_plugins_doctor.txt +16 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_cli_plugins_inspect.txt +21 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_cli_plugins_install.txt +21 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_cli_plugins_list.txt +16 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_cli_plugins_scaffold.txt +22 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_cli_plugins_uninstall.txt +19 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_cli_self_test.txt +16 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_cli_status.txt +16 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_completion.txt +16 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_config.txt +38 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_docs.txt +15 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_doctor.txt +15 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_history.txt +27 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_inspect.txt +16 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_memory.txt +24 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_plugins.txt +50 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_plugins_doctor.txt +16 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_plugins_explain.txt +19 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_plugins_install.txt +21 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_plugins_reserved_names.txt +16 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_plugins_scaffold.txt +22 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_plugins_schema.txt +16 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_plugins_uninstall.txt +19 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_plugins_where.txt +16 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_repl.txt +15 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_root.txt +43 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_root_no_color.txt +43 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_status.txt +15 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/help_version.txt +19 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/history_root_json.txt +1 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/history_root_text.txt +19 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/history_root_yaml.txt +17 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/inspect_json.txt +1226 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/inspect_text.txt +897 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/inspect_yaml.txt +742 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/memory_list_text.txt +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/memory_list_yaml.txt +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/plugin_scaffold_python_minimal_files.txt +2 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/plugin_scaffold_rust_minimal_files.txt +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/golden/cli_surface/repl_command_reference.txt +9 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/data/parity/python_baseline/README.md +9 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/adversarial_fs_process_minimized_cases/config_missing_parent_set.json +3 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/adversarial_fs_process_minimized_cases/history_directory_path.json +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/adversarial_fs_process_minimized_cases/plugin_list_broken_registry.json +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/config_corruption_minimized_cases/list_truncated_config.json +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/config_corruption_minimized_cases/load_malformed_source.json +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/config_corruption_minimized_cases/set_invalid_assignment.json +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/config_minimized_cases/README.md +8 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/config_minimized_cases/case_001_malformed_line.env +2 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/config_minimized_cases/case_002_duplicate_key.env +2 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/config_minimized_cases/case_003_quoted_and_escape.env +3 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/config_minimized_cases/case_004_null_byte.env +0 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/plugin_scaffold_minimized_cases/README.md +8 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/plugin_scaffold_minimized_cases/case_001_python_ok.argv +8 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/plugin_scaffold_minimized_cases/case_002_rust_ok.argv +8 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/plugin_scaffold_minimized_cases/case_003_reserved_fail.argv +7 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/plugin_scaffold_minimized_cases/case_004_parent_path_fail.argv +7 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/plugin_state_corruption_minimized_cases/history_mixed_entries.json +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/plugin_state_corruption_minimized_cases/memory_wrong_type.json +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/plugin_state_corruption_minimized_cases/plugin_registry_broken.json +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/state_corruption_minimized_cases/config_partial_write.json +7 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/state_corruption_minimized_cases/history_wrong_shape.json +7 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/state_corruption_minimized_cases/registry_truncated.json +7 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/state_race_minimized_cases/read_write_mix.json +3 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/minimized_cases/state_race_minimized_cases/two_writer_same_key.json +3 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/parser/parser_interesting_inputs/README.md +8 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/parser/parser_interesting_inputs/alias_namespace_cases.txt +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/parser/parser_interesting_inputs/flag_order_cases.txt +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/parser/parser_interesting_inputs/root_and_help_cases.txt +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/parser/parser_minimized_cases/README.md +8 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/parser/parser_minimized_cases/case_001_repeated_pretty.argv +1 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/parser/parser_minimized_cases/case_002_conflicting_format.argv +1 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/parser/parser_minimized_cases/case_003_external_namespace_route.argv +1 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/parser/parser_minimized_cases/case_004_huge_token.argv +1 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/parser/parser_minimized_cases/case_005_confusable_help.argv +1 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/routing/route_minimized_cases/README.md +8 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/routing/route_minimized_cases/case_001_normalized_collision.txt +3 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/routing/route_minimized_cases/case_002_alias_root_collisions.txt +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/fuzz/routing/route_minimized_cases/case_003_mixed_registration_order.txt +4 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_core_parity.rs +476 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_deep_behavior_matrix.rs +268 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_export_load_parity.rs +383 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_fuzz_regressions.rs +107 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_fuzz_targets.rs +365 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_get_parity.rs +346 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_get_performance.rs +50 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_key_value_parity.rs +115 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_mutation_matrix.rs +242 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_mutation_parity.rs +273 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_parity.rs +132 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_python_compatibility.rs +176 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_read_matrix.rs +267 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_root_listing.rs +128 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_root_parity.rs +358 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_set_parity.rs +348 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/config_source_precedence_matrix.rs +171 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/config/mod.rs +20 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/diagnostics/mod.rs +2 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/history/history_command_matrix.rs +364 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/history/history_deep_behavior_extra.rs +62 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/history/history_parity.rs +319 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/history/mod.rs +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/memory/memory_command_matrix.rs +268 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/memory/memory_deep_behavior_extra.rs +179 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/memory/memory_parity.rs +194 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/memory/mod.rs +6 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/mod.rs +10 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/plugins/mod.rs +34 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/plugins/plugin_cli_lifecycle.rs +921 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/plugins/plugin_command_parity.rs +127 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/plugins/plugin_discovery_determinism_matrix.rs +417 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/plugins/plugin_failure_injection.rs +812 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/plugins/plugin_failure_rollback_matrix.rs +498 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/plugins/plugin_lifecycle_matrix.rs +501 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/plugins/plugin_namespace_law.rs +357 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/plugins/plugin_scaffold_fuzz_regressions.rs +59 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/plugins/plugin_scaffold_fuzz_targets.rs +270 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/plugins/plugin_scaffold_minimal.rs +258 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/adversarial_fs_process_campaign_regressions.rs +121 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/adversarial_fs_process_campaigns.rs +249 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/config_corruption_campaign_regressions.rs +114 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/config_corruption_hardening.rs +339 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/deterministic_hostile_state_matrix.rs +311 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/history_memory_resilience_hardening.rs +143 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/history_write_resilience.rs +64 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/install_ambiguity_hardening.rs +217 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/mod.rs +19 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/performance_realism_hardening.rs +339 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/plugin_state_corruption_campaign_regressions.rs +78 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/randomized_config_corruption_campaigns.rs +320 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/randomized_plugin_state_corruption_campaigns.rs +320 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/randomized_state_corruption_harness.rs +283 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/randomized_state_corruption_regressions.rs +101 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/state_race_campaign_regressions.rs +130 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/resilience/state_race_campaigns.rs +445 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/root/bin_core_integration.rs +275 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/root/cli_command_matrix.rs +300 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/root/cross_surface_equivalence.rs +126 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/root/flag_normalization_matrix.rs +153 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/root/install_command.rs +105 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/root/mod.rs +12 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/root/parser_invalid_utf8_argv.rs +37 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/root/precedence_matrix.rs +267 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/root/python_command_port_parity.rs +110 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/cli/root/root_command_matrix.rs +418 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/mod.rs +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/repl/mod.rs +10 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/repl/repl_completion_extra.rs +157 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/repl/repl_execution_law_extra.rs +167 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/repl/repl_hostile_session_extra.rs +169 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/repl/repl_hostile_session_hardening.rs +191 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/repl/repl_startup_performance_budget.rs +46 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/repl/transcript_cases.rs +377 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration/repl/transcript_parity.rs +125 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/integration.rs +5 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/contracts/command_tree_snapshot.rs +20 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/contracts/config_domain_types.rs +90 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/contracts/envelope_compatibility.rs +139 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/contracts/mod.rs +8 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/contracts/schema_snapshots.rs +46 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/contracts/serde_roundtrip.rs +218 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/laws/command_tree_diff_report.rs +42 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/laws/legacy_forms_regression.rs +55 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/laws/mod.rs +10 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/laws/route_fuzz_regressions.rs +57 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/laws/route_fuzz_targets.rs +189 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/laws/route_inspection_output.rs +45 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/laws/route_law_consistency.rs +81 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/laws/routing_fixture_sets.rs +63 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/mod.rs +7 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/parser/flag_normalization_property.proptest-regressions +7 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/parser/flag_normalization_property.rs +38 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/parser/mod.rs +11 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/parser/normalization_property.rs +71 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/parser/parser_abuse.rs +203 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/parser/parser_fixtures.rs +161 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/parser/parser_fuzz.rs +35 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/parser/parser_fuzz_regressions.rs +86 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/parser/parser_fuzz_targets.rs +333 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/parser/parser_intent.rs +98 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/registry/maintainer_inventory_boundaries.rs +22 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/registry/maintainer_routing_identity_boundaries.rs +25 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/registry/mod.rs +8 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/registry/query_interfaces.rs +34 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/registry/registry_namespace_policy.rs +193 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/registry/registry_resolution.rs +87 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/snapshots/command_tree.txt +15 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/snapshots/error_envelope_v1.schema.json +136 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/snapshots/output_envelope_v1.schema.json +77 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing/snapshots/plugin_manifest_v2.schema.json +157 -0
- bijux_cli-0.3.0/crates/bijux-cli/tests/routing.rs +5 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/Cargo.toml +32 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/README.md +23 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/src/bindings.rs +295 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/src/compatibility.rs +10 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/src/conversions.rs +76 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/src/lib.rs +136 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/bridge_binary_parity_report.rs +124 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/bridge_bindings.rs +426 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/bridge_conversion_fuzz_regressions.rs +29 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/bridge_conversion_fuzz_targets.rs +41 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/bridge_conversion_law_extra.rs +152 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/bridge_execution_law_extra.rs +160 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/bridge_surface_parity_matrix.rs +119 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/config_compatibility.rs +103 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/fuzz/bridge_conversion_minimized_cases/README.md +8 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/fuzz/bridge_conversion_minimized_cases/case_001_error_minimal.json +1 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/fuzz/bridge_conversion_minimized_cases/case_002_success_minimal.json +1 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/maintainer_leakage_boundaries.rs +12 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/python/test_packaging_contracts.py +206 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/python/test_runtime_parity.py +183 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/python/test_runtime_resilience.py +337 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/python/test_stable_release_compatibility.py +89 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/python_packaging_ownership.rs +40 -0
- bijux_cli-0.3.0/crates/bijux-cli-python/tests/runtime_entrypoint_unity.rs +31 -0
- bijux_cli-0.3.0/pyproject.toml +102 -0
- bijux_cli-0.3.0/python/bijux_cli_py/__init__.py +51 -0
- bijux_cli-0.3.0/python/bijux_cli_py/__main__.py +5 -0
- bijux_cli-0.3.0/python/bijux_cli_py/_exceptions.py +27 -0
- bijux_cli-0.3.0/python/bijux_cli_py/_facade.py +545 -0
- bijux_cli-0.3.0/python/bijux_cli_py/cli.py +16 -0
- bijux_cli-0.3.0/python/bijux_cli_py/compat.py +32 -0
- bijux_cli-0.2.0/.gitignore +0 -146
- bijux_cli-0.2.0/CHANGELOG.md +0 -240
- bijux_cli-0.2.0/CITATION.cff +0 -23
- bijux_cli-0.2.0/LICENSE +0 -192
- bijux_cli-0.2.0/LICENSES/Apache-2.0.txt +0 -192
- bijux_cli-0.2.0/LICENSES/CC0-1.0.txt +0 -121
- bijux_cli-0.2.0/PKG-INFO +0 -963
- bijux_cli-0.2.0/README.md +0 -427
- bijux_cli-0.2.0/REUSE.toml +0 -36
- bijux_cli-0.2.0/config/README.md +0 -21
- bijux_cli-0.2.0/plugin_template/README.md +0 -63
- bijux_cli-0.2.0/pyproject.toml +0 -346
- bijux_cli-0.2.0/src/bijux_cli/py.typed +0 -0
|
@@ -0,0 +1,1187 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "anstream"
|
|
7
|
+
version = "0.6.21"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"anstyle",
|
|
12
|
+
"anstyle-parse",
|
|
13
|
+
"anstyle-query",
|
|
14
|
+
"anstyle-wincon",
|
|
15
|
+
"colorchoice",
|
|
16
|
+
"is_terminal_polyfill",
|
|
17
|
+
"utf8parse",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstyle"
|
|
22
|
+
version = "1.0.13"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstyle-parse"
|
|
28
|
+
version = "0.2.7"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle-query"
|
|
37
|
+
version = "1.1.5"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"windows-sys",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstyle-wincon"
|
|
46
|
+
version = "3.0.11"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"anstyle",
|
|
51
|
+
"once_cell_polyfill",
|
|
52
|
+
"windows-sys",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "anyhow"
|
|
57
|
+
version = "1.0.102"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "autocfg"
|
|
63
|
+
version = "1.5.0"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "bijux-cli"
|
|
69
|
+
version = "0.3.0"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"anyhow",
|
|
72
|
+
"clap",
|
|
73
|
+
"futures",
|
|
74
|
+
"libc",
|
|
75
|
+
"proptest",
|
|
76
|
+
"schemars",
|
|
77
|
+
"semver",
|
|
78
|
+
"serde",
|
|
79
|
+
"serde_json",
|
|
80
|
+
"serde_yaml",
|
|
81
|
+
"sha2",
|
|
82
|
+
"shlex",
|
|
83
|
+
"tempfile",
|
|
84
|
+
"thiserror",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "bijux-cli-python"
|
|
89
|
+
version = "0.3.0"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"bijux-cli",
|
|
92
|
+
"pyo3",
|
|
93
|
+
"serde",
|
|
94
|
+
"serde_json",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "bijux-dev-cli"
|
|
99
|
+
version = "0.3.0"
|
|
100
|
+
dependencies = [
|
|
101
|
+
"anyhow",
|
|
102
|
+
"bijux-cli",
|
|
103
|
+
"clap",
|
|
104
|
+
"serde",
|
|
105
|
+
"serde_json",
|
|
106
|
+
"tempfile",
|
|
107
|
+
"toml",
|
|
108
|
+
]
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "bit-set"
|
|
112
|
+
version = "0.8.0"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
115
|
+
dependencies = [
|
|
116
|
+
"bit-vec",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "bit-vec"
|
|
121
|
+
version = "0.8.0"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "bitflags"
|
|
127
|
+
version = "2.11.0"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "block-buffer"
|
|
133
|
+
version = "0.10.4"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"generic-array",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "cfg-if"
|
|
142
|
+
version = "1.0.4"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "clap"
|
|
148
|
+
version = "4.5.60"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"clap_builder",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "clap_builder"
|
|
157
|
+
version = "4.5.60"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"anstream",
|
|
162
|
+
"anstyle",
|
|
163
|
+
"clap_lex",
|
|
164
|
+
"strsim",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "clap_lex"
|
|
169
|
+
version = "1.0.0"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "colorchoice"
|
|
175
|
+
version = "1.0.4"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "cpufeatures"
|
|
181
|
+
version = "0.2.17"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
184
|
+
dependencies = [
|
|
185
|
+
"libc",
|
|
186
|
+
]
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "crypto-common"
|
|
190
|
+
version = "0.1.7"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
193
|
+
dependencies = [
|
|
194
|
+
"generic-array",
|
|
195
|
+
"typenum",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "digest"
|
|
200
|
+
version = "0.10.7"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"block-buffer",
|
|
205
|
+
"crypto-common",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "dyn-clone"
|
|
210
|
+
version = "1.0.20"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "equivalent"
|
|
216
|
+
version = "1.0.2"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "errno"
|
|
222
|
+
version = "0.3.14"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"libc",
|
|
227
|
+
"windows-sys",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "fastrand"
|
|
232
|
+
version = "2.3.0"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "fnv"
|
|
238
|
+
version = "1.0.7"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "foldhash"
|
|
244
|
+
version = "0.1.5"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "futures"
|
|
250
|
+
version = "0.3.32"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"futures-channel",
|
|
255
|
+
"futures-core",
|
|
256
|
+
"futures-executor",
|
|
257
|
+
"futures-io",
|
|
258
|
+
"futures-sink",
|
|
259
|
+
"futures-task",
|
|
260
|
+
"futures-util",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "futures-channel"
|
|
265
|
+
version = "0.3.32"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"futures-core",
|
|
270
|
+
"futures-sink",
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "futures-core"
|
|
275
|
+
version = "0.3.32"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "futures-executor"
|
|
281
|
+
version = "0.3.32"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"futures-core",
|
|
286
|
+
"futures-task",
|
|
287
|
+
"futures-util",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "futures-io"
|
|
292
|
+
version = "0.3.32"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "futures-macro"
|
|
298
|
+
version = "0.3.32"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"proc-macro2",
|
|
303
|
+
"quote",
|
|
304
|
+
"syn",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "futures-sink"
|
|
309
|
+
version = "0.3.32"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "futures-task"
|
|
315
|
+
version = "0.3.32"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "futures-util"
|
|
321
|
+
version = "0.3.32"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"futures-channel",
|
|
326
|
+
"futures-core",
|
|
327
|
+
"futures-io",
|
|
328
|
+
"futures-macro",
|
|
329
|
+
"futures-sink",
|
|
330
|
+
"futures-task",
|
|
331
|
+
"memchr",
|
|
332
|
+
"pin-project-lite",
|
|
333
|
+
"slab",
|
|
334
|
+
]
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "generic-array"
|
|
338
|
+
version = "0.14.7"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"typenum",
|
|
343
|
+
"version_check",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "getrandom"
|
|
348
|
+
version = "0.3.4"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
351
|
+
dependencies = [
|
|
352
|
+
"cfg-if",
|
|
353
|
+
"libc",
|
|
354
|
+
"r-efi 5.3.0",
|
|
355
|
+
"wasip2",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "getrandom"
|
|
360
|
+
version = "0.4.2"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"cfg-if",
|
|
365
|
+
"libc",
|
|
366
|
+
"r-efi 6.0.0",
|
|
367
|
+
"wasip2",
|
|
368
|
+
"wasip3",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "hashbrown"
|
|
373
|
+
version = "0.15.5"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
376
|
+
dependencies = [
|
|
377
|
+
"foldhash",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "hashbrown"
|
|
382
|
+
version = "0.16.1"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "heck"
|
|
388
|
+
version = "0.5.0"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "id-arena"
|
|
394
|
+
version = "2.3.0"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "indexmap"
|
|
400
|
+
version = "2.13.0"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"equivalent",
|
|
405
|
+
"hashbrown 0.16.1",
|
|
406
|
+
"serde",
|
|
407
|
+
"serde_core",
|
|
408
|
+
]
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "indoc"
|
|
412
|
+
version = "2.0.7"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
415
|
+
dependencies = [
|
|
416
|
+
"rustversion",
|
|
417
|
+
]
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "is_terminal_polyfill"
|
|
421
|
+
version = "1.70.2"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "itoa"
|
|
427
|
+
version = "1.0.17"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "leb128fmt"
|
|
433
|
+
version = "0.1.0"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "libc"
|
|
439
|
+
version = "0.2.183"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "linux-raw-sys"
|
|
445
|
+
version = "0.12.1"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "log"
|
|
451
|
+
version = "0.4.29"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "memchr"
|
|
457
|
+
version = "2.8.0"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "memoffset"
|
|
463
|
+
version = "0.9.1"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"autocfg",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "num-traits"
|
|
472
|
+
version = "0.2.19"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"autocfg",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "once_cell"
|
|
481
|
+
version = "1.21.3"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "once_cell_polyfill"
|
|
487
|
+
version = "1.70.2"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "pin-project-lite"
|
|
493
|
+
version = "0.2.17"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "portable-atomic"
|
|
499
|
+
version = "1.13.1"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "ppv-lite86"
|
|
505
|
+
version = "0.2.21"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"zerocopy",
|
|
510
|
+
]
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "prettyplease"
|
|
514
|
+
version = "0.2.37"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
517
|
+
dependencies = [
|
|
518
|
+
"proc-macro2",
|
|
519
|
+
"syn",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "proc-macro2"
|
|
524
|
+
version = "1.0.106"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"unicode-ident",
|
|
529
|
+
]
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "proptest"
|
|
533
|
+
version = "1.10.0"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"bit-set",
|
|
538
|
+
"bit-vec",
|
|
539
|
+
"bitflags",
|
|
540
|
+
"num-traits",
|
|
541
|
+
"rand",
|
|
542
|
+
"rand_chacha",
|
|
543
|
+
"rand_xorshift",
|
|
544
|
+
"regex-syntax",
|
|
545
|
+
"rusty-fork",
|
|
546
|
+
"tempfile",
|
|
547
|
+
"unarray",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "pyo3"
|
|
552
|
+
version = "0.24.2"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"cfg-if",
|
|
557
|
+
"indoc",
|
|
558
|
+
"libc",
|
|
559
|
+
"memoffset",
|
|
560
|
+
"once_cell",
|
|
561
|
+
"portable-atomic",
|
|
562
|
+
"pyo3-build-config",
|
|
563
|
+
"pyo3-ffi",
|
|
564
|
+
"pyo3-macros",
|
|
565
|
+
"unindent",
|
|
566
|
+
]
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "pyo3-build-config"
|
|
570
|
+
version = "0.24.2"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
573
|
+
dependencies = [
|
|
574
|
+
"once_cell",
|
|
575
|
+
"target-lexicon",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "pyo3-ffi"
|
|
580
|
+
version = "0.24.2"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"libc",
|
|
585
|
+
"pyo3-build-config",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "pyo3-macros"
|
|
590
|
+
version = "0.24.2"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"proc-macro2",
|
|
595
|
+
"pyo3-macros-backend",
|
|
596
|
+
"quote",
|
|
597
|
+
"syn",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "pyo3-macros-backend"
|
|
602
|
+
version = "0.24.2"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
605
|
+
dependencies = [
|
|
606
|
+
"heck",
|
|
607
|
+
"proc-macro2",
|
|
608
|
+
"pyo3-build-config",
|
|
609
|
+
"quote",
|
|
610
|
+
"syn",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "quick-error"
|
|
615
|
+
version = "1.2.3"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "quote"
|
|
621
|
+
version = "1.0.45"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"proc-macro2",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "r-efi"
|
|
630
|
+
version = "5.3.0"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "r-efi"
|
|
636
|
+
version = "6.0.0"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "rand"
|
|
642
|
+
version = "0.9.2"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"rand_chacha",
|
|
647
|
+
"rand_core",
|
|
648
|
+
]
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "rand_chacha"
|
|
652
|
+
version = "0.9.0"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"ppv-lite86",
|
|
657
|
+
"rand_core",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "rand_core"
|
|
662
|
+
version = "0.9.5"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
665
|
+
dependencies = [
|
|
666
|
+
"getrandom 0.3.4",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "rand_xorshift"
|
|
671
|
+
version = "0.4.0"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"rand_core",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "regex-syntax"
|
|
680
|
+
version = "0.8.10"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "rustix"
|
|
686
|
+
version = "1.1.4"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"bitflags",
|
|
691
|
+
"errno",
|
|
692
|
+
"libc",
|
|
693
|
+
"linux-raw-sys",
|
|
694
|
+
"windows-sys",
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "rustversion"
|
|
699
|
+
version = "1.0.22"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "rusty-fork"
|
|
705
|
+
version = "0.3.1"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"fnv",
|
|
710
|
+
"quick-error",
|
|
711
|
+
"tempfile",
|
|
712
|
+
"wait-timeout",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "ryu"
|
|
717
|
+
version = "1.0.23"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "schemars"
|
|
723
|
+
version = "0.8.22"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"dyn-clone",
|
|
728
|
+
"schemars_derive",
|
|
729
|
+
"serde",
|
|
730
|
+
"serde_json",
|
|
731
|
+
]
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "schemars_derive"
|
|
735
|
+
version = "0.8.22"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
|
|
738
|
+
dependencies = [
|
|
739
|
+
"proc-macro2",
|
|
740
|
+
"quote",
|
|
741
|
+
"serde_derive_internals",
|
|
742
|
+
"syn",
|
|
743
|
+
]
|
|
744
|
+
|
|
745
|
+
[[package]]
|
|
746
|
+
name = "semver"
|
|
747
|
+
version = "1.0.27"
|
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "serde"
|
|
753
|
+
version = "1.0.228"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
756
|
+
dependencies = [
|
|
757
|
+
"serde_core",
|
|
758
|
+
"serde_derive",
|
|
759
|
+
]
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "serde_core"
|
|
763
|
+
version = "1.0.228"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"serde_derive",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "serde_derive"
|
|
772
|
+
version = "1.0.228"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"proc-macro2",
|
|
777
|
+
"quote",
|
|
778
|
+
"syn",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "serde_derive_internals"
|
|
783
|
+
version = "0.29.1"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"proc-macro2",
|
|
788
|
+
"quote",
|
|
789
|
+
"syn",
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "serde_json"
|
|
794
|
+
version = "1.0.149"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"itoa",
|
|
799
|
+
"memchr",
|
|
800
|
+
"serde",
|
|
801
|
+
"serde_core",
|
|
802
|
+
"zmij",
|
|
803
|
+
]
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "serde_spanned"
|
|
807
|
+
version = "1.0.4"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
|
|
810
|
+
dependencies = [
|
|
811
|
+
"serde_core",
|
|
812
|
+
]
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "serde_yaml"
|
|
816
|
+
version = "0.9.34+deprecated"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
819
|
+
dependencies = [
|
|
820
|
+
"indexmap",
|
|
821
|
+
"itoa",
|
|
822
|
+
"ryu",
|
|
823
|
+
"serde",
|
|
824
|
+
"unsafe-libyaml",
|
|
825
|
+
]
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "sha2"
|
|
829
|
+
version = "0.10.9"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
832
|
+
dependencies = [
|
|
833
|
+
"cfg-if",
|
|
834
|
+
"cpufeatures",
|
|
835
|
+
"digest",
|
|
836
|
+
]
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "shlex"
|
|
840
|
+
version = "1.3.0"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "slab"
|
|
846
|
+
version = "0.4.12"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "strsim"
|
|
852
|
+
version = "0.11.1"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "syn"
|
|
858
|
+
version = "2.0.117"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"proc-macro2",
|
|
863
|
+
"quote",
|
|
864
|
+
"unicode-ident",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "target-lexicon"
|
|
869
|
+
version = "0.13.5"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "tempfile"
|
|
875
|
+
version = "3.26.0"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"fastrand",
|
|
880
|
+
"getrandom 0.4.2",
|
|
881
|
+
"once_cell",
|
|
882
|
+
"rustix",
|
|
883
|
+
"windows-sys",
|
|
884
|
+
]
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "thiserror"
|
|
888
|
+
version = "2.0.18"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"thiserror-impl",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "thiserror-impl"
|
|
897
|
+
version = "2.0.18"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"proc-macro2",
|
|
902
|
+
"quote",
|
|
903
|
+
"syn",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "toml"
|
|
908
|
+
version = "0.9.12+spec-1.1.0"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
|
|
911
|
+
dependencies = [
|
|
912
|
+
"indexmap",
|
|
913
|
+
"serde_core",
|
|
914
|
+
"serde_spanned",
|
|
915
|
+
"toml_datetime",
|
|
916
|
+
"toml_parser",
|
|
917
|
+
"toml_writer",
|
|
918
|
+
"winnow",
|
|
919
|
+
]
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "toml_datetime"
|
|
923
|
+
version = "0.7.5+spec-1.1.0"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
926
|
+
dependencies = [
|
|
927
|
+
"serde_core",
|
|
928
|
+
]
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "toml_parser"
|
|
932
|
+
version = "1.0.9+spec-1.1.0"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"winnow",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "toml_writer"
|
|
941
|
+
version = "1.0.6+spec-1.1.0"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "typenum"
|
|
947
|
+
version = "1.19.0"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "unarray"
|
|
953
|
+
version = "0.1.4"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "unicode-ident"
|
|
959
|
+
version = "1.0.24"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
962
|
+
|
|
963
|
+
[[package]]
|
|
964
|
+
name = "unicode-xid"
|
|
965
|
+
version = "0.2.6"
|
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "unindent"
|
|
971
|
+
version = "0.2.4"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "unsafe-libyaml"
|
|
977
|
+
version = "0.2.11"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "utf8parse"
|
|
983
|
+
version = "0.2.2"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "version_check"
|
|
989
|
+
version = "0.9.5"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "wait-timeout"
|
|
995
|
+
version = "0.2.1"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
998
|
+
dependencies = [
|
|
999
|
+
"libc",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "wasip2"
|
|
1004
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"wit-bindgen",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "wasip3"
|
|
1013
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1016
|
+
dependencies = [
|
|
1017
|
+
"wit-bindgen",
|
|
1018
|
+
]
|
|
1019
|
+
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "wasm-encoder"
|
|
1022
|
+
version = "0.244.0"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1025
|
+
dependencies = [
|
|
1026
|
+
"leb128fmt",
|
|
1027
|
+
"wasmparser",
|
|
1028
|
+
]
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "wasm-metadata"
|
|
1032
|
+
version = "0.244.0"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
1035
|
+
dependencies = [
|
|
1036
|
+
"anyhow",
|
|
1037
|
+
"indexmap",
|
|
1038
|
+
"wasm-encoder",
|
|
1039
|
+
"wasmparser",
|
|
1040
|
+
]
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "wasmparser"
|
|
1044
|
+
version = "0.244.0"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1047
|
+
dependencies = [
|
|
1048
|
+
"bitflags",
|
|
1049
|
+
"hashbrown 0.15.5",
|
|
1050
|
+
"indexmap",
|
|
1051
|
+
"semver",
|
|
1052
|
+
]
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "windows-link"
|
|
1056
|
+
version = "0.2.1"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1059
|
+
|
|
1060
|
+
[[package]]
|
|
1061
|
+
name = "windows-sys"
|
|
1062
|
+
version = "0.61.2"
|
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1065
|
+
dependencies = [
|
|
1066
|
+
"windows-link",
|
|
1067
|
+
]
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "winnow"
|
|
1071
|
+
version = "0.7.15"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "wit-bindgen"
|
|
1077
|
+
version = "0.51.0"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1080
|
+
dependencies = [
|
|
1081
|
+
"wit-bindgen-rust-macro",
|
|
1082
|
+
]
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "wit-bindgen-core"
|
|
1086
|
+
version = "0.51.0"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"anyhow",
|
|
1091
|
+
"heck",
|
|
1092
|
+
"wit-parser",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "wit-bindgen-rust"
|
|
1097
|
+
version = "0.51.0"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1100
|
+
dependencies = [
|
|
1101
|
+
"anyhow",
|
|
1102
|
+
"heck",
|
|
1103
|
+
"indexmap",
|
|
1104
|
+
"prettyplease",
|
|
1105
|
+
"syn",
|
|
1106
|
+
"wasm-metadata",
|
|
1107
|
+
"wit-bindgen-core",
|
|
1108
|
+
"wit-component",
|
|
1109
|
+
]
|
|
1110
|
+
|
|
1111
|
+
[[package]]
|
|
1112
|
+
name = "wit-bindgen-rust-macro"
|
|
1113
|
+
version = "0.51.0"
|
|
1114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1116
|
+
dependencies = [
|
|
1117
|
+
"anyhow",
|
|
1118
|
+
"prettyplease",
|
|
1119
|
+
"proc-macro2",
|
|
1120
|
+
"quote",
|
|
1121
|
+
"syn",
|
|
1122
|
+
"wit-bindgen-core",
|
|
1123
|
+
"wit-bindgen-rust",
|
|
1124
|
+
]
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "wit-component"
|
|
1128
|
+
version = "0.244.0"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1131
|
+
dependencies = [
|
|
1132
|
+
"anyhow",
|
|
1133
|
+
"bitflags",
|
|
1134
|
+
"indexmap",
|
|
1135
|
+
"log",
|
|
1136
|
+
"serde",
|
|
1137
|
+
"serde_derive",
|
|
1138
|
+
"serde_json",
|
|
1139
|
+
"wasm-encoder",
|
|
1140
|
+
"wasm-metadata",
|
|
1141
|
+
"wasmparser",
|
|
1142
|
+
"wit-parser",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "wit-parser"
|
|
1147
|
+
version = "0.244.0"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"anyhow",
|
|
1152
|
+
"id-arena",
|
|
1153
|
+
"indexmap",
|
|
1154
|
+
"log",
|
|
1155
|
+
"semver",
|
|
1156
|
+
"serde",
|
|
1157
|
+
"serde_derive",
|
|
1158
|
+
"serde_json",
|
|
1159
|
+
"unicode-xid",
|
|
1160
|
+
"wasmparser",
|
|
1161
|
+
]
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "zerocopy"
|
|
1165
|
+
version = "0.8.42"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
|
|
1168
|
+
dependencies = [
|
|
1169
|
+
"zerocopy-derive",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "zerocopy-derive"
|
|
1174
|
+
version = "0.8.42"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
|
|
1177
|
+
dependencies = [
|
|
1178
|
+
"proc-macro2",
|
|
1179
|
+
"quote",
|
|
1180
|
+
"syn",
|
|
1181
|
+
]
|
|
1182
|
+
|
|
1183
|
+
[[package]]
|
|
1184
|
+
name = "zmij"
|
|
1185
|
+
version = "1.0.21"
|
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|