celerity-runtime-sdk 0.1.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.
- celerity_runtime_sdk-0.1.0/Cargo.lock +5042 -0
- celerity_runtime_sdk-0.1.0/Cargo.toml +5 -0
- celerity_runtime_sdk-0.1.0/PKG-INFO +30 -0
- celerity_runtime_sdk-0.1.0/README.md +11 -0
- celerity_runtime_sdk-0.1.0/aws-helpers/Cargo.toml +14 -0
- celerity_runtime_sdk-0.1.0/aws-helpers/src/aws_regions.rs +20 -0
- celerity_runtime_sdk-0.1.0/aws-helpers/src/clients.rs +13 -0
- celerity_runtime_sdk-0.1.0/aws-helpers/src/credentials.rs +12 -0
- celerity_runtime_sdk-0.1.0/aws-helpers/src/lib.rs +3 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/Cargo.toml +22 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/README.md +24 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/blueprint.rs +1155 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/blueprint_with_subs.rs +615 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/lib.rs +13 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/parse.rs +158 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/parse_blueprint_resource.rs +209 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/parse_helpers.rs +150 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/parse_mapping_node.rs +123 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/parse_substitutions.rs +555 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/parse_yaml.rs +2317 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/resolve_substitutions.rs +2323 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/validate_parsed.rs +44 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/workflow_consts.rs +25 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/yaml_helpers.rs +139 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/src/yaml_workflow.rs +779 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/blueprint_config_test.rs +995 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/combined-app.jsonc +270 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/combined-app.yaml +216 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/datastore-complete.yaml +40 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/datastore-keys-only.yaml +10 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/datastore-with-indexes.yaml +17 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/datastore-with-schema.yaml +40 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/datastore-with-ttl.yaml +13 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/empty-variable-type.jsonc +89 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/empty-variable-type.yaml +75 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/handler-config-resource-types.jsonc +210 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/handler-config-resource-types.yaml +172 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/http-api-multi-guard.jsonc +99 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/http-api-multi-guard.yaml +90 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/http-api.jsonc +104 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/http-api.yaml +93 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/hybrid-api.jsonc +140 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/hybrid-api.yaml +109 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-blueprint.jsonc +1 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-blueprint.yaml +2 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-resource-metadata.jsonc +94 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-resource-metadata.yaml +87 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-resource-type.jsonc +101 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-resource-type.yaml +92 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-secret.jsonc +101 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-secret.yaml +91 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-variable-description.jsonc +101 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-variable-description.yaml +92 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-variable-type.jsonc +89 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-variable-type.yaml +75 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-version.jsonc +89 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/invalid-version.yaml +75 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/missing-resource-type.jsonc +103 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/missing-resource-type.yaml +92 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/missing-version.jsonc +88 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/missing-version.yaml +74 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/no-resources.jsonc +16 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/no-resources.yaml +12 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/schedule-app.jsonc +45 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/schedule-app.yaml +31 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/shared-handler-config.jsonc +126 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/shared-handler-config.yaml +110 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/unsupported-resource-type.jsonc +104 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/unsupported-resource-type.yaml +93 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/vpc-standard.yaml +8 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/vpc-with-preset.yaml +9 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/vpc-with-substitutions.yaml +16 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/websocket-api-multi-guard.jsonc +55 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/websocket-api-multi-guard.yaml +47 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/websocket-api-with-ws-config.jsonc +50 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/websocket-api-with-ws-config.yaml +41 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/websocket-api.jsonc +43 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/websocket-api.yaml +38 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/workflow-app.jsonc +301 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/data/fixtures/workflow-app.yaml +213 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/datastore_resource_test.rs +605 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_blueprint_config_from_jsonc_string.snap +130 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_blueprint_config_from_yaml_string.snap +130 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_combined_app_blueprint_config_from_jsonc_file.snap +290 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_combined_app_blueprint_config_from_yaml_file.snap +290 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_handler_config_resources_blueprint_config_from_jsonc_file.snap +236 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_handler_config_resources_blueprint_config_from_yaml_file.snap +236 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_http_api_multi_guard_blueprint_config_from_jsonc_file.snap +126 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_http_api_multi_guard_blueprint_config_from_yaml_file.snap +126 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_hybrid_api_blueprint_config_from_jsonc_file.snap +162 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_hybrid_api_blueprint_config_from_yaml_file.snap +162 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_schedule_app_blueprint_config_from_jsonc_file.snap +50 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_schedule_app_blueprint_config_from_yaml_file.snap +50 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_shared_handler_config_blueprint_config_from_jsonc_file.snap +152 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_shared_handler_config_blueprint_config_from_yaml_file.snap +152 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_websocket_api_blueprint_config_from_jsonc_file.snap +64 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_websocket_api_blueprint_config_from_yaml_file.snap +70 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_websocket_api_blueprint_config_with_ws_protocol_config_from_jsonc_file.snap +69 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_websocket_api_blueprint_config_with_ws_protocol_config_from_yaml_file.snap +75 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_websocket_api_multi_guard_blueprint_config_from_jsonc_file.snap +77 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_websocket_api_multi_guard_blueprint_config_from_yaml_file.snap +83 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_workflow_app_blueprint_config_from_jsonc_file.snap +361 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__parses_workflow_app_blueprint_config_from_yaml_file.snap +363 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__skips_parsing_resource_for_unsupported_resource_type_in_json_blueprint_config.snap +66 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/snapshots/blueprint_config_test__skips_parsing_resource_for_unsupported_resource_type_in_yaml_blueprint_config.snap +66 -0
- celerity_runtime_sdk-0.1.0/blueprint-config-parser/tests/vpc_resource_test.rs +348 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-azure-events-hub/Cargo.toml +10 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-azure-events-hub/src/lib.rs +1 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-azure-service-bus/Cargo.toml +10 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-azure-service-bus/src/lib.rs +1 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-gcloud-pubsub/Cargo.toml +10 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-gcloud-pubsub/src/lib.rs +1 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-gcloud-tasks/Cargo.toml +10 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-gcloud-tasks/src/lib.rs +1 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-kinesis/Cargo.toml +10 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-kinesis/src/lib.rs +1 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/Cargo.toml +31 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/lua-scripts/extend_locks.lua +19 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/lua-scripts/release_locks.lua +19 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/lua-scripts/release_stream_trim_lock.lua +14 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/lua-scripts/update_last_message_id.lua +39 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/src/errors.rs +28 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/src/lib.rs +7 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/src/lock_durations.rs +102 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/src/locks.rs +122 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/src/message_consumer.rs +926 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/src/telemetry.rs +30 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/src/trim_lock.rs +75 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/src/types.rs +271 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/tests/integration_test.rs +1038 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/tests/locks_test.rs +184 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-redis/tests/trim_lock_test.rs +61 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-sqs/Cargo.toml +35 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-sqs/src/errors.rs +28 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-sqs/src/lib.rs +5 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-sqs/src/message_consumer.rs +531 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-sqs/src/telemetry.rs +51 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-sqs/src/types.rs +179 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-sqs/src/visibility_timeout.rs +112 -0
- celerity_runtime_sdk-0.1.0/consumers/consumer-sqs/tests/integration_test.rs +315 -0
- celerity_runtime_sdk-0.1.0/core/Cargo.toml +95 -0
- celerity_runtime_sdk-0.1.0/core/README.md +23 -0
- celerity_runtime_sdk-0.1.0/core/src/application.rs +1448 -0
- celerity_runtime_sdk-0.1.0/core/src/auth_custom.rs +560 -0
- celerity_runtime_sdk-0.1.0/core/src/auth_http.rs +353 -0
- celerity_runtime_sdk-0.1.0/core/src/auth_jwt.rs +521 -0
- celerity_runtime_sdk-0.1.0/core/src/blueprint_helpers.rs +312 -0
- celerity_runtime_sdk-0.1.0/core/src/body_transform/aws_dynamodb.rs +271 -0
- celerity_runtime_sdk-0.1.0/core/src/body_transform/aws_s3.rs +180 -0
- celerity_runtime_sdk-0.1.0/core/src/body_transform.rs +109 -0
- celerity_runtime_sdk-0.1.0/core/src/config.rs +576 -0
- celerity_runtime_sdk-0.1.0/core/src/consts.rs +142 -0
- celerity_runtime_sdk-0.1.0/core/src/consumer_handler.rs +1322 -0
- celerity_runtime_sdk-0.1.0/core/src/errors.rs +225 -0
- celerity_runtime_sdk-0.1.0/core/src/handler_invoke.rs +358 -0
- celerity_runtime_sdk-0.1.0/core/src/lib.rs +20 -0
- celerity_runtime_sdk-0.1.0/core/src/request.rs +90 -0
- celerity_runtime_sdk-0.1.0/core/src/runtime_local_api.rs +1056 -0
- celerity_runtime_sdk-0.1.0/core/src/telemetry.rs +340 -0
- celerity_runtime_sdk-0.1.0/core/src/telemetry_utils.rs +29 -0
- celerity_runtime_sdk-0.1.0/core/src/transform_config.rs +2755 -0
- celerity_runtime_sdk-0.1.0/core/src/types.rs +212 -0
- celerity_runtime_sdk-0.1.0/core/src/utils.rs +67 -0
- celerity_runtime_sdk-0.1.0/core/src/value_sources.rs +282 -0
- celerity_runtime_sdk-0.1.0/core/src/websocket.rs +1378 -0
- celerity_runtime_sdk-0.1.0/core/tests/common/mod.rs +30 -0
- celerity_runtime_sdk-0.1.0/core/tests/data/fixtures/http-api.blueprint.yaml +93 -0
- celerity_runtime_sdk-0.1.0/core/tests/data/fixtures/private-jwks.json +18 -0
- celerity_runtime_sdk-0.1.0/core/tests/data/fixtures/public-jwks.json +12 -0
- celerity_runtime_sdk-0.1.0/core/tests/http_api_test.rs +222 -0
- celerity_runtime_sdk-0.1.0/core/tests/http_auth_test.rs +1247 -0
- celerity_runtime_sdk-0.1.0/core/tests/integration_consumer_test.rs +292 -0
- celerity_runtime_sdk-0.1.0/helpers/Cargo.toml +36 -0
- celerity_runtime_sdk-0.1.0/helpers/README.md +17 -0
- celerity_runtime_sdk-0.1.0/helpers/src/aws_telemetry.rs +61 -0
- celerity_runtime_sdk-0.1.0/helpers/src/consumers.rs +716 -0
- celerity_runtime_sdk-0.1.0/helpers/src/env.rs +48 -0
- celerity_runtime_sdk-0.1.0/helpers/src/http.rs +87 -0
- celerity_runtime_sdk-0.1.0/helpers/src/jsonpath.rs +193 -0
- celerity_runtime_sdk-0.1.0/helpers/src/lib.rs +13 -0
- celerity_runtime_sdk-0.1.0/helpers/src/redis.rs +280 -0
- celerity_runtime_sdk-0.1.0/helpers/src/request.rs +229 -0
- celerity_runtime_sdk-0.1.0/helpers/src/retries.rs +127 -0
- celerity_runtime_sdk-0.1.0/helpers/src/runtime_types.rs +42 -0
- celerity_runtime_sdk-0.1.0/helpers/src/scanner.rs +172 -0
- celerity_runtime_sdk-0.1.0/helpers/src/telemetry.rs +13 -0
- celerity_runtime_sdk-0.1.0/helpers/src/time.rs +75 -0
- celerity_runtime_sdk-0.1.0/helpers/src/websockets.rs +373 -0
- celerity_runtime_sdk-0.1.0/pyproject.toml +49 -0
- celerity_runtime_sdk-0.1.0/python/celerity_runtime_sdk/__init__.py +92 -0
- celerity_runtime_sdk-0.1.0/python/celerity_runtime_sdk/_celerity_runtime_sdk.pyi +1737 -0
- celerity_runtime_sdk-0.1.0/python/celerity_runtime_sdk/py.typed +0 -0
- celerity_runtime_sdk-0.1.0/sdk/python/.core-version +1 -0
- celerity_runtime_sdk-0.1.0/sdk/python/.env.test +6 -0
- celerity_runtime_sdk-0.1.0/sdk/python/.gitignore +72 -0
- celerity_runtime_sdk-0.1.0/sdk/python/.vscode/settings.example.json +6 -0
- celerity_runtime_sdk-0.1.0/sdk/python/CHANGELOG.md +27 -0
- celerity_runtime_sdk-0.1.0/sdk/python/CONTRIBUTING.md +78 -0
- celerity_runtime_sdk-0.1.0/sdk/python/Cargo.toml +48 -0
- celerity_runtime_sdk-0.1.0/sdk/python/README.md +11 -0
- celerity_runtime_sdk-0.1.0/sdk/python/rustfmt.toml +2 -0
- celerity_runtime_sdk-0.1.0/sdk/python/scripts/run-tests.sh +42 -0
- celerity_runtime_sdk-0.1.0/sdk/python/src/consumer.rs +384 -0
- celerity_runtime_sdk-0.1.0/sdk/python/src/core_runtime_config.rs +328 -0
- celerity_runtime_sdk-0.1.0/sdk/python/src/errors.rs +49 -0
- celerity_runtime_sdk-0.1.0/sdk/python/src/guard.rs +225 -0
- celerity_runtime_sdk-0.1.0/sdk/python/src/http.rs +433 -0
- celerity_runtime_sdk-0.1.0/sdk/python/src/interop.rs +85 -0
- celerity_runtime_sdk-0.1.0/sdk/python/src/invoke.rs +73 -0
- celerity_runtime_sdk-0.1.0/sdk/python/src/json_convert.rs +11 -0
- celerity_runtime_sdk-0.1.0/sdk/python/src/lib.rs +1027 -0
- celerity_runtime_sdk-0.1.0/sdk/python/src/runtime.rs +8 -0
- celerity_runtime_sdk-0.1.0/sdk/python/src/websockets.rs +527 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/consumer-schedule.blueprint.yaml +105 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/consumer_handlers/__init__.py +0 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/consumer_handlers/handlers.py +66 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/consumer_server.py +92 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/custom_handler_server.py +78 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/http-api.blueprint.yaml +175 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/http_handlers/__init__.py +0 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/http_handlers/handlers.py +79 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/http_server.py +57 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/hybrid-api.blueprint.yaml +133 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/orders/__init__.py +0 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/orders/handlers.py +62 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/server.py +87 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/shared.py +16 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/slow_custom_handler_server.py +98 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/test_consumer_schedule.py +208 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/test_custom_handler.py +92 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/test_http.py +288 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/test_runtime_application.py +121 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/test_websocket.py +215 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/ws-only.blueprint.yaml +106 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/ws_handlers/__init__.py +0 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/ws_handlers/handlers.py +73 -0
- celerity_runtime_sdk-0.1.0/sdk/python/tests/ws_server.py +59 -0
- celerity_runtime_sdk-0.1.0/sdk/python/uv.lock +338 -0
- celerity_runtime_sdk-0.1.0/ws/ws-registry/Cargo.toml +27 -0
- celerity_runtime_sdk-0.1.0/ws/ws-registry/src/acks.rs +313 -0
- celerity_runtime_sdk-0.1.0/ws/ws-registry/src/errors.rs +45 -0
- celerity_runtime_sdk-0.1.0/ws/ws-registry/src/lib.rs +5 -0
- celerity_runtime_sdk-0.1.0/ws/ws-registry/src/message_helpers.rs +43 -0
- celerity_runtime_sdk-0.1.0/ws/ws-registry/src/registry.rs +818 -0
- celerity_runtime_sdk-0.1.0/ws/ws-registry/src/types.rs +60 -0
|
@@ -0,0 +1,5042 @@
|
|
|
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 = "ahash"
|
|
22
|
+
version = "0.8.12"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cfg-if",
|
|
27
|
+
"once_cell",
|
|
28
|
+
"version_check",
|
|
29
|
+
"zerocopy",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "aho-corasick"
|
|
34
|
+
version = "1.1.4"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"memchr",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "allocator-api2"
|
|
43
|
+
version = "0.2.21"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "android_system_properties"
|
|
49
|
+
version = "0.1.5"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"libc",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "anstream"
|
|
58
|
+
version = "0.6.21"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"anstyle",
|
|
63
|
+
"anstyle-parse",
|
|
64
|
+
"anstyle-query",
|
|
65
|
+
"anstyle-wincon",
|
|
66
|
+
"colorchoice",
|
|
67
|
+
"is_terminal_polyfill",
|
|
68
|
+
"utf8parse",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "anstyle"
|
|
73
|
+
version = "1.0.13"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "anstyle-parse"
|
|
79
|
+
version = "0.2.7"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"utf8parse",
|
|
84
|
+
]
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "anstyle-query"
|
|
88
|
+
version = "1.1.5"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
91
|
+
dependencies = [
|
|
92
|
+
"windows-sys 0.60.2",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "anstyle-wincon"
|
|
97
|
+
version = "3.0.11"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
100
|
+
dependencies = [
|
|
101
|
+
"anstyle",
|
|
102
|
+
"once_cell_polyfill",
|
|
103
|
+
"windows-sys 0.60.2",
|
|
104
|
+
]
|
|
105
|
+
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "anyhow"
|
|
108
|
+
version = "1.0.100"
|
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "arraydeque"
|
|
114
|
+
version = "0.5.1"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "async-recursion"
|
|
120
|
+
version = "1.1.1"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
|
|
123
|
+
dependencies = [
|
|
124
|
+
"proc-macro2",
|
|
125
|
+
"quote",
|
|
126
|
+
"syn",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "async-stream"
|
|
131
|
+
version = "0.3.6"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"async-stream-impl",
|
|
136
|
+
"futures-core",
|
|
137
|
+
"pin-project-lite",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "async-stream-impl"
|
|
142
|
+
version = "0.3.6"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"proc-macro2",
|
|
147
|
+
"quote",
|
|
148
|
+
"syn",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "async-trait"
|
|
153
|
+
version = "0.1.89"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
156
|
+
dependencies = [
|
|
157
|
+
"proc-macro2",
|
|
158
|
+
"quote",
|
|
159
|
+
"syn",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "atomic-waker"
|
|
164
|
+
version = "1.1.2"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "atty"
|
|
170
|
+
version = "0.2.14"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"hermit-abi 0.1.19",
|
|
175
|
+
"libc",
|
|
176
|
+
"winapi",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "autocfg"
|
|
181
|
+
version = "1.5.0"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "aws-config"
|
|
187
|
+
version = "1.8.12"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "96571e6996817bf3d58f6b569e4b9fd2e9d2fcf9f7424eed07b2ce9bb87535e5"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"aws-credential-types",
|
|
192
|
+
"aws-runtime",
|
|
193
|
+
"aws-sdk-sso",
|
|
194
|
+
"aws-sdk-ssooidc",
|
|
195
|
+
"aws-sdk-sts",
|
|
196
|
+
"aws-smithy-async",
|
|
197
|
+
"aws-smithy-http 0.62.6",
|
|
198
|
+
"aws-smithy-json",
|
|
199
|
+
"aws-smithy-runtime",
|
|
200
|
+
"aws-smithy-runtime-api",
|
|
201
|
+
"aws-smithy-types",
|
|
202
|
+
"aws-types",
|
|
203
|
+
"bytes",
|
|
204
|
+
"fastrand",
|
|
205
|
+
"hex",
|
|
206
|
+
"http 1.4.0",
|
|
207
|
+
"ring",
|
|
208
|
+
"time",
|
|
209
|
+
"tokio",
|
|
210
|
+
"tracing",
|
|
211
|
+
"url",
|
|
212
|
+
"zeroize",
|
|
213
|
+
]
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "aws-credential-types"
|
|
217
|
+
version = "1.2.11"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "3cd362783681b15d136480ad555a099e82ecd8e2d10a841e14dfd0078d67fee3"
|
|
220
|
+
dependencies = [
|
|
221
|
+
"aws-smithy-async",
|
|
222
|
+
"aws-smithy-runtime-api",
|
|
223
|
+
"aws-smithy-types",
|
|
224
|
+
"zeroize",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "aws-lc-rs"
|
|
229
|
+
version = "1.15.4"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "7b7b6141e96a8c160799cc2d5adecd5cbbe5054cb8c7c4af53da0f83bb7ad256"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"aws-lc-sys",
|
|
234
|
+
"zeroize",
|
|
235
|
+
]
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "aws-lc-sys"
|
|
239
|
+
version = "0.37.0"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "5c34dda4df7017c8db52132f0f8a2e0f8161649d15723ed63fc00c82d0f2081a"
|
|
242
|
+
dependencies = [
|
|
243
|
+
"cc",
|
|
244
|
+
"cmake",
|
|
245
|
+
"dunce",
|
|
246
|
+
"fs_extra",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "aws-runtime"
|
|
251
|
+
version = "1.5.18"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "959dab27ce613e6c9658eb3621064d0e2027e5f2acb65bc526a43577facea557"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"aws-credential-types",
|
|
256
|
+
"aws-sigv4",
|
|
257
|
+
"aws-smithy-async",
|
|
258
|
+
"aws-smithy-http 0.62.6",
|
|
259
|
+
"aws-smithy-runtime",
|
|
260
|
+
"aws-smithy-runtime-api",
|
|
261
|
+
"aws-smithy-types",
|
|
262
|
+
"aws-types",
|
|
263
|
+
"bytes",
|
|
264
|
+
"fastrand",
|
|
265
|
+
"http 0.2.12",
|
|
266
|
+
"http-body 0.4.6",
|
|
267
|
+
"percent-encoding",
|
|
268
|
+
"pin-project-lite",
|
|
269
|
+
"tracing",
|
|
270
|
+
"uuid",
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "aws-sdk-account"
|
|
275
|
+
version = "1.95.0"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "82c5f0ed0807aef5f98fb6f00aa3fa69d317f2ae4d4fb372bded1838f5678565"
|
|
278
|
+
dependencies = [
|
|
279
|
+
"aws-credential-types",
|
|
280
|
+
"aws-runtime",
|
|
281
|
+
"aws-smithy-async",
|
|
282
|
+
"aws-smithy-http 0.62.6",
|
|
283
|
+
"aws-smithy-json",
|
|
284
|
+
"aws-smithy-observability",
|
|
285
|
+
"aws-smithy-runtime",
|
|
286
|
+
"aws-smithy-runtime-api",
|
|
287
|
+
"aws-smithy-types",
|
|
288
|
+
"aws-types",
|
|
289
|
+
"bytes",
|
|
290
|
+
"fastrand",
|
|
291
|
+
"http 0.2.12",
|
|
292
|
+
"regex-lite",
|
|
293
|
+
"tracing",
|
|
294
|
+
]
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "aws-sdk-sqs"
|
|
298
|
+
version = "1.92.0"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "60a930bbcf95be5e2e1424c1df814265e86e5796ad0eac3104ebeb0180279ab7"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"aws-credential-types",
|
|
303
|
+
"aws-runtime",
|
|
304
|
+
"aws-smithy-async",
|
|
305
|
+
"aws-smithy-http 0.62.6",
|
|
306
|
+
"aws-smithy-json",
|
|
307
|
+
"aws-smithy-observability",
|
|
308
|
+
"aws-smithy-runtime",
|
|
309
|
+
"aws-smithy-runtime-api",
|
|
310
|
+
"aws-smithy-types",
|
|
311
|
+
"aws-types",
|
|
312
|
+
"bytes",
|
|
313
|
+
"fastrand",
|
|
314
|
+
"http 0.2.12",
|
|
315
|
+
"regex-lite",
|
|
316
|
+
"tracing",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "aws-sdk-sso"
|
|
321
|
+
version = "1.92.0"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "b7d63bd2bdeeb49aa3f9b00c15e18583503b778b2e792fc06284d54e7d5b6566"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"aws-credential-types",
|
|
326
|
+
"aws-runtime",
|
|
327
|
+
"aws-smithy-async",
|
|
328
|
+
"aws-smithy-http 0.62.6",
|
|
329
|
+
"aws-smithy-json",
|
|
330
|
+
"aws-smithy-observability",
|
|
331
|
+
"aws-smithy-runtime",
|
|
332
|
+
"aws-smithy-runtime-api",
|
|
333
|
+
"aws-smithy-types",
|
|
334
|
+
"aws-types",
|
|
335
|
+
"bytes",
|
|
336
|
+
"fastrand",
|
|
337
|
+
"http 0.2.12",
|
|
338
|
+
"regex-lite",
|
|
339
|
+
"tracing",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "aws-sdk-ssooidc"
|
|
344
|
+
version = "1.94.0"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "532d93574bf731f311bafb761366f9ece345a0416dbcc273d81d6d1a1205239b"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"aws-credential-types",
|
|
349
|
+
"aws-runtime",
|
|
350
|
+
"aws-smithy-async",
|
|
351
|
+
"aws-smithy-http 0.62.6",
|
|
352
|
+
"aws-smithy-json",
|
|
353
|
+
"aws-smithy-observability",
|
|
354
|
+
"aws-smithy-runtime",
|
|
355
|
+
"aws-smithy-runtime-api",
|
|
356
|
+
"aws-smithy-types",
|
|
357
|
+
"aws-types",
|
|
358
|
+
"bytes",
|
|
359
|
+
"fastrand",
|
|
360
|
+
"http 0.2.12",
|
|
361
|
+
"regex-lite",
|
|
362
|
+
"tracing",
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "aws-sdk-sts"
|
|
367
|
+
version = "1.96.0"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "357e9a029c7524db6a0099cd77fbd5da165540339e7296cca603531bc783b56c"
|
|
370
|
+
dependencies = [
|
|
371
|
+
"aws-credential-types",
|
|
372
|
+
"aws-runtime",
|
|
373
|
+
"aws-smithy-async",
|
|
374
|
+
"aws-smithy-http 0.62.6",
|
|
375
|
+
"aws-smithy-json",
|
|
376
|
+
"aws-smithy-observability",
|
|
377
|
+
"aws-smithy-query",
|
|
378
|
+
"aws-smithy-runtime",
|
|
379
|
+
"aws-smithy-runtime-api",
|
|
380
|
+
"aws-smithy-types",
|
|
381
|
+
"aws-smithy-xml",
|
|
382
|
+
"aws-types",
|
|
383
|
+
"fastrand",
|
|
384
|
+
"http 0.2.12",
|
|
385
|
+
"regex-lite",
|
|
386
|
+
"tracing",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "aws-sigv4"
|
|
391
|
+
version = "1.3.7"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "69e523e1c4e8e7e8ff219d732988e22bfeae8a1cafdbe6d9eca1546fa080be7c"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"aws-credential-types",
|
|
396
|
+
"aws-smithy-http 0.62.6",
|
|
397
|
+
"aws-smithy-runtime-api",
|
|
398
|
+
"aws-smithy-types",
|
|
399
|
+
"bytes",
|
|
400
|
+
"form_urlencoded",
|
|
401
|
+
"hex",
|
|
402
|
+
"hmac",
|
|
403
|
+
"http 0.2.12",
|
|
404
|
+
"http 1.4.0",
|
|
405
|
+
"percent-encoding",
|
|
406
|
+
"sha2",
|
|
407
|
+
"time",
|
|
408
|
+
"tracing",
|
|
409
|
+
]
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "aws-smithy-async"
|
|
413
|
+
version = "1.2.11"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "52eec3db979d18cb807fc1070961cc51d87d069abe9ab57917769687368a8c6c"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"futures-util",
|
|
418
|
+
"pin-project-lite",
|
|
419
|
+
"tokio",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "aws-smithy-http"
|
|
424
|
+
version = "0.62.6"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "826141069295752372f8203c17f28e30c464d22899a43a0c9fd9c458d469c88b"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"aws-smithy-runtime-api",
|
|
429
|
+
"aws-smithy-types",
|
|
430
|
+
"bytes",
|
|
431
|
+
"bytes-utils",
|
|
432
|
+
"futures-core",
|
|
433
|
+
"futures-util",
|
|
434
|
+
"http 0.2.12",
|
|
435
|
+
"http 1.4.0",
|
|
436
|
+
"http-body 0.4.6",
|
|
437
|
+
"percent-encoding",
|
|
438
|
+
"pin-project-lite",
|
|
439
|
+
"pin-utils",
|
|
440
|
+
"tracing",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "aws-smithy-http"
|
|
445
|
+
version = "0.63.3"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "630e67f2a31094ffa51b210ae030855cb8f3b7ee1329bdd8d085aaf61e8b97fc"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"aws-smithy-runtime-api",
|
|
450
|
+
"aws-smithy-types",
|
|
451
|
+
"bytes",
|
|
452
|
+
"bytes-utils",
|
|
453
|
+
"futures-core",
|
|
454
|
+
"futures-util",
|
|
455
|
+
"http 1.4.0",
|
|
456
|
+
"http-body 1.0.1",
|
|
457
|
+
"http-body-util",
|
|
458
|
+
"percent-encoding",
|
|
459
|
+
"pin-project-lite",
|
|
460
|
+
"pin-utils",
|
|
461
|
+
"tracing",
|
|
462
|
+
]
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "aws-smithy-http-client"
|
|
466
|
+
version = "1.1.9"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "12fb0abf49ff0cab20fd31ac1215ed7ce0ea92286ba09e2854b42ba5cabe7525"
|
|
469
|
+
dependencies = [
|
|
470
|
+
"aws-smithy-async",
|
|
471
|
+
"aws-smithy-runtime-api",
|
|
472
|
+
"aws-smithy-types",
|
|
473
|
+
"h2 0.3.27",
|
|
474
|
+
"h2 0.4.13",
|
|
475
|
+
"http 0.2.12",
|
|
476
|
+
"http 1.4.0",
|
|
477
|
+
"http-body 0.4.6",
|
|
478
|
+
"hyper 0.14.32",
|
|
479
|
+
"hyper 1.8.1",
|
|
480
|
+
"hyper-rustls 0.24.2",
|
|
481
|
+
"hyper-rustls 0.27.7",
|
|
482
|
+
"hyper-util",
|
|
483
|
+
"pin-project-lite",
|
|
484
|
+
"rustls 0.21.12",
|
|
485
|
+
"rustls 0.23.36",
|
|
486
|
+
"rustls-native-certs",
|
|
487
|
+
"rustls-pki-types",
|
|
488
|
+
"tokio",
|
|
489
|
+
"tokio-rustls 0.26.4",
|
|
490
|
+
"tower 0.5.3",
|
|
491
|
+
"tracing",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "aws-smithy-json"
|
|
496
|
+
version = "0.61.9"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "49fa1213db31ac95288d981476f78d05d9cbb0353d22cdf3472cc05bb02f6551"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"aws-smithy-types",
|
|
501
|
+
]
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "aws-smithy-observability"
|
|
505
|
+
version = "0.2.4"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "c0a46543fbc94621080b3cf553eb4cbbdc41dd9780a30c4756400f0139440a1d"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"aws-smithy-runtime-api",
|
|
510
|
+
]
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "aws-smithy-query"
|
|
514
|
+
version = "0.60.13"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "0cebbddb6f3a5bd81553643e9c7daf3cc3dc5b0b5f398ac668630e8a84e6fff0"
|
|
517
|
+
dependencies = [
|
|
518
|
+
"aws-smithy-types",
|
|
519
|
+
"urlencoding",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "aws-smithy-runtime"
|
|
524
|
+
version = "1.10.0"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "f3df87c14f0127a0d77eb261c3bc45d5b4833e2a1f63583ebfb728e4852134ee"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"aws-smithy-async",
|
|
529
|
+
"aws-smithy-http 0.63.3",
|
|
530
|
+
"aws-smithy-http-client",
|
|
531
|
+
"aws-smithy-observability",
|
|
532
|
+
"aws-smithy-runtime-api",
|
|
533
|
+
"aws-smithy-types",
|
|
534
|
+
"bytes",
|
|
535
|
+
"fastrand",
|
|
536
|
+
"http 0.2.12",
|
|
537
|
+
"http 1.4.0",
|
|
538
|
+
"http-body 0.4.6",
|
|
539
|
+
"http-body 1.0.1",
|
|
540
|
+
"http-body-util",
|
|
541
|
+
"pin-project-lite",
|
|
542
|
+
"pin-utils",
|
|
543
|
+
"tokio",
|
|
544
|
+
"tracing",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "aws-smithy-runtime-api"
|
|
549
|
+
version = "1.11.3"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "49952c52f7eebb72ce2a754d3866cc0f87b97d2a46146b79f80f3a93fb2b3716"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"aws-smithy-async",
|
|
554
|
+
"aws-smithy-types",
|
|
555
|
+
"bytes",
|
|
556
|
+
"http 0.2.12",
|
|
557
|
+
"http 1.4.0",
|
|
558
|
+
"pin-project-lite",
|
|
559
|
+
"tokio",
|
|
560
|
+
"tracing",
|
|
561
|
+
"zeroize",
|
|
562
|
+
]
|
|
563
|
+
|
|
564
|
+
[[package]]
|
|
565
|
+
name = "aws-smithy-types"
|
|
566
|
+
version = "1.4.3"
|
|
567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
+
checksum = "3b3a26048eeab0ddeba4b4f9d51654c79af8c3b32357dc5f336cee85ab331c33"
|
|
569
|
+
dependencies = [
|
|
570
|
+
"base64-simd",
|
|
571
|
+
"bytes",
|
|
572
|
+
"bytes-utils",
|
|
573
|
+
"futures-core",
|
|
574
|
+
"http 0.2.12",
|
|
575
|
+
"http 1.4.0",
|
|
576
|
+
"http-body 0.4.6",
|
|
577
|
+
"http-body 1.0.1",
|
|
578
|
+
"http-body-util",
|
|
579
|
+
"itoa",
|
|
580
|
+
"num-integer",
|
|
581
|
+
"pin-project-lite",
|
|
582
|
+
"pin-utils",
|
|
583
|
+
"ryu",
|
|
584
|
+
"serde",
|
|
585
|
+
"time",
|
|
586
|
+
"tokio",
|
|
587
|
+
"tokio-util",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "aws-smithy-xml"
|
|
592
|
+
version = "0.60.13"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "11b2f670422ff42bf7065031e72b45bc52a3508bd089f743ea90731ca2b6ea57"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"xmlparser",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "aws-types"
|
|
601
|
+
version = "1.3.11"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "1d980627d2dd7bfc32a3c025685a033eeab8d365cc840c631ef59d1b8f428164"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"aws-credential-types",
|
|
606
|
+
"aws-smithy-async",
|
|
607
|
+
"aws-smithy-runtime-api",
|
|
608
|
+
"aws-smithy-types",
|
|
609
|
+
"rustc_version",
|
|
610
|
+
"tracing",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "axum"
|
|
615
|
+
version = "0.6.20"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"async-trait",
|
|
620
|
+
"axum-core 0.3.4",
|
|
621
|
+
"bitflags 1.3.2",
|
|
622
|
+
"bytes",
|
|
623
|
+
"futures-util",
|
|
624
|
+
"http 0.2.12",
|
|
625
|
+
"http-body 0.4.6",
|
|
626
|
+
"hyper 0.14.32",
|
|
627
|
+
"itoa",
|
|
628
|
+
"matchit 0.7.3",
|
|
629
|
+
"memchr",
|
|
630
|
+
"mime",
|
|
631
|
+
"percent-encoding",
|
|
632
|
+
"pin-project-lite",
|
|
633
|
+
"rustversion",
|
|
634
|
+
"serde",
|
|
635
|
+
"sync_wrapper 0.1.2",
|
|
636
|
+
"tower 0.4.13",
|
|
637
|
+
"tower-layer",
|
|
638
|
+
"tower-service",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "axum"
|
|
643
|
+
version = "0.7.9"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
|
|
646
|
+
dependencies = [
|
|
647
|
+
"async-trait",
|
|
648
|
+
"axum-core 0.4.5",
|
|
649
|
+
"bytes",
|
|
650
|
+
"futures-util",
|
|
651
|
+
"http 1.4.0",
|
|
652
|
+
"http-body 1.0.1",
|
|
653
|
+
"http-body-util",
|
|
654
|
+
"itoa",
|
|
655
|
+
"matchit 0.7.3",
|
|
656
|
+
"memchr",
|
|
657
|
+
"mime",
|
|
658
|
+
"percent-encoding",
|
|
659
|
+
"pin-project-lite",
|
|
660
|
+
"rustversion",
|
|
661
|
+
"serde",
|
|
662
|
+
"sync_wrapper 1.0.2",
|
|
663
|
+
"tower 0.5.3",
|
|
664
|
+
"tower-layer",
|
|
665
|
+
"tower-service",
|
|
666
|
+
"tracing",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "axum"
|
|
671
|
+
version = "0.8.8"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"axum-core 0.5.6",
|
|
676
|
+
"axum-macros",
|
|
677
|
+
"base64 0.22.1",
|
|
678
|
+
"bytes",
|
|
679
|
+
"form_urlencoded",
|
|
680
|
+
"futures-util",
|
|
681
|
+
"http 1.4.0",
|
|
682
|
+
"http-body 1.0.1",
|
|
683
|
+
"http-body-util",
|
|
684
|
+
"hyper 1.8.1",
|
|
685
|
+
"hyper-util",
|
|
686
|
+
"itoa",
|
|
687
|
+
"matchit 0.8.4",
|
|
688
|
+
"memchr",
|
|
689
|
+
"mime",
|
|
690
|
+
"percent-encoding",
|
|
691
|
+
"pin-project-lite",
|
|
692
|
+
"serde_core",
|
|
693
|
+
"serde_json",
|
|
694
|
+
"serde_path_to_error",
|
|
695
|
+
"serde_urlencoded",
|
|
696
|
+
"sha1",
|
|
697
|
+
"sync_wrapper 1.0.2",
|
|
698
|
+
"tokio",
|
|
699
|
+
"tokio-tungstenite 0.28.0",
|
|
700
|
+
"tower 0.5.3",
|
|
701
|
+
"tower-layer",
|
|
702
|
+
"tower-service",
|
|
703
|
+
"tracing",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "axum-client-ip"
|
|
708
|
+
version = "1.3.1"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "a8ba1af5b620232acf37f2eb6d22151ea465491e0b4c25f552d1990f64ec5a67"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"axum 0.8.8",
|
|
713
|
+
"client-ip",
|
|
714
|
+
"serde",
|
|
715
|
+
]
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "axum-core"
|
|
719
|
+
version = "0.3.4"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"async-trait",
|
|
724
|
+
"bytes",
|
|
725
|
+
"futures-util",
|
|
726
|
+
"http 0.2.12",
|
|
727
|
+
"http-body 0.4.6",
|
|
728
|
+
"mime",
|
|
729
|
+
"rustversion",
|
|
730
|
+
"tower-layer",
|
|
731
|
+
"tower-service",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "axum-core"
|
|
736
|
+
version = "0.4.5"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"async-trait",
|
|
741
|
+
"bytes",
|
|
742
|
+
"futures-util",
|
|
743
|
+
"http 1.4.0",
|
|
744
|
+
"http-body 1.0.1",
|
|
745
|
+
"http-body-util",
|
|
746
|
+
"mime",
|
|
747
|
+
"pin-project-lite",
|
|
748
|
+
"rustversion",
|
|
749
|
+
"sync_wrapper 1.0.2",
|
|
750
|
+
"tower-layer",
|
|
751
|
+
"tower-service",
|
|
752
|
+
"tracing",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "axum-core"
|
|
757
|
+
version = "0.5.6"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"bytes",
|
|
762
|
+
"futures-core",
|
|
763
|
+
"http 1.4.0",
|
|
764
|
+
"http-body 1.0.1",
|
|
765
|
+
"http-body-util",
|
|
766
|
+
"mime",
|
|
767
|
+
"pin-project-lite",
|
|
768
|
+
"sync_wrapper 1.0.2",
|
|
769
|
+
"tower-layer",
|
|
770
|
+
"tower-service",
|
|
771
|
+
"tracing",
|
|
772
|
+
]
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "axum-extra"
|
|
776
|
+
version = "0.9.6"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "c794b30c904f0a1c2fb7740f7df7f7972dfaa14ef6f57cb6178dc63e5dca2f04"
|
|
779
|
+
dependencies = [
|
|
780
|
+
"axum 0.7.9",
|
|
781
|
+
"axum-core 0.4.5",
|
|
782
|
+
"bytes",
|
|
783
|
+
"fastrand",
|
|
784
|
+
"futures-util",
|
|
785
|
+
"headers",
|
|
786
|
+
"http 1.4.0",
|
|
787
|
+
"http-body 1.0.1",
|
|
788
|
+
"http-body-util",
|
|
789
|
+
"mime",
|
|
790
|
+
"multer",
|
|
791
|
+
"pin-project-lite",
|
|
792
|
+
"serde",
|
|
793
|
+
"tower 0.5.3",
|
|
794
|
+
"tower-layer",
|
|
795
|
+
"tower-service",
|
|
796
|
+
]
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "axum-extra"
|
|
800
|
+
version = "0.10.3"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "9963ff19f40c6102c76756ef0a46004c0d58957d87259fc9208ff8441c12ab96"
|
|
803
|
+
dependencies = [
|
|
804
|
+
"axum 0.8.8",
|
|
805
|
+
"axum-core 0.5.6",
|
|
806
|
+
"bytes",
|
|
807
|
+
"cookie",
|
|
808
|
+
"futures-util",
|
|
809
|
+
"headers",
|
|
810
|
+
"http 1.4.0",
|
|
811
|
+
"http-body 1.0.1",
|
|
812
|
+
"http-body-util",
|
|
813
|
+
"mime",
|
|
814
|
+
"pin-project-lite",
|
|
815
|
+
"rustversion",
|
|
816
|
+
"serde_core",
|
|
817
|
+
"tower-layer",
|
|
818
|
+
"tower-service",
|
|
819
|
+
"tracing",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "axum-macros"
|
|
824
|
+
version = "0.5.0"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"proc-macro2",
|
|
829
|
+
"quote",
|
|
830
|
+
"syn",
|
|
831
|
+
]
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "backtrace"
|
|
835
|
+
version = "0.3.76"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"addr2line",
|
|
840
|
+
"cfg-if",
|
|
841
|
+
"libc",
|
|
842
|
+
"miniz_oxide",
|
|
843
|
+
"object",
|
|
844
|
+
"rustc-demangle",
|
|
845
|
+
"windows-link",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "base64"
|
|
850
|
+
version = "0.21.7"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "base64"
|
|
856
|
+
version = "0.22.1"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "base64-simd"
|
|
862
|
+
version = "0.8.0"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
|
|
865
|
+
dependencies = [
|
|
866
|
+
"outref",
|
|
867
|
+
"vsimd",
|
|
868
|
+
]
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "biscuit"
|
|
872
|
+
version = "0.7.0"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "7e28fc7c56c61743a01d0d1b73e4fed68b8a4f032ea3a2d4bb8c6520a33fc05a"
|
|
875
|
+
dependencies = [
|
|
876
|
+
"chrono",
|
|
877
|
+
"data-encoding",
|
|
878
|
+
"num-bigint",
|
|
879
|
+
"num-traits",
|
|
880
|
+
"once_cell",
|
|
881
|
+
"ring",
|
|
882
|
+
"serde",
|
|
883
|
+
"serde_json",
|
|
884
|
+
]
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "bitflags"
|
|
888
|
+
version = "1.3.2"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "bitflags"
|
|
894
|
+
version = "2.10.0"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "block-buffer"
|
|
900
|
+
version = "0.10.4"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
903
|
+
dependencies = [
|
|
904
|
+
"generic-array",
|
|
905
|
+
]
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "bluelink_signature"
|
|
909
|
+
version = "0.1.0"
|
|
910
|
+
dependencies = [
|
|
911
|
+
"base64 0.22.1",
|
|
912
|
+
"celerity_helpers",
|
|
913
|
+
"coverage-helper",
|
|
914
|
+
"hmac",
|
|
915
|
+
"http 1.4.0",
|
|
916
|
+
"pretty_assertions",
|
|
917
|
+
"sha2",
|
|
918
|
+
"test-log",
|
|
919
|
+
]
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "bstr"
|
|
923
|
+
version = "1.12.1"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
926
|
+
dependencies = [
|
|
927
|
+
"memchr",
|
|
928
|
+
"regex-automata",
|
|
929
|
+
"serde",
|
|
930
|
+
]
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "bumpalo"
|
|
934
|
+
version = "3.19.1"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "byteorder"
|
|
940
|
+
version = "1.5.0"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "bytes"
|
|
946
|
+
version = "1.11.1"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "bytes-utils"
|
|
952
|
+
version = "0.1.4"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35"
|
|
955
|
+
dependencies = [
|
|
956
|
+
"bytes",
|
|
957
|
+
"either",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "cc"
|
|
962
|
+
version = "1.2.55"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"find-msvc-tools",
|
|
967
|
+
"jobserver",
|
|
968
|
+
"libc",
|
|
969
|
+
"shlex",
|
|
970
|
+
]
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "celerity-python-runtime-sdk"
|
|
974
|
+
version = "0.1.0"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"async-trait",
|
|
977
|
+
"axum 0.8.8",
|
|
978
|
+
"axum-extra 0.10.3",
|
|
979
|
+
"celerity_helpers",
|
|
980
|
+
"celerity_runtime_core",
|
|
981
|
+
"celerity_ws_registry",
|
|
982
|
+
"chrono",
|
|
983
|
+
"pyo3",
|
|
984
|
+
"pyo3-async-runtimes",
|
|
985
|
+
"pythonize",
|
|
986
|
+
"serde",
|
|
987
|
+
"serde_json",
|
|
988
|
+
"tokio",
|
|
989
|
+
"tracing",
|
|
990
|
+
"tracing-core",
|
|
991
|
+
"tracing-subscriber",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "celerity-runtime-bindings"
|
|
996
|
+
version = "0.1.0"
|
|
997
|
+
dependencies = [
|
|
998
|
+
"celerity_runtime_bindgen_schema",
|
|
999
|
+
"oo-bindgen",
|
|
1000
|
+
"tracing",
|
|
1001
|
+
"tracing-subscriber",
|
|
1002
|
+
]
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "celerity_aws_helpers"
|
|
1006
|
+
version = "0.1.0"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"aws-config",
|
|
1009
|
+
"aws-sdk-account",
|
|
1010
|
+
"aws-sdk-sqs",
|
|
1011
|
+
"aws-types",
|
|
1012
|
+
"http 1.4.0",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "celerity_blueprint_config_parser"
|
|
1017
|
+
version = "0.1.0"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"celerity_helpers",
|
|
1020
|
+
"hashlink",
|
|
1021
|
+
"insta",
|
|
1022
|
+
"json-strip-comments",
|
|
1023
|
+
"pretty_assertions",
|
|
1024
|
+
"serde",
|
|
1025
|
+
"serde_json",
|
|
1026
|
+
"test-log",
|
|
1027
|
+
"tracing",
|
|
1028
|
+
"yaml-rust2",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "celerity_consumer_azure_events_hub"
|
|
1033
|
+
version = "0.1.0"
|
|
1034
|
+
dependencies = [
|
|
1035
|
+
"coverage-helper",
|
|
1036
|
+
"pretty_assertions",
|
|
1037
|
+
"test-log",
|
|
1038
|
+
]
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "celerity_consumer_azure_service_bus"
|
|
1042
|
+
version = "0.1.0"
|
|
1043
|
+
dependencies = [
|
|
1044
|
+
"coverage-helper",
|
|
1045
|
+
"pretty_assertions",
|
|
1046
|
+
"test-log",
|
|
1047
|
+
]
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "celerity_consumer_gcloud_pubsub"
|
|
1051
|
+
version = "0.1.0"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"coverage-helper",
|
|
1054
|
+
"pretty_assertions",
|
|
1055
|
+
"test-log",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "celerity_consumer_gcloud_tasks"
|
|
1060
|
+
version = "0.1.0"
|
|
1061
|
+
dependencies = [
|
|
1062
|
+
"coverage-helper",
|
|
1063
|
+
"pretty_assertions",
|
|
1064
|
+
"test-log",
|
|
1065
|
+
]
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "celerity_consumer_kinesis"
|
|
1069
|
+
version = "0.1.0"
|
|
1070
|
+
dependencies = [
|
|
1071
|
+
"coverage-helper",
|
|
1072
|
+
"pretty_assertions",
|
|
1073
|
+
"test-log",
|
|
1074
|
+
]
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "celerity_consumer_redis"
|
|
1078
|
+
version = "0.1.0"
|
|
1079
|
+
dependencies = [
|
|
1080
|
+
"async-trait",
|
|
1081
|
+
"base64 0.22.1",
|
|
1082
|
+
"celerity_helpers",
|
|
1083
|
+
"coverage-helper",
|
|
1084
|
+
"futures",
|
|
1085
|
+
"md5",
|
|
1086
|
+
"opentelemetry",
|
|
1087
|
+
"pretty_assertions",
|
|
1088
|
+
"redis",
|
|
1089
|
+
"serde",
|
|
1090
|
+
"serde_json",
|
|
1091
|
+
"test-log",
|
|
1092
|
+
"tokio",
|
|
1093
|
+
"tracing",
|
|
1094
|
+
"tracing-opentelemetry",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "celerity_consumer_sqs"
|
|
1099
|
+
version = "0.1.0"
|
|
1100
|
+
dependencies = [
|
|
1101
|
+
"async-trait",
|
|
1102
|
+
"aws-config",
|
|
1103
|
+
"aws-sdk-sqs",
|
|
1104
|
+
"aws-smithy-http 0.62.6",
|
|
1105
|
+
"aws-smithy-runtime-api",
|
|
1106
|
+
"aws-smithy-types",
|
|
1107
|
+
"aws-types",
|
|
1108
|
+
"celerity_aws_helpers",
|
|
1109
|
+
"celerity_helpers",
|
|
1110
|
+
"coverage-helper",
|
|
1111
|
+
"env_logger",
|
|
1112
|
+
"futures",
|
|
1113
|
+
"http 1.4.0",
|
|
1114
|
+
"opentelemetry",
|
|
1115
|
+
"pretty_assertions",
|
|
1116
|
+
"serde",
|
|
1117
|
+
"serde_json",
|
|
1118
|
+
"test-log",
|
|
1119
|
+
"tokio",
|
|
1120
|
+
"tracing",
|
|
1121
|
+
"tracing-opentelemetry",
|
|
1122
|
+
"tracing-subscriber",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "celerity_helpers"
|
|
1127
|
+
version = "0.1.0"
|
|
1128
|
+
dependencies = [
|
|
1129
|
+
"async-trait",
|
|
1130
|
+
"axum 0.8.8",
|
|
1131
|
+
"axum-extra 0.10.3",
|
|
1132
|
+
"chrono",
|
|
1133
|
+
"coverage-helper",
|
|
1134
|
+
"futures",
|
|
1135
|
+
"http-body-util",
|
|
1136
|
+
"hyper-util",
|
|
1137
|
+
"jsonpath-rust",
|
|
1138
|
+
"opentelemetry",
|
|
1139
|
+
"pretty_assertions",
|
|
1140
|
+
"rand 0.8.5",
|
|
1141
|
+
"redis",
|
|
1142
|
+
"reqwest",
|
|
1143
|
+
"serde",
|
|
1144
|
+
"serde_json",
|
|
1145
|
+
"test-log",
|
|
1146
|
+
"tokio",
|
|
1147
|
+
"tracing",
|
|
1148
|
+
]
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "celerity_runtime_bindgen_ffi"
|
|
1152
|
+
version = "0.1.0"
|
|
1153
|
+
dependencies = [
|
|
1154
|
+
"axum 0.8.8",
|
|
1155
|
+
"celerity_helpers",
|
|
1156
|
+
"celerity_runtime_bindgen_schema",
|
|
1157
|
+
"celerity_runtime_core",
|
|
1158
|
+
"num_cpus",
|
|
1159
|
+
"oo-bindgen",
|
|
1160
|
+
"serde",
|
|
1161
|
+
"serde_json",
|
|
1162
|
+
"sfio-promise",
|
|
1163
|
+
"sfio-tokio-ffi",
|
|
1164
|
+
"sfio-tracing-ffi",
|
|
1165
|
+
"tokio",
|
|
1166
|
+
"tracing",
|
|
1167
|
+
"tracing-core",
|
|
1168
|
+
"tracing-subscriber",
|
|
1169
|
+
]
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "celerity_runtime_bindgen_ffi_java"
|
|
1173
|
+
version = "0.1.0"
|
|
1174
|
+
dependencies = [
|
|
1175
|
+
"celerity_runtime_bindgen_ffi",
|
|
1176
|
+
"celerity_runtime_bindgen_schema",
|
|
1177
|
+
"jni",
|
|
1178
|
+
"oo-bindgen",
|
|
1179
|
+
]
|
|
1180
|
+
|
|
1181
|
+
[[package]]
|
|
1182
|
+
name = "celerity_runtime_bindgen_schema"
|
|
1183
|
+
version = "0.1.0"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"oo-bindgen",
|
|
1186
|
+
"sfio-tokio-ffi",
|
|
1187
|
+
"sfio-tracing-ffi",
|
|
1188
|
+
]
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "celerity_runtime_core"
|
|
1192
|
+
version = "0.1.0"
|
|
1193
|
+
dependencies = [
|
|
1194
|
+
"async-trait",
|
|
1195
|
+
"aws-config",
|
|
1196
|
+
"aws-sdk-sqs",
|
|
1197
|
+
"axum 0.8.8",
|
|
1198
|
+
"axum-client-ip",
|
|
1199
|
+
"axum-extra 0.10.3",
|
|
1200
|
+
"biscuit",
|
|
1201
|
+
"celerity_blueprint_config_parser",
|
|
1202
|
+
"celerity_consumer_azure_events_hub",
|
|
1203
|
+
"celerity_consumer_azure_service_bus",
|
|
1204
|
+
"celerity_consumer_gcloud_pubsub",
|
|
1205
|
+
"celerity_consumer_gcloud_tasks",
|
|
1206
|
+
"celerity_consumer_kinesis",
|
|
1207
|
+
"celerity_consumer_redis",
|
|
1208
|
+
"celerity_consumer_sqs",
|
|
1209
|
+
"celerity_helpers",
|
|
1210
|
+
"celerity_ws_registry",
|
|
1211
|
+
"chrono",
|
|
1212
|
+
"coverage-helper",
|
|
1213
|
+
"futures",
|
|
1214
|
+
"http-body-util",
|
|
1215
|
+
"httptest",
|
|
1216
|
+
"hyper-util",
|
|
1217
|
+
"jsonpath-rust",
|
|
1218
|
+
"jsonwebtoken",
|
|
1219
|
+
"nanoid",
|
|
1220
|
+
"opentelemetry",
|
|
1221
|
+
"opentelemetry-aws",
|
|
1222
|
+
"opentelemetry-otlp",
|
|
1223
|
+
"opentelemetry_sdk",
|
|
1224
|
+
"pretty_assertions",
|
|
1225
|
+
"reqwest",
|
|
1226
|
+
"ring",
|
|
1227
|
+
"serde",
|
|
1228
|
+
"serde_json",
|
|
1229
|
+
"tempfile",
|
|
1230
|
+
"test-log",
|
|
1231
|
+
"tokio",
|
|
1232
|
+
"tokio-tungstenite 0.23.1",
|
|
1233
|
+
"tower 0.4.13",
|
|
1234
|
+
"tower-http",
|
|
1235
|
+
"tracing",
|
|
1236
|
+
"tracing-opentelemetry",
|
|
1237
|
+
"tracing-subscriber",
|
|
1238
|
+
]
|
|
1239
|
+
|
|
1240
|
+
[[package]]
|
|
1241
|
+
name = "celerity_runtime_workflow"
|
|
1242
|
+
version = "0.1.0"
|
|
1243
|
+
dependencies = [
|
|
1244
|
+
"async-recursion",
|
|
1245
|
+
"async-trait",
|
|
1246
|
+
"axum 0.8.8",
|
|
1247
|
+
"axum-client-ip",
|
|
1248
|
+
"axum-extra 0.9.6",
|
|
1249
|
+
"base64 0.22.1",
|
|
1250
|
+
"celerity_blueprint_config_parser",
|
|
1251
|
+
"celerity_helpers",
|
|
1252
|
+
"celerity_runtime_core",
|
|
1253
|
+
"chrono",
|
|
1254
|
+
"coverage-helper",
|
|
1255
|
+
"futures",
|
|
1256
|
+
"hex",
|
|
1257
|
+
"hex-literal",
|
|
1258
|
+
"http-body-util",
|
|
1259
|
+
"hyper-util",
|
|
1260
|
+
"jsonpath-rust",
|
|
1261
|
+
"nanoid",
|
|
1262
|
+
"opentelemetry",
|
|
1263
|
+
"opentelemetry-aws",
|
|
1264
|
+
"opentelemetry-otlp",
|
|
1265
|
+
"opentelemetry_sdk",
|
|
1266
|
+
"pretty_assertions",
|
|
1267
|
+
"rand 0.8.5",
|
|
1268
|
+
"serde",
|
|
1269
|
+
"serde_json",
|
|
1270
|
+
"sha2",
|
|
1271
|
+
"test-log",
|
|
1272
|
+
"tokio",
|
|
1273
|
+
"tokio-stream",
|
|
1274
|
+
"tokio-tungstenite 0.23.1",
|
|
1275
|
+
"tower 0.4.13",
|
|
1276
|
+
"tower-http",
|
|
1277
|
+
"tracing",
|
|
1278
|
+
"tracing-opentelemetry",
|
|
1279
|
+
"tracing-subscriber",
|
|
1280
|
+
"uuid",
|
|
1281
|
+
]
|
|
1282
|
+
|
|
1283
|
+
[[package]]
|
|
1284
|
+
name = "celerity_ws_redis"
|
|
1285
|
+
version = "0.1.0"
|
|
1286
|
+
dependencies = [
|
|
1287
|
+
"async-trait",
|
|
1288
|
+
"celerity_helpers",
|
|
1289
|
+
"celerity_ws_registry",
|
|
1290
|
+
"coverage-helper",
|
|
1291
|
+
"jsonpath-rust",
|
|
1292
|
+
"pretty_assertions",
|
|
1293
|
+
"redis",
|
|
1294
|
+
"serde",
|
|
1295
|
+
"serde_json",
|
|
1296
|
+
"test-log",
|
|
1297
|
+
"tokio",
|
|
1298
|
+
"tracing",
|
|
1299
|
+
]
|
|
1300
|
+
|
|
1301
|
+
[[package]]
|
|
1302
|
+
name = "celerity_ws_registry"
|
|
1303
|
+
version = "0.1.0"
|
|
1304
|
+
dependencies = [
|
|
1305
|
+
"async-trait",
|
|
1306
|
+
"axum 0.8.8",
|
|
1307
|
+
"base64 0.22.1",
|
|
1308
|
+
"celerity_helpers",
|
|
1309
|
+
"coverage-helper",
|
|
1310
|
+
"futures",
|
|
1311
|
+
"jsonpath-rust",
|
|
1312
|
+
"nanoid",
|
|
1313
|
+
"pretty_assertions",
|
|
1314
|
+
"serde",
|
|
1315
|
+
"serde_json",
|
|
1316
|
+
"test-log",
|
|
1317
|
+
"tokio",
|
|
1318
|
+
"tokio-tungstenite 0.23.1",
|
|
1319
|
+
"tracing",
|
|
1320
|
+
]
|
|
1321
|
+
|
|
1322
|
+
[[package]]
|
|
1323
|
+
name = "celerityjs-runtime-sdk"
|
|
1324
|
+
version = "0.0.0"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"async-trait",
|
|
1327
|
+
"axum 0.8.8",
|
|
1328
|
+
"axum-extra 0.10.3",
|
|
1329
|
+
"celerity_helpers",
|
|
1330
|
+
"celerity_runtime_core",
|
|
1331
|
+
"celerity_ws_registry",
|
|
1332
|
+
"chrono",
|
|
1333
|
+
"napi",
|
|
1334
|
+
"napi-build",
|
|
1335
|
+
"napi-derive",
|
|
1336
|
+
"serde",
|
|
1337
|
+
"serde_json",
|
|
1338
|
+
"tokio",
|
|
1339
|
+
"tracing",
|
|
1340
|
+
"tracing-core",
|
|
1341
|
+
"tracing-subscriber",
|
|
1342
|
+
]
|
|
1343
|
+
|
|
1344
|
+
[[package]]
|
|
1345
|
+
name = "cesu8"
|
|
1346
|
+
version = "1.1.0"
|
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
1349
|
+
|
|
1350
|
+
[[package]]
|
|
1351
|
+
name = "cfg-if"
|
|
1352
|
+
version = "1.0.4"
|
|
1353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1354
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
1355
|
+
|
|
1356
|
+
[[package]]
|
|
1357
|
+
name = "cfg_aliases"
|
|
1358
|
+
version = "0.2.1"
|
|
1359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
1361
|
+
|
|
1362
|
+
[[package]]
|
|
1363
|
+
name = "chrono"
|
|
1364
|
+
version = "0.4.43"
|
|
1365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
+
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
|
1367
|
+
dependencies = [
|
|
1368
|
+
"iana-time-zone",
|
|
1369
|
+
"js-sys",
|
|
1370
|
+
"num-traits",
|
|
1371
|
+
"wasm-bindgen",
|
|
1372
|
+
"windows-link",
|
|
1373
|
+
]
|
|
1374
|
+
|
|
1375
|
+
[[package]]
|
|
1376
|
+
name = "clap"
|
|
1377
|
+
version = "4.5.56"
|
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
+
checksum = "a75ca66430e33a14957acc24c5077b503e7d374151b2b4b3a10c83b4ceb4be0e"
|
|
1380
|
+
dependencies = [
|
|
1381
|
+
"clap_builder",
|
|
1382
|
+
"clap_derive",
|
|
1383
|
+
]
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "clap_builder"
|
|
1387
|
+
version = "4.5.56"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "793207c7fa6300a0608d1080b858e5fdbe713cdc1c8db9fb17777d8a13e63df0"
|
|
1390
|
+
dependencies = [
|
|
1391
|
+
"anstream",
|
|
1392
|
+
"anstyle",
|
|
1393
|
+
"clap_lex",
|
|
1394
|
+
"strsim",
|
|
1395
|
+
]
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "clap_derive"
|
|
1399
|
+
version = "4.5.55"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"heck",
|
|
1404
|
+
"proc-macro2",
|
|
1405
|
+
"quote",
|
|
1406
|
+
"syn",
|
|
1407
|
+
]
|
|
1408
|
+
|
|
1409
|
+
[[package]]
|
|
1410
|
+
name = "clap_lex"
|
|
1411
|
+
version = "0.7.7"
|
|
1412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1413
|
+
checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
|
|
1414
|
+
|
|
1415
|
+
[[package]]
|
|
1416
|
+
name = "clicolors-control"
|
|
1417
|
+
version = "1.0.1"
|
|
1418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
+
checksum = "90082ee5dcdd64dc4e9e0d37fbf3ee325419e39c0092191e0393df65518f741e"
|
|
1420
|
+
dependencies = [
|
|
1421
|
+
"atty",
|
|
1422
|
+
"lazy_static",
|
|
1423
|
+
"libc",
|
|
1424
|
+
"winapi",
|
|
1425
|
+
]
|
|
1426
|
+
|
|
1427
|
+
[[package]]
|
|
1428
|
+
name = "client-ip"
|
|
1429
|
+
version = "0.2.1"
|
|
1430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
+
checksum = "39d2056bf065c8b4bce5a8898d40e175211ff4410add2a84d695845d3937c729"
|
|
1432
|
+
dependencies = [
|
|
1433
|
+
"http 1.4.0",
|
|
1434
|
+
]
|
|
1435
|
+
|
|
1436
|
+
[[package]]
|
|
1437
|
+
name = "cmake"
|
|
1438
|
+
version = "0.1.57"
|
|
1439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
+
checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
|
|
1441
|
+
dependencies = [
|
|
1442
|
+
"cc",
|
|
1443
|
+
]
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "colorchoice"
|
|
1447
|
+
version = "1.0.4"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "combine"
|
|
1453
|
+
version = "4.6.7"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"bytes",
|
|
1458
|
+
"futures-core",
|
|
1459
|
+
"memchr",
|
|
1460
|
+
"pin-project-lite",
|
|
1461
|
+
"tokio",
|
|
1462
|
+
"tokio-util",
|
|
1463
|
+
]
|
|
1464
|
+
|
|
1465
|
+
[[package]]
|
|
1466
|
+
name = "console"
|
|
1467
|
+
version = "0.9.2"
|
|
1468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
+
checksum = "45e0f3986890b3acbc782009e2629dfe2baa430ac091519ce3be26164a2ae6c0"
|
|
1470
|
+
dependencies = [
|
|
1471
|
+
"clicolors-control",
|
|
1472
|
+
"encode_unicode",
|
|
1473
|
+
"lazy_static",
|
|
1474
|
+
"libc",
|
|
1475
|
+
"regex",
|
|
1476
|
+
"termios",
|
|
1477
|
+
"winapi",
|
|
1478
|
+
]
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "convert_case"
|
|
1482
|
+
version = "0.10.0"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
1485
|
+
dependencies = [
|
|
1486
|
+
"unicode-segmentation",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "cookie"
|
|
1491
|
+
version = "0.18.1"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"percent-encoding",
|
|
1496
|
+
"time",
|
|
1497
|
+
"version_check",
|
|
1498
|
+
]
|
|
1499
|
+
|
|
1500
|
+
[[package]]
|
|
1501
|
+
name = "core-foundation"
|
|
1502
|
+
version = "0.10.1"
|
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
1505
|
+
dependencies = [
|
|
1506
|
+
"core-foundation-sys",
|
|
1507
|
+
"libc",
|
|
1508
|
+
]
|
|
1509
|
+
|
|
1510
|
+
[[package]]
|
|
1511
|
+
name = "core-foundation-sys"
|
|
1512
|
+
version = "0.8.7"
|
|
1513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
1515
|
+
|
|
1516
|
+
[[package]]
|
|
1517
|
+
name = "coverage-helper"
|
|
1518
|
+
version = "0.2.4"
|
|
1519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
+
checksum = "435aea653a110cde24da15ca2dac9e06d17d92ce2bd6c2b9179b508abbe6f06f"
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "cpufeatures"
|
|
1524
|
+
version = "0.2.17"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
1527
|
+
dependencies = [
|
|
1528
|
+
"libc",
|
|
1529
|
+
]
|
|
1530
|
+
|
|
1531
|
+
[[package]]
|
|
1532
|
+
name = "crc16"
|
|
1533
|
+
version = "0.4.0"
|
|
1534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
+
checksum = "338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff"
|
|
1536
|
+
|
|
1537
|
+
[[package]]
|
|
1538
|
+
name = "crossbeam-channel"
|
|
1539
|
+
version = "0.5.15"
|
|
1540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
1542
|
+
dependencies = [
|
|
1543
|
+
"crossbeam-utils",
|
|
1544
|
+
]
|
|
1545
|
+
|
|
1546
|
+
[[package]]
|
|
1547
|
+
name = "crossbeam-utils"
|
|
1548
|
+
version = "0.8.21"
|
|
1549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
1551
|
+
|
|
1552
|
+
[[package]]
|
|
1553
|
+
name = "crypto-common"
|
|
1554
|
+
version = "0.1.7"
|
|
1555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
1557
|
+
dependencies = [
|
|
1558
|
+
"generic-array",
|
|
1559
|
+
"typenum",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "ctor"
|
|
1564
|
+
version = "0.6.3"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e"
|
|
1567
|
+
dependencies = [
|
|
1568
|
+
"ctor-proc-macro",
|
|
1569
|
+
"dtor",
|
|
1570
|
+
]
|
|
1571
|
+
|
|
1572
|
+
[[package]]
|
|
1573
|
+
name = "ctor-proc-macro"
|
|
1574
|
+
version = "0.0.7"
|
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
+
checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
|
|
1577
|
+
|
|
1578
|
+
[[package]]
|
|
1579
|
+
name = "data-encoding"
|
|
1580
|
+
version = "2.10.0"
|
|
1581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
+
checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "deranged"
|
|
1586
|
+
version = "0.5.5"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
1589
|
+
dependencies = [
|
|
1590
|
+
"powerfmt",
|
|
1591
|
+
]
|
|
1592
|
+
|
|
1593
|
+
[[package]]
|
|
1594
|
+
name = "diff"
|
|
1595
|
+
version = "0.1.13"
|
|
1596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
1598
|
+
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "difference"
|
|
1601
|
+
version = "2.0.0"
|
|
1602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
+
checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
|
|
1604
|
+
|
|
1605
|
+
[[package]]
|
|
1606
|
+
name = "digest"
|
|
1607
|
+
version = "0.10.7"
|
|
1608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1610
|
+
dependencies = [
|
|
1611
|
+
"block-buffer",
|
|
1612
|
+
"crypto-common",
|
|
1613
|
+
"subtle",
|
|
1614
|
+
]
|
|
1615
|
+
|
|
1616
|
+
[[package]]
|
|
1617
|
+
name = "displaydoc"
|
|
1618
|
+
version = "0.2.5"
|
|
1619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
1621
|
+
dependencies = [
|
|
1622
|
+
"proc-macro2",
|
|
1623
|
+
"quote",
|
|
1624
|
+
"syn",
|
|
1625
|
+
]
|
|
1626
|
+
|
|
1627
|
+
[[package]]
|
|
1628
|
+
name = "dtor"
|
|
1629
|
+
version = "0.1.1"
|
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1631
|
+
checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
|
|
1632
|
+
dependencies = [
|
|
1633
|
+
"dtor-proc-macro",
|
|
1634
|
+
]
|
|
1635
|
+
|
|
1636
|
+
[[package]]
|
|
1637
|
+
name = "dtor-proc-macro"
|
|
1638
|
+
version = "0.0.6"
|
|
1639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1640
|
+
checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
|
|
1641
|
+
|
|
1642
|
+
[[package]]
|
|
1643
|
+
name = "dunce"
|
|
1644
|
+
version = "1.0.5"
|
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
1647
|
+
|
|
1648
|
+
[[package]]
|
|
1649
|
+
name = "either"
|
|
1650
|
+
version = "1.15.0"
|
|
1651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
1653
|
+
|
|
1654
|
+
[[package]]
|
|
1655
|
+
name = "encode_unicode"
|
|
1656
|
+
version = "0.3.6"
|
|
1657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
+
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
|
1659
|
+
|
|
1660
|
+
[[package]]
|
|
1661
|
+
name = "encoding_rs"
|
|
1662
|
+
version = "0.8.35"
|
|
1663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
1665
|
+
dependencies = [
|
|
1666
|
+
"cfg-if",
|
|
1667
|
+
]
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "env_filter"
|
|
1671
|
+
version = "0.1.4"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
|
|
1674
|
+
dependencies = [
|
|
1675
|
+
"log",
|
|
1676
|
+
"regex",
|
|
1677
|
+
]
|
|
1678
|
+
|
|
1679
|
+
[[package]]
|
|
1680
|
+
name = "env_logger"
|
|
1681
|
+
version = "0.11.8"
|
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1683
|
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
|
|
1684
|
+
dependencies = [
|
|
1685
|
+
"anstream",
|
|
1686
|
+
"anstyle",
|
|
1687
|
+
"env_filter",
|
|
1688
|
+
"jiff",
|
|
1689
|
+
"log",
|
|
1690
|
+
]
|
|
1691
|
+
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "equivalent"
|
|
1694
|
+
version = "1.0.2"
|
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1697
|
+
|
|
1698
|
+
[[package]]
|
|
1699
|
+
name = "errno"
|
|
1700
|
+
version = "0.3.14"
|
|
1701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1703
|
+
dependencies = [
|
|
1704
|
+
"libc",
|
|
1705
|
+
"windows-sys 0.52.0",
|
|
1706
|
+
]
|
|
1707
|
+
|
|
1708
|
+
[[package]]
|
|
1709
|
+
name = "fastrand"
|
|
1710
|
+
version = "2.3.0"
|
|
1711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1712
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
1713
|
+
|
|
1714
|
+
[[package]]
|
|
1715
|
+
name = "find-msvc-tools"
|
|
1716
|
+
version = "0.1.9"
|
|
1717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1718
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
1719
|
+
|
|
1720
|
+
[[package]]
|
|
1721
|
+
name = "fnv"
|
|
1722
|
+
version = "1.0.7"
|
|
1723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1725
|
+
|
|
1726
|
+
[[package]]
|
|
1727
|
+
name = "form_urlencoded"
|
|
1728
|
+
version = "1.2.2"
|
|
1729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1731
|
+
dependencies = [
|
|
1732
|
+
"percent-encoding",
|
|
1733
|
+
]
|
|
1734
|
+
|
|
1735
|
+
[[package]]
|
|
1736
|
+
name = "fs_extra"
|
|
1737
|
+
version = "1.3.0"
|
|
1738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
1740
|
+
|
|
1741
|
+
[[package]]
|
|
1742
|
+
name = "futures"
|
|
1743
|
+
version = "0.3.31"
|
|
1744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
1746
|
+
dependencies = [
|
|
1747
|
+
"futures-channel",
|
|
1748
|
+
"futures-core",
|
|
1749
|
+
"futures-executor",
|
|
1750
|
+
"futures-io",
|
|
1751
|
+
"futures-sink",
|
|
1752
|
+
"futures-task",
|
|
1753
|
+
"futures-util",
|
|
1754
|
+
]
|
|
1755
|
+
|
|
1756
|
+
[[package]]
|
|
1757
|
+
name = "futures-channel"
|
|
1758
|
+
version = "0.3.31"
|
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1761
|
+
dependencies = [
|
|
1762
|
+
"futures-core",
|
|
1763
|
+
"futures-sink",
|
|
1764
|
+
]
|
|
1765
|
+
|
|
1766
|
+
[[package]]
|
|
1767
|
+
name = "futures-core"
|
|
1768
|
+
version = "0.3.31"
|
|
1769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1771
|
+
|
|
1772
|
+
[[package]]
|
|
1773
|
+
name = "futures-executor"
|
|
1774
|
+
version = "0.3.31"
|
|
1775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1776
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
1777
|
+
dependencies = [
|
|
1778
|
+
"futures-core",
|
|
1779
|
+
"futures-task",
|
|
1780
|
+
"futures-util",
|
|
1781
|
+
]
|
|
1782
|
+
|
|
1783
|
+
[[package]]
|
|
1784
|
+
name = "futures-io"
|
|
1785
|
+
version = "0.3.31"
|
|
1786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1787
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1788
|
+
|
|
1789
|
+
[[package]]
|
|
1790
|
+
name = "futures-macro"
|
|
1791
|
+
version = "0.3.31"
|
|
1792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1793
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1794
|
+
dependencies = [
|
|
1795
|
+
"proc-macro2",
|
|
1796
|
+
"quote",
|
|
1797
|
+
"syn",
|
|
1798
|
+
]
|
|
1799
|
+
|
|
1800
|
+
[[package]]
|
|
1801
|
+
name = "futures-sink"
|
|
1802
|
+
version = "0.3.31"
|
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1805
|
+
|
|
1806
|
+
[[package]]
|
|
1807
|
+
name = "futures-task"
|
|
1808
|
+
version = "0.3.31"
|
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1811
|
+
|
|
1812
|
+
[[package]]
|
|
1813
|
+
name = "futures-util"
|
|
1814
|
+
version = "0.3.31"
|
|
1815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1817
|
+
dependencies = [
|
|
1818
|
+
"futures-channel",
|
|
1819
|
+
"futures-core",
|
|
1820
|
+
"futures-io",
|
|
1821
|
+
"futures-macro",
|
|
1822
|
+
"futures-sink",
|
|
1823
|
+
"futures-task",
|
|
1824
|
+
"memchr",
|
|
1825
|
+
"pin-project-lite",
|
|
1826
|
+
"pin-utils",
|
|
1827
|
+
"slab",
|
|
1828
|
+
]
|
|
1829
|
+
|
|
1830
|
+
[[package]]
|
|
1831
|
+
name = "generic-array"
|
|
1832
|
+
version = "0.14.7"
|
|
1833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1834
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1835
|
+
dependencies = [
|
|
1836
|
+
"typenum",
|
|
1837
|
+
"version_check",
|
|
1838
|
+
]
|
|
1839
|
+
|
|
1840
|
+
[[package]]
|
|
1841
|
+
name = "getrandom"
|
|
1842
|
+
version = "0.2.17"
|
|
1843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1845
|
+
dependencies = [
|
|
1846
|
+
"cfg-if",
|
|
1847
|
+
"js-sys",
|
|
1848
|
+
"libc",
|
|
1849
|
+
"wasi",
|
|
1850
|
+
"wasm-bindgen",
|
|
1851
|
+
]
|
|
1852
|
+
|
|
1853
|
+
[[package]]
|
|
1854
|
+
name = "getrandom"
|
|
1855
|
+
version = "0.3.4"
|
|
1856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1858
|
+
dependencies = [
|
|
1859
|
+
"cfg-if",
|
|
1860
|
+
"js-sys",
|
|
1861
|
+
"libc",
|
|
1862
|
+
"r-efi",
|
|
1863
|
+
"wasip2",
|
|
1864
|
+
"wasm-bindgen",
|
|
1865
|
+
]
|
|
1866
|
+
|
|
1867
|
+
[[package]]
|
|
1868
|
+
name = "gimli"
|
|
1869
|
+
version = "0.32.3"
|
|
1870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
1872
|
+
|
|
1873
|
+
[[package]]
|
|
1874
|
+
name = "glob"
|
|
1875
|
+
version = "0.3.3"
|
|
1876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1877
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1878
|
+
|
|
1879
|
+
[[package]]
|
|
1880
|
+
name = "h2"
|
|
1881
|
+
version = "0.3.27"
|
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
+
checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
|
|
1884
|
+
dependencies = [
|
|
1885
|
+
"bytes",
|
|
1886
|
+
"fnv",
|
|
1887
|
+
"futures-core",
|
|
1888
|
+
"futures-sink",
|
|
1889
|
+
"futures-util",
|
|
1890
|
+
"http 0.2.12",
|
|
1891
|
+
"indexmap 2.13.0",
|
|
1892
|
+
"slab",
|
|
1893
|
+
"tokio",
|
|
1894
|
+
"tokio-util",
|
|
1895
|
+
"tracing",
|
|
1896
|
+
]
|
|
1897
|
+
|
|
1898
|
+
[[package]]
|
|
1899
|
+
name = "h2"
|
|
1900
|
+
version = "0.4.13"
|
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
1903
|
+
dependencies = [
|
|
1904
|
+
"atomic-waker",
|
|
1905
|
+
"bytes",
|
|
1906
|
+
"fnv",
|
|
1907
|
+
"futures-core",
|
|
1908
|
+
"futures-sink",
|
|
1909
|
+
"http 1.4.0",
|
|
1910
|
+
"indexmap 2.13.0",
|
|
1911
|
+
"slab",
|
|
1912
|
+
"tokio",
|
|
1913
|
+
"tokio-util",
|
|
1914
|
+
"tracing",
|
|
1915
|
+
]
|
|
1916
|
+
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "hashbrown"
|
|
1919
|
+
version = "0.12.3"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1922
|
+
|
|
1923
|
+
[[package]]
|
|
1924
|
+
name = "hashbrown"
|
|
1925
|
+
version = "0.14.5"
|
|
1926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1928
|
+
dependencies = [
|
|
1929
|
+
"ahash",
|
|
1930
|
+
"allocator-api2",
|
|
1931
|
+
]
|
|
1932
|
+
|
|
1933
|
+
[[package]]
|
|
1934
|
+
name = "hashbrown"
|
|
1935
|
+
version = "0.16.1"
|
|
1936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1938
|
+
|
|
1939
|
+
[[package]]
|
|
1940
|
+
name = "hashlink"
|
|
1941
|
+
version = "0.8.4"
|
|
1942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
+
checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
|
|
1944
|
+
dependencies = [
|
|
1945
|
+
"hashbrown 0.14.5",
|
|
1946
|
+
]
|
|
1947
|
+
|
|
1948
|
+
[[package]]
|
|
1949
|
+
name = "headers"
|
|
1950
|
+
version = "0.4.1"
|
|
1951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1952
|
+
checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb"
|
|
1953
|
+
dependencies = [
|
|
1954
|
+
"base64 0.22.1",
|
|
1955
|
+
"bytes",
|
|
1956
|
+
"headers-core",
|
|
1957
|
+
"http 1.4.0",
|
|
1958
|
+
"httpdate",
|
|
1959
|
+
"mime",
|
|
1960
|
+
"sha1",
|
|
1961
|
+
]
|
|
1962
|
+
|
|
1963
|
+
[[package]]
|
|
1964
|
+
name = "headers-core"
|
|
1965
|
+
version = "0.3.0"
|
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
+
checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4"
|
|
1968
|
+
dependencies = [
|
|
1969
|
+
"http 1.4.0",
|
|
1970
|
+
]
|
|
1971
|
+
|
|
1972
|
+
[[package]]
|
|
1973
|
+
name = "heck"
|
|
1974
|
+
version = "0.5.0"
|
|
1975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1976
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1977
|
+
|
|
1978
|
+
[[package]]
|
|
1979
|
+
name = "hermit-abi"
|
|
1980
|
+
version = "0.1.19"
|
|
1981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
+
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
|
1983
|
+
dependencies = [
|
|
1984
|
+
"libc",
|
|
1985
|
+
]
|
|
1986
|
+
|
|
1987
|
+
[[package]]
|
|
1988
|
+
name = "hermit-abi"
|
|
1989
|
+
version = "0.5.2"
|
|
1990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1992
|
+
|
|
1993
|
+
[[package]]
|
|
1994
|
+
name = "hex"
|
|
1995
|
+
version = "0.4.3"
|
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1998
|
+
|
|
1999
|
+
[[package]]
|
|
2000
|
+
name = "hex-literal"
|
|
2001
|
+
version = "0.4.1"
|
|
2002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
+
checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
|
|
2004
|
+
|
|
2005
|
+
[[package]]
|
|
2006
|
+
name = "hmac"
|
|
2007
|
+
version = "0.12.1"
|
|
2008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
2010
|
+
dependencies = [
|
|
2011
|
+
"digest",
|
|
2012
|
+
]
|
|
2013
|
+
|
|
2014
|
+
[[package]]
|
|
2015
|
+
name = "http"
|
|
2016
|
+
version = "0.2.12"
|
|
2017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2018
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
2019
|
+
dependencies = [
|
|
2020
|
+
"bytes",
|
|
2021
|
+
"fnv",
|
|
2022
|
+
"itoa",
|
|
2023
|
+
]
|
|
2024
|
+
|
|
2025
|
+
[[package]]
|
|
2026
|
+
name = "http"
|
|
2027
|
+
version = "1.4.0"
|
|
2028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2029
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
2030
|
+
dependencies = [
|
|
2031
|
+
"bytes",
|
|
2032
|
+
"itoa",
|
|
2033
|
+
]
|
|
2034
|
+
|
|
2035
|
+
[[package]]
|
|
2036
|
+
name = "http-body"
|
|
2037
|
+
version = "0.4.6"
|
|
2038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2039
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
2040
|
+
dependencies = [
|
|
2041
|
+
"bytes",
|
|
2042
|
+
"http 0.2.12",
|
|
2043
|
+
"pin-project-lite",
|
|
2044
|
+
]
|
|
2045
|
+
|
|
2046
|
+
[[package]]
|
|
2047
|
+
name = "http-body"
|
|
2048
|
+
version = "1.0.1"
|
|
2049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2050
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
2051
|
+
dependencies = [
|
|
2052
|
+
"bytes",
|
|
2053
|
+
"http 1.4.0",
|
|
2054
|
+
]
|
|
2055
|
+
|
|
2056
|
+
[[package]]
|
|
2057
|
+
name = "http-body-util"
|
|
2058
|
+
version = "0.1.3"
|
|
2059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
2061
|
+
dependencies = [
|
|
2062
|
+
"bytes",
|
|
2063
|
+
"futures-core",
|
|
2064
|
+
"http 1.4.0",
|
|
2065
|
+
"http-body 1.0.1",
|
|
2066
|
+
"pin-project-lite",
|
|
2067
|
+
]
|
|
2068
|
+
|
|
2069
|
+
[[package]]
|
|
2070
|
+
name = "httparse"
|
|
2071
|
+
version = "1.10.1"
|
|
2072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
2074
|
+
|
|
2075
|
+
[[package]]
|
|
2076
|
+
name = "httpdate"
|
|
2077
|
+
version = "1.0.3"
|
|
2078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2079
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
2080
|
+
|
|
2081
|
+
[[package]]
|
|
2082
|
+
name = "httptest"
|
|
2083
|
+
version = "0.16.4"
|
|
2084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2085
|
+
checksum = "a422b4c865d103368628ae1247be6159ad8041f803eb9e2176cf69ad7d13da40"
|
|
2086
|
+
dependencies = [
|
|
2087
|
+
"bstr",
|
|
2088
|
+
"bytes",
|
|
2089
|
+
"crossbeam-channel",
|
|
2090
|
+
"form_urlencoded",
|
|
2091
|
+
"futures",
|
|
2092
|
+
"http 1.4.0",
|
|
2093
|
+
"http-body-util",
|
|
2094
|
+
"hyper 1.8.1",
|
|
2095
|
+
"hyper-util",
|
|
2096
|
+
"log",
|
|
2097
|
+
"once_cell",
|
|
2098
|
+
"regex",
|
|
2099
|
+
"serde",
|
|
2100
|
+
"serde_json",
|
|
2101
|
+
"serde_urlencoded",
|
|
2102
|
+
"tokio",
|
|
2103
|
+
]
|
|
2104
|
+
|
|
2105
|
+
[[package]]
|
|
2106
|
+
name = "hyper"
|
|
2107
|
+
version = "0.14.32"
|
|
2108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2109
|
+
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
|
2110
|
+
dependencies = [
|
|
2111
|
+
"bytes",
|
|
2112
|
+
"futures-channel",
|
|
2113
|
+
"futures-core",
|
|
2114
|
+
"futures-util",
|
|
2115
|
+
"h2 0.3.27",
|
|
2116
|
+
"http 0.2.12",
|
|
2117
|
+
"http-body 0.4.6",
|
|
2118
|
+
"httparse",
|
|
2119
|
+
"httpdate",
|
|
2120
|
+
"itoa",
|
|
2121
|
+
"pin-project-lite",
|
|
2122
|
+
"socket2 0.5.10",
|
|
2123
|
+
"tokio",
|
|
2124
|
+
"tower-service",
|
|
2125
|
+
"tracing",
|
|
2126
|
+
"want",
|
|
2127
|
+
]
|
|
2128
|
+
|
|
2129
|
+
[[package]]
|
|
2130
|
+
name = "hyper"
|
|
2131
|
+
version = "1.8.1"
|
|
2132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
2134
|
+
dependencies = [
|
|
2135
|
+
"atomic-waker",
|
|
2136
|
+
"bytes",
|
|
2137
|
+
"futures-channel",
|
|
2138
|
+
"futures-core",
|
|
2139
|
+
"h2 0.4.13",
|
|
2140
|
+
"http 1.4.0",
|
|
2141
|
+
"http-body 1.0.1",
|
|
2142
|
+
"httparse",
|
|
2143
|
+
"httpdate",
|
|
2144
|
+
"itoa",
|
|
2145
|
+
"pin-project-lite",
|
|
2146
|
+
"pin-utils",
|
|
2147
|
+
"smallvec",
|
|
2148
|
+
"tokio",
|
|
2149
|
+
"want",
|
|
2150
|
+
]
|
|
2151
|
+
|
|
2152
|
+
[[package]]
|
|
2153
|
+
name = "hyper-rustls"
|
|
2154
|
+
version = "0.24.2"
|
|
2155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
|
+
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
2157
|
+
dependencies = [
|
|
2158
|
+
"futures-util",
|
|
2159
|
+
"http 0.2.12",
|
|
2160
|
+
"hyper 0.14.32",
|
|
2161
|
+
"log",
|
|
2162
|
+
"rustls 0.21.12",
|
|
2163
|
+
"tokio",
|
|
2164
|
+
"tokio-rustls 0.24.1",
|
|
2165
|
+
]
|
|
2166
|
+
|
|
2167
|
+
[[package]]
|
|
2168
|
+
name = "hyper-rustls"
|
|
2169
|
+
version = "0.27.7"
|
|
2170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
2172
|
+
dependencies = [
|
|
2173
|
+
"http 1.4.0",
|
|
2174
|
+
"hyper 1.8.1",
|
|
2175
|
+
"hyper-util",
|
|
2176
|
+
"rustls 0.23.36",
|
|
2177
|
+
"rustls-native-certs",
|
|
2178
|
+
"rustls-pki-types",
|
|
2179
|
+
"tokio",
|
|
2180
|
+
"tokio-rustls 0.26.4",
|
|
2181
|
+
"tower-service",
|
|
2182
|
+
]
|
|
2183
|
+
|
|
2184
|
+
[[package]]
|
|
2185
|
+
name = "hyper-timeout"
|
|
2186
|
+
version = "0.4.1"
|
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2188
|
+
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
|
|
2189
|
+
dependencies = [
|
|
2190
|
+
"hyper 0.14.32",
|
|
2191
|
+
"pin-project-lite",
|
|
2192
|
+
"tokio",
|
|
2193
|
+
"tokio-io-timeout",
|
|
2194
|
+
]
|
|
2195
|
+
|
|
2196
|
+
[[package]]
|
|
2197
|
+
name = "hyper-util"
|
|
2198
|
+
version = "0.1.19"
|
|
2199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2200
|
+
checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
|
|
2201
|
+
dependencies = [
|
|
2202
|
+
"base64 0.22.1",
|
|
2203
|
+
"bytes",
|
|
2204
|
+
"futures-channel",
|
|
2205
|
+
"futures-core",
|
|
2206
|
+
"futures-util",
|
|
2207
|
+
"http 1.4.0",
|
|
2208
|
+
"http-body 1.0.1",
|
|
2209
|
+
"hyper 1.8.1",
|
|
2210
|
+
"ipnet",
|
|
2211
|
+
"libc",
|
|
2212
|
+
"percent-encoding",
|
|
2213
|
+
"pin-project-lite",
|
|
2214
|
+
"socket2 0.6.2",
|
|
2215
|
+
"tokio",
|
|
2216
|
+
"tower-service",
|
|
2217
|
+
"tracing",
|
|
2218
|
+
]
|
|
2219
|
+
|
|
2220
|
+
[[package]]
|
|
2221
|
+
name = "iana-time-zone"
|
|
2222
|
+
version = "0.1.65"
|
|
2223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
2225
|
+
dependencies = [
|
|
2226
|
+
"android_system_properties",
|
|
2227
|
+
"core-foundation-sys",
|
|
2228
|
+
"iana-time-zone-haiku",
|
|
2229
|
+
"js-sys",
|
|
2230
|
+
"log",
|
|
2231
|
+
"wasm-bindgen",
|
|
2232
|
+
"windows-core",
|
|
2233
|
+
]
|
|
2234
|
+
|
|
2235
|
+
[[package]]
|
|
2236
|
+
name = "iana-time-zone-haiku"
|
|
2237
|
+
version = "0.1.2"
|
|
2238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2239
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
2240
|
+
dependencies = [
|
|
2241
|
+
"cc",
|
|
2242
|
+
]
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "icu_collections"
|
|
2246
|
+
version = "2.1.1"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
2249
|
+
dependencies = [
|
|
2250
|
+
"displaydoc",
|
|
2251
|
+
"potential_utf",
|
|
2252
|
+
"yoke",
|
|
2253
|
+
"zerofrom",
|
|
2254
|
+
"zerovec",
|
|
2255
|
+
]
|
|
2256
|
+
|
|
2257
|
+
[[package]]
|
|
2258
|
+
name = "icu_locale_core"
|
|
2259
|
+
version = "2.1.1"
|
|
2260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
2262
|
+
dependencies = [
|
|
2263
|
+
"displaydoc",
|
|
2264
|
+
"litemap",
|
|
2265
|
+
"tinystr",
|
|
2266
|
+
"writeable",
|
|
2267
|
+
"zerovec",
|
|
2268
|
+
]
|
|
2269
|
+
|
|
2270
|
+
[[package]]
|
|
2271
|
+
name = "icu_normalizer"
|
|
2272
|
+
version = "2.1.1"
|
|
2273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2274
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
2275
|
+
dependencies = [
|
|
2276
|
+
"icu_collections",
|
|
2277
|
+
"icu_normalizer_data",
|
|
2278
|
+
"icu_properties",
|
|
2279
|
+
"icu_provider",
|
|
2280
|
+
"smallvec",
|
|
2281
|
+
"zerovec",
|
|
2282
|
+
]
|
|
2283
|
+
|
|
2284
|
+
[[package]]
|
|
2285
|
+
name = "icu_normalizer_data"
|
|
2286
|
+
version = "2.1.1"
|
|
2287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2288
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
2289
|
+
|
|
2290
|
+
[[package]]
|
|
2291
|
+
name = "icu_properties"
|
|
2292
|
+
version = "2.1.2"
|
|
2293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2294
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
2295
|
+
dependencies = [
|
|
2296
|
+
"icu_collections",
|
|
2297
|
+
"icu_locale_core",
|
|
2298
|
+
"icu_properties_data",
|
|
2299
|
+
"icu_provider",
|
|
2300
|
+
"zerotrie",
|
|
2301
|
+
"zerovec",
|
|
2302
|
+
]
|
|
2303
|
+
|
|
2304
|
+
[[package]]
|
|
2305
|
+
name = "icu_properties_data"
|
|
2306
|
+
version = "2.1.2"
|
|
2307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
2309
|
+
|
|
2310
|
+
[[package]]
|
|
2311
|
+
name = "icu_provider"
|
|
2312
|
+
version = "2.1.1"
|
|
2313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
2315
|
+
dependencies = [
|
|
2316
|
+
"displaydoc",
|
|
2317
|
+
"icu_locale_core",
|
|
2318
|
+
"writeable",
|
|
2319
|
+
"yoke",
|
|
2320
|
+
"zerofrom",
|
|
2321
|
+
"zerotrie",
|
|
2322
|
+
"zerovec",
|
|
2323
|
+
]
|
|
2324
|
+
|
|
2325
|
+
[[package]]
|
|
2326
|
+
name = "idna"
|
|
2327
|
+
version = "1.1.0"
|
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
2330
|
+
dependencies = [
|
|
2331
|
+
"idna_adapter",
|
|
2332
|
+
"smallvec",
|
|
2333
|
+
"utf8_iter",
|
|
2334
|
+
]
|
|
2335
|
+
|
|
2336
|
+
[[package]]
|
|
2337
|
+
name = "idna_adapter"
|
|
2338
|
+
version = "1.2.1"
|
|
2339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2340
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
2341
|
+
dependencies = [
|
|
2342
|
+
"icu_normalizer",
|
|
2343
|
+
"icu_properties",
|
|
2344
|
+
]
|
|
2345
|
+
|
|
2346
|
+
[[package]]
|
|
2347
|
+
name = "indexmap"
|
|
2348
|
+
version = "1.9.3"
|
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
2351
|
+
dependencies = [
|
|
2352
|
+
"autocfg",
|
|
2353
|
+
"hashbrown 0.12.3",
|
|
2354
|
+
]
|
|
2355
|
+
|
|
2356
|
+
[[package]]
|
|
2357
|
+
name = "indexmap"
|
|
2358
|
+
version = "2.13.0"
|
|
2359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2360
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
2361
|
+
dependencies = [
|
|
2362
|
+
"equivalent",
|
|
2363
|
+
"hashbrown 0.16.1",
|
|
2364
|
+
]
|
|
2365
|
+
|
|
2366
|
+
[[package]]
|
|
2367
|
+
name = "indoc"
|
|
2368
|
+
version = "2.0.7"
|
|
2369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2370
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
2371
|
+
dependencies = [
|
|
2372
|
+
"rustversion",
|
|
2373
|
+
]
|
|
2374
|
+
|
|
2375
|
+
[[package]]
|
|
2376
|
+
name = "insta"
|
|
2377
|
+
version = "0.13.1"
|
|
2378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2379
|
+
checksum = "8df742abee84dbf27d20869c9adf77b0d8f7ea3eead13c2c9e3998d136a97058"
|
|
2380
|
+
dependencies = [
|
|
2381
|
+
"console",
|
|
2382
|
+
"difference",
|
|
2383
|
+
"lazy_static",
|
|
2384
|
+
"serde",
|
|
2385
|
+
"serde_json",
|
|
2386
|
+
"serde_yaml",
|
|
2387
|
+
]
|
|
2388
|
+
|
|
2389
|
+
[[package]]
|
|
2390
|
+
name = "ipnet"
|
|
2391
|
+
version = "2.11.0"
|
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
2394
|
+
|
|
2395
|
+
[[package]]
|
|
2396
|
+
name = "iri-string"
|
|
2397
|
+
version = "0.7.10"
|
|
2398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2399
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
2400
|
+
dependencies = [
|
|
2401
|
+
"memchr",
|
|
2402
|
+
"serde",
|
|
2403
|
+
]
|
|
2404
|
+
|
|
2405
|
+
[[package]]
|
|
2406
|
+
name = "is_terminal_polyfill"
|
|
2407
|
+
version = "1.70.2"
|
|
2408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2409
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
2410
|
+
|
|
2411
|
+
[[package]]
|
|
2412
|
+
name = "itertools"
|
|
2413
|
+
version = "0.12.1"
|
|
2414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2415
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
2416
|
+
dependencies = [
|
|
2417
|
+
"either",
|
|
2418
|
+
]
|
|
2419
|
+
|
|
2420
|
+
[[package]]
|
|
2421
|
+
name = "itoa"
|
|
2422
|
+
version = "1.0.17"
|
|
2423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
2425
|
+
|
|
2426
|
+
[[package]]
|
|
2427
|
+
name = "jiff"
|
|
2428
|
+
version = "0.2.18"
|
|
2429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2430
|
+
checksum = "e67e8da4c49d6d9909fe03361f9b620f58898859f5c7aded68351e85e71ecf50"
|
|
2431
|
+
dependencies = [
|
|
2432
|
+
"jiff-static",
|
|
2433
|
+
"log",
|
|
2434
|
+
"portable-atomic",
|
|
2435
|
+
"portable-atomic-util",
|
|
2436
|
+
"serde_core",
|
|
2437
|
+
]
|
|
2438
|
+
|
|
2439
|
+
[[package]]
|
|
2440
|
+
name = "jiff-static"
|
|
2441
|
+
version = "0.2.18"
|
|
2442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2443
|
+
checksum = "e0c84ee7f197eca9a86c6fd6cb771e55eb991632f15f2bc3ca6ec838929e6e78"
|
|
2444
|
+
dependencies = [
|
|
2445
|
+
"proc-macro2",
|
|
2446
|
+
"quote",
|
|
2447
|
+
"syn",
|
|
2448
|
+
]
|
|
2449
|
+
|
|
2450
|
+
[[package]]
|
|
2451
|
+
name = "jni"
|
|
2452
|
+
version = "0.19.0"
|
|
2453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2454
|
+
checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec"
|
|
2455
|
+
dependencies = [
|
|
2456
|
+
"cesu8",
|
|
2457
|
+
"combine",
|
|
2458
|
+
"jni-sys",
|
|
2459
|
+
"log",
|
|
2460
|
+
"thiserror 1.0.69",
|
|
2461
|
+
"walkdir",
|
|
2462
|
+
]
|
|
2463
|
+
|
|
2464
|
+
[[package]]
|
|
2465
|
+
name = "jni-sys"
|
|
2466
|
+
version = "0.3.0"
|
|
2467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2468
|
+
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
2469
|
+
|
|
2470
|
+
[[package]]
|
|
2471
|
+
name = "jobserver"
|
|
2472
|
+
version = "0.1.34"
|
|
2473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2474
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
2475
|
+
dependencies = [
|
|
2476
|
+
"getrandom 0.3.4",
|
|
2477
|
+
"libc",
|
|
2478
|
+
]
|
|
2479
|
+
|
|
2480
|
+
[[package]]
|
|
2481
|
+
name = "js-sys"
|
|
2482
|
+
version = "0.3.85"
|
|
2483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2484
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
2485
|
+
dependencies = [
|
|
2486
|
+
"once_cell",
|
|
2487
|
+
"wasm-bindgen",
|
|
2488
|
+
]
|
|
2489
|
+
|
|
2490
|
+
[[package]]
|
|
2491
|
+
name = "json-strip-comments"
|
|
2492
|
+
version = "1.0.4"
|
|
2493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2494
|
+
checksum = "b271732a960335e715b6b2ae66a086f115c74eb97360e996d2bd809bfc063bba"
|
|
2495
|
+
dependencies = [
|
|
2496
|
+
"memchr",
|
|
2497
|
+
]
|
|
2498
|
+
|
|
2499
|
+
[[package]]
|
|
2500
|
+
name = "jsonpath-rust"
|
|
2501
|
+
version = "0.7.5"
|
|
2502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
+
checksum = "0c00ae348f9f8fd2d09f82a98ca381c60df9e0820d8d79fce43e649b4dc3128b"
|
|
2504
|
+
dependencies = [
|
|
2505
|
+
"pest",
|
|
2506
|
+
"pest_derive",
|
|
2507
|
+
"regex",
|
|
2508
|
+
"serde_json",
|
|
2509
|
+
"thiserror 2.0.18",
|
|
2510
|
+
]
|
|
2511
|
+
|
|
2512
|
+
[[package]]
|
|
2513
|
+
name = "jsonwebtoken"
|
|
2514
|
+
version = "9.3.1"
|
|
2515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
+
checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
|
|
2517
|
+
dependencies = [
|
|
2518
|
+
"base64 0.22.1",
|
|
2519
|
+
"js-sys",
|
|
2520
|
+
"pem",
|
|
2521
|
+
"ring",
|
|
2522
|
+
"serde",
|
|
2523
|
+
"serde_json",
|
|
2524
|
+
"simple_asn1",
|
|
2525
|
+
]
|
|
2526
|
+
|
|
2527
|
+
[[package]]
|
|
2528
|
+
name = "lazy_static"
|
|
2529
|
+
version = "1.5.0"
|
|
2530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2532
|
+
|
|
2533
|
+
[[package]]
|
|
2534
|
+
name = "libc"
|
|
2535
|
+
version = "0.2.180"
|
|
2536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2537
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
2538
|
+
|
|
2539
|
+
[[package]]
|
|
2540
|
+
name = "libloading"
|
|
2541
|
+
version = "0.9.0"
|
|
2542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2543
|
+
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
|
|
2544
|
+
dependencies = [
|
|
2545
|
+
"cfg-if",
|
|
2546
|
+
"windows-link",
|
|
2547
|
+
]
|
|
2548
|
+
|
|
2549
|
+
[[package]]
|
|
2550
|
+
name = "linked-hash-map"
|
|
2551
|
+
version = "0.5.6"
|
|
2552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2553
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
2554
|
+
|
|
2555
|
+
[[package]]
|
|
2556
|
+
name = "linux-raw-sys"
|
|
2557
|
+
version = "0.11.0"
|
|
2558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2559
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
2560
|
+
|
|
2561
|
+
[[package]]
|
|
2562
|
+
name = "litemap"
|
|
2563
|
+
version = "0.8.1"
|
|
2564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2565
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
2566
|
+
|
|
2567
|
+
[[package]]
|
|
2568
|
+
name = "lock_api"
|
|
2569
|
+
version = "0.4.14"
|
|
2570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2571
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
2572
|
+
dependencies = [
|
|
2573
|
+
"scopeguard",
|
|
2574
|
+
]
|
|
2575
|
+
|
|
2576
|
+
[[package]]
|
|
2577
|
+
name = "log"
|
|
2578
|
+
version = "0.4.29"
|
|
2579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2580
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
2581
|
+
|
|
2582
|
+
[[package]]
|
|
2583
|
+
name = "lru-slab"
|
|
2584
|
+
version = "0.1.2"
|
|
2585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2586
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
2587
|
+
|
|
2588
|
+
[[package]]
|
|
2589
|
+
name = "matchers"
|
|
2590
|
+
version = "0.2.0"
|
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
2593
|
+
dependencies = [
|
|
2594
|
+
"regex-automata",
|
|
2595
|
+
]
|
|
2596
|
+
|
|
2597
|
+
[[package]]
|
|
2598
|
+
name = "matchit"
|
|
2599
|
+
version = "0.7.3"
|
|
2600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2601
|
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
2602
|
+
|
|
2603
|
+
[[package]]
|
|
2604
|
+
name = "matchit"
|
|
2605
|
+
version = "0.8.4"
|
|
2606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2607
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
2608
|
+
|
|
2609
|
+
[[package]]
|
|
2610
|
+
name = "md5"
|
|
2611
|
+
version = "0.8.0"
|
|
2612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
+
checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0"
|
|
2614
|
+
|
|
2615
|
+
[[package]]
|
|
2616
|
+
name = "memchr"
|
|
2617
|
+
version = "2.7.6"
|
|
2618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2619
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
2620
|
+
|
|
2621
|
+
[[package]]
|
|
2622
|
+
name = "memoffset"
|
|
2623
|
+
version = "0.9.1"
|
|
2624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
2626
|
+
dependencies = [
|
|
2627
|
+
"autocfg",
|
|
2628
|
+
]
|
|
2629
|
+
|
|
2630
|
+
[[package]]
|
|
2631
|
+
name = "mime"
|
|
2632
|
+
version = "0.3.17"
|
|
2633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2634
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
2635
|
+
|
|
2636
|
+
[[package]]
|
|
2637
|
+
name = "miniz_oxide"
|
|
2638
|
+
version = "0.8.9"
|
|
2639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
2641
|
+
dependencies = [
|
|
2642
|
+
"adler2",
|
|
2643
|
+
]
|
|
2644
|
+
|
|
2645
|
+
[[package]]
|
|
2646
|
+
name = "mio"
|
|
2647
|
+
version = "1.1.1"
|
|
2648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2649
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
2650
|
+
dependencies = [
|
|
2651
|
+
"libc",
|
|
2652
|
+
"wasi",
|
|
2653
|
+
"windows-sys 0.61.2",
|
|
2654
|
+
]
|
|
2655
|
+
|
|
2656
|
+
[[package]]
|
|
2657
|
+
name = "multer"
|
|
2658
|
+
version = "3.1.0"
|
|
2659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
+
checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b"
|
|
2661
|
+
dependencies = [
|
|
2662
|
+
"bytes",
|
|
2663
|
+
"encoding_rs",
|
|
2664
|
+
"futures-util",
|
|
2665
|
+
"http 1.4.0",
|
|
2666
|
+
"httparse",
|
|
2667
|
+
"memchr",
|
|
2668
|
+
"mime",
|
|
2669
|
+
"spin",
|
|
2670
|
+
"version_check",
|
|
2671
|
+
]
|
|
2672
|
+
|
|
2673
|
+
[[package]]
|
|
2674
|
+
name = "nanoid"
|
|
2675
|
+
version = "0.4.0"
|
|
2676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2677
|
+
checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
|
|
2678
|
+
dependencies = [
|
|
2679
|
+
"rand 0.8.5",
|
|
2680
|
+
]
|
|
2681
|
+
|
|
2682
|
+
[[package]]
|
|
2683
|
+
name = "napi"
|
|
2684
|
+
version = "3.8.2"
|
|
2685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2686
|
+
checksum = "909805cbad4d569e69b80e101290fe72e92b9742ba9e333b0c1e83b22fb7447b"
|
|
2687
|
+
dependencies = [
|
|
2688
|
+
"bitflags 2.10.0",
|
|
2689
|
+
"ctor",
|
|
2690
|
+
"futures",
|
|
2691
|
+
"napi-build",
|
|
2692
|
+
"napi-sys",
|
|
2693
|
+
"nohash-hasher",
|
|
2694
|
+
"rustc-hash",
|
|
2695
|
+
"serde",
|
|
2696
|
+
"serde_json",
|
|
2697
|
+
"tokio",
|
|
2698
|
+
]
|
|
2699
|
+
|
|
2700
|
+
[[package]]
|
|
2701
|
+
name = "napi-build"
|
|
2702
|
+
version = "2.3.1"
|
|
2703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2704
|
+
checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
2705
|
+
|
|
2706
|
+
[[package]]
|
|
2707
|
+
name = "napi-derive"
|
|
2708
|
+
version = "3.5.1"
|
|
2709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2710
|
+
checksum = "04ba21bbdf40b33496b4ee6eadfc64d17a6a6cde57cd31549117b0882d1fef86"
|
|
2711
|
+
dependencies = [
|
|
2712
|
+
"convert_case",
|
|
2713
|
+
"ctor",
|
|
2714
|
+
"napi-derive-backend",
|
|
2715
|
+
"proc-macro2",
|
|
2716
|
+
"quote",
|
|
2717
|
+
"syn",
|
|
2718
|
+
]
|
|
2719
|
+
|
|
2720
|
+
[[package]]
|
|
2721
|
+
name = "napi-derive-backend"
|
|
2722
|
+
version = "5.0.1"
|
|
2723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2724
|
+
checksum = "e9a63791e230572c3218a7acd86ca0a0529fc64294bcbea567cf906d7b04e077"
|
|
2725
|
+
dependencies = [
|
|
2726
|
+
"convert_case",
|
|
2727
|
+
"proc-macro2",
|
|
2728
|
+
"quote",
|
|
2729
|
+
"semver",
|
|
2730
|
+
"syn",
|
|
2731
|
+
]
|
|
2732
|
+
|
|
2733
|
+
[[package]]
|
|
2734
|
+
name = "napi-sys"
|
|
2735
|
+
version = "3.2.1"
|
|
2736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2737
|
+
checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
|
|
2738
|
+
dependencies = [
|
|
2739
|
+
"libloading",
|
|
2740
|
+
]
|
|
2741
|
+
|
|
2742
|
+
[[package]]
|
|
2743
|
+
name = "nohash-hasher"
|
|
2744
|
+
version = "0.2.0"
|
|
2745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2746
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
2747
|
+
|
|
2748
|
+
[[package]]
|
|
2749
|
+
name = "nu-ansi-term"
|
|
2750
|
+
version = "0.50.3"
|
|
2751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2752
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
2753
|
+
dependencies = [
|
|
2754
|
+
"windows-sys 0.60.2",
|
|
2755
|
+
]
|
|
2756
|
+
|
|
2757
|
+
[[package]]
|
|
2758
|
+
name = "num-bigint"
|
|
2759
|
+
version = "0.4.6"
|
|
2760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
2762
|
+
dependencies = [
|
|
2763
|
+
"num-integer",
|
|
2764
|
+
"num-traits",
|
|
2765
|
+
]
|
|
2766
|
+
|
|
2767
|
+
[[package]]
|
|
2768
|
+
name = "num-conv"
|
|
2769
|
+
version = "0.2.0"
|
|
2770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2771
|
+
checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
|
|
2772
|
+
|
|
2773
|
+
[[package]]
|
|
2774
|
+
name = "num-integer"
|
|
2775
|
+
version = "0.1.46"
|
|
2776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2777
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2778
|
+
dependencies = [
|
|
2779
|
+
"num-traits",
|
|
2780
|
+
]
|
|
2781
|
+
|
|
2782
|
+
[[package]]
|
|
2783
|
+
name = "num-traits"
|
|
2784
|
+
version = "0.2.19"
|
|
2785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2786
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2787
|
+
dependencies = [
|
|
2788
|
+
"autocfg",
|
|
2789
|
+
]
|
|
2790
|
+
|
|
2791
|
+
[[package]]
|
|
2792
|
+
name = "num_cpus"
|
|
2793
|
+
version = "1.17.0"
|
|
2794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2795
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
2796
|
+
dependencies = [
|
|
2797
|
+
"hermit-abi 0.5.2",
|
|
2798
|
+
"libc",
|
|
2799
|
+
]
|
|
2800
|
+
|
|
2801
|
+
[[package]]
|
|
2802
|
+
name = "object"
|
|
2803
|
+
version = "0.37.3"
|
|
2804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2805
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
2806
|
+
dependencies = [
|
|
2807
|
+
"memchr",
|
|
2808
|
+
]
|
|
2809
|
+
|
|
2810
|
+
[[package]]
|
|
2811
|
+
name = "once_cell"
|
|
2812
|
+
version = "1.21.3"
|
|
2813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2814
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2815
|
+
|
|
2816
|
+
[[package]]
|
|
2817
|
+
name = "once_cell_polyfill"
|
|
2818
|
+
version = "1.70.2"
|
|
2819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2820
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2821
|
+
|
|
2822
|
+
[[package]]
|
|
2823
|
+
name = "oo-bindgen"
|
|
2824
|
+
version = "0.8.8"
|
|
2825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2826
|
+
checksum = "c87847ac8cd3f9ff4bfdb3a23ce104225f7246f37ac1567efe6fc528bb26563b"
|
|
2827
|
+
dependencies = [
|
|
2828
|
+
"backtrace",
|
|
2829
|
+
"clap",
|
|
2830
|
+
"dunce",
|
|
2831
|
+
"heck",
|
|
2832
|
+
"lazy_static",
|
|
2833
|
+
"platforms",
|
|
2834
|
+
"regex",
|
|
2835
|
+
"semver",
|
|
2836
|
+
"serde",
|
|
2837
|
+
"serde_json",
|
|
2838
|
+
"thiserror 2.0.18",
|
|
2839
|
+
"tracing",
|
|
2840
|
+
]
|
|
2841
|
+
|
|
2842
|
+
[[package]]
|
|
2843
|
+
name = "openssl-probe"
|
|
2844
|
+
version = "0.2.1"
|
|
2845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2846
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
2847
|
+
|
|
2848
|
+
[[package]]
|
|
2849
|
+
name = "opentelemetry"
|
|
2850
|
+
version = "0.22.0"
|
|
2851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2852
|
+
checksum = "900d57987be3f2aeb70d385fff9b27fb74c5723cc9a52d904d4f9c807a0667bf"
|
|
2853
|
+
dependencies = [
|
|
2854
|
+
"futures-core",
|
|
2855
|
+
"futures-sink",
|
|
2856
|
+
"js-sys",
|
|
2857
|
+
"once_cell",
|
|
2858
|
+
"pin-project-lite",
|
|
2859
|
+
"thiserror 1.0.69",
|
|
2860
|
+
"urlencoding",
|
|
2861
|
+
]
|
|
2862
|
+
|
|
2863
|
+
[[package]]
|
|
2864
|
+
name = "opentelemetry-aws"
|
|
2865
|
+
version = "0.10.0"
|
|
2866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
|
+
checksum = "42c915961c059be65af3be9aeaedb3f8930e1e9590e26e5f23b1919e90d1ed7d"
|
|
2868
|
+
dependencies = [
|
|
2869
|
+
"once_cell",
|
|
2870
|
+
"opentelemetry",
|
|
2871
|
+
"opentelemetry_sdk",
|
|
2872
|
+
]
|
|
2873
|
+
|
|
2874
|
+
[[package]]
|
|
2875
|
+
name = "opentelemetry-otlp"
|
|
2876
|
+
version = "0.15.0"
|
|
2877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
+
checksum = "1a016b8d9495c639af2145ac22387dcb88e44118e45320d9238fbf4e7889abcb"
|
|
2879
|
+
dependencies = [
|
|
2880
|
+
"async-trait",
|
|
2881
|
+
"futures-core",
|
|
2882
|
+
"http 0.2.12",
|
|
2883
|
+
"opentelemetry",
|
|
2884
|
+
"opentelemetry-proto",
|
|
2885
|
+
"opentelemetry-semantic-conventions",
|
|
2886
|
+
"opentelemetry_sdk",
|
|
2887
|
+
"prost",
|
|
2888
|
+
"thiserror 1.0.69",
|
|
2889
|
+
"tokio",
|
|
2890
|
+
"tonic",
|
|
2891
|
+
]
|
|
2892
|
+
|
|
2893
|
+
[[package]]
|
|
2894
|
+
name = "opentelemetry-proto"
|
|
2895
|
+
version = "0.5.0"
|
|
2896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
+
checksum = "3a8fddc9b68f5b80dae9d6f510b88e02396f006ad48cac349411fbecc80caae4"
|
|
2898
|
+
dependencies = [
|
|
2899
|
+
"opentelemetry",
|
|
2900
|
+
"opentelemetry_sdk",
|
|
2901
|
+
"prost",
|
|
2902
|
+
"tonic",
|
|
2903
|
+
]
|
|
2904
|
+
|
|
2905
|
+
[[package]]
|
|
2906
|
+
name = "opentelemetry-semantic-conventions"
|
|
2907
|
+
version = "0.14.0"
|
|
2908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2909
|
+
checksum = "f9ab5bd6c42fb9349dcf28af2ba9a0667f697f9bdcca045d39f2cec5543e2910"
|
|
2910
|
+
|
|
2911
|
+
[[package]]
|
|
2912
|
+
name = "opentelemetry_sdk"
|
|
2913
|
+
version = "0.22.1"
|
|
2914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2915
|
+
checksum = "9e90c7113be649e31e9a0f8b5ee24ed7a16923b322c3c5ab6367469c049d6b7e"
|
|
2916
|
+
dependencies = [
|
|
2917
|
+
"async-trait",
|
|
2918
|
+
"crossbeam-channel",
|
|
2919
|
+
"futures-channel",
|
|
2920
|
+
"futures-executor",
|
|
2921
|
+
"futures-util",
|
|
2922
|
+
"glob",
|
|
2923
|
+
"once_cell",
|
|
2924
|
+
"opentelemetry",
|
|
2925
|
+
"ordered-float",
|
|
2926
|
+
"percent-encoding",
|
|
2927
|
+
"rand 0.8.5",
|
|
2928
|
+
"thiserror 1.0.69",
|
|
2929
|
+
"tokio",
|
|
2930
|
+
"tokio-stream",
|
|
2931
|
+
]
|
|
2932
|
+
|
|
2933
|
+
[[package]]
|
|
2934
|
+
name = "ordered-float"
|
|
2935
|
+
version = "4.6.0"
|
|
2936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2937
|
+
checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
|
|
2938
|
+
dependencies = [
|
|
2939
|
+
"num-traits",
|
|
2940
|
+
]
|
|
2941
|
+
|
|
2942
|
+
[[package]]
|
|
2943
|
+
name = "outref"
|
|
2944
|
+
version = "0.5.2"
|
|
2945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
+
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
2947
|
+
|
|
2948
|
+
[[package]]
|
|
2949
|
+
name = "parking_lot"
|
|
2950
|
+
version = "0.12.5"
|
|
2951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2953
|
+
dependencies = [
|
|
2954
|
+
"lock_api",
|
|
2955
|
+
"parking_lot_core",
|
|
2956
|
+
]
|
|
2957
|
+
|
|
2958
|
+
[[package]]
|
|
2959
|
+
name = "parking_lot_core"
|
|
2960
|
+
version = "0.9.12"
|
|
2961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2963
|
+
dependencies = [
|
|
2964
|
+
"cfg-if",
|
|
2965
|
+
"libc",
|
|
2966
|
+
"redox_syscall",
|
|
2967
|
+
"smallvec",
|
|
2968
|
+
"windows-link",
|
|
2969
|
+
]
|
|
2970
|
+
|
|
2971
|
+
[[package]]
|
|
2972
|
+
name = "pem"
|
|
2973
|
+
version = "3.0.6"
|
|
2974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2975
|
+
checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
|
|
2976
|
+
dependencies = [
|
|
2977
|
+
"base64 0.22.1",
|
|
2978
|
+
"serde_core",
|
|
2979
|
+
]
|
|
2980
|
+
|
|
2981
|
+
[[package]]
|
|
2982
|
+
name = "percent-encoding"
|
|
2983
|
+
version = "2.3.2"
|
|
2984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2985
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2986
|
+
|
|
2987
|
+
[[package]]
|
|
2988
|
+
name = "pest"
|
|
2989
|
+
version = "2.8.5"
|
|
2990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2991
|
+
checksum = "2c9eb05c21a464ea704b53158d358a31e6425db2f63a1a7312268b05fe2b75f7"
|
|
2992
|
+
dependencies = [
|
|
2993
|
+
"memchr",
|
|
2994
|
+
"ucd-trie",
|
|
2995
|
+
]
|
|
2996
|
+
|
|
2997
|
+
[[package]]
|
|
2998
|
+
name = "pest_derive"
|
|
2999
|
+
version = "2.8.5"
|
|
3000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3001
|
+
checksum = "68f9dbced329c441fa79d80472764b1a2c7e57123553b8519b36663a2fb234ed"
|
|
3002
|
+
dependencies = [
|
|
3003
|
+
"pest",
|
|
3004
|
+
"pest_generator",
|
|
3005
|
+
]
|
|
3006
|
+
|
|
3007
|
+
[[package]]
|
|
3008
|
+
name = "pest_generator"
|
|
3009
|
+
version = "2.8.5"
|
|
3010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3011
|
+
checksum = "3bb96d5051a78f44f43c8f712d8e810adb0ebf923fc9ed2655a7f66f63ba8ee5"
|
|
3012
|
+
dependencies = [
|
|
3013
|
+
"pest",
|
|
3014
|
+
"pest_meta",
|
|
3015
|
+
"proc-macro2",
|
|
3016
|
+
"quote",
|
|
3017
|
+
"syn",
|
|
3018
|
+
]
|
|
3019
|
+
|
|
3020
|
+
[[package]]
|
|
3021
|
+
name = "pest_meta"
|
|
3022
|
+
version = "2.8.5"
|
|
3023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3024
|
+
checksum = "602113b5b5e8621770cfd490cfd90b9f84ab29bd2b0e49ad83eb6d186cef2365"
|
|
3025
|
+
dependencies = [
|
|
3026
|
+
"pest",
|
|
3027
|
+
"sha2",
|
|
3028
|
+
]
|
|
3029
|
+
|
|
3030
|
+
[[package]]
|
|
3031
|
+
name = "pin-project"
|
|
3032
|
+
version = "1.1.10"
|
|
3033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3034
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
3035
|
+
dependencies = [
|
|
3036
|
+
"pin-project-internal",
|
|
3037
|
+
]
|
|
3038
|
+
|
|
3039
|
+
[[package]]
|
|
3040
|
+
name = "pin-project-internal"
|
|
3041
|
+
version = "1.1.10"
|
|
3042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3043
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
3044
|
+
dependencies = [
|
|
3045
|
+
"proc-macro2",
|
|
3046
|
+
"quote",
|
|
3047
|
+
"syn",
|
|
3048
|
+
]
|
|
3049
|
+
|
|
3050
|
+
[[package]]
|
|
3051
|
+
name = "pin-project-lite"
|
|
3052
|
+
version = "0.2.16"
|
|
3053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3054
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
3055
|
+
|
|
3056
|
+
[[package]]
|
|
3057
|
+
name = "pin-utils"
|
|
3058
|
+
version = "0.1.0"
|
|
3059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3060
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
3061
|
+
|
|
3062
|
+
[[package]]
|
|
3063
|
+
name = "platforms"
|
|
3064
|
+
version = "2.0.0"
|
|
3065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3066
|
+
checksum = "e8d0eef3571242013a0d5dc84861c3ae4a652e56e12adf8bdc26ff5f8cb34c94"
|
|
3067
|
+
|
|
3068
|
+
[[package]]
|
|
3069
|
+
name = "portable-atomic"
|
|
3070
|
+
version = "1.13.1"
|
|
3071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3072
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
3073
|
+
|
|
3074
|
+
[[package]]
|
|
3075
|
+
name = "portable-atomic-util"
|
|
3076
|
+
version = "0.2.5"
|
|
3077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3078
|
+
checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
|
|
3079
|
+
dependencies = [
|
|
3080
|
+
"portable-atomic",
|
|
3081
|
+
]
|
|
3082
|
+
|
|
3083
|
+
[[package]]
|
|
3084
|
+
name = "potential_utf"
|
|
3085
|
+
version = "0.1.4"
|
|
3086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3087
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
3088
|
+
dependencies = [
|
|
3089
|
+
"zerovec",
|
|
3090
|
+
]
|
|
3091
|
+
|
|
3092
|
+
[[package]]
|
|
3093
|
+
name = "powerfmt"
|
|
3094
|
+
version = "0.2.0"
|
|
3095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3096
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
3097
|
+
|
|
3098
|
+
[[package]]
|
|
3099
|
+
name = "ppv-lite86"
|
|
3100
|
+
version = "0.2.21"
|
|
3101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3102
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
3103
|
+
dependencies = [
|
|
3104
|
+
"zerocopy",
|
|
3105
|
+
]
|
|
3106
|
+
|
|
3107
|
+
[[package]]
|
|
3108
|
+
name = "pretty_assertions"
|
|
3109
|
+
version = "1.4.1"
|
|
3110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3111
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
3112
|
+
dependencies = [
|
|
3113
|
+
"diff",
|
|
3114
|
+
"yansi",
|
|
3115
|
+
]
|
|
3116
|
+
|
|
3117
|
+
[[package]]
|
|
3118
|
+
name = "proc-macro2"
|
|
3119
|
+
version = "1.0.106"
|
|
3120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3121
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
3122
|
+
dependencies = [
|
|
3123
|
+
"unicode-ident",
|
|
3124
|
+
]
|
|
3125
|
+
|
|
3126
|
+
[[package]]
|
|
3127
|
+
name = "prost"
|
|
3128
|
+
version = "0.12.6"
|
|
3129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3130
|
+
checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29"
|
|
3131
|
+
dependencies = [
|
|
3132
|
+
"bytes",
|
|
3133
|
+
"prost-derive",
|
|
3134
|
+
]
|
|
3135
|
+
|
|
3136
|
+
[[package]]
|
|
3137
|
+
name = "prost-derive"
|
|
3138
|
+
version = "0.12.6"
|
|
3139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3140
|
+
checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1"
|
|
3141
|
+
dependencies = [
|
|
3142
|
+
"anyhow",
|
|
3143
|
+
"itertools",
|
|
3144
|
+
"proc-macro2",
|
|
3145
|
+
"quote",
|
|
3146
|
+
"syn",
|
|
3147
|
+
]
|
|
3148
|
+
|
|
3149
|
+
[[package]]
|
|
3150
|
+
name = "pyo3"
|
|
3151
|
+
version = "0.25.1"
|
|
3152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3153
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
3154
|
+
dependencies = [
|
|
3155
|
+
"chrono",
|
|
3156
|
+
"indoc",
|
|
3157
|
+
"libc",
|
|
3158
|
+
"memoffset",
|
|
3159
|
+
"once_cell",
|
|
3160
|
+
"portable-atomic",
|
|
3161
|
+
"pyo3-build-config",
|
|
3162
|
+
"pyo3-ffi",
|
|
3163
|
+
"pyo3-macros",
|
|
3164
|
+
"unindent",
|
|
3165
|
+
]
|
|
3166
|
+
|
|
3167
|
+
[[package]]
|
|
3168
|
+
name = "pyo3-async-runtimes"
|
|
3169
|
+
version = "0.25.0"
|
|
3170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3171
|
+
checksum = "d73cc6b1b7d8b3cef02101d37390dbdfe7e450dfea14921cae80a9534ba59ef2"
|
|
3172
|
+
dependencies = [
|
|
3173
|
+
"futures",
|
|
3174
|
+
"once_cell",
|
|
3175
|
+
"pin-project-lite",
|
|
3176
|
+
"pyo3",
|
|
3177
|
+
"pyo3-async-runtimes-macros",
|
|
3178
|
+
"tokio",
|
|
3179
|
+
]
|
|
3180
|
+
|
|
3181
|
+
[[package]]
|
|
3182
|
+
name = "pyo3-async-runtimes-macros"
|
|
3183
|
+
version = "0.25.0"
|
|
3184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3185
|
+
checksum = "ca31e43a0f205f2960208938135e37e579e61e10b36b4e7f49b0e8f60fab5b83"
|
|
3186
|
+
dependencies = [
|
|
3187
|
+
"proc-macro2",
|
|
3188
|
+
"quote",
|
|
3189
|
+
"syn",
|
|
3190
|
+
]
|
|
3191
|
+
|
|
3192
|
+
[[package]]
|
|
3193
|
+
name = "pyo3-build-config"
|
|
3194
|
+
version = "0.25.1"
|
|
3195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3196
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
3197
|
+
dependencies = [
|
|
3198
|
+
"once_cell",
|
|
3199
|
+
"target-lexicon",
|
|
3200
|
+
]
|
|
3201
|
+
|
|
3202
|
+
[[package]]
|
|
3203
|
+
name = "pyo3-ffi"
|
|
3204
|
+
version = "0.25.1"
|
|
3205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3206
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
3207
|
+
dependencies = [
|
|
3208
|
+
"libc",
|
|
3209
|
+
"pyo3-build-config",
|
|
3210
|
+
]
|
|
3211
|
+
|
|
3212
|
+
[[package]]
|
|
3213
|
+
name = "pyo3-macros"
|
|
3214
|
+
version = "0.25.1"
|
|
3215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3216
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
3217
|
+
dependencies = [
|
|
3218
|
+
"proc-macro2",
|
|
3219
|
+
"pyo3-macros-backend",
|
|
3220
|
+
"quote",
|
|
3221
|
+
"syn",
|
|
3222
|
+
]
|
|
3223
|
+
|
|
3224
|
+
[[package]]
|
|
3225
|
+
name = "pyo3-macros-backend"
|
|
3226
|
+
version = "0.25.1"
|
|
3227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3228
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
3229
|
+
dependencies = [
|
|
3230
|
+
"heck",
|
|
3231
|
+
"proc-macro2",
|
|
3232
|
+
"pyo3-build-config",
|
|
3233
|
+
"quote",
|
|
3234
|
+
"syn",
|
|
3235
|
+
]
|
|
3236
|
+
|
|
3237
|
+
[[package]]
|
|
3238
|
+
name = "pythonize"
|
|
3239
|
+
version = "0.25.0"
|
|
3240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3241
|
+
checksum = "597907139a488b22573158793aa7539df36ae863eba300c75f3a0d65fc475e27"
|
|
3242
|
+
dependencies = [
|
|
3243
|
+
"pyo3",
|
|
3244
|
+
"serde",
|
|
3245
|
+
]
|
|
3246
|
+
|
|
3247
|
+
[[package]]
|
|
3248
|
+
name = "quinn"
|
|
3249
|
+
version = "0.11.9"
|
|
3250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3251
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
3252
|
+
dependencies = [
|
|
3253
|
+
"bytes",
|
|
3254
|
+
"cfg_aliases",
|
|
3255
|
+
"pin-project-lite",
|
|
3256
|
+
"quinn-proto",
|
|
3257
|
+
"quinn-udp",
|
|
3258
|
+
"rustc-hash",
|
|
3259
|
+
"rustls 0.23.36",
|
|
3260
|
+
"socket2 0.5.10",
|
|
3261
|
+
"thiserror 2.0.18",
|
|
3262
|
+
"tokio",
|
|
3263
|
+
"tracing",
|
|
3264
|
+
"web-time",
|
|
3265
|
+
]
|
|
3266
|
+
|
|
3267
|
+
[[package]]
|
|
3268
|
+
name = "quinn-proto"
|
|
3269
|
+
version = "0.11.13"
|
|
3270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3271
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
3272
|
+
dependencies = [
|
|
3273
|
+
"bytes",
|
|
3274
|
+
"getrandom 0.3.4",
|
|
3275
|
+
"lru-slab",
|
|
3276
|
+
"rand 0.9.2",
|
|
3277
|
+
"ring",
|
|
3278
|
+
"rustc-hash",
|
|
3279
|
+
"rustls 0.23.36",
|
|
3280
|
+
"rustls-pki-types",
|
|
3281
|
+
"slab",
|
|
3282
|
+
"thiserror 2.0.18",
|
|
3283
|
+
"tinyvec",
|
|
3284
|
+
"tracing",
|
|
3285
|
+
"web-time",
|
|
3286
|
+
]
|
|
3287
|
+
|
|
3288
|
+
[[package]]
|
|
3289
|
+
name = "quinn-udp"
|
|
3290
|
+
version = "0.5.14"
|
|
3291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3292
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
3293
|
+
dependencies = [
|
|
3294
|
+
"cfg_aliases",
|
|
3295
|
+
"libc",
|
|
3296
|
+
"once_cell",
|
|
3297
|
+
"socket2 0.5.10",
|
|
3298
|
+
"tracing",
|
|
3299
|
+
"windows-sys 0.52.0",
|
|
3300
|
+
]
|
|
3301
|
+
|
|
3302
|
+
[[package]]
|
|
3303
|
+
name = "quote"
|
|
3304
|
+
version = "1.0.44"
|
|
3305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3306
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
3307
|
+
dependencies = [
|
|
3308
|
+
"proc-macro2",
|
|
3309
|
+
]
|
|
3310
|
+
|
|
3311
|
+
[[package]]
|
|
3312
|
+
name = "r-efi"
|
|
3313
|
+
version = "5.3.0"
|
|
3314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3315
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
3316
|
+
|
|
3317
|
+
[[package]]
|
|
3318
|
+
name = "rand"
|
|
3319
|
+
version = "0.8.5"
|
|
3320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3321
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
3322
|
+
dependencies = [
|
|
3323
|
+
"libc",
|
|
3324
|
+
"rand_chacha 0.3.1",
|
|
3325
|
+
"rand_core 0.6.4",
|
|
3326
|
+
]
|
|
3327
|
+
|
|
3328
|
+
[[package]]
|
|
3329
|
+
name = "rand"
|
|
3330
|
+
version = "0.9.2"
|
|
3331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3332
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
3333
|
+
dependencies = [
|
|
3334
|
+
"rand_chacha 0.9.0",
|
|
3335
|
+
"rand_core 0.9.5",
|
|
3336
|
+
]
|
|
3337
|
+
|
|
3338
|
+
[[package]]
|
|
3339
|
+
name = "rand_chacha"
|
|
3340
|
+
version = "0.3.1"
|
|
3341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3342
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
3343
|
+
dependencies = [
|
|
3344
|
+
"ppv-lite86",
|
|
3345
|
+
"rand_core 0.6.4",
|
|
3346
|
+
]
|
|
3347
|
+
|
|
3348
|
+
[[package]]
|
|
3349
|
+
name = "rand_chacha"
|
|
3350
|
+
version = "0.9.0"
|
|
3351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3352
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
3353
|
+
dependencies = [
|
|
3354
|
+
"ppv-lite86",
|
|
3355
|
+
"rand_core 0.9.5",
|
|
3356
|
+
]
|
|
3357
|
+
|
|
3358
|
+
[[package]]
|
|
3359
|
+
name = "rand_core"
|
|
3360
|
+
version = "0.6.4"
|
|
3361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3362
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
3363
|
+
dependencies = [
|
|
3364
|
+
"getrandom 0.2.17",
|
|
3365
|
+
]
|
|
3366
|
+
|
|
3367
|
+
[[package]]
|
|
3368
|
+
name = "rand_core"
|
|
3369
|
+
version = "0.9.5"
|
|
3370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3371
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
3372
|
+
dependencies = [
|
|
3373
|
+
"getrandom 0.3.4",
|
|
3374
|
+
]
|
|
3375
|
+
|
|
3376
|
+
[[package]]
|
|
3377
|
+
name = "redis"
|
|
3378
|
+
version = "0.32.7"
|
|
3379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3380
|
+
checksum = "014cc767fefab6a3e798ca45112bccad9c6e0e218fbd49720042716c73cfef44"
|
|
3381
|
+
dependencies = [
|
|
3382
|
+
"bytes",
|
|
3383
|
+
"cfg-if",
|
|
3384
|
+
"combine",
|
|
3385
|
+
"crc16",
|
|
3386
|
+
"futures-sink",
|
|
3387
|
+
"futures-util",
|
|
3388
|
+
"itoa",
|
|
3389
|
+
"log",
|
|
3390
|
+
"num-bigint",
|
|
3391
|
+
"percent-encoding",
|
|
3392
|
+
"pin-project-lite",
|
|
3393
|
+
"rand 0.9.2",
|
|
3394
|
+
"ryu",
|
|
3395
|
+
"sha1_smol",
|
|
3396
|
+
"socket2 0.6.2",
|
|
3397
|
+
"tokio",
|
|
3398
|
+
"tokio-util",
|
|
3399
|
+
"url",
|
|
3400
|
+
]
|
|
3401
|
+
|
|
3402
|
+
[[package]]
|
|
3403
|
+
name = "redox_syscall"
|
|
3404
|
+
version = "0.5.18"
|
|
3405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3406
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
3407
|
+
dependencies = [
|
|
3408
|
+
"bitflags 2.10.0",
|
|
3409
|
+
]
|
|
3410
|
+
|
|
3411
|
+
[[package]]
|
|
3412
|
+
name = "regex"
|
|
3413
|
+
version = "1.12.2"
|
|
3414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3415
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
3416
|
+
dependencies = [
|
|
3417
|
+
"aho-corasick",
|
|
3418
|
+
"memchr",
|
|
3419
|
+
"regex-automata",
|
|
3420
|
+
"regex-syntax",
|
|
3421
|
+
]
|
|
3422
|
+
|
|
3423
|
+
[[package]]
|
|
3424
|
+
name = "regex-automata"
|
|
3425
|
+
version = "0.4.13"
|
|
3426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3427
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
3428
|
+
dependencies = [
|
|
3429
|
+
"aho-corasick",
|
|
3430
|
+
"memchr",
|
|
3431
|
+
"regex-syntax",
|
|
3432
|
+
]
|
|
3433
|
+
|
|
3434
|
+
[[package]]
|
|
3435
|
+
name = "regex-lite"
|
|
3436
|
+
version = "0.1.8"
|
|
3437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3438
|
+
checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
|
|
3439
|
+
|
|
3440
|
+
[[package]]
|
|
3441
|
+
name = "regex-syntax"
|
|
3442
|
+
version = "0.8.8"
|
|
3443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3444
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
3445
|
+
|
|
3446
|
+
[[package]]
|
|
3447
|
+
name = "reqwest"
|
|
3448
|
+
version = "0.12.28"
|
|
3449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3450
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
3451
|
+
dependencies = [
|
|
3452
|
+
"base64 0.22.1",
|
|
3453
|
+
"bytes",
|
|
3454
|
+
"futures-core",
|
|
3455
|
+
"http 1.4.0",
|
|
3456
|
+
"http-body 1.0.1",
|
|
3457
|
+
"http-body-util",
|
|
3458
|
+
"hyper 1.8.1",
|
|
3459
|
+
"hyper-rustls 0.27.7",
|
|
3460
|
+
"hyper-util",
|
|
3461
|
+
"js-sys",
|
|
3462
|
+
"log",
|
|
3463
|
+
"percent-encoding",
|
|
3464
|
+
"pin-project-lite",
|
|
3465
|
+
"quinn",
|
|
3466
|
+
"rustls 0.23.36",
|
|
3467
|
+
"rustls-native-certs",
|
|
3468
|
+
"rustls-pki-types",
|
|
3469
|
+
"serde",
|
|
3470
|
+
"serde_json",
|
|
3471
|
+
"serde_urlencoded",
|
|
3472
|
+
"sync_wrapper 1.0.2",
|
|
3473
|
+
"tokio",
|
|
3474
|
+
"tokio-rustls 0.26.4",
|
|
3475
|
+
"tower 0.5.3",
|
|
3476
|
+
"tower-http",
|
|
3477
|
+
"tower-service",
|
|
3478
|
+
"url",
|
|
3479
|
+
"wasm-bindgen",
|
|
3480
|
+
"wasm-bindgen-futures",
|
|
3481
|
+
"web-sys",
|
|
3482
|
+
]
|
|
3483
|
+
|
|
3484
|
+
[[package]]
|
|
3485
|
+
name = "ring"
|
|
3486
|
+
version = "0.17.14"
|
|
3487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3488
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
3489
|
+
dependencies = [
|
|
3490
|
+
"cc",
|
|
3491
|
+
"cfg-if",
|
|
3492
|
+
"getrandom 0.2.17",
|
|
3493
|
+
"libc",
|
|
3494
|
+
"untrusted",
|
|
3495
|
+
"windows-sys 0.52.0",
|
|
3496
|
+
]
|
|
3497
|
+
|
|
3498
|
+
[[package]]
|
|
3499
|
+
name = "rustc-demangle"
|
|
3500
|
+
version = "0.1.27"
|
|
3501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3502
|
+
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
3503
|
+
|
|
3504
|
+
[[package]]
|
|
3505
|
+
name = "rustc-hash"
|
|
3506
|
+
version = "2.1.1"
|
|
3507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3508
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
3509
|
+
|
|
3510
|
+
[[package]]
|
|
3511
|
+
name = "rustc_version"
|
|
3512
|
+
version = "0.4.1"
|
|
3513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3514
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
3515
|
+
dependencies = [
|
|
3516
|
+
"semver",
|
|
3517
|
+
]
|
|
3518
|
+
|
|
3519
|
+
[[package]]
|
|
3520
|
+
name = "rustix"
|
|
3521
|
+
version = "1.1.3"
|
|
3522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3523
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
3524
|
+
dependencies = [
|
|
3525
|
+
"bitflags 2.10.0",
|
|
3526
|
+
"errno",
|
|
3527
|
+
"libc",
|
|
3528
|
+
"linux-raw-sys",
|
|
3529
|
+
"windows-sys 0.52.0",
|
|
3530
|
+
]
|
|
3531
|
+
|
|
3532
|
+
[[package]]
|
|
3533
|
+
name = "rustls"
|
|
3534
|
+
version = "0.21.12"
|
|
3535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3536
|
+
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
|
|
3537
|
+
dependencies = [
|
|
3538
|
+
"log",
|
|
3539
|
+
"ring",
|
|
3540
|
+
"rustls-webpki 0.101.7",
|
|
3541
|
+
"sct",
|
|
3542
|
+
]
|
|
3543
|
+
|
|
3544
|
+
[[package]]
|
|
3545
|
+
name = "rustls"
|
|
3546
|
+
version = "0.23.36"
|
|
3547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3548
|
+
checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
|
|
3549
|
+
dependencies = [
|
|
3550
|
+
"aws-lc-rs",
|
|
3551
|
+
"once_cell",
|
|
3552
|
+
"ring",
|
|
3553
|
+
"rustls-pki-types",
|
|
3554
|
+
"rustls-webpki 0.103.9",
|
|
3555
|
+
"subtle",
|
|
3556
|
+
"zeroize",
|
|
3557
|
+
]
|
|
3558
|
+
|
|
3559
|
+
[[package]]
|
|
3560
|
+
name = "rustls-native-certs"
|
|
3561
|
+
version = "0.8.3"
|
|
3562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3563
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
3564
|
+
dependencies = [
|
|
3565
|
+
"openssl-probe",
|
|
3566
|
+
"rustls-pki-types",
|
|
3567
|
+
"schannel",
|
|
3568
|
+
"security-framework",
|
|
3569
|
+
]
|
|
3570
|
+
|
|
3571
|
+
[[package]]
|
|
3572
|
+
name = "rustls-pki-types"
|
|
3573
|
+
version = "1.14.0"
|
|
3574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3575
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
3576
|
+
dependencies = [
|
|
3577
|
+
"web-time",
|
|
3578
|
+
"zeroize",
|
|
3579
|
+
]
|
|
3580
|
+
|
|
3581
|
+
[[package]]
|
|
3582
|
+
name = "rustls-webpki"
|
|
3583
|
+
version = "0.101.7"
|
|
3584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3585
|
+
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
|
|
3586
|
+
dependencies = [
|
|
3587
|
+
"ring",
|
|
3588
|
+
"untrusted",
|
|
3589
|
+
]
|
|
3590
|
+
|
|
3591
|
+
[[package]]
|
|
3592
|
+
name = "rustls-webpki"
|
|
3593
|
+
version = "0.103.9"
|
|
3594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3595
|
+
checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
|
|
3596
|
+
dependencies = [
|
|
3597
|
+
"aws-lc-rs",
|
|
3598
|
+
"ring",
|
|
3599
|
+
"rustls-pki-types",
|
|
3600
|
+
"untrusted",
|
|
3601
|
+
]
|
|
3602
|
+
|
|
3603
|
+
[[package]]
|
|
3604
|
+
name = "rustversion"
|
|
3605
|
+
version = "1.0.22"
|
|
3606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3607
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
3608
|
+
|
|
3609
|
+
[[package]]
|
|
3610
|
+
name = "ryu"
|
|
3611
|
+
version = "1.0.22"
|
|
3612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3613
|
+
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
3614
|
+
|
|
3615
|
+
[[package]]
|
|
3616
|
+
name = "same-file"
|
|
3617
|
+
version = "1.0.6"
|
|
3618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3619
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
3620
|
+
dependencies = [
|
|
3621
|
+
"winapi-util",
|
|
3622
|
+
]
|
|
3623
|
+
|
|
3624
|
+
[[package]]
|
|
3625
|
+
name = "schannel"
|
|
3626
|
+
version = "0.1.28"
|
|
3627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3628
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
3629
|
+
dependencies = [
|
|
3630
|
+
"windows-sys 0.61.2",
|
|
3631
|
+
]
|
|
3632
|
+
|
|
3633
|
+
[[package]]
|
|
3634
|
+
name = "scopeguard"
|
|
3635
|
+
version = "1.2.0"
|
|
3636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3637
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3638
|
+
|
|
3639
|
+
[[package]]
|
|
3640
|
+
name = "sct"
|
|
3641
|
+
version = "0.7.1"
|
|
3642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3643
|
+
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
|
3644
|
+
dependencies = [
|
|
3645
|
+
"ring",
|
|
3646
|
+
"untrusted",
|
|
3647
|
+
]
|
|
3648
|
+
|
|
3649
|
+
[[package]]
|
|
3650
|
+
name = "security-framework"
|
|
3651
|
+
version = "3.5.1"
|
|
3652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3653
|
+
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
3654
|
+
dependencies = [
|
|
3655
|
+
"bitflags 2.10.0",
|
|
3656
|
+
"core-foundation",
|
|
3657
|
+
"core-foundation-sys",
|
|
3658
|
+
"libc",
|
|
3659
|
+
"security-framework-sys",
|
|
3660
|
+
]
|
|
3661
|
+
|
|
3662
|
+
[[package]]
|
|
3663
|
+
name = "security-framework-sys"
|
|
3664
|
+
version = "2.15.0"
|
|
3665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3666
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
3667
|
+
dependencies = [
|
|
3668
|
+
"core-foundation-sys",
|
|
3669
|
+
"libc",
|
|
3670
|
+
]
|
|
3671
|
+
|
|
3672
|
+
[[package]]
|
|
3673
|
+
name = "semver"
|
|
3674
|
+
version = "1.0.27"
|
|
3675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3676
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
3677
|
+
|
|
3678
|
+
[[package]]
|
|
3679
|
+
name = "serde"
|
|
3680
|
+
version = "1.0.228"
|
|
3681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3682
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
3683
|
+
dependencies = [
|
|
3684
|
+
"serde_core",
|
|
3685
|
+
"serde_derive",
|
|
3686
|
+
]
|
|
3687
|
+
|
|
3688
|
+
[[package]]
|
|
3689
|
+
name = "serde_core"
|
|
3690
|
+
version = "1.0.228"
|
|
3691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3692
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
3693
|
+
dependencies = [
|
|
3694
|
+
"serde_derive",
|
|
3695
|
+
]
|
|
3696
|
+
|
|
3697
|
+
[[package]]
|
|
3698
|
+
name = "serde_derive"
|
|
3699
|
+
version = "1.0.228"
|
|
3700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3701
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
3702
|
+
dependencies = [
|
|
3703
|
+
"proc-macro2",
|
|
3704
|
+
"quote",
|
|
3705
|
+
"syn",
|
|
3706
|
+
]
|
|
3707
|
+
|
|
3708
|
+
[[package]]
|
|
3709
|
+
name = "serde_json"
|
|
3710
|
+
version = "1.0.149"
|
|
3711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3712
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
3713
|
+
dependencies = [
|
|
3714
|
+
"indexmap 2.13.0",
|
|
3715
|
+
"itoa",
|
|
3716
|
+
"memchr",
|
|
3717
|
+
"serde",
|
|
3718
|
+
"serde_core",
|
|
3719
|
+
"zmij",
|
|
3720
|
+
]
|
|
3721
|
+
|
|
3722
|
+
[[package]]
|
|
3723
|
+
name = "serde_path_to_error"
|
|
3724
|
+
version = "0.1.20"
|
|
3725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3726
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
3727
|
+
dependencies = [
|
|
3728
|
+
"itoa",
|
|
3729
|
+
"serde",
|
|
3730
|
+
"serde_core",
|
|
3731
|
+
]
|
|
3732
|
+
|
|
3733
|
+
[[package]]
|
|
3734
|
+
name = "serde_urlencoded"
|
|
3735
|
+
version = "0.7.1"
|
|
3736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3737
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
3738
|
+
dependencies = [
|
|
3739
|
+
"form_urlencoded",
|
|
3740
|
+
"itoa",
|
|
3741
|
+
"ryu",
|
|
3742
|
+
"serde",
|
|
3743
|
+
]
|
|
3744
|
+
|
|
3745
|
+
[[package]]
|
|
3746
|
+
name = "serde_yaml"
|
|
3747
|
+
version = "0.8.26"
|
|
3748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3749
|
+
checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b"
|
|
3750
|
+
dependencies = [
|
|
3751
|
+
"indexmap 1.9.3",
|
|
3752
|
+
"ryu",
|
|
3753
|
+
"serde",
|
|
3754
|
+
"yaml-rust",
|
|
3755
|
+
]
|
|
3756
|
+
|
|
3757
|
+
[[package]]
|
|
3758
|
+
name = "sfio-promise"
|
|
3759
|
+
version = "0.2.0"
|
|
3760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3761
|
+
checksum = "91547be5cac1551a6401a7cfa571524bbcb4d9d818b2756cbe3012b48cc79aaf"
|
|
3762
|
+
|
|
3763
|
+
[[package]]
|
|
3764
|
+
name = "sfio-tokio-ffi"
|
|
3765
|
+
version = "0.9.0"
|
|
3766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3767
|
+
checksum = "f18d418ee525a2027c0b3e1ab34dc050e1f676834b93389829d40aed2bfefecb"
|
|
3768
|
+
dependencies = [
|
|
3769
|
+
"oo-bindgen",
|
|
3770
|
+
]
|
|
3771
|
+
|
|
3772
|
+
[[package]]
|
|
3773
|
+
name = "sfio-tracing-ffi"
|
|
3774
|
+
version = "0.9.0"
|
|
3775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3776
|
+
checksum = "8ad957e7cc9c0efe86f4a395c0fd063fbb3460bd83fade7bff80188c8eadef35"
|
|
3777
|
+
dependencies = [
|
|
3778
|
+
"oo-bindgen",
|
|
3779
|
+
]
|
|
3780
|
+
|
|
3781
|
+
[[package]]
|
|
3782
|
+
name = "sha1"
|
|
3783
|
+
version = "0.10.6"
|
|
3784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3785
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
3786
|
+
dependencies = [
|
|
3787
|
+
"cfg-if",
|
|
3788
|
+
"cpufeatures",
|
|
3789
|
+
"digest",
|
|
3790
|
+
]
|
|
3791
|
+
|
|
3792
|
+
[[package]]
|
|
3793
|
+
name = "sha1_smol"
|
|
3794
|
+
version = "1.0.1"
|
|
3795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3796
|
+
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
3797
|
+
|
|
3798
|
+
[[package]]
|
|
3799
|
+
name = "sha2"
|
|
3800
|
+
version = "0.10.9"
|
|
3801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3802
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3803
|
+
dependencies = [
|
|
3804
|
+
"cfg-if",
|
|
3805
|
+
"cpufeatures",
|
|
3806
|
+
"digest",
|
|
3807
|
+
]
|
|
3808
|
+
|
|
3809
|
+
[[package]]
|
|
3810
|
+
name = "sharded-slab"
|
|
3811
|
+
version = "0.1.7"
|
|
3812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3813
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3814
|
+
dependencies = [
|
|
3815
|
+
"lazy_static",
|
|
3816
|
+
]
|
|
3817
|
+
|
|
3818
|
+
[[package]]
|
|
3819
|
+
name = "shlex"
|
|
3820
|
+
version = "1.3.0"
|
|
3821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3822
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3823
|
+
|
|
3824
|
+
[[package]]
|
|
3825
|
+
name = "signal-hook-registry"
|
|
3826
|
+
version = "1.4.8"
|
|
3827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3828
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
3829
|
+
dependencies = [
|
|
3830
|
+
"errno",
|
|
3831
|
+
"libc",
|
|
3832
|
+
]
|
|
3833
|
+
|
|
3834
|
+
[[package]]
|
|
3835
|
+
name = "simple_asn1"
|
|
3836
|
+
version = "0.6.3"
|
|
3837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3838
|
+
checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
|
|
3839
|
+
dependencies = [
|
|
3840
|
+
"num-bigint",
|
|
3841
|
+
"num-traits",
|
|
3842
|
+
"thiserror 2.0.18",
|
|
3843
|
+
"time",
|
|
3844
|
+
]
|
|
3845
|
+
|
|
3846
|
+
[[package]]
|
|
3847
|
+
name = "slab"
|
|
3848
|
+
version = "0.4.12"
|
|
3849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3850
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
3851
|
+
|
|
3852
|
+
[[package]]
|
|
3853
|
+
name = "smallvec"
|
|
3854
|
+
version = "1.15.1"
|
|
3855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3856
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3857
|
+
|
|
3858
|
+
[[package]]
|
|
3859
|
+
name = "socket2"
|
|
3860
|
+
version = "0.5.10"
|
|
3861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3862
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
3863
|
+
dependencies = [
|
|
3864
|
+
"libc",
|
|
3865
|
+
"windows-sys 0.52.0",
|
|
3866
|
+
]
|
|
3867
|
+
|
|
3868
|
+
[[package]]
|
|
3869
|
+
name = "socket2"
|
|
3870
|
+
version = "0.6.2"
|
|
3871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3872
|
+
checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
|
|
3873
|
+
dependencies = [
|
|
3874
|
+
"libc",
|
|
3875
|
+
"windows-sys 0.60.2",
|
|
3876
|
+
]
|
|
3877
|
+
|
|
3878
|
+
[[package]]
|
|
3879
|
+
name = "spin"
|
|
3880
|
+
version = "0.9.8"
|
|
3881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3882
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
3883
|
+
|
|
3884
|
+
[[package]]
|
|
3885
|
+
name = "stable_deref_trait"
|
|
3886
|
+
version = "1.2.1"
|
|
3887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3888
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
3889
|
+
|
|
3890
|
+
[[package]]
|
|
3891
|
+
name = "strsim"
|
|
3892
|
+
version = "0.11.1"
|
|
3893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3894
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3895
|
+
|
|
3896
|
+
[[package]]
|
|
3897
|
+
name = "subtle"
|
|
3898
|
+
version = "2.6.1"
|
|
3899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3900
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3901
|
+
|
|
3902
|
+
[[package]]
|
|
3903
|
+
name = "syn"
|
|
3904
|
+
version = "2.0.114"
|
|
3905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3906
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
3907
|
+
dependencies = [
|
|
3908
|
+
"proc-macro2",
|
|
3909
|
+
"quote",
|
|
3910
|
+
"unicode-ident",
|
|
3911
|
+
]
|
|
3912
|
+
|
|
3913
|
+
[[package]]
|
|
3914
|
+
name = "sync_wrapper"
|
|
3915
|
+
version = "0.1.2"
|
|
3916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3917
|
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
3918
|
+
|
|
3919
|
+
[[package]]
|
|
3920
|
+
name = "sync_wrapper"
|
|
3921
|
+
version = "1.0.2"
|
|
3922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3923
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
3924
|
+
dependencies = [
|
|
3925
|
+
"futures-core",
|
|
3926
|
+
]
|
|
3927
|
+
|
|
3928
|
+
[[package]]
|
|
3929
|
+
name = "synstructure"
|
|
3930
|
+
version = "0.13.2"
|
|
3931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3932
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3933
|
+
dependencies = [
|
|
3934
|
+
"proc-macro2",
|
|
3935
|
+
"quote",
|
|
3936
|
+
"syn",
|
|
3937
|
+
]
|
|
3938
|
+
|
|
3939
|
+
[[package]]
|
|
3940
|
+
name = "target-lexicon"
|
|
3941
|
+
version = "0.13.4"
|
|
3942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3943
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
3944
|
+
|
|
3945
|
+
[[package]]
|
|
3946
|
+
name = "tempfile"
|
|
3947
|
+
version = "3.24.0"
|
|
3948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3949
|
+
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
3950
|
+
dependencies = [
|
|
3951
|
+
"fastrand",
|
|
3952
|
+
"getrandom 0.3.4",
|
|
3953
|
+
"once_cell",
|
|
3954
|
+
"rustix",
|
|
3955
|
+
"windows-sys 0.52.0",
|
|
3956
|
+
]
|
|
3957
|
+
|
|
3958
|
+
[[package]]
|
|
3959
|
+
name = "termios"
|
|
3960
|
+
version = "0.3.3"
|
|
3961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3962
|
+
checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
|
|
3963
|
+
dependencies = [
|
|
3964
|
+
"libc",
|
|
3965
|
+
]
|
|
3966
|
+
|
|
3967
|
+
[[package]]
|
|
3968
|
+
name = "test-log"
|
|
3969
|
+
version = "0.2.19"
|
|
3970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3971
|
+
checksum = "37d53ac171c92a39e4769491c4b4dde7022c60042254b5fc044ae409d34a24d4"
|
|
3972
|
+
dependencies = [
|
|
3973
|
+
"env_logger",
|
|
3974
|
+
"test-log-macros",
|
|
3975
|
+
"tracing-subscriber",
|
|
3976
|
+
]
|
|
3977
|
+
|
|
3978
|
+
[[package]]
|
|
3979
|
+
name = "test-log-macros"
|
|
3980
|
+
version = "0.2.19"
|
|
3981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3982
|
+
checksum = "be35209fd0781c5401458ab66e4f98accf63553e8fae7425503e92fdd319783b"
|
|
3983
|
+
dependencies = [
|
|
3984
|
+
"proc-macro2",
|
|
3985
|
+
"quote",
|
|
3986
|
+
"syn",
|
|
3987
|
+
]
|
|
3988
|
+
|
|
3989
|
+
[[package]]
|
|
3990
|
+
name = "thiserror"
|
|
3991
|
+
version = "1.0.69"
|
|
3992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3993
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3994
|
+
dependencies = [
|
|
3995
|
+
"thiserror-impl 1.0.69",
|
|
3996
|
+
]
|
|
3997
|
+
|
|
3998
|
+
[[package]]
|
|
3999
|
+
name = "thiserror"
|
|
4000
|
+
version = "2.0.18"
|
|
4001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4002
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
4003
|
+
dependencies = [
|
|
4004
|
+
"thiserror-impl 2.0.18",
|
|
4005
|
+
]
|
|
4006
|
+
|
|
4007
|
+
[[package]]
|
|
4008
|
+
name = "thiserror-impl"
|
|
4009
|
+
version = "1.0.69"
|
|
4010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4011
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
4012
|
+
dependencies = [
|
|
4013
|
+
"proc-macro2",
|
|
4014
|
+
"quote",
|
|
4015
|
+
"syn",
|
|
4016
|
+
]
|
|
4017
|
+
|
|
4018
|
+
[[package]]
|
|
4019
|
+
name = "thiserror-impl"
|
|
4020
|
+
version = "2.0.18"
|
|
4021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4022
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
4023
|
+
dependencies = [
|
|
4024
|
+
"proc-macro2",
|
|
4025
|
+
"quote",
|
|
4026
|
+
"syn",
|
|
4027
|
+
]
|
|
4028
|
+
|
|
4029
|
+
[[package]]
|
|
4030
|
+
name = "thread_local"
|
|
4031
|
+
version = "1.1.9"
|
|
4032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4033
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
4034
|
+
dependencies = [
|
|
4035
|
+
"cfg-if",
|
|
4036
|
+
]
|
|
4037
|
+
|
|
4038
|
+
[[package]]
|
|
4039
|
+
name = "time"
|
|
4040
|
+
version = "0.3.47"
|
|
4041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4042
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
4043
|
+
dependencies = [
|
|
4044
|
+
"deranged",
|
|
4045
|
+
"itoa",
|
|
4046
|
+
"num-conv",
|
|
4047
|
+
"powerfmt",
|
|
4048
|
+
"serde_core",
|
|
4049
|
+
"time-core",
|
|
4050
|
+
"time-macros",
|
|
4051
|
+
]
|
|
4052
|
+
|
|
4053
|
+
[[package]]
|
|
4054
|
+
name = "time-core"
|
|
4055
|
+
version = "0.1.8"
|
|
4056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4057
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
4058
|
+
|
|
4059
|
+
[[package]]
|
|
4060
|
+
name = "time-macros"
|
|
4061
|
+
version = "0.2.27"
|
|
4062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4063
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
4064
|
+
dependencies = [
|
|
4065
|
+
"num-conv",
|
|
4066
|
+
"time-core",
|
|
4067
|
+
]
|
|
4068
|
+
|
|
4069
|
+
[[package]]
|
|
4070
|
+
name = "tinystr"
|
|
4071
|
+
version = "0.8.2"
|
|
4072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4073
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
4074
|
+
dependencies = [
|
|
4075
|
+
"displaydoc",
|
|
4076
|
+
"zerovec",
|
|
4077
|
+
]
|
|
4078
|
+
|
|
4079
|
+
[[package]]
|
|
4080
|
+
name = "tinyvec"
|
|
4081
|
+
version = "1.10.0"
|
|
4082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4083
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
4084
|
+
dependencies = [
|
|
4085
|
+
"tinyvec_macros",
|
|
4086
|
+
]
|
|
4087
|
+
|
|
4088
|
+
[[package]]
|
|
4089
|
+
name = "tinyvec_macros"
|
|
4090
|
+
version = "0.1.1"
|
|
4091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4092
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
4093
|
+
|
|
4094
|
+
[[package]]
|
|
4095
|
+
name = "tokio"
|
|
4096
|
+
version = "1.49.0"
|
|
4097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4098
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
4099
|
+
dependencies = [
|
|
4100
|
+
"bytes",
|
|
4101
|
+
"libc",
|
|
4102
|
+
"mio",
|
|
4103
|
+
"parking_lot",
|
|
4104
|
+
"pin-project-lite",
|
|
4105
|
+
"signal-hook-registry",
|
|
4106
|
+
"socket2 0.6.2",
|
|
4107
|
+
"tokio-macros",
|
|
4108
|
+
"windows-sys 0.61.2",
|
|
4109
|
+
]
|
|
4110
|
+
|
|
4111
|
+
[[package]]
|
|
4112
|
+
name = "tokio-io-timeout"
|
|
4113
|
+
version = "1.2.1"
|
|
4114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4115
|
+
checksum = "0bd86198d9ee903fedd2f9a2e72014287c0d9167e4ae43b5853007205dda1b76"
|
|
4116
|
+
dependencies = [
|
|
4117
|
+
"pin-project-lite",
|
|
4118
|
+
"tokio",
|
|
4119
|
+
]
|
|
4120
|
+
|
|
4121
|
+
[[package]]
|
|
4122
|
+
name = "tokio-macros"
|
|
4123
|
+
version = "2.6.0"
|
|
4124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4125
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
4126
|
+
dependencies = [
|
|
4127
|
+
"proc-macro2",
|
|
4128
|
+
"quote",
|
|
4129
|
+
"syn",
|
|
4130
|
+
]
|
|
4131
|
+
|
|
4132
|
+
[[package]]
|
|
4133
|
+
name = "tokio-rustls"
|
|
4134
|
+
version = "0.24.1"
|
|
4135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4136
|
+
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
|
4137
|
+
dependencies = [
|
|
4138
|
+
"rustls 0.21.12",
|
|
4139
|
+
"tokio",
|
|
4140
|
+
]
|
|
4141
|
+
|
|
4142
|
+
[[package]]
|
|
4143
|
+
name = "tokio-rustls"
|
|
4144
|
+
version = "0.26.4"
|
|
4145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4146
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
4147
|
+
dependencies = [
|
|
4148
|
+
"rustls 0.23.36",
|
|
4149
|
+
"tokio",
|
|
4150
|
+
]
|
|
4151
|
+
|
|
4152
|
+
[[package]]
|
|
4153
|
+
name = "tokio-stream"
|
|
4154
|
+
version = "0.1.18"
|
|
4155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4156
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
4157
|
+
dependencies = [
|
|
4158
|
+
"futures-core",
|
|
4159
|
+
"pin-project-lite",
|
|
4160
|
+
"tokio",
|
|
4161
|
+
"tokio-util",
|
|
4162
|
+
]
|
|
4163
|
+
|
|
4164
|
+
[[package]]
|
|
4165
|
+
name = "tokio-tungstenite"
|
|
4166
|
+
version = "0.23.1"
|
|
4167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4168
|
+
checksum = "c6989540ced10490aaf14e6bad2e3d33728a2813310a0c71d1574304c49631cd"
|
|
4169
|
+
dependencies = [
|
|
4170
|
+
"futures-util",
|
|
4171
|
+
"log",
|
|
4172
|
+
"tokio",
|
|
4173
|
+
"tungstenite 0.23.0",
|
|
4174
|
+
]
|
|
4175
|
+
|
|
4176
|
+
[[package]]
|
|
4177
|
+
name = "tokio-tungstenite"
|
|
4178
|
+
version = "0.28.0"
|
|
4179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4180
|
+
checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857"
|
|
4181
|
+
dependencies = [
|
|
4182
|
+
"futures-util",
|
|
4183
|
+
"log",
|
|
4184
|
+
"tokio",
|
|
4185
|
+
"tungstenite 0.28.0",
|
|
4186
|
+
]
|
|
4187
|
+
|
|
4188
|
+
[[package]]
|
|
4189
|
+
name = "tokio-util"
|
|
4190
|
+
version = "0.7.18"
|
|
4191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4192
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
4193
|
+
dependencies = [
|
|
4194
|
+
"bytes",
|
|
4195
|
+
"futures-core",
|
|
4196
|
+
"futures-sink",
|
|
4197
|
+
"pin-project-lite",
|
|
4198
|
+
"tokio",
|
|
4199
|
+
]
|
|
4200
|
+
|
|
4201
|
+
[[package]]
|
|
4202
|
+
name = "tonic"
|
|
4203
|
+
version = "0.11.0"
|
|
4204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4205
|
+
checksum = "76c4eb7a4e9ef9d4763600161f12f5070b92a578e1b634db88a6887844c91a13"
|
|
4206
|
+
dependencies = [
|
|
4207
|
+
"async-stream",
|
|
4208
|
+
"async-trait",
|
|
4209
|
+
"axum 0.6.20",
|
|
4210
|
+
"base64 0.21.7",
|
|
4211
|
+
"bytes",
|
|
4212
|
+
"h2 0.3.27",
|
|
4213
|
+
"http 0.2.12",
|
|
4214
|
+
"http-body 0.4.6",
|
|
4215
|
+
"hyper 0.14.32",
|
|
4216
|
+
"hyper-timeout",
|
|
4217
|
+
"percent-encoding",
|
|
4218
|
+
"pin-project",
|
|
4219
|
+
"prost",
|
|
4220
|
+
"tokio",
|
|
4221
|
+
"tokio-stream",
|
|
4222
|
+
"tower 0.4.13",
|
|
4223
|
+
"tower-layer",
|
|
4224
|
+
"tower-service",
|
|
4225
|
+
"tracing",
|
|
4226
|
+
]
|
|
4227
|
+
|
|
4228
|
+
[[package]]
|
|
4229
|
+
name = "tower"
|
|
4230
|
+
version = "0.4.13"
|
|
4231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4232
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
4233
|
+
dependencies = [
|
|
4234
|
+
"futures-core",
|
|
4235
|
+
"futures-util",
|
|
4236
|
+
"indexmap 1.9.3",
|
|
4237
|
+
"pin-project",
|
|
4238
|
+
"pin-project-lite",
|
|
4239
|
+
"rand 0.8.5",
|
|
4240
|
+
"slab",
|
|
4241
|
+
"tokio",
|
|
4242
|
+
"tokio-util",
|
|
4243
|
+
"tower-layer",
|
|
4244
|
+
"tower-service",
|
|
4245
|
+
"tracing",
|
|
4246
|
+
]
|
|
4247
|
+
|
|
4248
|
+
[[package]]
|
|
4249
|
+
name = "tower"
|
|
4250
|
+
version = "0.5.3"
|
|
4251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4252
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
4253
|
+
dependencies = [
|
|
4254
|
+
"futures-core",
|
|
4255
|
+
"futures-util",
|
|
4256
|
+
"pin-project-lite",
|
|
4257
|
+
"sync_wrapper 1.0.2",
|
|
4258
|
+
"tokio",
|
|
4259
|
+
"tower-layer",
|
|
4260
|
+
"tower-service",
|
|
4261
|
+
"tracing",
|
|
4262
|
+
]
|
|
4263
|
+
|
|
4264
|
+
[[package]]
|
|
4265
|
+
name = "tower-http"
|
|
4266
|
+
version = "0.6.8"
|
|
4267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4268
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
4269
|
+
dependencies = [
|
|
4270
|
+
"bitflags 2.10.0",
|
|
4271
|
+
"bytes",
|
|
4272
|
+
"futures-util",
|
|
4273
|
+
"http 1.4.0",
|
|
4274
|
+
"http-body 1.0.1",
|
|
4275
|
+
"iri-string",
|
|
4276
|
+
"pin-project-lite",
|
|
4277
|
+
"tower 0.5.3",
|
|
4278
|
+
"tower-layer",
|
|
4279
|
+
"tower-service",
|
|
4280
|
+
"tracing",
|
|
4281
|
+
]
|
|
4282
|
+
|
|
4283
|
+
[[package]]
|
|
4284
|
+
name = "tower-layer"
|
|
4285
|
+
version = "0.3.3"
|
|
4286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4287
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
4288
|
+
|
|
4289
|
+
[[package]]
|
|
4290
|
+
name = "tower-service"
|
|
4291
|
+
version = "0.3.3"
|
|
4292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4293
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
4294
|
+
|
|
4295
|
+
[[package]]
|
|
4296
|
+
name = "tracing"
|
|
4297
|
+
version = "0.1.44"
|
|
4298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4299
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
4300
|
+
dependencies = [
|
|
4301
|
+
"log",
|
|
4302
|
+
"pin-project-lite",
|
|
4303
|
+
"tracing-attributes",
|
|
4304
|
+
"tracing-core",
|
|
4305
|
+
]
|
|
4306
|
+
|
|
4307
|
+
[[package]]
|
|
4308
|
+
name = "tracing-attributes"
|
|
4309
|
+
version = "0.1.31"
|
|
4310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4311
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
4312
|
+
dependencies = [
|
|
4313
|
+
"proc-macro2",
|
|
4314
|
+
"quote",
|
|
4315
|
+
"syn",
|
|
4316
|
+
]
|
|
4317
|
+
|
|
4318
|
+
[[package]]
|
|
4319
|
+
name = "tracing-core"
|
|
4320
|
+
version = "0.1.36"
|
|
4321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4322
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
4323
|
+
dependencies = [
|
|
4324
|
+
"once_cell",
|
|
4325
|
+
"valuable",
|
|
4326
|
+
]
|
|
4327
|
+
|
|
4328
|
+
[[package]]
|
|
4329
|
+
name = "tracing-log"
|
|
4330
|
+
version = "0.2.0"
|
|
4331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4332
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
4333
|
+
dependencies = [
|
|
4334
|
+
"log",
|
|
4335
|
+
"once_cell",
|
|
4336
|
+
"tracing-core",
|
|
4337
|
+
]
|
|
4338
|
+
|
|
4339
|
+
[[package]]
|
|
4340
|
+
name = "tracing-opentelemetry"
|
|
4341
|
+
version = "0.23.0"
|
|
4342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4343
|
+
checksum = "a9be14ba1bbe4ab79e9229f7f89fab8d120b865859f10527f31c033e599d2284"
|
|
4344
|
+
dependencies = [
|
|
4345
|
+
"js-sys",
|
|
4346
|
+
"once_cell",
|
|
4347
|
+
"opentelemetry",
|
|
4348
|
+
"opentelemetry_sdk",
|
|
4349
|
+
"smallvec",
|
|
4350
|
+
"tracing",
|
|
4351
|
+
"tracing-core",
|
|
4352
|
+
"tracing-log",
|
|
4353
|
+
"tracing-subscriber",
|
|
4354
|
+
"web-time",
|
|
4355
|
+
]
|
|
4356
|
+
|
|
4357
|
+
[[package]]
|
|
4358
|
+
name = "tracing-serde"
|
|
4359
|
+
version = "0.2.0"
|
|
4360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4361
|
+
checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
|
|
4362
|
+
dependencies = [
|
|
4363
|
+
"serde",
|
|
4364
|
+
"tracing-core",
|
|
4365
|
+
]
|
|
4366
|
+
|
|
4367
|
+
[[package]]
|
|
4368
|
+
name = "tracing-subscriber"
|
|
4369
|
+
version = "0.3.22"
|
|
4370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4371
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
4372
|
+
dependencies = [
|
|
4373
|
+
"chrono",
|
|
4374
|
+
"matchers",
|
|
4375
|
+
"nu-ansi-term",
|
|
4376
|
+
"once_cell",
|
|
4377
|
+
"regex-automata",
|
|
4378
|
+
"serde",
|
|
4379
|
+
"serde_json",
|
|
4380
|
+
"sharded-slab",
|
|
4381
|
+
"smallvec",
|
|
4382
|
+
"thread_local",
|
|
4383
|
+
"tracing",
|
|
4384
|
+
"tracing-core",
|
|
4385
|
+
"tracing-log",
|
|
4386
|
+
"tracing-serde",
|
|
4387
|
+
]
|
|
4388
|
+
|
|
4389
|
+
[[package]]
|
|
4390
|
+
name = "try-lock"
|
|
4391
|
+
version = "0.2.5"
|
|
4392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4393
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
4394
|
+
|
|
4395
|
+
[[package]]
|
|
4396
|
+
name = "tungstenite"
|
|
4397
|
+
version = "0.23.0"
|
|
4398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4399
|
+
checksum = "6e2e2ce1e47ed2994fd43b04c8f618008d4cabdd5ee34027cf14f9d918edd9c8"
|
|
4400
|
+
dependencies = [
|
|
4401
|
+
"byteorder",
|
|
4402
|
+
"bytes",
|
|
4403
|
+
"data-encoding",
|
|
4404
|
+
"http 1.4.0",
|
|
4405
|
+
"httparse",
|
|
4406
|
+
"log",
|
|
4407
|
+
"rand 0.8.5",
|
|
4408
|
+
"sha1",
|
|
4409
|
+
"thiserror 1.0.69",
|
|
4410
|
+
"utf-8",
|
|
4411
|
+
]
|
|
4412
|
+
|
|
4413
|
+
[[package]]
|
|
4414
|
+
name = "tungstenite"
|
|
4415
|
+
version = "0.28.0"
|
|
4416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4417
|
+
checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
|
|
4418
|
+
dependencies = [
|
|
4419
|
+
"bytes",
|
|
4420
|
+
"data-encoding",
|
|
4421
|
+
"http 1.4.0",
|
|
4422
|
+
"httparse",
|
|
4423
|
+
"log",
|
|
4424
|
+
"rand 0.9.2",
|
|
4425
|
+
"sha1",
|
|
4426
|
+
"thiserror 2.0.18",
|
|
4427
|
+
"utf-8",
|
|
4428
|
+
]
|
|
4429
|
+
|
|
4430
|
+
[[package]]
|
|
4431
|
+
name = "typenum"
|
|
4432
|
+
version = "1.19.0"
|
|
4433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4434
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
4435
|
+
|
|
4436
|
+
[[package]]
|
|
4437
|
+
name = "ucd-trie"
|
|
4438
|
+
version = "0.1.7"
|
|
4439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4440
|
+
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
4441
|
+
|
|
4442
|
+
[[package]]
|
|
4443
|
+
name = "unicode-ident"
|
|
4444
|
+
version = "1.0.22"
|
|
4445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4446
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
4447
|
+
|
|
4448
|
+
[[package]]
|
|
4449
|
+
name = "unicode-segmentation"
|
|
4450
|
+
version = "1.12.0"
|
|
4451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4452
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
4453
|
+
|
|
4454
|
+
[[package]]
|
|
4455
|
+
name = "unindent"
|
|
4456
|
+
version = "0.2.4"
|
|
4457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4458
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
4459
|
+
|
|
4460
|
+
[[package]]
|
|
4461
|
+
name = "untrusted"
|
|
4462
|
+
version = "0.9.0"
|
|
4463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4464
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
4465
|
+
|
|
4466
|
+
[[package]]
|
|
4467
|
+
name = "url"
|
|
4468
|
+
version = "2.5.8"
|
|
4469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4470
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
4471
|
+
dependencies = [
|
|
4472
|
+
"form_urlencoded",
|
|
4473
|
+
"idna",
|
|
4474
|
+
"percent-encoding",
|
|
4475
|
+
"serde",
|
|
4476
|
+
]
|
|
4477
|
+
|
|
4478
|
+
[[package]]
|
|
4479
|
+
name = "urlencoding"
|
|
4480
|
+
version = "2.1.3"
|
|
4481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4482
|
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
4483
|
+
|
|
4484
|
+
[[package]]
|
|
4485
|
+
name = "utf-8"
|
|
4486
|
+
version = "0.7.6"
|
|
4487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4488
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
4489
|
+
|
|
4490
|
+
[[package]]
|
|
4491
|
+
name = "utf8_iter"
|
|
4492
|
+
version = "1.0.4"
|
|
4493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4494
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
4495
|
+
|
|
4496
|
+
[[package]]
|
|
4497
|
+
name = "utf8parse"
|
|
4498
|
+
version = "0.2.2"
|
|
4499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4500
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
4501
|
+
|
|
4502
|
+
[[package]]
|
|
4503
|
+
name = "uuid"
|
|
4504
|
+
version = "1.20.0"
|
|
4505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4506
|
+
checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
|
|
4507
|
+
dependencies = [
|
|
4508
|
+
"getrandom 0.3.4",
|
|
4509
|
+
"js-sys",
|
|
4510
|
+
"rand 0.9.2",
|
|
4511
|
+
"wasm-bindgen",
|
|
4512
|
+
]
|
|
4513
|
+
|
|
4514
|
+
[[package]]
|
|
4515
|
+
name = "valuable"
|
|
4516
|
+
version = "0.1.1"
|
|
4517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4518
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
4519
|
+
|
|
4520
|
+
[[package]]
|
|
4521
|
+
name = "version_check"
|
|
4522
|
+
version = "0.9.5"
|
|
4523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4524
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
4525
|
+
|
|
4526
|
+
[[package]]
|
|
4527
|
+
name = "vsimd"
|
|
4528
|
+
version = "0.8.0"
|
|
4529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4530
|
+
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
|
4531
|
+
|
|
4532
|
+
[[package]]
|
|
4533
|
+
name = "walkdir"
|
|
4534
|
+
version = "2.5.0"
|
|
4535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4536
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
4537
|
+
dependencies = [
|
|
4538
|
+
"same-file",
|
|
4539
|
+
"winapi-util",
|
|
4540
|
+
]
|
|
4541
|
+
|
|
4542
|
+
[[package]]
|
|
4543
|
+
name = "want"
|
|
4544
|
+
version = "0.3.1"
|
|
4545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4546
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
4547
|
+
dependencies = [
|
|
4548
|
+
"try-lock",
|
|
4549
|
+
]
|
|
4550
|
+
|
|
4551
|
+
[[package]]
|
|
4552
|
+
name = "wasi"
|
|
4553
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
4554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4555
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
4556
|
+
|
|
4557
|
+
[[package]]
|
|
4558
|
+
name = "wasip2"
|
|
4559
|
+
version = "1.0.2+wasi-0.2.9"
|
|
4560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4561
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
4562
|
+
dependencies = [
|
|
4563
|
+
"wit-bindgen",
|
|
4564
|
+
]
|
|
4565
|
+
|
|
4566
|
+
[[package]]
|
|
4567
|
+
name = "wasm-bindgen"
|
|
4568
|
+
version = "0.2.108"
|
|
4569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4570
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
4571
|
+
dependencies = [
|
|
4572
|
+
"cfg-if",
|
|
4573
|
+
"once_cell",
|
|
4574
|
+
"rustversion",
|
|
4575
|
+
"wasm-bindgen-macro",
|
|
4576
|
+
"wasm-bindgen-shared",
|
|
4577
|
+
]
|
|
4578
|
+
|
|
4579
|
+
[[package]]
|
|
4580
|
+
name = "wasm-bindgen-futures"
|
|
4581
|
+
version = "0.4.58"
|
|
4582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4583
|
+
checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
|
|
4584
|
+
dependencies = [
|
|
4585
|
+
"cfg-if",
|
|
4586
|
+
"futures-util",
|
|
4587
|
+
"js-sys",
|
|
4588
|
+
"once_cell",
|
|
4589
|
+
"wasm-bindgen",
|
|
4590
|
+
"web-sys",
|
|
4591
|
+
]
|
|
4592
|
+
|
|
4593
|
+
[[package]]
|
|
4594
|
+
name = "wasm-bindgen-macro"
|
|
4595
|
+
version = "0.2.108"
|
|
4596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4597
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
4598
|
+
dependencies = [
|
|
4599
|
+
"quote",
|
|
4600
|
+
"wasm-bindgen-macro-support",
|
|
4601
|
+
]
|
|
4602
|
+
|
|
4603
|
+
[[package]]
|
|
4604
|
+
name = "wasm-bindgen-macro-support"
|
|
4605
|
+
version = "0.2.108"
|
|
4606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4607
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
4608
|
+
dependencies = [
|
|
4609
|
+
"bumpalo",
|
|
4610
|
+
"proc-macro2",
|
|
4611
|
+
"quote",
|
|
4612
|
+
"syn",
|
|
4613
|
+
"wasm-bindgen-shared",
|
|
4614
|
+
]
|
|
4615
|
+
|
|
4616
|
+
[[package]]
|
|
4617
|
+
name = "wasm-bindgen-shared"
|
|
4618
|
+
version = "0.2.108"
|
|
4619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4620
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
4621
|
+
dependencies = [
|
|
4622
|
+
"unicode-ident",
|
|
4623
|
+
]
|
|
4624
|
+
|
|
4625
|
+
[[package]]
|
|
4626
|
+
name = "web-sys"
|
|
4627
|
+
version = "0.3.85"
|
|
4628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4629
|
+
checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
|
|
4630
|
+
dependencies = [
|
|
4631
|
+
"js-sys",
|
|
4632
|
+
"wasm-bindgen",
|
|
4633
|
+
]
|
|
4634
|
+
|
|
4635
|
+
[[package]]
|
|
4636
|
+
name = "web-time"
|
|
4637
|
+
version = "1.1.0"
|
|
4638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4639
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
4640
|
+
dependencies = [
|
|
4641
|
+
"js-sys",
|
|
4642
|
+
"wasm-bindgen",
|
|
4643
|
+
]
|
|
4644
|
+
|
|
4645
|
+
[[package]]
|
|
4646
|
+
name = "winapi"
|
|
4647
|
+
version = "0.3.9"
|
|
4648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4649
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
4650
|
+
dependencies = [
|
|
4651
|
+
"winapi-i686-pc-windows-gnu",
|
|
4652
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
4653
|
+
]
|
|
4654
|
+
|
|
4655
|
+
[[package]]
|
|
4656
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
4657
|
+
version = "0.4.0"
|
|
4658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4659
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
4660
|
+
|
|
4661
|
+
[[package]]
|
|
4662
|
+
name = "winapi-util"
|
|
4663
|
+
version = "0.1.11"
|
|
4664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4665
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4666
|
+
dependencies = [
|
|
4667
|
+
"windows-sys 0.52.0",
|
|
4668
|
+
]
|
|
4669
|
+
|
|
4670
|
+
[[package]]
|
|
4671
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
4672
|
+
version = "0.4.0"
|
|
4673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4674
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4675
|
+
|
|
4676
|
+
[[package]]
|
|
4677
|
+
name = "windows-core"
|
|
4678
|
+
version = "0.62.2"
|
|
4679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4680
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4681
|
+
dependencies = [
|
|
4682
|
+
"windows-implement",
|
|
4683
|
+
"windows-interface",
|
|
4684
|
+
"windows-link",
|
|
4685
|
+
"windows-result",
|
|
4686
|
+
"windows-strings",
|
|
4687
|
+
]
|
|
4688
|
+
|
|
4689
|
+
[[package]]
|
|
4690
|
+
name = "windows-implement"
|
|
4691
|
+
version = "0.60.2"
|
|
4692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4693
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4694
|
+
dependencies = [
|
|
4695
|
+
"proc-macro2",
|
|
4696
|
+
"quote",
|
|
4697
|
+
"syn",
|
|
4698
|
+
]
|
|
4699
|
+
|
|
4700
|
+
[[package]]
|
|
4701
|
+
name = "windows-interface"
|
|
4702
|
+
version = "0.59.3"
|
|
4703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4704
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4705
|
+
dependencies = [
|
|
4706
|
+
"proc-macro2",
|
|
4707
|
+
"quote",
|
|
4708
|
+
"syn",
|
|
4709
|
+
]
|
|
4710
|
+
|
|
4711
|
+
[[package]]
|
|
4712
|
+
name = "windows-link"
|
|
4713
|
+
version = "0.2.1"
|
|
4714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4715
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4716
|
+
|
|
4717
|
+
[[package]]
|
|
4718
|
+
name = "windows-result"
|
|
4719
|
+
version = "0.4.1"
|
|
4720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4721
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4722
|
+
dependencies = [
|
|
4723
|
+
"windows-link",
|
|
4724
|
+
]
|
|
4725
|
+
|
|
4726
|
+
[[package]]
|
|
4727
|
+
name = "windows-strings"
|
|
4728
|
+
version = "0.5.1"
|
|
4729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4730
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4731
|
+
dependencies = [
|
|
4732
|
+
"windows-link",
|
|
4733
|
+
]
|
|
4734
|
+
|
|
4735
|
+
[[package]]
|
|
4736
|
+
name = "windows-sys"
|
|
4737
|
+
version = "0.52.0"
|
|
4738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4739
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4740
|
+
dependencies = [
|
|
4741
|
+
"windows-targets 0.52.6",
|
|
4742
|
+
]
|
|
4743
|
+
|
|
4744
|
+
[[package]]
|
|
4745
|
+
name = "windows-sys"
|
|
4746
|
+
version = "0.60.2"
|
|
4747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4748
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
4749
|
+
dependencies = [
|
|
4750
|
+
"windows-targets 0.53.5",
|
|
4751
|
+
]
|
|
4752
|
+
|
|
4753
|
+
[[package]]
|
|
4754
|
+
name = "windows-sys"
|
|
4755
|
+
version = "0.61.2"
|
|
4756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4757
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4758
|
+
dependencies = [
|
|
4759
|
+
"windows-link",
|
|
4760
|
+
]
|
|
4761
|
+
|
|
4762
|
+
[[package]]
|
|
4763
|
+
name = "windows-targets"
|
|
4764
|
+
version = "0.52.6"
|
|
4765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4766
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4767
|
+
dependencies = [
|
|
4768
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
4769
|
+
"windows_aarch64_msvc 0.52.6",
|
|
4770
|
+
"windows_i686_gnu 0.52.6",
|
|
4771
|
+
"windows_i686_gnullvm 0.52.6",
|
|
4772
|
+
"windows_i686_msvc 0.52.6",
|
|
4773
|
+
"windows_x86_64_gnu 0.52.6",
|
|
4774
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
4775
|
+
"windows_x86_64_msvc 0.52.6",
|
|
4776
|
+
]
|
|
4777
|
+
|
|
4778
|
+
[[package]]
|
|
4779
|
+
name = "windows-targets"
|
|
4780
|
+
version = "0.53.5"
|
|
4781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4782
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
4783
|
+
dependencies = [
|
|
4784
|
+
"windows-link",
|
|
4785
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
4786
|
+
"windows_aarch64_msvc 0.53.1",
|
|
4787
|
+
"windows_i686_gnu 0.53.1",
|
|
4788
|
+
"windows_i686_gnullvm 0.53.1",
|
|
4789
|
+
"windows_i686_msvc 0.53.1",
|
|
4790
|
+
"windows_x86_64_gnu 0.53.1",
|
|
4791
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
4792
|
+
"windows_x86_64_msvc 0.53.1",
|
|
4793
|
+
]
|
|
4794
|
+
|
|
4795
|
+
[[package]]
|
|
4796
|
+
name = "windows_aarch64_gnullvm"
|
|
4797
|
+
version = "0.52.6"
|
|
4798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4799
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4800
|
+
|
|
4801
|
+
[[package]]
|
|
4802
|
+
name = "windows_aarch64_gnullvm"
|
|
4803
|
+
version = "0.53.1"
|
|
4804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4805
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4806
|
+
|
|
4807
|
+
[[package]]
|
|
4808
|
+
name = "windows_aarch64_msvc"
|
|
4809
|
+
version = "0.52.6"
|
|
4810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4811
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4812
|
+
|
|
4813
|
+
[[package]]
|
|
4814
|
+
name = "windows_aarch64_msvc"
|
|
4815
|
+
version = "0.53.1"
|
|
4816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4817
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
4818
|
+
|
|
4819
|
+
[[package]]
|
|
4820
|
+
name = "windows_i686_gnu"
|
|
4821
|
+
version = "0.52.6"
|
|
4822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4823
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4824
|
+
|
|
4825
|
+
[[package]]
|
|
4826
|
+
name = "windows_i686_gnu"
|
|
4827
|
+
version = "0.53.1"
|
|
4828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4829
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
4830
|
+
|
|
4831
|
+
[[package]]
|
|
4832
|
+
name = "windows_i686_gnullvm"
|
|
4833
|
+
version = "0.52.6"
|
|
4834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4835
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4836
|
+
|
|
4837
|
+
[[package]]
|
|
4838
|
+
name = "windows_i686_gnullvm"
|
|
4839
|
+
version = "0.53.1"
|
|
4840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4841
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
4842
|
+
|
|
4843
|
+
[[package]]
|
|
4844
|
+
name = "windows_i686_msvc"
|
|
4845
|
+
version = "0.52.6"
|
|
4846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4847
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4848
|
+
|
|
4849
|
+
[[package]]
|
|
4850
|
+
name = "windows_i686_msvc"
|
|
4851
|
+
version = "0.53.1"
|
|
4852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4853
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
4854
|
+
|
|
4855
|
+
[[package]]
|
|
4856
|
+
name = "windows_x86_64_gnu"
|
|
4857
|
+
version = "0.52.6"
|
|
4858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4859
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4860
|
+
|
|
4861
|
+
[[package]]
|
|
4862
|
+
name = "windows_x86_64_gnu"
|
|
4863
|
+
version = "0.53.1"
|
|
4864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4865
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4866
|
+
|
|
4867
|
+
[[package]]
|
|
4868
|
+
name = "windows_x86_64_gnullvm"
|
|
4869
|
+
version = "0.52.6"
|
|
4870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4871
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4872
|
+
|
|
4873
|
+
[[package]]
|
|
4874
|
+
name = "windows_x86_64_gnullvm"
|
|
4875
|
+
version = "0.53.1"
|
|
4876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4877
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4878
|
+
|
|
4879
|
+
[[package]]
|
|
4880
|
+
name = "windows_x86_64_msvc"
|
|
4881
|
+
version = "0.52.6"
|
|
4882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4883
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4884
|
+
|
|
4885
|
+
[[package]]
|
|
4886
|
+
name = "windows_x86_64_msvc"
|
|
4887
|
+
version = "0.53.1"
|
|
4888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4889
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
4890
|
+
|
|
4891
|
+
[[package]]
|
|
4892
|
+
name = "wit-bindgen"
|
|
4893
|
+
version = "0.51.0"
|
|
4894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4895
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
4896
|
+
|
|
4897
|
+
[[package]]
|
|
4898
|
+
name = "writeable"
|
|
4899
|
+
version = "0.6.2"
|
|
4900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4901
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
4902
|
+
|
|
4903
|
+
[[package]]
|
|
4904
|
+
name = "xmlparser"
|
|
4905
|
+
version = "0.13.6"
|
|
4906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4907
|
+
checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
|
|
4908
|
+
|
|
4909
|
+
[[package]]
|
|
4910
|
+
name = "yaml-rust"
|
|
4911
|
+
version = "0.4.5"
|
|
4912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4913
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
|
4914
|
+
dependencies = [
|
|
4915
|
+
"linked-hash-map",
|
|
4916
|
+
]
|
|
4917
|
+
|
|
4918
|
+
[[package]]
|
|
4919
|
+
name = "yaml-rust2"
|
|
4920
|
+
version = "0.8.1"
|
|
4921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4922
|
+
checksum = "8902160c4e6f2fb145dbe9d6760a75e3c9522d8bf796ed7047c85919ac7115f8"
|
|
4923
|
+
dependencies = [
|
|
4924
|
+
"arraydeque",
|
|
4925
|
+
"encoding_rs",
|
|
4926
|
+
"hashlink",
|
|
4927
|
+
]
|
|
4928
|
+
|
|
4929
|
+
[[package]]
|
|
4930
|
+
name = "yansi"
|
|
4931
|
+
version = "1.0.1"
|
|
4932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4933
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
4934
|
+
|
|
4935
|
+
[[package]]
|
|
4936
|
+
name = "yoke"
|
|
4937
|
+
version = "0.8.1"
|
|
4938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4939
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
4940
|
+
dependencies = [
|
|
4941
|
+
"stable_deref_trait",
|
|
4942
|
+
"yoke-derive",
|
|
4943
|
+
"zerofrom",
|
|
4944
|
+
]
|
|
4945
|
+
|
|
4946
|
+
[[package]]
|
|
4947
|
+
name = "yoke-derive"
|
|
4948
|
+
version = "0.8.1"
|
|
4949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4950
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
4951
|
+
dependencies = [
|
|
4952
|
+
"proc-macro2",
|
|
4953
|
+
"quote",
|
|
4954
|
+
"syn",
|
|
4955
|
+
"synstructure",
|
|
4956
|
+
]
|
|
4957
|
+
|
|
4958
|
+
[[package]]
|
|
4959
|
+
name = "zerocopy"
|
|
4960
|
+
version = "0.8.37"
|
|
4961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4962
|
+
checksum = "7456cf00f0685ad319c5b1693f291a650eaf345e941d082fc4e03df8a03996ac"
|
|
4963
|
+
dependencies = [
|
|
4964
|
+
"zerocopy-derive",
|
|
4965
|
+
]
|
|
4966
|
+
|
|
4967
|
+
[[package]]
|
|
4968
|
+
name = "zerocopy-derive"
|
|
4969
|
+
version = "0.8.37"
|
|
4970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4971
|
+
checksum = "1328722bbf2115db7e19d69ebcc15e795719e2d66b60827c6a69a117365e37a0"
|
|
4972
|
+
dependencies = [
|
|
4973
|
+
"proc-macro2",
|
|
4974
|
+
"quote",
|
|
4975
|
+
"syn",
|
|
4976
|
+
]
|
|
4977
|
+
|
|
4978
|
+
[[package]]
|
|
4979
|
+
name = "zerofrom"
|
|
4980
|
+
version = "0.1.6"
|
|
4981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4982
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4983
|
+
dependencies = [
|
|
4984
|
+
"zerofrom-derive",
|
|
4985
|
+
]
|
|
4986
|
+
|
|
4987
|
+
[[package]]
|
|
4988
|
+
name = "zerofrom-derive"
|
|
4989
|
+
version = "0.1.6"
|
|
4990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4991
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4992
|
+
dependencies = [
|
|
4993
|
+
"proc-macro2",
|
|
4994
|
+
"quote",
|
|
4995
|
+
"syn",
|
|
4996
|
+
"synstructure",
|
|
4997
|
+
]
|
|
4998
|
+
|
|
4999
|
+
[[package]]
|
|
5000
|
+
name = "zeroize"
|
|
5001
|
+
version = "1.8.2"
|
|
5002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5003
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
5004
|
+
|
|
5005
|
+
[[package]]
|
|
5006
|
+
name = "zerotrie"
|
|
5007
|
+
version = "0.2.3"
|
|
5008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5009
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
5010
|
+
dependencies = [
|
|
5011
|
+
"displaydoc",
|
|
5012
|
+
"yoke",
|
|
5013
|
+
"zerofrom",
|
|
5014
|
+
]
|
|
5015
|
+
|
|
5016
|
+
[[package]]
|
|
5017
|
+
name = "zerovec"
|
|
5018
|
+
version = "0.11.5"
|
|
5019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5020
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
5021
|
+
dependencies = [
|
|
5022
|
+
"yoke",
|
|
5023
|
+
"zerofrom",
|
|
5024
|
+
"zerovec-derive",
|
|
5025
|
+
]
|
|
5026
|
+
|
|
5027
|
+
[[package]]
|
|
5028
|
+
name = "zerovec-derive"
|
|
5029
|
+
version = "0.11.2"
|
|
5030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5031
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
5032
|
+
dependencies = [
|
|
5033
|
+
"proc-macro2",
|
|
5034
|
+
"quote",
|
|
5035
|
+
"syn",
|
|
5036
|
+
]
|
|
5037
|
+
|
|
5038
|
+
[[package]]
|
|
5039
|
+
name = "zmij"
|
|
5040
|
+
version = "1.0.19"
|
|
5041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5042
|
+
checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"
|