temporalio 0.1.1 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +2 -0
- data/Cargo.lock +4324 -0
- data/Cargo.toml +25 -0
- data/Gemfile +20 -0
- data/LICENSE +16 -15
- data/README.md +985 -183
- data/Rakefile +101 -0
- data/ext/Cargo.toml +26 -0
- data/lib/temporalio/activity/complete_async_error.rb +11 -0
- data/lib/temporalio/activity/context.rb +86 -78
- data/lib/temporalio/activity/definition.rb +175 -0
- data/lib/temporalio/activity/info.rb +44 -47
- data/lib/temporalio/activity.rb +8 -81
- data/lib/temporalio/api/activity/v1/message.rb +25 -0
- data/lib/temporalio/api/batch/v1/message.rb +31 -0
- data/lib/temporalio/api/cloud/account/v1/message.rb +28 -0
- data/lib/temporalio/api/cloud/cloudservice/v1/request_response.rb +126 -0
- data/lib/temporalio/api/cloud/cloudservice/v1/service.rb +25 -0
- data/lib/temporalio/api/cloud/cloudservice.rb +3 -0
- data/lib/temporalio/api/cloud/identity/v1/message.rb +41 -0
- data/lib/temporalio/api/cloud/namespace/v1/message.rb +42 -0
- data/lib/temporalio/api/cloud/nexus/v1/message.rb +31 -0
- data/lib/temporalio/api/cloud/operation/v1/message.rb +28 -0
- data/lib/temporalio/api/cloud/region/v1/message.rb +24 -0
- data/lib/temporalio/api/cloud/resource/v1/message.rb +23 -0
- data/lib/temporalio/api/cloud/sink/v1/message.rb +24 -0
- data/lib/temporalio/api/cloud/usage/v1/message.rb +31 -0
- data/lib/temporalio/api/command/v1/message.rb +46 -0
- data/lib/temporalio/api/common/v1/grpc_status.rb +23 -0
- data/lib/temporalio/api/common/v1/message.rb +47 -0
- data/lib/temporalio/api/enums/v1/batch_operation.rb +22 -0
- data/lib/temporalio/api/enums/v1/command_type.rb +21 -0
- data/lib/temporalio/api/enums/v1/common.rb +26 -0
- data/lib/temporalio/api/enums/v1/event_type.rb +21 -0
- data/lib/temporalio/api/enums/v1/failed_cause.rb +26 -0
- data/lib/temporalio/api/enums/v1/namespace.rb +23 -0
- data/lib/temporalio/api/enums/v1/query.rb +22 -0
- data/lib/temporalio/api/enums/v1/reset.rb +23 -0
- data/lib/temporalio/api/enums/v1/schedule.rb +21 -0
- data/lib/temporalio/api/enums/v1/task_queue.rb +25 -0
- data/lib/temporalio/api/enums/v1/update.rb +22 -0
- data/lib/temporalio/api/enums/v1/workflow.rb +30 -0
- data/lib/temporalio/api/errordetails/v1/message.rb +42 -0
- data/lib/temporalio/api/export/v1/message.rb +24 -0
- data/lib/temporalio/api/failure/v1/message.rb +35 -0
- data/lib/temporalio/api/filter/v1/message.rb +27 -0
- data/lib/temporalio/api/history/v1/message.rb +90 -0
- data/lib/temporalio/api/namespace/v1/message.rb +31 -0
- data/lib/temporalio/api/nexus/v1/message.rb +40 -0
- data/lib/temporalio/api/operatorservice/v1/request_response.rb +49 -0
- data/lib/temporalio/api/operatorservice/v1/service.rb +23 -0
- data/lib/temporalio/api/operatorservice.rb +3 -0
- data/lib/temporalio/api/payload_visitor.rb +1513 -0
- data/lib/temporalio/api/protocol/v1/message.rb +23 -0
- data/lib/temporalio/api/query/v1/message.rb +27 -0
- data/lib/temporalio/api/replication/v1/message.rb +26 -0
- data/lib/temporalio/api/schedule/v1/message.rb +43 -0
- data/lib/temporalio/api/sdk/v1/enhanced_stack_trace.rb +25 -0
- data/lib/temporalio/api/sdk/v1/task_complete_metadata.rb +21 -0
- data/lib/temporalio/api/sdk/v1/user_metadata.rb +23 -0
- data/lib/temporalio/api/sdk/v1/workflow_metadata.rb +23 -0
- data/lib/temporalio/api/taskqueue/v1/message.rb +45 -0
- data/lib/{gen/temporal/api/testservice/v1/request_response_pb.rb → temporalio/api/testservice/v1/request_response.rb} +6 -24
- data/lib/temporalio/api/testservice/v1/service.rb +23 -0
- data/lib/temporalio/api/update/v1/message.rb +33 -0
- data/lib/temporalio/api/version/v1/message.rb +26 -0
- data/lib/temporalio/api/workflow/v1/message.rb +43 -0
- data/lib/temporalio/api/workflowservice/v1/request_response.rb +204 -0
- data/lib/temporalio/api/workflowservice/v1/service.rb +23 -0
- data/lib/temporalio/api/workflowservice.rb +3 -0
- data/lib/temporalio/api.rb +14 -0
- data/lib/temporalio/cancellation.rb +170 -0
- data/lib/temporalio/client/activity_id_reference.rb +32 -0
- data/lib/temporalio/client/async_activity_handle.rb +85 -0
- data/lib/temporalio/client/connection/cloud_service.rb +726 -0
- data/lib/temporalio/client/connection/operator_service.rb +201 -0
- data/lib/temporalio/client/connection/service.rb +42 -0
- data/lib/temporalio/client/connection/test_service.rb +111 -0
- data/lib/temporalio/client/connection/workflow_service.rb +1041 -0
- data/lib/temporalio/client/connection.rb +316 -0
- data/lib/temporalio/client/interceptor.rb +416 -0
- data/lib/temporalio/client/schedule.rb +967 -0
- data/lib/temporalio/client/schedule_handle.rb +126 -0
- data/lib/temporalio/client/workflow_execution.rb +100 -0
- data/lib/temporalio/client/workflow_execution_count.rb +36 -0
- data/lib/temporalio/client/workflow_execution_status.rb +18 -0
- data/lib/temporalio/client/workflow_handle.rb +326 -180
- data/lib/temporalio/client/workflow_query_reject_condition.rb +14 -0
- data/lib/temporalio/client/workflow_update_handle.rb +65 -0
- data/lib/temporalio/client/workflow_update_wait_stage.rb +17 -0
- data/lib/temporalio/client.rb +447 -94
- data/lib/temporalio/common_enums.rb +41 -0
- data/lib/temporalio/converters/data_converter.rb +99 -0
- data/lib/temporalio/converters/failure_converter.rb +202 -0
- data/lib/temporalio/converters/payload_codec.rb +26 -0
- data/lib/temporalio/converters/payload_converter/binary_null.rb +34 -0
- data/lib/temporalio/converters/payload_converter/binary_plain.rb +35 -0
- data/lib/temporalio/converters/payload_converter/binary_protobuf.rb +42 -0
- data/lib/temporalio/converters/payload_converter/composite.rb +66 -0
- data/lib/temporalio/converters/payload_converter/encoding.rb +35 -0
- data/lib/temporalio/converters/payload_converter/json_plain.rb +44 -0
- data/lib/temporalio/converters/payload_converter/json_protobuf.rb +41 -0
- data/lib/temporalio/converters/payload_converter.rb +71 -0
- data/lib/temporalio/converters/raw_value.rb +20 -0
- data/lib/temporalio/converters.rb +9 -0
- data/lib/temporalio/error/failure.rb +119 -94
- data/lib/temporalio/error.rb +155 -0
- data/lib/temporalio/internal/bridge/api/activity_result/activity_result.rb +34 -0
- data/lib/temporalio/internal/bridge/api/activity_task/activity_task.rb +31 -0
- data/lib/temporalio/internal/bridge/api/child_workflow/child_workflow.rb +33 -0
- data/lib/temporalio/internal/bridge/api/common/common.rb +26 -0
- data/lib/temporalio/internal/bridge/api/core_interface.rb +40 -0
- data/lib/temporalio/internal/bridge/api/external_data/external_data.rb +27 -0
- data/lib/temporalio/internal/bridge/api/nexus/nexus.rb +33 -0
- data/lib/temporalio/internal/bridge/api/workflow_activation/workflow_activation.rb +56 -0
- data/lib/temporalio/internal/bridge/api/workflow_commands/workflow_commands.rb +57 -0
- data/lib/temporalio/internal/bridge/api/workflow_completion/workflow_completion.rb +30 -0
- data/lib/temporalio/internal/bridge/api.rb +3 -0
- data/lib/temporalio/internal/bridge/client.rb +95 -0
- data/lib/temporalio/internal/bridge/runtime.rb +53 -0
- data/lib/temporalio/internal/bridge/testing.rb +66 -0
- data/lib/temporalio/internal/bridge/worker.rb +85 -0
- data/lib/temporalio/internal/bridge.rb +36 -0
- data/lib/temporalio/internal/client/implementation.rb +700 -0
- data/lib/temporalio/internal/metric.rb +122 -0
- data/lib/temporalio/internal/proto_utils.rb +133 -0
- data/lib/temporalio/internal/worker/activity_worker.rb +373 -0
- data/lib/temporalio/internal/worker/multi_runner.rb +213 -0
- data/lib/temporalio/internal/worker/workflow_instance/child_workflow_handle.rb +54 -0
- data/lib/temporalio/internal/worker/workflow_instance/context.rb +329 -0
- data/lib/temporalio/internal/worker/workflow_instance/details.rb +44 -0
- data/lib/temporalio/internal/worker/workflow_instance/external_workflow_handle.rb +32 -0
- data/lib/temporalio/internal/worker/workflow_instance/externally_immutable_hash.rb +22 -0
- data/lib/temporalio/internal/worker/workflow_instance/handler_execution.rb +25 -0
- data/lib/temporalio/internal/worker/workflow_instance/handler_hash.rb +41 -0
- data/lib/temporalio/internal/worker/workflow_instance/illegal_call_tracer.rb +97 -0
- data/lib/temporalio/internal/worker/workflow_instance/inbound_implementation.rb +62 -0
- data/lib/temporalio/internal/worker/workflow_instance/outbound_implementation.rb +415 -0
- data/lib/temporalio/internal/worker/workflow_instance/replay_safe_logger.rb +37 -0
- data/lib/temporalio/internal/worker/workflow_instance/replay_safe_metric.rb +40 -0
- data/lib/temporalio/internal/worker/workflow_instance/scheduler.rb +163 -0
- data/lib/temporalio/internal/worker/workflow_instance.rb +730 -0
- data/lib/temporalio/internal/worker/workflow_worker.rb +196 -0
- data/lib/temporalio/internal.rb +7 -0
- data/lib/temporalio/metric.rb +109 -0
- data/lib/temporalio/retry_policy.rb +55 -73
- data/lib/temporalio/runtime.rb +302 -13
- data/lib/temporalio/scoped_logger.rb +96 -0
- data/lib/temporalio/search_attributes.rb +343 -0
- data/lib/temporalio/testing/activity_environment.rb +132 -0
- data/lib/temporalio/testing/workflow_environment.rb +345 -74
- data/lib/temporalio/testing.rb +4 -169
- data/lib/temporalio/version.rb +3 -1
- data/lib/temporalio/worker/activity_executor/fiber.rb +49 -0
- data/lib/temporalio/worker/activity_executor/thread_pool.rb +46 -0
- data/lib/temporalio/worker/activity_executor.rb +55 -0
- data/lib/temporalio/worker/interceptor.rb +362 -0
- data/lib/temporalio/worker/thread_pool.rb +237 -0
- data/lib/temporalio/worker/tuner.rb +151 -0
- data/lib/temporalio/worker/workflow_executor/thread_pool.rb +230 -0
- data/lib/temporalio/worker/workflow_executor.rb +26 -0
- data/lib/temporalio/worker.rb +554 -161
- data/lib/temporalio/workflow/activity_cancellation_type.rb +20 -0
- data/lib/temporalio/workflow/child_workflow_cancellation_type.rb +21 -0
- data/lib/temporalio/workflow/child_workflow_handle.rb +43 -0
- data/lib/temporalio/workflow/definition.rb +566 -0
- data/lib/temporalio/workflow/external_workflow_handle.rb +41 -0
- data/lib/temporalio/workflow/future.rb +117 -104
- data/lib/temporalio/workflow/handler_unfinished_policy.rb +13 -0
- data/lib/temporalio/workflow/info.rb +63 -57
- data/lib/temporalio/workflow/parent_close_policy.rb +19 -0
- data/lib/temporalio/workflow/update_info.rb +20 -0
- data/lib/temporalio/workflow.rb +523 -0
- data/lib/temporalio/workflow_history.rb +22 -0
- data/lib/temporalio.rb +6 -7
- data/temporalio.gemspec +20 -39
- metadata +171 -710
- data/bridge/Cargo.lock +0 -2997
- data/bridge/Cargo.toml +0 -29
- data/bridge/sdk-core/ARCHITECTURE.md +0 -76
- data/bridge/sdk-core/Cargo.toml +0 -2
- data/bridge/sdk-core/LICENSE.txt +0 -23
- data/bridge/sdk-core/README.md +0 -117
- data/bridge/sdk-core/arch_docs/diagrams/README.md +0 -10
- data/bridge/sdk-core/arch_docs/diagrams/sticky_queues.puml +0 -40
- data/bridge/sdk-core/arch_docs/diagrams/workflow_internals.svg +0 -1
- data/bridge/sdk-core/arch_docs/sticky_queues.md +0 -51
- data/bridge/sdk-core/client/Cargo.toml +0 -40
- data/bridge/sdk-core/client/LICENSE.txt +0 -23
- data/bridge/sdk-core/client/src/lib.rs +0 -1462
- data/bridge/sdk-core/client/src/metrics.rs +0 -174
- data/bridge/sdk-core/client/src/raw.rs +0 -932
- data/bridge/sdk-core/client/src/retry.rs +0 -763
- data/bridge/sdk-core/client/src/workflow_handle/mod.rs +0 -185
- data/bridge/sdk-core/core/Cargo.toml +0 -129
- data/bridge/sdk-core/core/LICENSE.txt +0 -23
- data/bridge/sdk-core/core/benches/workflow_replay.rs +0 -76
- data/bridge/sdk-core/core/src/abstractions.rs +0 -355
- data/bridge/sdk-core/core/src/core_tests/activity_tasks.rs +0 -1049
- data/bridge/sdk-core/core/src/core_tests/child_workflows.rs +0 -221
- data/bridge/sdk-core/core/src/core_tests/determinism.rs +0 -270
- data/bridge/sdk-core/core/src/core_tests/local_activities.rs +0 -1046
- data/bridge/sdk-core/core/src/core_tests/mod.rs +0 -100
- data/bridge/sdk-core/core/src/core_tests/queries.rs +0 -893
- data/bridge/sdk-core/core/src/core_tests/replay_flag.rs +0 -65
- data/bridge/sdk-core/core/src/core_tests/workers.rs +0 -257
- data/bridge/sdk-core/core/src/core_tests/workflow_cancels.rs +0 -124
- data/bridge/sdk-core/core/src/core_tests/workflow_tasks.rs +0 -2433
- data/bridge/sdk-core/core/src/ephemeral_server/mod.rs +0 -609
- data/bridge/sdk-core/core/src/internal_flags.rs +0 -136
- data/bridge/sdk-core/core/src/lib.rs +0 -289
- data/bridge/sdk-core/core/src/pollers/mod.rs +0 -54
- data/bridge/sdk-core/core/src/pollers/poll_buffer.rs +0 -297
- data/bridge/sdk-core/core/src/protosext/mod.rs +0 -428
- data/bridge/sdk-core/core/src/replay/mod.rs +0 -215
- data/bridge/sdk-core/core/src/retry_logic.rs +0 -202
- data/bridge/sdk-core/core/src/telemetry/log_export.rs +0 -190
- data/bridge/sdk-core/core/src/telemetry/metrics.rs +0 -462
- data/bridge/sdk-core/core/src/telemetry/mod.rs +0 -423
- data/bridge/sdk-core/core/src/telemetry/prometheus_server.rs +0 -83
- data/bridge/sdk-core/core/src/test_help/mod.rs +0 -939
- data/bridge/sdk-core/core/src/worker/activities/activity_heartbeat_manager.rs +0 -536
- data/bridge/sdk-core/core/src/worker/activities/activity_task_poller_stream.rs +0 -89
- data/bridge/sdk-core/core/src/worker/activities/local_activities.rs +0 -1278
- data/bridge/sdk-core/core/src/worker/activities.rs +0 -557
- data/bridge/sdk-core/core/src/worker/client/mocks.rs +0 -107
- data/bridge/sdk-core/core/src/worker/client.rs +0 -389
- data/bridge/sdk-core/core/src/worker/mod.rs +0 -677
- data/bridge/sdk-core/core/src/worker/workflow/bridge.rs +0 -35
- data/bridge/sdk-core/core/src/worker/workflow/driven_workflow.rs +0 -99
- data/bridge/sdk-core/core/src/worker/workflow/history_update.rs +0 -1111
- data/bridge/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +0 -964
- data/bridge/sdk-core/core/src/worker/workflow/machines/cancel_external_state_machine.rs +0 -294
- data/bridge/sdk-core/core/src/worker/workflow/machines/cancel_workflow_state_machine.rs +0 -168
- data/bridge/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +0 -918
- data/bridge/sdk-core/core/src/worker/workflow/machines/complete_workflow_state_machine.rs +0 -137
- data/bridge/sdk-core/core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs +0 -158
- data/bridge/sdk-core/core/src/worker/workflow/machines/fail_workflow_state_machine.rs +0 -130
- data/bridge/sdk-core/core/src/worker/workflow/machines/local_activity_state_machine.rs +0 -1525
- data/bridge/sdk-core/core/src/worker/workflow/machines/mod.rs +0 -324
- data/bridge/sdk-core/core/src/worker/workflow/machines/modify_workflow_properties_state_machine.rs +0 -179
- data/bridge/sdk-core/core/src/worker/workflow/machines/patch_state_machine.rs +0 -659
- data/bridge/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +0 -439
- data/bridge/sdk-core/core/src/worker/workflow/machines/timer_state_machine.rs +0 -435
- data/bridge/sdk-core/core/src/worker/workflow/machines/transition_coverage.rs +0 -175
- data/bridge/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +0 -249
- data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_machines/local_acts.rs +0 -85
- data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +0 -1280
- data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_task_state_machine.rs +0 -269
- data/bridge/sdk-core/core/src/worker/workflow/managed_run/managed_wf_test.rs +0 -213
- data/bridge/sdk-core/core/src/worker/workflow/managed_run.rs +0 -1305
- data/bridge/sdk-core/core/src/worker/workflow/mod.rs +0 -1276
- data/bridge/sdk-core/core/src/worker/workflow/run_cache.rs +0 -128
- data/bridge/sdk-core/core/src/worker/workflow/wft_extraction.rs +0 -125
- data/bridge/sdk-core/core/src/worker/workflow/wft_poller.rs +0 -85
- data/bridge/sdk-core/core/src/worker/workflow/workflow_stream/saved_wf_inputs.rs +0 -117
- data/bridge/sdk-core/core/src/worker/workflow/workflow_stream/tonic_status_serde.rs +0 -24
- data/bridge/sdk-core/core/src/worker/workflow/workflow_stream.rs +0 -715
- data/bridge/sdk-core/core-api/Cargo.toml +0 -33
- data/bridge/sdk-core/core-api/LICENSE.txt +0 -23
- data/bridge/sdk-core/core-api/src/errors.rs +0 -62
- data/bridge/sdk-core/core-api/src/lib.rs +0 -113
- data/bridge/sdk-core/core-api/src/telemetry.rs +0 -141
- data/bridge/sdk-core/core-api/src/worker.rs +0 -161
- data/bridge/sdk-core/etc/deps.svg +0 -162
- data/bridge/sdk-core/etc/dynamic-config.yaml +0 -2
- data/bridge/sdk-core/etc/otel-collector-config.yaml +0 -36
- data/bridge/sdk-core/etc/prometheus.yaml +0 -6
- data/bridge/sdk-core/etc/regen-depgraph.sh +0 -5
- data/bridge/sdk-core/fsm/Cargo.toml +0 -18
- data/bridge/sdk-core/fsm/LICENSE.txt +0 -23
- data/bridge/sdk-core/fsm/README.md +0 -3
- data/bridge/sdk-core/fsm/rustfsm_procmacro/Cargo.toml +0 -27
- data/bridge/sdk-core/fsm/rustfsm_procmacro/LICENSE.txt +0 -23
- data/bridge/sdk-core/fsm/rustfsm_procmacro/src/lib.rs +0 -650
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/progress.rs +0 -8
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/dupe_transitions_fail.rs +0 -18
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/dupe_transitions_fail.stderr +0 -12
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/dynamic_dest_pass.rs +0 -41
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/forgot_name_fail.rs +0 -14
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/forgot_name_fail.stderr +0 -11
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/handler_arg_pass.rs +0 -32
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/handler_pass.rs +0 -31
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/medium_complex_pass.rs +0 -46
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.rs +0 -29
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.stderr +0 -12
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/simple_pass.rs +0 -32
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/struct_event_variant_fail.rs +0 -18
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/struct_event_variant_fail.stderr +0 -5
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_more_item_event_variant_fail.rs +0 -11
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_more_item_event_variant_fail.stderr +0 -5
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_zero_item_event_variant_fail.rs +0 -11
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_zero_item_event_variant_fail.stderr +0 -5
- data/bridge/sdk-core/fsm/rustfsm_trait/Cargo.toml +0 -14
- data/bridge/sdk-core/fsm/rustfsm_trait/LICENSE.txt +0 -23
- data/bridge/sdk-core/fsm/rustfsm_trait/src/lib.rs +0 -254
- data/bridge/sdk-core/fsm/src/lib.rs +0 -2
- data/bridge/sdk-core/histories/evict_while_la_running_no_interference-16_history.bin +0 -0
- data/bridge/sdk-core/histories/evict_while_la_running_no_interference-23_history.bin +0 -0
- data/bridge/sdk-core/histories/evict_while_la_running_no_interference-85_history.bin +0 -0
- data/bridge/sdk-core/histories/fail_wf_task.bin +0 -0
- data/bridge/sdk-core/histories/timer_workflow_history.bin +0 -0
- data/bridge/sdk-core/integ-with-otel.sh +0 -7
- data/bridge/sdk-core/protos/api_upstream/README.md +0 -9
- data/bridge/sdk-core/protos/api_upstream/api-linter.yaml +0 -40
- data/bridge/sdk-core/protos/api_upstream/buf.yaml +0 -9
- data/bridge/sdk-core/protos/api_upstream/build/go.mod +0 -7
- data/bridge/sdk-core/protos/api_upstream/build/go.sum +0 -5
- data/bridge/sdk-core/protos/api_upstream/build/tools.go +0 -29
- data/bridge/sdk-core/protos/api_upstream/dependencies/gogoproto/gogo.proto +0 -141
- data/bridge/sdk-core/protos/api_upstream/go.mod +0 -6
- data/bridge/sdk-core/protos/api_upstream/temporal/api/batch/v1/message.proto +0 -89
- data/bridge/sdk-core/protos/api_upstream/temporal/api/command/v1/message.proto +0 -248
- data/bridge/sdk-core/protos/api_upstream/temporal/api/common/v1/message.proto +0 -123
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/batch_operation.proto +0 -47
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/command_type.proto +0 -52
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/common.proto +0 -56
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/event_type.proto +0 -170
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +0 -123
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/namespace.proto +0 -51
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/query.proto +0 -50
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/reset.proto +0 -41
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/schedule.proto +0 -60
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/task_queue.proto +0 -59
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/update.proto +0 -56
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/workflow.proto +0 -122
- data/bridge/sdk-core/protos/api_upstream/temporal/api/errordetails/v1/message.proto +0 -108
- data/bridge/sdk-core/protos/api_upstream/temporal/api/failure/v1/message.proto +0 -114
- data/bridge/sdk-core/protos/api_upstream/temporal/api/filter/v1/message.proto +0 -56
- data/bridge/sdk-core/protos/api_upstream/temporal/api/history/v1/message.proto +0 -787
- data/bridge/sdk-core/protos/api_upstream/temporal/api/namespace/v1/message.proto +0 -99
- data/bridge/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +0 -124
- data/bridge/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +0 -80
- data/bridge/sdk-core/protos/api_upstream/temporal/api/protocol/v1/message.proto +0 -57
- data/bridge/sdk-core/protos/api_upstream/temporal/api/query/v1/message.proto +0 -61
- data/bridge/sdk-core/protos/api_upstream/temporal/api/replication/v1/message.proto +0 -55
- data/bridge/sdk-core/protos/api_upstream/temporal/api/schedule/v1/message.proto +0 -379
- data/bridge/sdk-core/protos/api_upstream/temporal/api/sdk/v1/task_complete_metadata.proto +0 -63
- data/bridge/sdk-core/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +0 -108
- data/bridge/sdk-core/protos/api_upstream/temporal/api/update/v1/message.proto +0 -111
- data/bridge/sdk-core/protos/api_upstream/temporal/api/version/v1/message.proto +0 -59
- data/bridge/sdk-core/protos/api_upstream/temporal/api/workflow/v1/message.proto +0 -146
- data/bridge/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +0 -1199
- data/bridge/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +0 -415
- data/bridge/sdk-core/protos/grpc/health/v1/health.proto +0 -63
- data/bridge/sdk-core/protos/local/temporal/sdk/core/activity_result/activity_result.proto +0 -79
- data/bridge/sdk-core/protos/local/temporal/sdk/core/activity_task/activity_task.proto +0 -80
- data/bridge/sdk-core/protos/local/temporal/sdk/core/child_workflow/child_workflow.proto +0 -78
- data/bridge/sdk-core/protos/local/temporal/sdk/core/common/common.proto +0 -16
- data/bridge/sdk-core/protos/local/temporal/sdk/core/core_interface.proto +0 -31
- data/bridge/sdk-core/protos/local/temporal/sdk/core/external_data/external_data.proto +0 -31
- data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +0 -270
- data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +0 -305
- data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_completion/workflow_completion.proto +0 -35
- data/bridge/sdk-core/protos/testsrv_upstream/api-linter.yaml +0 -38
- data/bridge/sdk-core/protos/testsrv_upstream/buf.yaml +0 -13
- data/bridge/sdk-core/protos/testsrv_upstream/dependencies/gogoproto/gogo.proto +0 -141
- data/bridge/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/request_response.proto +0 -63
- data/bridge/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/service.proto +0 -90
- data/bridge/sdk-core/rustfmt.toml +0 -1
- data/bridge/sdk-core/sdk/Cargo.toml +0 -48
- data/bridge/sdk-core/sdk/LICENSE.txt +0 -23
- data/bridge/sdk-core/sdk/src/activity_context.rs +0 -230
- data/bridge/sdk-core/sdk/src/app_data.rs +0 -37
- data/bridge/sdk-core/sdk/src/interceptors.rs +0 -50
- data/bridge/sdk-core/sdk/src/lib.rs +0 -861
- data/bridge/sdk-core/sdk/src/payload_converter.rs +0 -11
- data/bridge/sdk-core/sdk/src/workflow_context/options.rs +0 -295
- data/bridge/sdk-core/sdk/src/workflow_context.rs +0 -694
- data/bridge/sdk-core/sdk/src/workflow_future.rs +0 -500
- data/bridge/sdk-core/sdk-core-protos/Cargo.toml +0 -33
- data/bridge/sdk-core/sdk-core-protos/LICENSE.txt +0 -23
- data/bridge/sdk-core/sdk-core-protos/build.rs +0 -142
- data/bridge/sdk-core/sdk-core-protos/src/constants.rs +0 -7
- data/bridge/sdk-core/sdk-core-protos/src/history_builder.rs +0 -557
- data/bridge/sdk-core/sdk-core-protos/src/history_info.rs +0 -234
- data/bridge/sdk-core/sdk-core-protos/src/lib.rs +0 -2088
- data/bridge/sdk-core/sdk-core-protos/src/task_token.rs +0 -48
- data/bridge/sdk-core/sdk-core-protos/src/utilities.rs +0 -14
- data/bridge/sdk-core/test-utils/Cargo.toml +0 -38
- data/bridge/sdk-core/test-utils/src/canned_histories.rs +0 -1389
- data/bridge/sdk-core/test-utils/src/histfetch.rs +0 -28
- data/bridge/sdk-core/test-utils/src/lib.rs +0 -709
- data/bridge/sdk-core/test-utils/src/wf_input_saver.rs +0 -50
- data/bridge/sdk-core/test-utils/src/workflows.rs +0 -29
- data/bridge/sdk-core/tests/fuzzy_workflow.rs +0 -130
- data/bridge/sdk-core/tests/heavy_tests.rs +0 -265
- data/bridge/sdk-core/tests/integ_tests/client_tests.rs +0 -36
- data/bridge/sdk-core/tests/integ_tests/ephemeral_server_tests.rs +0 -150
- data/bridge/sdk-core/tests/integ_tests/heartbeat_tests.rs +0 -223
- data/bridge/sdk-core/tests/integ_tests/metrics_tests.rs +0 -239
- data/bridge/sdk-core/tests/integ_tests/polling_tests.rs +0 -90
- data/bridge/sdk-core/tests/integ_tests/queries_tests.rs +0 -314
- data/bridge/sdk-core/tests/integ_tests/visibility_tests.rs +0 -151
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/activities.rs +0 -902
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/appdata_propagation.rs +0 -61
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/cancel_external.rs +0 -60
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/cancel_wf.rs +0 -51
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/child_workflows.rs +0 -51
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/continue_as_new.rs +0 -64
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/determinism.rs +0 -47
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +0 -669
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/modify_wf_properties.rs +0 -54
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/patches.rs +0 -92
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/replay.rs +0 -228
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/resets.rs +0 -94
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/signals.rs +0 -171
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/stickyness.rs +0 -85
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/timers.rs +0 -120
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/upsert_search_attrs.rs +0 -77
- data/bridge/sdk-core/tests/integ_tests/workflow_tests.rs +0 -596
- data/bridge/sdk-core/tests/main.rs +0 -103
- data/bridge/sdk-core/tests/runner.rs +0 -132
- data/bridge/sdk-core/tests/wf_input_replay.rs +0 -32
- data/bridge/src/connection.rs +0 -202
- data/bridge/src/lib.rs +0 -494
- data/bridge/src/runtime.rs +0 -54
- data/bridge/src/test_server.rs +0 -153
- data/bridge/src/worker.rs +0 -197
- data/ext/Rakefile +0 -9
- data/lib/gen/dependencies/gogoproto/gogo_pb.rb +0 -14
- data/lib/gen/temporal/api/batch/v1/message_pb.rb +0 -50
- data/lib/gen/temporal/api/command/v1/message_pb.rb +0 -160
- data/lib/gen/temporal/api/common/v1/message_pb.rb +0 -73
- data/lib/gen/temporal/api/enums/v1/batch_operation_pb.rb +0 -33
- data/lib/gen/temporal/api/enums/v1/command_type_pb.rb +0 -37
- data/lib/gen/temporal/api/enums/v1/common_pb.rb +0 -42
- data/lib/gen/temporal/api/enums/v1/event_type_pb.rb +0 -68
- data/lib/gen/temporal/api/enums/v1/failed_cause_pb.rb +0 -79
- data/lib/gen/temporal/api/enums/v1/namespace_pb.rb +0 -37
- data/lib/gen/temporal/api/enums/v1/query_pb.rb +0 -31
- data/lib/gen/temporal/api/enums/v1/reset_pb.rb +0 -24
- data/lib/gen/temporal/api/enums/v1/schedule_pb.rb +0 -28
- data/lib/gen/temporal/api/enums/v1/task_queue_pb.rb +0 -30
- data/lib/gen/temporal/api/enums/v1/update_pb.rb +0 -25
- data/lib/gen/temporal/api/enums/v1/workflow_pb.rb +0 -89
- data/lib/gen/temporal/api/errordetails/v1/message_pb.rb +0 -84
- data/lib/gen/temporal/api/failure/v1/message_pb.rb +0 -83
- data/lib/gen/temporal/api/filter/v1/message_pb.rb +0 -40
- data/lib/gen/temporal/api/history/v1/message_pb.rb +0 -498
- data/lib/gen/temporal/api/namespace/v1/message_pb.rb +0 -64
- data/lib/gen/temporal/api/operatorservice/v1/request_response_pb.rb +0 -88
- data/lib/gen/temporal/api/operatorservice/v1/service_pb.rb +0 -20
- data/lib/gen/temporal/api/protocol/v1/message_pb.rb +0 -30
- data/lib/gen/temporal/api/query/v1/message_pb.rb +0 -38
- data/lib/gen/temporal/api/replication/v1/message_pb.rb +0 -37
- data/lib/gen/temporal/api/schedule/v1/message_pb.rb +0 -149
- data/lib/gen/temporal/api/sdk/v1/task_complete_metadata_pb.rb +0 -23
- data/lib/gen/temporal/api/taskqueue/v1/message_pb.rb +0 -73
- data/lib/gen/temporal/api/testservice/v1/service_pb.rb +0 -21
- data/lib/gen/temporal/api/update/v1/message_pb.rb +0 -72
- data/lib/gen/temporal/api/version/v1/message_pb.rb +0 -41
- data/lib/gen/temporal/api/workflow/v1/message_pb.rb +0 -111
- data/lib/gen/temporal/api/workflowservice/v1/request_response_pb.rb +0 -798
- data/lib/gen/temporal/api/workflowservice/v1/service_pb.rb +0 -20
- data/lib/gen/temporal/sdk/core/activity_result/activity_result_pb.rb +0 -62
- data/lib/gen/temporal/sdk/core/activity_task/activity_task_pb.rb +0 -61
- data/lib/gen/temporal/sdk/core/child_workflow/child_workflow_pb.rb +0 -61
- data/lib/gen/temporal/sdk/core/common/common_pb.rb +0 -26
- data/lib/gen/temporal/sdk/core/core_interface_pb.rb +0 -40
- data/lib/gen/temporal/sdk/core/external_data/external_data_pb.rb +0 -31
- data/lib/gen/temporal/sdk/core/workflow_activation/workflow_activation_pb.rb +0 -171
- data/lib/gen/temporal/sdk/core/workflow_commands/workflow_commands_pb.rb +0 -200
- data/lib/gen/temporal/sdk/core/workflow_completion/workflow_completion_pb.rb +0 -41
- data/lib/temporalio/bridge/connect_options.rb +0 -15
- data/lib/temporalio/bridge/error.rb +0 -8
- data/lib/temporalio/bridge/retry_config.rb +0 -24
- data/lib/temporalio/bridge/tls_options.rb +0 -19
- data/lib/temporalio/bridge.rb +0 -14
- data/lib/temporalio/client/implementation.rb +0 -340
- data/lib/temporalio/connection/retry_config.rb +0 -44
- data/lib/temporalio/connection/service.rb +0 -20
- data/lib/temporalio/connection/test_service.rb +0 -92
- data/lib/temporalio/connection/tls_options.rb +0 -51
- data/lib/temporalio/connection/workflow_service.rb +0 -731
- data/lib/temporalio/connection.rb +0 -86
- data/lib/temporalio/data_converter.rb +0 -191
- data/lib/temporalio/error/workflow_failure.rb +0 -19
- data/lib/temporalio/errors.rb +0 -40
- data/lib/temporalio/failure_converter/base.rb +0 -26
- data/lib/temporalio/failure_converter/basic.rb +0 -319
- data/lib/temporalio/failure_converter.rb +0 -7
- data/lib/temporalio/interceptor/activity_inbound.rb +0 -22
- data/lib/temporalio/interceptor/activity_outbound.rb +0 -24
- data/lib/temporalio/interceptor/chain.rb +0 -28
- data/lib/temporalio/interceptor/client.rb +0 -127
- data/lib/temporalio/interceptor.rb +0 -22
- data/lib/temporalio/payload_codec/base.rb +0 -32
- data/lib/temporalio/payload_converter/base.rb +0 -24
- data/lib/temporalio/payload_converter/bytes.rb +0 -27
- data/lib/temporalio/payload_converter/composite.rb +0 -49
- data/lib/temporalio/payload_converter/encoding_base.rb +0 -35
- data/lib/temporalio/payload_converter/json.rb +0 -26
- data/lib/temporalio/payload_converter/nil.rb +0 -26
- data/lib/temporalio/payload_converter.rb +0 -14
- data/lib/temporalio/retry_state.rb +0 -35
- data/lib/temporalio/testing/time_skipping_handle.rb +0 -32
- data/lib/temporalio/testing/time_skipping_interceptor.rb +0 -23
- data/lib/temporalio/timeout_type.rb +0 -29
- data/lib/temporalio/worker/activity_runner.rb +0 -114
- data/lib/temporalio/worker/activity_worker.rb +0 -164
- data/lib/temporalio/worker/reactor.rb +0 -46
- data/lib/temporalio/worker/runner.rb +0 -63
- data/lib/temporalio/worker/sync_worker.rb +0 -124
- data/lib/temporalio/worker/thread_pool_executor.rb +0 -51
- data/lib/temporalio/workflow/async.rb +0 -46
- data/lib/temporalio/workflow/execution_info.rb +0 -54
- data/lib/temporalio/workflow/execution_status.rb +0 -36
- data/lib/temporalio/workflow/id_reuse_policy.rb +0 -36
- data/lib/temporalio/workflow/query_reject_condition.rb +0 -33
- data/lib/thermite_patch.rb +0 -33
- data/sig/async.rbs +0 -17
- data/sig/protobuf.rbs +0 -16
- data/sig/protos/dependencies/gogoproto/gogo.rbs +0 -914
- data/sig/protos/google/protobuf/any.rbs +0 -157
- data/sig/protos/google/protobuf/descriptor.rbs +0 -2825
- data/sig/protos/google/protobuf/duration.rbs +0 -114
- data/sig/protos/google/protobuf/empty.rbs +0 -36
- data/sig/protos/google/protobuf/timestamp.rbs +0 -145
- data/sig/protos/google/protobuf/wrappers.rbs +0 -358
- data/sig/protos/temporal/api/batch/v1/message.rbs +0 -300
- data/sig/protos/temporal/api/command/v1/message.rbs +0 -1399
- data/sig/protos/temporal/api/common/v1/message.rbs +0 -528
- data/sig/protos/temporal/api/enums/v1/batch_operation.rbs +0 -79
- data/sig/protos/temporal/api/enums/v1/command_type.rbs +0 -68
- data/sig/protos/temporal/api/enums/v1/common.rbs +0 -118
- data/sig/protos/temporal/api/enums/v1/event_type.rbs +0 -264
- data/sig/protos/temporal/api/enums/v1/failed_cause.rbs +0 -277
- data/sig/protos/temporal/api/enums/v1/namespace.rbs +0 -108
- data/sig/protos/temporal/api/enums/v1/query.rbs +0 -81
- data/sig/protos/temporal/api/enums/v1/reset.rbs +0 -44
- data/sig/protos/temporal/api/enums/v1/schedule.rbs +0 -72
- data/sig/protos/temporal/api/enums/v1/task_queue.rbs +0 -92
- data/sig/protos/temporal/api/enums/v1/update.rbs +0 -64
- data/sig/protos/temporal/api/enums/v1/workflow.rbs +0 -371
- data/sig/protos/temporal/api/errordetails/v1/message.rbs +0 -551
- data/sig/protos/temporal/api/failure/v1/message.rbs +0 -581
- data/sig/protos/temporal/api/filter/v1/message.rbs +0 -171
- data/sig/protos/temporal/api/history/v1/message.rbs +0 -4609
- data/sig/protos/temporal/api/namespace/v1/message.rbs +0 -410
- data/sig/protos/temporal/api/operatorservice/v1/request_response.rbs +0 -643
- data/sig/protos/temporal/api/operatorservice/v1/service.rbs +0 -17
- data/sig/protos/temporal/api/protocol/v1/message.rbs +0 -84
- data/sig/protos/temporal/api/query/v1/message.rbs +0 -182
- data/sig/protos/temporal/api/replication/v1/message.rbs +0 -148
- data/sig/protos/temporal/api/schedule/v1/message.rbs +0 -1488
- data/sig/protos/temporal/api/sdk/v1/task_complete_metadata.rbs +0 -110
- data/sig/protos/temporal/api/taskqueue/v1/message.rbs +0 -486
- data/sig/protos/temporal/api/testservice/v1/request_response.rbs +0 -249
- data/sig/protos/temporal/api/testservice/v1/service.rbs +0 -15
- data/sig/protos/temporal/api/update/v1/message.rbs +0 -489
- data/sig/protos/temporal/api/version/v1/message.rbs +0 -184
- data/sig/protos/temporal/api/workflow/v1/message.rbs +0 -824
- data/sig/protos/temporal/api/workflowservice/v1/request_response.rbs +0 -7250
- data/sig/protos/temporal/api/workflowservice/v1/service.rbs +0 -22
- data/sig/protos/temporal/sdk/core/activity_result/activity_result.rbs +0 -380
- data/sig/protos/temporal/sdk/core/activity_task/activity_task.rbs +0 -386
- data/sig/protos/temporal/sdk/core/child_workflow/child_workflow.rbs +0 -323
- data/sig/protos/temporal/sdk/core/common/common.rbs +0 -62
- data/sig/protos/temporal/sdk/core/core_interface.rbs +0 -101
- data/sig/protos/temporal/sdk/core/external_data/external_data.rbs +0 -119
- data/sig/protos/temporal/sdk/core/workflow_activation/workflow_activation.rbs +0 -1473
- data/sig/protos/temporal/sdk/core/workflow_commands/workflow_commands.rbs +0 -1784
- data/sig/protos/temporal/sdk/core/workflow_completion/workflow_completion.rbs +0 -180
- data/sig/ruby.rbs +0 -12
- data/sig/temporalio/activity/context.rbs +0 -29
- data/sig/temporalio/activity/info.rbs +0 -43
- data/sig/temporalio/activity.rbs +0 -19
- data/sig/temporalio/bridge/connect_options.rbs +0 -19
- data/sig/temporalio/bridge/error.rbs +0 -8
- data/sig/temporalio/bridge/retry_config.rbs +0 -21
- data/sig/temporalio/bridge/tls_options.rbs +0 -17
- data/sig/temporalio/bridge.rbs +0 -71
- data/sig/temporalio/client/implementation.rbs +0 -38
- data/sig/temporalio/client/workflow_handle.rbs +0 -41
- data/sig/temporalio/client.rbs +0 -35
- data/sig/temporalio/connection/retry_config.rbs +0 -37
- data/sig/temporalio/connection/service.rbs +0 -14
- data/sig/temporalio/connection/test_service.rbs +0 -13
- data/sig/temporalio/connection/tls_options.rbs +0 -43
- data/sig/temporalio/connection/workflow_service.rbs +0 -48
- data/sig/temporalio/connection.rbs +0 -30
- data/sig/temporalio/data_converter.rbs +0 -35
- data/sig/temporalio/error/failure.rbs +0 -121
- data/sig/temporalio/error/workflow_failure.rbs +0 -9
- data/sig/temporalio/errors.rbs +0 -36
- data/sig/temporalio/failure_converter/base.rbs +0 -12
- data/sig/temporalio/failure_converter/basic.rbs +0 -86
- data/sig/temporalio/failure_converter.rbs +0 -5
- data/sig/temporalio/interceptor/activity_inbound.rbs +0 -21
- data/sig/temporalio/interceptor/activity_outbound.rbs +0 -10
- data/sig/temporalio/interceptor/chain.rbs +0 -24
- data/sig/temporalio/interceptor/client.rbs +0 -148
- data/sig/temporalio/interceptor.rbs +0 -6
- data/sig/temporalio/payload_codec/base.rbs +0 -12
- data/sig/temporalio/payload_converter/base.rbs +0 -12
- data/sig/temporalio/payload_converter/bytes.rbs +0 -9
- data/sig/temporalio/payload_converter/composite.rbs +0 -19
- data/sig/temporalio/payload_converter/encoding_base.rbs +0 -14
- data/sig/temporalio/payload_converter/json.rbs +0 -9
- data/sig/temporalio/payload_converter/nil.rbs +0 -9
- data/sig/temporalio/payload_converter.rbs +0 -5
- data/sig/temporalio/retry_policy.rbs +0 -25
- data/sig/temporalio/retry_state.rbs +0 -20
- data/sig/temporalio/runtime.rbs +0 -12
- data/sig/temporalio/testing/time_skipping_handle.rbs +0 -15
- data/sig/temporalio/testing/time_skipping_interceptor.rbs +0 -13
- data/sig/temporalio/testing/workflow_environment.rbs +0 -22
- data/sig/temporalio/testing.rbs +0 -35
- data/sig/temporalio/timeout_type.rbs +0 -15
- data/sig/temporalio/version.rbs +0 -3
- data/sig/temporalio/worker/activity_runner.rbs +0 -35
- data/sig/temporalio/worker/activity_worker.rbs +0 -44
- data/sig/temporalio/worker/reactor.rbs +0 -22
- data/sig/temporalio/worker/runner.rbs +0 -21
- data/sig/temporalio/worker/sync_worker.rbs +0 -23
- data/sig/temporalio/worker/thread_pool_executor.rbs +0 -23
- data/sig/temporalio/worker.rbs +0 -46
- data/sig/temporalio/workflow/async.rbs +0 -9
- data/sig/temporalio/workflow/execution_info.rbs +0 -55
- data/sig/temporalio/workflow/execution_status.rbs +0 -21
- data/sig/temporalio/workflow/future.rbs +0 -40
- data/sig/temporalio/workflow/id_reuse_policy.rbs +0 -15
- data/sig/temporalio/workflow/info.rbs +0 -55
- data/sig/temporalio/workflow/query_reject_condition.rbs +0 -14
- data/sig/temporalio.rbs +0 -2
- data/sig/thermite_patch.rbs +0 -15
data/bridge/Cargo.lock
DELETED
@@ -1,2997 +0,0 @@
|
|
1
|
-
# This file is automatically @generated by Cargo.
|
2
|
-
# It is not intended for manual editing.
|
3
|
-
version = 3
|
4
|
-
|
5
|
-
[[package]]
|
6
|
-
name = "adler"
|
7
|
-
version = "1.0.2"
|
8
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
10
|
-
|
11
|
-
[[package]]
|
12
|
-
name = "aes"
|
13
|
-
version = "0.7.5"
|
14
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
15
|
-
checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
|
16
|
-
dependencies = [
|
17
|
-
"cfg-if",
|
18
|
-
"cipher",
|
19
|
-
"cpufeatures",
|
20
|
-
"opaque-debug",
|
21
|
-
]
|
22
|
-
|
23
|
-
[[package]]
|
24
|
-
name = "ahash"
|
25
|
-
version = "0.8.3"
|
26
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
27
|
-
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
|
28
|
-
dependencies = [
|
29
|
-
"cfg-if",
|
30
|
-
"once_cell",
|
31
|
-
"version_check",
|
32
|
-
]
|
33
|
-
|
34
|
-
[[package]]
|
35
|
-
name = "aho-corasick"
|
36
|
-
version = "0.7.19"
|
37
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
|
-
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
|
39
|
-
dependencies = [
|
40
|
-
"memchr",
|
41
|
-
]
|
42
|
-
|
43
|
-
[[package]]
|
44
|
-
name = "anyhow"
|
45
|
-
version = "1.0.66"
|
46
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
47
|
-
checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
|
48
|
-
|
49
|
-
[[package]]
|
50
|
-
name = "arc-swap"
|
51
|
-
version = "1.5.1"
|
52
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
53
|
-
checksum = "983cd8b9d4b02a6dc6ffa557262eb5858a27a0038ffffe21a0f133eaa819a164"
|
54
|
-
|
55
|
-
[[package]]
|
56
|
-
name = "async-stream"
|
57
|
-
version = "0.3.3"
|
58
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
59
|
-
checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
|
60
|
-
dependencies = [
|
61
|
-
"async-stream-impl",
|
62
|
-
"futures-core",
|
63
|
-
]
|
64
|
-
|
65
|
-
[[package]]
|
66
|
-
name = "async-stream-impl"
|
67
|
-
version = "0.3.3"
|
68
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
69
|
-
checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
|
70
|
-
dependencies = [
|
71
|
-
"proc-macro2",
|
72
|
-
"quote",
|
73
|
-
"syn",
|
74
|
-
]
|
75
|
-
|
76
|
-
[[package]]
|
77
|
-
name = "async-trait"
|
78
|
-
version = "0.1.58"
|
79
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
80
|
-
checksum = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c"
|
81
|
-
dependencies = [
|
82
|
-
"proc-macro2",
|
83
|
-
"quote",
|
84
|
-
"syn",
|
85
|
-
]
|
86
|
-
|
87
|
-
[[package]]
|
88
|
-
name = "autocfg"
|
89
|
-
version = "1.1.0"
|
90
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
91
|
-
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
92
|
-
|
93
|
-
[[package]]
|
94
|
-
name = "axum"
|
95
|
-
version = "0.5.17"
|
96
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
97
|
-
checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43"
|
98
|
-
dependencies = [
|
99
|
-
"async-trait",
|
100
|
-
"axum-core",
|
101
|
-
"bitflags",
|
102
|
-
"bytes",
|
103
|
-
"futures-util",
|
104
|
-
"http",
|
105
|
-
"http-body",
|
106
|
-
"hyper",
|
107
|
-
"itoa",
|
108
|
-
"matchit",
|
109
|
-
"memchr",
|
110
|
-
"mime",
|
111
|
-
"percent-encoding",
|
112
|
-
"pin-project-lite",
|
113
|
-
"serde",
|
114
|
-
"sync_wrapper",
|
115
|
-
"tokio",
|
116
|
-
"tower",
|
117
|
-
"tower-http",
|
118
|
-
"tower-layer",
|
119
|
-
"tower-service",
|
120
|
-
]
|
121
|
-
|
122
|
-
[[package]]
|
123
|
-
name = "axum-core"
|
124
|
-
version = "0.2.9"
|
125
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
126
|
-
checksum = "37e5939e02c56fecd5c017c37df4238c0a839fa76b7f97acdd7efb804fd181cc"
|
127
|
-
dependencies = [
|
128
|
-
"async-trait",
|
129
|
-
"bytes",
|
130
|
-
"futures-util",
|
131
|
-
"http",
|
132
|
-
"http-body",
|
133
|
-
"mime",
|
134
|
-
"tower-layer",
|
135
|
-
"tower-service",
|
136
|
-
]
|
137
|
-
|
138
|
-
[[package]]
|
139
|
-
name = "backoff"
|
140
|
-
version = "0.4.0"
|
141
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
142
|
-
checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
|
143
|
-
dependencies = [
|
144
|
-
"getrandom",
|
145
|
-
"instant",
|
146
|
-
"rand",
|
147
|
-
]
|
148
|
-
|
149
|
-
[[package]]
|
150
|
-
name = "base64"
|
151
|
-
version = "0.13.1"
|
152
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
153
|
-
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
154
|
-
|
155
|
-
[[package]]
|
156
|
-
name = "base64"
|
157
|
-
version = "0.21.0"
|
158
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
159
|
-
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
|
160
|
-
|
161
|
-
[[package]]
|
162
|
-
name = "base64ct"
|
163
|
-
version = "1.5.3"
|
164
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
165
|
-
checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf"
|
166
|
-
|
167
|
-
[[package]]
|
168
|
-
name = "bitflags"
|
169
|
-
version = "1.3.2"
|
170
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
171
|
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
172
|
-
|
173
|
-
[[package]]
|
174
|
-
name = "block-buffer"
|
175
|
-
version = "0.10.3"
|
176
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
177
|
-
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
|
178
|
-
dependencies = [
|
179
|
-
"generic-array",
|
180
|
-
]
|
181
|
-
|
182
|
-
[[package]]
|
183
|
-
name = "bumpalo"
|
184
|
-
version = "3.11.1"
|
185
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
186
|
-
checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
|
187
|
-
|
188
|
-
[[package]]
|
189
|
-
name = "byteorder"
|
190
|
-
version = "1.4.3"
|
191
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
192
|
-
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
193
|
-
|
194
|
-
[[package]]
|
195
|
-
name = "bytes"
|
196
|
-
version = "1.2.1"
|
197
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
198
|
-
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
|
199
|
-
|
200
|
-
[[package]]
|
201
|
-
name = "bzip2"
|
202
|
-
version = "0.4.4"
|
203
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
204
|
-
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
|
205
|
-
dependencies = [
|
206
|
-
"bzip2-sys",
|
207
|
-
"libc",
|
208
|
-
]
|
209
|
-
|
210
|
-
[[package]]
|
211
|
-
name = "bzip2-sys"
|
212
|
-
version = "0.1.11+1.0.8"
|
213
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
214
|
-
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
|
215
|
-
dependencies = [
|
216
|
-
"cc",
|
217
|
-
"libc",
|
218
|
-
"pkg-config",
|
219
|
-
]
|
220
|
-
|
221
|
-
[[package]]
|
222
|
-
name = "cc"
|
223
|
-
version = "1.0.76"
|
224
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
225
|
-
checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f"
|
226
|
-
dependencies = [
|
227
|
-
"jobserver",
|
228
|
-
]
|
229
|
-
|
230
|
-
[[package]]
|
231
|
-
name = "cfg-if"
|
232
|
-
version = "1.0.0"
|
233
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
234
|
-
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
235
|
-
|
236
|
-
[[package]]
|
237
|
-
name = "chrono"
|
238
|
-
version = "0.4.23"
|
239
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
240
|
-
checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
|
241
|
-
dependencies = [
|
242
|
-
"num-integer",
|
243
|
-
"num-traits",
|
244
|
-
"serde",
|
245
|
-
]
|
246
|
-
|
247
|
-
[[package]]
|
248
|
-
name = "cipher"
|
249
|
-
version = "0.3.0"
|
250
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
251
|
-
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
|
252
|
-
dependencies = [
|
253
|
-
"generic-array",
|
254
|
-
]
|
255
|
-
|
256
|
-
[[package]]
|
257
|
-
name = "constant_time_eq"
|
258
|
-
version = "0.1.5"
|
259
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
260
|
-
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
261
|
-
|
262
|
-
[[package]]
|
263
|
-
name = "convert_case"
|
264
|
-
version = "0.4.0"
|
265
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
266
|
-
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
267
|
-
|
268
|
-
[[package]]
|
269
|
-
name = "core-foundation"
|
270
|
-
version = "0.9.3"
|
271
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
272
|
-
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
|
273
|
-
dependencies = [
|
274
|
-
"core-foundation-sys",
|
275
|
-
"libc",
|
276
|
-
]
|
277
|
-
|
278
|
-
[[package]]
|
279
|
-
name = "core-foundation-sys"
|
280
|
-
version = "0.8.3"
|
281
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
282
|
-
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
|
283
|
-
|
284
|
-
[[package]]
|
285
|
-
name = "cpufeatures"
|
286
|
-
version = "0.2.5"
|
287
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
288
|
-
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
|
289
|
-
dependencies = [
|
290
|
-
"libc",
|
291
|
-
]
|
292
|
-
|
293
|
-
[[package]]
|
294
|
-
name = "crc32fast"
|
295
|
-
version = "1.3.2"
|
296
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
297
|
-
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
298
|
-
dependencies = [
|
299
|
-
"cfg-if",
|
300
|
-
]
|
301
|
-
|
302
|
-
[[package]]
|
303
|
-
name = "crossbeam"
|
304
|
-
version = "0.8.2"
|
305
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
306
|
-
checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c"
|
307
|
-
dependencies = [
|
308
|
-
"cfg-if",
|
309
|
-
"crossbeam-channel",
|
310
|
-
"crossbeam-deque",
|
311
|
-
"crossbeam-epoch",
|
312
|
-
"crossbeam-queue",
|
313
|
-
"crossbeam-utils",
|
314
|
-
]
|
315
|
-
|
316
|
-
[[package]]
|
317
|
-
name = "crossbeam-channel"
|
318
|
-
version = "0.5.6"
|
319
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
320
|
-
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
|
321
|
-
dependencies = [
|
322
|
-
"cfg-if",
|
323
|
-
"crossbeam-utils",
|
324
|
-
]
|
325
|
-
|
326
|
-
[[package]]
|
327
|
-
name = "crossbeam-deque"
|
328
|
-
version = "0.8.2"
|
329
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
330
|
-
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
|
331
|
-
dependencies = [
|
332
|
-
"cfg-if",
|
333
|
-
"crossbeam-epoch",
|
334
|
-
"crossbeam-utils",
|
335
|
-
]
|
336
|
-
|
337
|
-
[[package]]
|
338
|
-
name = "crossbeam-epoch"
|
339
|
-
version = "0.9.11"
|
340
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
341
|
-
checksum = "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348"
|
342
|
-
dependencies = [
|
343
|
-
"autocfg",
|
344
|
-
"cfg-if",
|
345
|
-
"crossbeam-utils",
|
346
|
-
"memoffset 0.6.5",
|
347
|
-
"scopeguard",
|
348
|
-
]
|
349
|
-
|
350
|
-
[[package]]
|
351
|
-
name = "crossbeam-queue"
|
352
|
-
version = "0.3.6"
|
353
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
354
|
-
checksum = "1cd42583b04998a5363558e5f9291ee5a5ff6b49944332103f251e7479a82aa7"
|
355
|
-
dependencies = [
|
356
|
-
"cfg-if",
|
357
|
-
"crossbeam-utils",
|
358
|
-
]
|
359
|
-
|
360
|
-
[[package]]
|
361
|
-
name = "crossbeam-utils"
|
362
|
-
version = "0.8.12"
|
363
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
364
|
-
checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
|
365
|
-
dependencies = [
|
366
|
-
"cfg-if",
|
367
|
-
]
|
368
|
-
|
369
|
-
[[package]]
|
370
|
-
name = "crypto-common"
|
371
|
-
version = "0.1.6"
|
372
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
373
|
-
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
374
|
-
dependencies = [
|
375
|
-
"generic-array",
|
376
|
-
"typenum",
|
377
|
-
]
|
378
|
-
|
379
|
-
[[package]]
|
380
|
-
name = "ctor"
|
381
|
-
version = "0.1.26"
|
382
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
383
|
-
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
|
384
|
-
dependencies = [
|
385
|
-
"quote",
|
386
|
-
"syn",
|
387
|
-
]
|
388
|
-
|
389
|
-
[[package]]
|
390
|
-
name = "darling"
|
391
|
-
version = "0.14.2"
|
392
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
393
|
-
checksum = "b0dd3cd20dc6b5a876612a6e5accfe7f3dd883db6d07acfbf14c128f61550dfa"
|
394
|
-
dependencies = [
|
395
|
-
"darling_core",
|
396
|
-
"darling_macro",
|
397
|
-
]
|
398
|
-
|
399
|
-
[[package]]
|
400
|
-
name = "darling_core"
|
401
|
-
version = "0.14.2"
|
402
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
403
|
-
checksum = "a784d2ccaf7c98501746bf0be29b2022ba41fd62a2e622af997a03e9f972859f"
|
404
|
-
dependencies = [
|
405
|
-
"fnv",
|
406
|
-
"ident_case",
|
407
|
-
"proc-macro2",
|
408
|
-
"quote",
|
409
|
-
"strsim",
|
410
|
-
"syn",
|
411
|
-
]
|
412
|
-
|
413
|
-
[[package]]
|
414
|
-
name = "darling_macro"
|
415
|
-
version = "0.14.2"
|
416
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
417
|
-
checksum = "7618812407e9402654622dd402b0a89dff9ba93badd6540781526117b92aab7e"
|
418
|
-
dependencies = [
|
419
|
-
"darling_core",
|
420
|
-
"quote",
|
421
|
-
"syn",
|
422
|
-
]
|
423
|
-
|
424
|
-
[[package]]
|
425
|
-
name = "dashmap"
|
426
|
-
version = "5.4.0"
|
427
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
428
|
-
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
|
429
|
-
dependencies = [
|
430
|
-
"cfg-if",
|
431
|
-
"hashbrown 0.12.3",
|
432
|
-
"lock_api",
|
433
|
-
"once_cell",
|
434
|
-
"parking_lot_core",
|
435
|
-
]
|
436
|
-
|
437
|
-
[[package]]
|
438
|
-
name = "derive_builder"
|
439
|
-
version = "0.12.0"
|
440
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
441
|
-
checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8"
|
442
|
-
dependencies = [
|
443
|
-
"derive_builder_macro",
|
444
|
-
]
|
445
|
-
|
446
|
-
[[package]]
|
447
|
-
name = "derive_builder_core"
|
448
|
-
version = "0.12.0"
|
449
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
450
|
-
checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f"
|
451
|
-
dependencies = [
|
452
|
-
"darling",
|
453
|
-
"proc-macro2",
|
454
|
-
"quote",
|
455
|
-
"syn",
|
456
|
-
]
|
457
|
-
|
458
|
-
[[package]]
|
459
|
-
name = "derive_builder_macro"
|
460
|
-
version = "0.12.0"
|
461
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
462
|
-
checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e"
|
463
|
-
dependencies = [
|
464
|
-
"derive_builder_core",
|
465
|
-
"syn",
|
466
|
-
]
|
467
|
-
|
468
|
-
[[package]]
|
469
|
-
name = "derive_more"
|
470
|
-
version = "0.99.17"
|
471
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
472
|
-
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
|
473
|
-
dependencies = [
|
474
|
-
"convert_case",
|
475
|
-
"proc-macro2",
|
476
|
-
"quote",
|
477
|
-
"rustc_version",
|
478
|
-
"syn",
|
479
|
-
]
|
480
|
-
|
481
|
-
[[package]]
|
482
|
-
name = "difflib"
|
483
|
-
version = "0.4.0"
|
484
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
485
|
-
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
486
|
-
|
487
|
-
[[package]]
|
488
|
-
name = "digest"
|
489
|
-
version = "0.10.5"
|
490
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
491
|
-
checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
|
492
|
-
dependencies = [
|
493
|
-
"block-buffer",
|
494
|
-
"crypto-common",
|
495
|
-
"subtle",
|
496
|
-
]
|
497
|
-
|
498
|
-
[[package]]
|
499
|
-
name = "downcast"
|
500
|
-
version = "0.11.0"
|
501
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
502
|
-
checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
|
503
|
-
|
504
|
-
[[package]]
|
505
|
-
name = "either"
|
506
|
-
version = "1.8.0"
|
507
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
508
|
-
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
|
509
|
-
|
510
|
-
[[package]]
|
511
|
-
name = "encoding_rs"
|
512
|
-
version = "0.8.31"
|
513
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
514
|
-
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
|
515
|
-
dependencies = [
|
516
|
-
"cfg-if",
|
517
|
-
]
|
518
|
-
|
519
|
-
[[package]]
|
520
|
-
name = "enum_dispatch"
|
521
|
-
version = "0.3.8"
|
522
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
523
|
-
checksum = "0eb359f1476bf611266ac1f5355bc14aeca37b299d0ebccc038ee7058891c9cb"
|
524
|
-
dependencies = [
|
525
|
-
"once_cell",
|
526
|
-
"proc-macro2",
|
527
|
-
"quote",
|
528
|
-
"syn",
|
529
|
-
]
|
530
|
-
|
531
|
-
[[package]]
|
532
|
-
name = "erased-serde"
|
533
|
-
version = "0.3.24"
|
534
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
535
|
-
checksum = "e4ca605381c017ec7a5fef5e548f1cfaa419ed0f6df6367339300db74c92aa7d"
|
536
|
-
dependencies = [
|
537
|
-
"serde",
|
538
|
-
]
|
539
|
-
|
540
|
-
[[package]]
|
541
|
-
name = "fastrand"
|
542
|
-
version = "1.8.0"
|
543
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
544
|
-
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
|
545
|
-
dependencies = [
|
546
|
-
"instant",
|
547
|
-
]
|
548
|
-
|
549
|
-
[[package]]
|
550
|
-
name = "filetime"
|
551
|
-
version = "0.2.18"
|
552
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
553
|
-
checksum = "4b9663d381d07ae25dc88dbdf27df458faa83a9b25336bcac83d5e452b5fc9d3"
|
554
|
-
dependencies = [
|
555
|
-
"cfg-if",
|
556
|
-
"libc",
|
557
|
-
"redox_syscall",
|
558
|
-
"windows-sys 0.42.0",
|
559
|
-
]
|
560
|
-
|
561
|
-
[[package]]
|
562
|
-
name = "fixedbitset"
|
563
|
-
version = "0.4.2"
|
564
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
565
|
-
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
566
|
-
|
567
|
-
[[package]]
|
568
|
-
name = "flate2"
|
569
|
-
version = "1.0.24"
|
570
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
571
|
-
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
|
572
|
-
dependencies = [
|
573
|
-
"crc32fast",
|
574
|
-
"miniz_oxide",
|
575
|
-
]
|
576
|
-
|
577
|
-
[[package]]
|
578
|
-
name = "float-cmp"
|
579
|
-
version = "0.9.0"
|
580
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
581
|
-
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
582
|
-
dependencies = [
|
583
|
-
"num-traits",
|
584
|
-
]
|
585
|
-
|
586
|
-
[[package]]
|
587
|
-
name = "fnv"
|
588
|
-
version = "1.0.7"
|
589
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
590
|
-
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
591
|
-
|
592
|
-
[[package]]
|
593
|
-
name = "form_urlencoded"
|
594
|
-
version = "1.1.0"
|
595
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
596
|
-
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
|
597
|
-
dependencies = [
|
598
|
-
"percent-encoding",
|
599
|
-
]
|
600
|
-
|
601
|
-
[[package]]
|
602
|
-
name = "fragile"
|
603
|
-
version = "2.0.0"
|
604
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
605
|
-
checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
|
606
|
-
|
607
|
-
[[package]]
|
608
|
-
name = "futures"
|
609
|
-
version = "0.3.25"
|
610
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
611
|
-
checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
|
612
|
-
dependencies = [
|
613
|
-
"futures-channel",
|
614
|
-
"futures-core",
|
615
|
-
"futures-executor",
|
616
|
-
"futures-io",
|
617
|
-
"futures-sink",
|
618
|
-
"futures-task",
|
619
|
-
"futures-util",
|
620
|
-
]
|
621
|
-
|
622
|
-
[[package]]
|
623
|
-
name = "futures-channel"
|
624
|
-
version = "0.3.25"
|
625
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
626
|
-
checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
|
627
|
-
dependencies = [
|
628
|
-
"futures-core",
|
629
|
-
"futures-sink",
|
630
|
-
]
|
631
|
-
|
632
|
-
[[package]]
|
633
|
-
name = "futures-core"
|
634
|
-
version = "0.3.25"
|
635
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
636
|
-
checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
|
637
|
-
|
638
|
-
[[package]]
|
639
|
-
name = "futures-executor"
|
640
|
-
version = "0.3.25"
|
641
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
642
|
-
checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
|
643
|
-
dependencies = [
|
644
|
-
"futures-core",
|
645
|
-
"futures-task",
|
646
|
-
"futures-util",
|
647
|
-
]
|
648
|
-
|
649
|
-
[[package]]
|
650
|
-
name = "futures-io"
|
651
|
-
version = "0.3.25"
|
652
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
653
|
-
checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
|
654
|
-
|
655
|
-
[[package]]
|
656
|
-
name = "futures-macro"
|
657
|
-
version = "0.3.25"
|
658
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
659
|
-
checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
|
660
|
-
dependencies = [
|
661
|
-
"proc-macro2",
|
662
|
-
"quote",
|
663
|
-
"syn",
|
664
|
-
]
|
665
|
-
|
666
|
-
[[package]]
|
667
|
-
name = "futures-retry"
|
668
|
-
version = "0.6.0"
|
669
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
670
|
-
checksum = "fde5a672a61f96552aa5ed9fd9c81c3fbdae4be9b1e205d6eaf17c83705adc0f"
|
671
|
-
dependencies = [
|
672
|
-
"futures",
|
673
|
-
"pin-project-lite",
|
674
|
-
"tokio",
|
675
|
-
]
|
676
|
-
|
677
|
-
[[package]]
|
678
|
-
name = "futures-sink"
|
679
|
-
version = "0.3.25"
|
680
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
681
|
-
checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
|
682
|
-
|
683
|
-
[[package]]
|
684
|
-
name = "futures-task"
|
685
|
-
version = "0.3.25"
|
686
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
687
|
-
checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
|
688
|
-
|
689
|
-
[[package]]
|
690
|
-
name = "futures-timer"
|
691
|
-
version = "3.0.2"
|
692
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
693
|
-
checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
|
694
|
-
|
695
|
-
[[package]]
|
696
|
-
name = "futures-util"
|
697
|
-
version = "0.3.25"
|
698
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
699
|
-
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
|
700
|
-
dependencies = [
|
701
|
-
"futures-channel",
|
702
|
-
"futures-core",
|
703
|
-
"futures-io",
|
704
|
-
"futures-macro",
|
705
|
-
"futures-sink",
|
706
|
-
"futures-task",
|
707
|
-
"memchr",
|
708
|
-
"pin-project-lite",
|
709
|
-
"pin-utils",
|
710
|
-
"slab",
|
711
|
-
]
|
712
|
-
|
713
|
-
[[package]]
|
714
|
-
name = "generic-array"
|
715
|
-
version = "0.14.6"
|
716
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
717
|
-
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
|
718
|
-
dependencies = [
|
719
|
-
"typenum",
|
720
|
-
"version_check",
|
721
|
-
]
|
722
|
-
|
723
|
-
[[package]]
|
724
|
-
name = "getrandom"
|
725
|
-
version = "0.2.8"
|
726
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
727
|
-
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
|
728
|
-
dependencies = [
|
729
|
-
"cfg-if",
|
730
|
-
"libc",
|
731
|
-
"wasi 0.11.0+wasi-snapshot-preview1",
|
732
|
-
]
|
733
|
-
|
734
|
-
[[package]]
|
735
|
-
name = "ghost"
|
736
|
-
version = "0.1.7"
|
737
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
738
|
-
checksum = "41973d4c45f7a35af8753ba3457cc99d406d863941fd7f52663cff54a5ab99b3"
|
739
|
-
dependencies = [
|
740
|
-
"proc-macro2",
|
741
|
-
"quote",
|
742
|
-
"syn",
|
743
|
-
]
|
744
|
-
|
745
|
-
[[package]]
|
746
|
-
name = "governor"
|
747
|
-
version = "0.5.0"
|
748
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
749
|
-
checksum = "de1b4626e87b9eb1d603ed23067ba1e29ec1d0b35325a2b96c3fe1cf20871f56"
|
750
|
-
dependencies = [
|
751
|
-
"cfg-if",
|
752
|
-
"dashmap",
|
753
|
-
"futures",
|
754
|
-
"futures-timer",
|
755
|
-
"no-std-compat",
|
756
|
-
"nonzero_ext",
|
757
|
-
"parking_lot",
|
758
|
-
"quanta",
|
759
|
-
"rand",
|
760
|
-
"smallvec",
|
761
|
-
]
|
762
|
-
|
763
|
-
[[package]]
|
764
|
-
name = "h2"
|
765
|
-
version = "0.3.15"
|
766
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
767
|
-
checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
|
768
|
-
dependencies = [
|
769
|
-
"bytes",
|
770
|
-
"fnv",
|
771
|
-
"futures-core",
|
772
|
-
"futures-sink",
|
773
|
-
"futures-util",
|
774
|
-
"http",
|
775
|
-
"indexmap",
|
776
|
-
"slab",
|
777
|
-
"tokio",
|
778
|
-
"tokio-util",
|
779
|
-
"tracing",
|
780
|
-
]
|
781
|
-
|
782
|
-
[[package]]
|
783
|
-
name = "hashbrown"
|
784
|
-
version = "0.12.3"
|
785
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
786
|
-
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
787
|
-
|
788
|
-
[[package]]
|
789
|
-
name = "hashbrown"
|
790
|
-
version = "0.13.2"
|
791
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
792
|
-
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
793
|
-
dependencies = [
|
794
|
-
"ahash",
|
795
|
-
]
|
796
|
-
|
797
|
-
[[package]]
|
798
|
-
name = "heck"
|
799
|
-
version = "0.4.0"
|
800
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
801
|
-
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
|
802
|
-
|
803
|
-
[[package]]
|
804
|
-
name = "hermit-abi"
|
805
|
-
version = "0.1.19"
|
806
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
807
|
-
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
808
|
-
dependencies = [
|
809
|
-
"libc",
|
810
|
-
]
|
811
|
-
|
812
|
-
[[package]]
|
813
|
-
name = "hmac"
|
814
|
-
version = "0.12.1"
|
815
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
816
|
-
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
817
|
-
dependencies = [
|
818
|
-
"digest",
|
819
|
-
]
|
820
|
-
|
821
|
-
[[package]]
|
822
|
-
name = "http"
|
823
|
-
version = "0.2.8"
|
824
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
825
|
-
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
|
826
|
-
dependencies = [
|
827
|
-
"bytes",
|
828
|
-
"fnv",
|
829
|
-
"itoa",
|
830
|
-
]
|
831
|
-
|
832
|
-
[[package]]
|
833
|
-
name = "http-body"
|
834
|
-
version = "0.4.5"
|
835
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
836
|
-
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
|
837
|
-
dependencies = [
|
838
|
-
"bytes",
|
839
|
-
"http",
|
840
|
-
"pin-project-lite",
|
841
|
-
]
|
842
|
-
|
843
|
-
[[package]]
|
844
|
-
name = "http-range-header"
|
845
|
-
version = "0.3.0"
|
846
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
847
|
-
checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
|
848
|
-
|
849
|
-
[[package]]
|
850
|
-
name = "httparse"
|
851
|
-
version = "1.8.0"
|
852
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
853
|
-
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
854
|
-
|
855
|
-
[[package]]
|
856
|
-
name = "httpdate"
|
857
|
-
version = "1.0.2"
|
858
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
859
|
-
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
860
|
-
|
861
|
-
[[package]]
|
862
|
-
name = "hyper"
|
863
|
-
version = "0.14.23"
|
864
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
865
|
-
checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c"
|
866
|
-
dependencies = [
|
867
|
-
"bytes",
|
868
|
-
"futures-channel",
|
869
|
-
"futures-core",
|
870
|
-
"futures-util",
|
871
|
-
"h2",
|
872
|
-
"http",
|
873
|
-
"http-body",
|
874
|
-
"httparse",
|
875
|
-
"httpdate",
|
876
|
-
"itoa",
|
877
|
-
"pin-project-lite",
|
878
|
-
"socket2",
|
879
|
-
"tokio",
|
880
|
-
"tower-service",
|
881
|
-
"tracing",
|
882
|
-
"want",
|
883
|
-
]
|
884
|
-
|
885
|
-
[[package]]
|
886
|
-
name = "hyper-rustls"
|
887
|
-
version = "0.23.0"
|
888
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
889
|
-
checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac"
|
890
|
-
dependencies = [
|
891
|
-
"http",
|
892
|
-
"hyper",
|
893
|
-
"rustls",
|
894
|
-
"tokio",
|
895
|
-
"tokio-rustls",
|
896
|
-
]
|
897
|
-
|
898
|
-
[[package]]
|
899
|
-
name = "hyper-timeout"
|
900
|
-
version = "0.4.1"
|
901
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
902
|
-
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
|
903
|
-
dependencies = [
|
904
|
-
"hyper",
|
905
|
-
"pin-project-lite",
|
906
|
-
"tokio",
|
907
|
-
"tokio-io-timeout",
|
908
|
-
]
|
909
|
-
|
910
|
-
[[package]]
|
911
|
-
name = "ident_case"
|
912
|
-
version = "1.0.1"
|
913
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
914
|
-
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
915
|
-
|
916
|
-
[[package]]
|
917
|
-
name = "idna"
|
918
|
-
version = "0.3.0"
|
919
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
920
|
-
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
921
|
-
dependencies = [
|
922
|
-
"unicode-bidi",
|
923
|
-
"unicode-normalization",
|
924
|
-
]
|
925
|
-
|
926
|
-
[[package]]
|
927
|
-
name = "indexmap"
|
928
|
-
version = "1.9.1"
|
929
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
930
|
-
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
|
931
|
-
dependencies = [
|
932
|
-
"autocfg",
|
933
|
-
"hashbrown 0.12.3",
|
934
|
-
]
|
935
|
-
|
936
|
-
[[package]]
|
937
|
-
name = "instant"
|
938
|
-
version = "0.1.12"
|
939
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
940
|
-
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
941
|
-
dependencies = [
|
942
|
-
"cfg-if",
|
943
|
-
]
|
944
|
-
|
945
|
-
[[package]]
|
946
|
-
name = "inventory"
|
947
|
-
version = "0.3.3"
|
948
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
949
|
-
checksum = "16fe3b35d64bd1f72917f06425e7573a2f63f74f42c8f56e53ea6826dde3a2b5"
|
950
|
-
dependencies = [
|
951
|
-
"ctor",
|
952
|
-
"ghost",
|
953
|
-
]
|
954
|
-
|
955
|
-
[[package]]
|
956
|
-
name = "ipnet"
|
957
|
-
version = "2.5.1"
|
958
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
959
|
-
checksum = "f88c5561171189e69df9d98bcf18fd5f9558300f7ea7b801eb8a0fd748bd8745"
|
960
|
-
|
961
|
-
[[package]]
|
962
|
-
name = "itertools"
|
963
|
-
version = "0.10.5"
|
964
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
965
|
-
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
966
|
-
dependencies = [
|
967
|
-
"either",
|
968
|
-
]
|
969
|
-
|
970
|
-
[[package]]
|
971
|
-
name = "itoa"
|
972
|
-
version = "1.0.4"
|
973
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
974
|
-
checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
|
975
|
-
|
976
|
-
[[package]]
|
977
|
-
name = "jobserver"
|
978
|
-
version = "0.1.25"
|
979
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
980
|
-
checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
|
981
|
-
dependencies = [
|
982
|
-
"libc",
|
983
|
-
]
|
984
|
-
|
985
|
-
[[package]]
|
986
|
-
name = "js-sys"
|
987
|
-
version = "0.3.60"
|
988
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
989
|
-
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
|
990
|
-
dependencies = [
|
991
|
-
"wasm-bindgen",
|
992
|
-
]
|
993
|
-
|
994
|
-
[[package]]
|
995
|
-
name = "lazy_static"
|
996
|
-
version = "1.4.0"
|
997
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
998
|
-
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
999
|
-
|
1000
|
-
[[package]]
|
1001
|
-
name = "libc"
|
1002
|
-
version = "0.2.137"
|
1003
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1004
|
-
checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
|
1005
|
-
|
1006
|
-
[[package]]
|
1007
|
-
name = "lock_api"
|
1008
|
-
version = "0.4.9"
|
1009
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1010
|
-
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
|
1011
|
-
dependencies = [
|
1012
|
-
"autocfg",
|
1013
|
-
"scopeguard",
|
1014
|
-
]
|
1015
|
-
|
1016
|
-
[[package]]
|
1017
|
-
name = "log"
|
1018
|
-
version = "0.4.17"
|
1019
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1020
|
-
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
1021
|
-
dependencies = [
|
1022
|
-
"cfg-if",
|
1023
|
-
]
|
1024
|
-
|
1025
|
-
[[package]]
|
1026
|
-
name = "lru"
|
1027
|
-
version = "0.9.0"
|
1028
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1029
|
-
checksum = "71e7d46de488603ffdd5f30afbc64fbba2378214a2c3a2fb83abf3d33126df17"
|
1030
|
-
dependencies = [
|
1031
|
-
"hashbrown 0.13.2",
|
1032
|
-
]
|
1033
|
-
|
1034
|
-
[[package]]
|
1035
|
-
name = "mach"
|
1036
|
-
version = "0.3.2"
|
1037
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1038
|
-
checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
|
1039
|
-
dependencies = [
|
1040
|
-
"libc",
|
1041
|
-
]
|
1042
|
-
|
1043
|
-
[[package]]
|
1044
|
-
name = "matchers"
|
1045
|
-
version = "0.1.0"
|
1046
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1047
|
-
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
1048
|
-
dependencies = [
|
1049
|
-
"regex-automata",
|
1050
|
-
]
|
1051
|
-
|
1052
|
-
[[package]]
|
1053
|
-
name = "matchit"
|
1054
|
-
version = "0.5.0"
|
1055
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1056
|
-
checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb"
|
1057
|
-
|
1058
|
-
[[package]]
|
1059
|
-
name = "memchr"
|
1060
|
-
version = "2.5.0"
|
1061
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1062
|
-
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
1063
|
-
|
1064
|
-
[[package]]
|
1065
|
-
name = "memoffset"
|
1066
|
-
version = "0.6.5"
|
1067
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1068
|
-
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
|
1069
|
-
dependencies = [
|
1070
|
-
"autocfg",
|
1071
|
-
]
|
1072
|
-
|
1073
|
-
[[package]]
|
1074
|
-
name = "memoffset"
|
1075
|
-
version = "0.7.1"
|
1076
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1077
|
-
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
|
1078
|
-
dependencies = [
|
1079
|
-
"autocfg",
|
1080
|
-
]
|
1081
|
-
|
1082
|
-
[[package]]
|
1083
|
-
name = "mime"
|
1084
|
-
version = "0.3.16"
|
1085
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1086
|
-
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
|
1087
|
-
|
1088
|
-
[[package]]
|
1089
|
-
name = "miniz_oxide"
|
1090
|
-
version = "0.5.4"
|
1091
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1092
|
-
checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
|
1093
|
-
dependencies = [
|
1094
|
-
"adler",
|
1095
|
-
]
|
1096
|
-
|
1097
|
-
[[package]]
|
1098
|
-
name = "mio"
|
1099
|
-
version = "0.8.5"
|
1100
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1101
|
-
checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
|
1102
|
-
dependencies = [
|
1103
|
-
"libc",
|
1104
|
-
"log",
|
1105
|
-
"wasi 0.11.0+wasi-snapshot-preview1",
|
1106
|
-
"windows-sys 0.42.0",
|
1107
|
-
]
|
1108
|
-
|
1109
|
-
[[package]]
|
1110
|
-
name = "mockall"
|
1111
|
-
version = "0.11.3"
|
1112
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1113
|
-
checksum = "50e4a1c770583dac7ab5e2f6c139153b783a53a1bbee9729613f193e59828326"
|
1114
|
-
dependencies = [
|
1115
|
-
"cfg-if",
|
1116
|
-
"downcast",
|
1117
|
-
"fragile",
|
1118
|
-
"lazy_static",
|
1119
|
-
"mockall_derive",
|
1120
|
-
"predicates",
|
1121
|
-
"predicates-tree",
|
1122
|
-
]
|
1123
|
-
|
1124
|
-
[[package]]
|
1125
|
-
name = "mockall_derive"
|
1126
|
-
version = "0.11.3"
|
1127
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1128
|
-
checksum = "832663583d5fa284ca8810bf7015e46c9fff9622d3cf34bd1eea5003fec06dd0"
|
1129
|
-
dependencies = [
|
1130
|
-
"cfg-if",
|
1131
|
-
"proc-macro2",
|
1132
|
-
"quote",
|
1133
|
-
"syn",
|
1134
|
-
]
|
1135
|
-
|
1136
|
-
[[package]]
|
1137
|
-
name = "multimap"
|
1138
|
-
version = "0.8.3"
|
1139
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1140
|
-
checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
|
1141
|
-
|
1142
|
-
[[package]]
|
1143
|
-
name = "nix"
|
1144
|
-
version = "0.26.1"
|
1145
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1146
|
-
checksum = "46a58d1d356c6597d08cde02c2f09d785b09e28711837b1ed667dc652c08a694"
|
1147
|
-
dependencies = [
|
1148
|
-
"bitflags",
|
1149
|
-
"cfg-if",
|
1150
|
-
"libc",
|
1151
|
-
"memoffset 0.7.1",
|
1152
|
-
"pin-utils",
|
1153
|
-
"static_assertions",
|
1154
|
-
]
|
1155
|
-
|
1156
|
-
[[package]]
|
1157
|
-
name = "no-std-compat"
|
1158
|
-
version = "0.4.1"
|
1159
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1160
|
-
checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c"
|
1161
|
-
|
1162
|
-
[[package]]
|
1163
|
-
name = "nonzero_ext"
|
1164
|
-
version = "0.3.0"
|
1165
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1166
|
-
checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
|
1167
|
-
|
1168
|
-
[[package]]
|
1169
|
-
name = "normalize-line-endings"
|
1170
|
-
version = "0.3.0"
|
1171
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1172
|
-
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
1173
|
-
|
1174
|
-
[[package]]
|
1175
|
-
name = "nu-ansi-term"
|
1176
|
-
version = "0.46.0"
|
1177
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1178
|
-
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
1179
|
-
dependencies = [
|
1180
|
-
"overload",
|
1181
|
-
"winapi",
|
1182
|
-
]
|
1183
|
-
|
1184
|
-
[[package]]
|
1185
|
-
name = "num-integer"
|
1186
|
-
version = "0.1.45"
|
1187
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1188
|
-
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
1189
|
-
dependencies = [
|
1190
|
-
"autocfg",
|
1191
|
-
"num-traits",
|
1192
|
-
]
|
1193
|
-
|
1194
|
-
[[package]]
|
1195
|
-
name = "num-traits"
|
1196
|
-
version = "0.2.15"
|
1197
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1198
|
-
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
|
1199
|
-
dependencies = [
|
1200
|
-
"autocfg",
|
1201
|
-
]
|
1202
|
-
|
1203
|
-
[[package]]
|
1204
|
-
name = "num_cpus"
|
1205
|
-
version = "1.14.0"
|
1206
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1207
|
-
checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
|
1208
|
-
dependencies = [
|
1209
|
-
"hermit-abi",
|
1210
|
-
"libc",
|
1211
|
-
]
|
1212
|
-
|
1213
|
-
[[package]]
|
1214
|
-
name = "once_cell"
|
1215
|
-
version = "1.16.0"
|
1216
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1217
|
-
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
|
1218
|
-
|
1219
|
-
[[package]]
|
1220
|
-
name = "opaque-debug"
|
1221
|
-
version = "0.3.0"
|
1222
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1223
|
-
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
|
1224
|
-
|
1225
|
-
[[package]]
|
1226
|
-
name = "openssl-probe"
|
1227
|
-
version = "0.1.5"
|
1228
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1229
|
-
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
1230
|
-
|
1231
|
-
[[package]]
|
1232
|
-
name = "opentelemetry"
|
1233
|
-
version = "0.18.0"
|
1234
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1235
|
-
checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e"
|
1236
|
-
dependencies = [
|
1237
|
-
"opentelemetry_api",
|
1238
|
-
"opentelemetry_sdk",
|
1239
|
-
]
|
1240
|
-
|
1241
|
-
[[package]]
|
1242
|
-
name = "opentelemetry-otlp"
|
1243
|
-
version = "0.11.0"
|
1244
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1245
|
-
checksum = "d1c928609d087790fc936a1067bdc310ae702bdf3b090c3f281b713622c8bbde"
|
1246
|
-
dependencies = [
|
1247
|
-
"async-trait",
|
1248
|
-
"futures",
|
1249
|
-
"futures-util",
|
1250
|
-
"http",
|
1251
|
-
"opentelemetry",
|
1252
|
-
"opentelemetry-proto",
|
1253
|
-
"prost",
|
1254
|
-
"thiserror",
|
1255
|
-
"tokio",
|
1256
|
-
"tonic",
|
1257
|
-
]
|
1258
|
-
|
1259
|
-
[[package]]
|
1260
|
-
name = "opentelemetry-prometheus"
|
1261
|
-
version = "0.11.0"
|
1262
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1263
|
-
checksum = "06c3d833835a53cf91331d2cfb27e9121f5a95261f31f08a1f79ab31688b8da8"
|
1264
|
-
dependencies = [
|
1265
|
-
"opentelemetry",
|
1266
|
-
"prometheus",
|
1267
|
-
"protobuf",
|
1268
|
-
]
|
1269
|
-
|
1270
|
-
[[package]]
|
1271
|
-
name = "opentelemetry-proto"
|
1272
|
-
version = "0.1.0"
|
1273
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1274
|
-
checksum = "d61a2f56df5574508dd86aaca016c917489e589ece4141df1b5e349af8d66c28"
|
1275
|
-
dependencies = [
|
1276
|
-
"futures",
|
1277
|
-
"futures-util",
|
1278
|
-
"opentelemetry",
|
1279
|
-
"prost",
|
1280
|
-
"tonic",
|
1281
|
-
"tonic-build",
|
1282
|
-
]
|
1283
|
-
|
1284
|
-
[[package]]
|
1285
|
-
name = "opentelemetry_api"
|
1286
|
-
version = "0.18.0"
|
1287
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1288
|
-
checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22"
|
1289
|
-
dependencies = [
|
1290
|
-
"fnv",
|
1291
|
-
"futures-channel",
|
1292
|
-
"futures-util",
|
1293
|
-
"indexmap",
|
1294
|
-
"js-sys",
|
1295
|
-
"once_cell",
|
1296
|
-
"pin-project-lite",
|
1297
|
-
"thiserror",
|
1298
|
-
]
|
1299
|
-
|
1300
|
-
[[package]]
|
1301
|
-
name = "opentelemetry_sdk"
|
1302
|
-
version = "0.18.0"
|
1303
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1304
|
-
checksum = "1ca41c4933371b61c2a2f214bf16931499af4ec90543604ec828f7a625c09113"
|
1305
|
-
dependencies = [
|
1306
|
-
"async-trait",
|
1307
|
-
"crossbeam-channel",
|
1308
|
-
"dashmap",
|
1309
|
-
"fnv",
|
1310
|
-
"futures-channel",
|
1311
|
-
"futures-executor",
|
1312
|
-
"futures-util",
|
1313
|
-
"once_cell",
|
1314
|
-
"opentelemetry_api",
|
1315
|
-
"percent-encoding",
|
1316
|
-
"rand",
|
1317
|
-
"thiserror",
|
1318
|
-
"tokio",
|
1319
|
-
"tokio-stream",
|
1320
|
-
]
|
1321
|
-
|
1322
|
-
[[package]]
|
1323
|
-
name = "overload"
|
1324
|
-
version = "0.1.1"
|
1325
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1326
|
-
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
1327
|
-
|
1328
|
-
[[package]]
|
1329
|
-
name = "parking_lot"
|
1330
|
-
version = "0.12.1"
|
1331
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1332
|
-
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
1333
|
-
dependencies = [
|
1334
|
-
"lock_api",
|
1335
|
-
"parking_lot_core",
|
1336
|
-
]
|
1337
|
-
|
1338
|
-
[[package]]
|
1339
|
-
name = "parking_lot_core"
|
1340
|
-
version = "0.9.4"
|
1341
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1342
|
-
checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0"
|
1343
|
-
dependencies = [
|
1344
|
-
"cfg-if",
|
1345
|
-
"libc",
|
1346
|
-
"redox_syscall",
|
1347
|
-
"smallvec",
|
1348
|
-
"windows-sys 0.42.0",
|
1349
|
-
]
|
1350
|
-
|
1351
|
-
[[package]]
|
1352
|
-
name = "password-hash"
|
1353
|
-
version = "0.4.2"
|
1354
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1355
|
-
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
|
1356
|
-
dependencies = [
|
1357
|
-
"base64ct",
|
1358
|
-
"rand_core",
|
1359
|
-
"subtle",
|
1360
|
-
]
|
1361
|
-
|
1362
|
-
[[package]]
|
1363
|
-
name = "pbkdf2"
|
1364
|
-
version = "0.11.0"
|
1365
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1366
|
-
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
|
1367
|
-
dependencies = [
|
1368
|
-
"digest",
|
1369
|
-
"hmac",
|
1370
|
-
"password-hash",
|
1371
|
-
"sha2",
|
1372
|
-
]
|
1373
|
-
|
1374
|
-
[[package]]
|
1375
|
-
name = "percent-encoding"
|
1376
|
-
version = "2.2.0"
|
1377
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1378
|
-
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
|
1379
|
-
|
1380
|
-
[[package]]
|
1381
|
-
name = "petgraph"
|
1382
|
-
version = "0.6.2"
|
1383
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1384
|
-
checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143"
|
1385
|
-
dependencies = [
|
1386
|
-
"fixedbitset",
|
1387
|
-
"indexmap",
|
1388
|
-
]
|
1389
|
-
|
1390
|
-
[[package]]
|
1391
|
-
name = "pin-project"
|
1392
|
-
version = "1.0.12"
|
1393
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1394
|
-
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
|
1395
|
-
dependencies = [
|
1396
|
-
"pin-project-internal",
|
1397
|
-
]
|
1398
|
-
|
1399
|
-
[[package]]
|
1400
|
-
name = "pin-project-internal"
|
1401
|
-
version = "1.0.12"
|
1402
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1403
|
-
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
|
1404
|
-
dependencies = [
|
1405
|
-
"proc-macro2",
|
1406
|
-
"quote",
|
1407
|
-
"syn",
|
1408
|
-
]
|
1409
|
-
|
1410
|
-
[[package]]
|
1411
|
-
name = "pin-project-lite"
|
1412
|
-
version = "0.2.9"
|
1413
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1414
|
-
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
1415
|
-
|
1416
|
-
[[package]]
|
1417
|
-
name = "pin-utils"
|
1418
|
-
version = "0.1.0"
|
1419
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1420
|
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1421
|
-
|
1422
|
-
[[package]]
|
1423
|
-
name = "pkg-config"
|
1424
|
-
version = "0.3.26"
|
1425
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1426
|
-
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
1427
|
-
|
1428
|
-
[[package]]
|
1429
|
-
name = "ppv-lite86"
|
1430
|
-
version = "0.2.17"
|
1431
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1432
|
-
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
1433
|
-
|
1434
|
-
[[package]]
|
1435
|
-
name = "predicates"
|
1436
|
-
version = "2.1.3"
|
1437
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1438
|
-
checksum = "ed6bd09a7f7e68f3f0bf710fb7ab9c4615a488b58b5f653382a687701e458c92"
|
1439
|
-
dependencies = [
|
1440
|
-
"difflib",
|
1441
|
-
"float-cmp",
|
1442
|
-
"itertools",
|
1443
|
-
"normalize-line-endings",
|
1444
|
-
"predicates-core",
|
1445
|
-
"regex",
|
1446
|
-
]
|
1447
|
-
|
1448
|
-
[[package]]
|
1449
|
-
name = "predicates-core"
|
1450
|
-
version = "1.0.5"
|
1451
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1452
|
-
checksum = "72f883590242d3c6fc5bf50299011695fa6590c2c70eac95ee1bdb9a733ad1a2"
|
1453
|
-
|
1454
|
-
[[package]]
|
1455
|
-
name = "predicates-tree"
|
1456
|
-
version = "1.0.7"
|
1457
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1458
|
-
checksum = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d"
|
1459
|
-
dependencies = [
|
1460
|
-
"predicates-core",
|
1461
|
-
"termtree",
|
1462
|
-
]
|
1463
|
-
|
1464
|
-
[[package]]
|
1465
|
-
name = "prettyplease"
|
1466
|
-
version = "0.1.21"
|
1467
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1468
|
-
checksum = "c142c0e46b57171fe0c528bee8c5b7569e80f0c17e377cd0e30ea57dbc11bb51"
|
1469
|
-
dependencies = [
|
1470
|
-
"proc-macro2",
|
1471
|
-
"syn",
|
1472
|
-
]
|
1473
|
-
|
1474
|
-
[[package]]
|
1475
|
-
name = "proc-macro2"
|
1476
|
-
version = "1.0.47"
|
1477
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1478
|
-
checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
|
1479
|
-
dependencies = [
|
1480
|
-
"unicode-ident",
|
1481
|
-
]
|
1482
|
-
|
1483
|
-
[[package]]
|
1484
|
-
name = "prometheus"
|
1485
|
-
version = "0.13.3"
|
1486
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1487
|
-
checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c"
|
1488
|
-
dependencies = [
|
1489
|
-
"cfg-if",
|
1490
|
-
"fnv",
|
1491
|
-
"lazy_static",
|
1492
|
-
"memchr",
|
1493
|
-
"parking_lot",
|
1494
|
-
"protobuf",
|
1495
|
-
"thiserror",
|
1496
|
-
]
|
1497
|
-
|
1498
|
-
[[package]]
|
1499
|
-
name = "prost"
|
1500
|
-
version = "0.11.6"
|
1501
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1502
|
-
checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698"
|
1503
|
-
dependencies = [
|
1504
|
-
"bytes",
|
1505
|
-
"prost-derive",
|
1506
|
-
]
|
1507
|
-
|
1508
|
-
[[package]]
|
1509
|
-
name = "prost-build"
|
1510
|
-
version = "0.11.6"
|
1511
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1512
|
-
checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e"
|
1513
|
-
dependencies = [
|
1514
|
-
"bytes",
|
1515
|
-
"heck",
|
1516
|
-
"itertools",
|
1517
|
-
"lazy_static",
|
1518
|
-
"log",
|
1519
|
-
"multimap",
|
1520
|
-
"petgraph",
|
1521
|
-
"prettyplease",
|
1522
|
-
"prost",
|
1523
|
-
"prost-types",
|
1524
|
-
"regex",
|
1525
|
-
"syn",
|
1526
|
-
"tempfile",
|
1527
|
-
"which",
|
1528
|
-
]
|
1529
|
-
|
1530
|
-
[[package]]
|
1531
|
-
name = "prost-derive"
|
1532
|
-
version = "0.11.6"
|
1533
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1534
|
-
checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d"
|
1535
|
-
dependencies = [
|
1536
|
-
"anyhow",
|
1537
|
-
"itertools",
|
1538
|
-
"proc-macro2",
|
1539
|
-
"quote",
|
1540
|
-
"syn",
|
1541
|
-
]
|
1542
|
-
|
1543
|
-
[[package]]
|
1544
|
-
name = "prost-types"
|
1545
|
-
version = "0.11.6"
|
1546
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1547
|
-
checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788"
|
1548
|
-
dependencies = [
|
1549
|
-
"bytes",
|
1550
|
-
"prost",
|
1551
|
-
]
|
1552
|
-
|
1553
|
-
[[package]]
|
1554
|
-
name = "prost-wkt"
|
1555
|
-
version = "0.4.0"
|
1556
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1557
|
-
checksum = "81d27933a63f4fa7586c2eac76179e7a9b782a7165aa309028adbec626a33100"
|
1558
|
-
dependencies = [
|
1559
|
-
"chrono",
|
1560
|
-
"inventory",
|
1561
|
-
"prost",
|
1562
|
-
"serde",
|
1563
|
-
"serde_derive",
|
1564
|
-
"serde_json",
|
1565
|
-
"typetag",
|
1566
|
-
]
|
1567
|
-
|
1568
|
-
[[package]]
|
1569
|
-
name = "prost-wkt-build"
|
1570
|
-
version = "0.4.0"
|
1571
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1572
|
-
checksum = "edf268948bef41c2f9bb879e8868c155412d28d6ba4295c5b8d6d6639e47f9cf"
|
1573
|
-
dependencies = [
|
1574
|
-
"heck",
|
1575
|
-
"prost",
|
1576
|
-
"prost-build",
|
1577
|
-
"prost-types",
|
1578
|
-
"quote",
|
1579
|
-
]
|
1580
|
-
|
1581
|
-
[[package]]
|
1582
|
-
name = "prost-wkt-types"
|
1583
|
-
version = "0.4.0"
|
1584
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1585
|
-
checksum = "4e240034fe46986ab9f84d669ed9bd46ad0c6adb8777ef28f5c44b94b43a3743"
|
1586
|
-
dependencies = [
|
1587
|
-
"chrono",
|
1588
|
-
"prost",
|
1589
|
-
"prost-build",
|
1590
|
-
"prost-types",
|
1591
|
-
"prost-wkt",
|
1592
|
-
"prost-wkt-build",
|
1593
|
-
"regex",
|
1594
|
-
"serde",
|
1595
|
-
"serde_derive",
|
1596
|
-
"serde_json",
|
1597
|
-
]
|
1598
|
-
|
1599
|
-
[[package]]
|
1600
|
-
name = "protobuf"
|
1601
|
-
version = "2.28.0"
|
1602
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1603
|
-
checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
|
1604
|
-
|
1605
|
-
[[package]]
|
1606
|
-
name = "quanta"
|
1607
|
-
version = "0.9.3"
|
1608
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1609
|
-
checksum = "20afe714292d5e879d8b12740aa223c6a88f118af41870e8b6196e39a02238a8"
|
1610
|
-
dependencies = [
|
1611
|
-
"crossbeam-utils",
|
1612
|
-
"libc",
|
1613
|
-
"mach",
|
1614
|
-
"once_cell",
|
1615
|
-
"raw-cpuid",
|
1616
|
-
"wasi 0.10.2+wasi-snapshot-preview1",
|
1617
|
-
"web-sys",
|
1618
|
-
"winapi",
|
1619
|
-
]
|
1620
|
-
|
1621
|
-
[[package]]
|
1622
|
-
name = "quote"
|
1623
|
-
version = "1.0.21"
|
1624
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1625
|
-
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
|
1626
|
-
dependencies = [
|
1627
|
-
"proc-macro2",
|
1628
|
-
]
|
1629
|
-
|
1630
|
-
[[package]]
|
1631
|
-
name = "rand"
|
1632
|
-
version = "0.8.5"
|
1633
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1634
|
-
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
1635
|
-
dependencies = [
|
1636
|
-
"libc",
|
1637
|
-
"rand_chacha",
|
1638
|
-
"rand_core",
|
1639
|
-
]
|
1640
|
-
|
1641
|
-
[[package]]
|
1642
|
-
name = "rand_chacha"
|
1643
|
-
version = "0.3.1"
|
1644
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1645
|
-
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
1646
|
-
dependencies = [
|
1647
|
-
"ppv-lite86",
|
1648
|
-
"rand_core",
|
1649
|
-
]
|
1650
|
-
|
1651
|
-
[[package]]
|
1652
|
-
name = "rand_core"
|
1653
|
-
version = "0.6.4"
|
1654
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1655
|
-
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
1656
|
-
dependencies = [
|
1657
|
-
"getrandom",
|
1658
|
-
]
|
1659
|
-
|
1660
|
-
[[package]]
|
1661
|
-
name = "raw-cpuid"
|
1662
|
-
version = "10.6.0"
|
1663
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1664
|
-
checksum = "a6823ea29436221176fe662da99998ad3b4db2c7f31e7b6f5fe43adccd6320bb"
|
1665
|
-
dependencies = [
|
1666
|
-
"bitflags",
|
1667
|
-
]
|
1668
|
-
|
1669
|
-
[[package]]
|
1670
|
-
name = "redox_syscall"
|
1671
|
-
version = "0.2.16"
|
1672
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1673
|
-
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
1674
|
-
dependencies = [
|
1675
|
-
"bitflags",
|
1676
|
-
]
|
1677
|
-
|
1678
|
-
[[package]]
|
1679
|
-
name = "regex"
|
1680
|
-
version = "1.7.0"
|
1681
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1682
|
-
checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
|
1683
|
-
dependencies = [
|
1684
|
-
"aho-corasick",
|
1685
|
-
"memchr",
|
1686
|
-
"regex-syntax",
|
1687
|
-
]
|
1688
|
-
|
1689
|
-
[[package]]
|
1690
|
-
name = "regex-automata"
|
1691
|
-
version = "0.1.10"
|
1692
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1693
|
-
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
1694
|
-
dependencies = [
|
1695
|
-
"regex-syntax",
|
1696
|
-
]
|
1697
|
-
|
1698
|
-
[[package]]
|
1699
|
-
name = "regex-syntax"
|
1700
|
-
version = "0.6.28"
|
1701
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1702
|
-
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
|
1703
|
-
|
1704
|
-
[[package]]
|
1705
|
-
name = "remove_dir_all"
|
1706
|
-
version = "0.5.3"
|
1707
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1708
|
-
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
1709
|
-
dependencies = [
|
1710
|
-
"winapi",
|
1711
|
-
]
|
1712
|
-
|
1713
|
-
[[package]]
|
1714
|
-
name = "reqwest"
|
1715
|
-
version = "0.11.12"
|
1716
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1717
|
-
checksum = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc"
|
1718
|
-
dependencies = [
|
1719
|
-
"base64 0.13.1",
|
1720
|
-
"bytes",
|
1721
|
-
"encoding_rs",
|
1722
|
-
"futures-core",
|
1723
|
-
"futures-util",
|
1724
|
-
"h2",
|
1725
|
-
"http",
|
1726
|
-
"http-body",
|
1727
|
-
"hyper",
|
1728
|
-
"hyper-rustls",
|
1729
|
-
"ipnet",
|
1730
|
-
"js-sys",
|
1731
|
-
"log",
|
1732
|
-
"mime",
|
1733
|
-
"once_cell",
|
1734
|
-
"percent-encoding",
|
1735
|
-
"pin-project-lite",
|
1736
|
-
"rustls",
|
1737
|
-
"rustls-pemfile",
|
1738
|
-
"serde",
|
1739
|
-
"serde_json",
|
1740
|
-
"serde_urlencoded",
|
1741
|
-
"tokio",
|
1742
|
-
"tokio-rustls",
|
1743
|
-
"tokio-util",
|
1744
|
-
"tower-service",
|
1745
|
-
"url",
|
1746
|
-
"wasm-bindgen",
|
1747
|
-
"wasm-bindgen-futures",
|
1748
|
-
"web-sys",
|
1749
|
-
"webpki-roots",
|
1750
|
-
"winreg",
|
1751
|
-
]
|
1752
|
-
|
1753
|
-
[[package]]
|
1754
|
-
name = "ring"
|
1755
|
-
version = "0.16.20"
|
1756
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1757
|
-
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
|
1758
|
-
dependencies = [
|
1759
|
-
"cc",
|
1760
|
-
"libc",
|
1761
|
-
"once_cell",
|
1762
|
-
"spin",
|
1763
|
-
"untrusted",
|
1764
|
-
"web-sys",
|
1765
|
-
"winapi",
|
1766
|
-
]
|
1767
|
-
|
1768
|
-
[[package]]
|
1769
|
-
name = "ringbuf"
|
1770
|
-
version = "0.3.1"
|
1771
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1772
|
-
checksum = "89e68dd9c1d8f7bb0c664e1556b1521809bc6fa62d92bb3b813adf8611caa0eb"
|
1773
|
-
dependencies = [
|
1774
|
-
"crossbeam-utils",
|
1775
|
-
]
|
1776
|
-
|
1777
|
-
[[package]]
|
1778
|
-
name = "rustc_version"
|
1779
|
-
version = "0.4.0"
|
1780
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1781
|
-
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
1782
|
-
dependencies = [
|
1783
|
-
"semver",
|
1784
|
-
]
|
1785
|
-
|
1786
|
-
[[package]]
|
1787
|
-
name = "rustfsm"
|
1788
|
-
version = "0.1.0"
|
1789
|
-
dependencies = [
|
1790
|
-
"rustfsm_procmacro",
|
1791
|
-
"rustfsm_trait",
|
1792
|
-
]
|
1793
|
-
|
1794
|
-
[[package]]
|
1795
|
-
name = "rustfsm_procmacro"
|
1796
|
-
version = "0.1.0"
|
1797
|
-
dependencies = [
|
1798
|
-
"derive_more",
|
1799
|
-
"proc-macro2",
|
1800
|
-
"quote",
|
1801
|
-
"rustfsm_trait",
|
1802
|
-
"syn",
|
1803
|
-
]
|
1804
|
-
|
1805
|
-
[[package]]
|
1806
|
-
name = "rustfsm_trait"
|
1807
|
-
version = "0.1.0"
|
1808
|
-
|
1809
|
-
[[package]]
|
1810
|
-
name = "rustls"
|
1811
|
-
version = "0.20.7"
|
1812
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1813
|
-
checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c"
|
1814
|
-
dependencies = [
|
1815
|
-
"log",
|
1816
|
-
"ring",
|
1817
|
-
"sct",
|
1818
|
-
"webpki",
|
1819
|
-
]
|
1820
|
-
|
1821
|
-
[[package]]
|
1822
|
-
name = "rustls-native-certs"
|
1823
|
-
version = "0.6.2"
|
1824
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1825
|
-
checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
|
1826
|
-
dependencies = [
|
1827
|
-
"openssl-probe",
|
1828
|
-
"rustls-pemfile",
|
1829
|
-
"schannel",
|
1830
|
-
"security-framework",
|
1831
|
-
]
|
1832
|
-
|
1833
|
-
[[package]]
|
1834
|
-
name = "rustls-pemfile"
|
1835
|
-
version = "1.0.1"
|
1836
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1837
|
-
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
|
1838
|
-
dependencies = [
|
1839
|
-
"base64 0.13.1",
|
1840
|
-
]
|
1841
|
-
|
1842
|
-
[[package]]
|
1843
|
-
name = "rutie"
|
1844
|
-
version = "0.8.4"
|
1845
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1846
|
-
checksum = "5d97db4cbb9739b48364c38cc9a6ebabdc07b42bd87b60ab448e1f29eaebb2ac"
|
1847
|
-
dependencies = [
|
1848
|
-
"lazy_static",
|
1849
|
-
"libc",
|
1850
|
-
]
|
1851
|
-
|
1852
|
-
[[package]]
|
1853
|
-
name = "ryu"
|
1854
|
-
version = "1.0.11"
|
1855
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1856
|
-
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
|
1857
|
-
|
1858
|
-
[[package]]
|
1859
|
-
name = "schannel"
|
1860
|
-
version = "0.1.20"
|
1861
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1862
|
-
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
|
1863
|
-
dependencies = [
|
1864
|
-
"lazy_static",
|
1865
|
-
"windows-sys 0.36.1",
|
1866
|
-
]
|
1867
|
-
|
1868
|
-
[[package]]
|
1869
|
-
name = "scopeguard"
|
1870
|
-
version = "1.1.0"
|
1871
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1872
|
-
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1873
|
-
|
1874
|
-
[[package]]
|
1875
|
-
name = "sct"
|
1876
|
-
version = "0.7.0"
|
1877
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1878
|
-
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
|
1879
|
-
dependencies = [
|
1880
|
-
"ring",
|
1881
|
-
"untrusted",
|
1882
|
-
]
|
1883
|
-
|
1884
|
-
[[package]]
|
1885
|
-
name = "security-framework"
|
1886
|
-
version = "2.7.0"
|
1887
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1888
|
-
checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
|
1889
|
-
dependencies = [
|
1890
|
-
"bitflags",
|
1891
|
-
"core-foundation",
|
1892
|
-
"core-foundation-sys",
|
1893
|
-
"libc",
|
1894
|
-
"security-framework-sys",
|
1895
|
-
]
|
1896
|
-
|
1897
|
-
[[package]]
|
1898
|
-
name = "security-framework-sys"
|
1899
|
-
version = "2.6.1"
|
1900
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1901
|
-
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
|
1902
|
-
dependencies = [
|
1903
|
-
"core-foundation-sys",
|
1904
|
-
"libc",
|
1905
|
-
]
|
1906
|
-
|
1907
|
-
[[package]]
|
1908
|
-
name = "semver"
|
1909
|
-
version = "1.0.14"
|
1910
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1911
|
-
checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
|
1912
|
-
|
1913
|
-
[[package]]
|
1914
|
-
name = "serde"
|
1915
|
-
version = "1.0.147"
|
1916
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1917
|
-
checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965"
|
1918
|
-
dependencies = [
|
1919
|
-
"serde_derive",
|
1920
|
-
]
|
1921
|
-
|
1922
|
-
[[package]]
|
1923
|
-
name = "serde_derive"
|
1924
|
-
version = "1.0.147"
|
1925
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1926
|
-
checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852"
|
1927
|
-
dependencies = [
|
1928
|
-
"proc-macro2",
|
1929
|
-
"quote",
|
1930
|
-
"syn",
|
1931
|
-
]
|
1932
|
-
|
1933
|
-
[[package]]
|
1934
|
-
name = "serde_json"
|
1935
|
-
version = "1.0.87"
|
1936
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1937
|
-
checksum = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45"
|
1938
|
-
dependencies = [
|
1939
|
-
"itoa",
|
1940
|
-
"ryu",
|
1941
|
-
"serde",
|
1942
|
-
]
|
1943
|
-
|
1944
|
-
[[package]]
|
1945
|
-
name = "serde_urlencoded"
|
1946
|
-
version = "0.7.1"
|
1947
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1948
|
-
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
1949
|
-
dependencies = [
|
1950
|
-
"form_urlencoded",
|
1951
|
-
"itoa",
|
1952
|
-
"ryu",
|
1953
|
-
"serde",
|
1954
|
-
]
|
1955
|
-
|
1956
|
-
[[package]]
|
1957
|
-
name = "sha1"
|
1958
|
-
version = "0.10.5"
|
1959
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1960
|
-
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
|
1961
|
-
dependencies = [
|
1962
|
-
"cfg-if",
|
1963
|
-
"cpufeatures",
|
1964
|
-
"digest",
|
1965
|
-
]
|
1966
|
-
|
1967
|
-
[[package]]
|
1968
|
-
name = "sha2"
|
1969
|
-
version = "0.10.6"
|
1970
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1971
|
-
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
|
1972
|
-
dependencies = [
|
1973
|
-
"cfg-if",
|
1974
|
-
"cpufeatures",
|
1975
|
-
"digest",
|
1976
|
-
]
|
1977
|
-
|
1978
|
-
[[package]]
|
1979
|
-
name = "sharded-slab"
|
1980
|
-
version = "0.1.4"
|
1981
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1982
|
-
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
|
1983
|
-
dependencies = [
|
1984
|
-
"lazy_static",
|
1985
|
-
]
|
1986
|
-
|
1987
|
-
[[package]]
|
1988
|
-
name = "signal-hook-registry"
|
1989
|
-
version = "1.4.0"
|
1990
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1991
|
-
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
|
1992
|
-
dependencies = [
|
1993
|
-
"libc",
|
1994
|
-
]
|
1995
|
-
|
1996
|
-
[[package]]
|
1997
|
-
name = "siphasher"
|
1998
|
-
version = "0.3.10"
|
1999
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2000
|
-
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
|
2001
|
-
|
2002
|
-
[[package]]
|
2003
|
-
name = "slab"
|
2004
|
-
version = "0.4.7"
|
2005
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2006
|
-
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
|
2007
|
-
dependencies = [
|
2008
|
-
"autocfg",
|
2009
|
-
]
|
2010
|
-
|
2011
|
-
[[package]]
|
2012
|
-
name = "slotmap"
|
2013
|
-
version = "1.0.6"
|
2014
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2015
|
-
checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342"
|
2016
|
-
dependencies = [
|
2017
|
-
"version_check",
|
2018
|
-
]
|
2019
|
-
|
2020
|
-
[[package]]
|
2021
|
-
name = "smallvec"
|
2022
|
-
version = "1.10.0"
|
2023
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024
|
-
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
2025
|
-
|
2026
|
-
[[package]]
|
2027
|
-
name = "socket2"
|
2028
|
-
version = "0.4.7"
|
2029
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2030
|
-
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
|
2031
|
-
dependencies = [
|
2032
|
-
"libc",
|
2033
|
-
"winapi",
|
2034
|
-
]
|
2035
|
-
|
2036
|
-
[[package]]
|
2037
|
-
name = "spin"
|
2038
|
-
version = "0.5.2"
|
2039
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2040
|
-
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
2041
|
-
|
2042
|
-
[[package]]
|
2043
|
-
name = "static_assertions"
|
2044
|
-
version = "1.1.0"
|
2045
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2046
|
-
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
2047
|
-
|
2048
|
-
[[package]]
|
2049
|
-
name = "strsim"
|
2050
|
-
version = "0.10.0"
|
2051
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2052
|
-
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
2053
|
-
|
2054
|
-
[[package]]
|
2055
|
-
name = "subtle"
|
2056
|
-
version = "2.4.1"
|
2057
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2058
|
-
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
|
2059
|
-
|
2060
|
-
[[package]]
|
2061
|
-
name = "syn"
|
2062
|
-
version = "1.0.103"
|
2063
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2064
|
-
checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
|
2065
|
-
dependencies = [
|
2066
|
-
"proc-macro2",
|
2067
|
-
"quote",
|
2068
|
-
"unicode-ident",
|
2069
|
-
]
|
2070
|
-
|
2071
|
-
[[package]]
|
2072
|
-
name = "sync_wrapper"
|
2073
|
-
version = "0.1.1"
|
2074
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2075
|
-
checksum = "20518fe4a4c9acf048008599e464deb21beeae3d3578418951a189c235a7a9a8"
|
2076
|
-
|
2077
|
-
[[package]]
|
2078
|
-
name = "tar"
|
2079
|
-
version = "0.4.38"
|
2080
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2081
|
-
checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
|
2082
|
-
dependencies = [
|
2083
|
-
"filetime",
|
2084
|
-
"libc",
|
2085
|
-
"xattr",
|
2086
|
-
]
|
2087
|
-
|
2088
|
-
[[package]]
|
2089
|
-
name = "tempfile"
|
2090
|
-
version = "3.3.0"
|
2091
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2092
|
-
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
|
2093
|
-
dependencies = [
|
2094
|
-
"cfg-if",
|
2095
|
-
"fastrand",
|
2096
|
-
"libc",
|
2097
|
-
"redox_syscall",
|
2098
|
-
"remove_dir_all",
|
2099
|
-
"winapi",
|
2100
|
-
]
|
2101
|
-
|
2102
|
-
[[package]]
|
2103
|
-
name = "temporal-client"
|
2104
|
-
version = "0.1.0"
|
2105
|
-
dependencies = [
|
2106
|
-
"anyhow",
|
2107
|
-
"async-trait",
|
2108
|
-
"backoff",
|
2109
|
-
"derive_builder",
|
2110
|
-
"derive_more",
|
2111
|
-
"futures",
|
2112
|
-
"futures-retry",
|
2113
|
-
"http",
|
2114
|
-
"once_cell",
|
2115
|
-
"opentelemetry",
|
2116
|
-
"parking_lot",
|
2117
|
-
"prost-types",
|
2118
|
-
"temporal-sdk-core-protos",
|
2119
|
-
"thiserror",
|
2120
|
-
"tokio",
|
2121
|
-
"tonic",
|
2122
|
-
"tower",
|
2123
|
-
"tracing",
|
2124
|
-
"url",
|
2125
|
-
"uuid",
|
2126
|
-
]
|
2127
|
-
|
2128
|
-
[[package]]
|
2129
|
-
name = "temporal-sdk-core"
|
2130
|
-
version = "0.1.0"
|
2131
|
-
dependencies = [
|
2132
|
-
"anyhow",
|
2133
|
-
"arc-swap",
|
2134
|
-
"async-trait",
|
2135
|
-
"base64 0.21.0",
|
2136
|
-
"crossbeam",
|
2137
|
-
"dashmap",
|
2138
|
-
"derive_builder",
|
2139
|
-
"derive_more",
|
2140
|
-
"enum_dispatch",
|
2141
|
-
"flate2",
|
2142
|
-
"futures",
|
2143
|
-
"futures-util",
|
2144
|
-
"governor",
|
2145
|
-
"http",
|
2146
|
-
"hyper",
|
2147
|
-
"itertools",
|
2148
|
-
"lazy_static",
|
2149
|
-
"lru",
|
2150
|
-
"mockall",
|
2151
|
-
"nix",
|
2152
|
-
"once_cell",
|
2153
|
-
"opentelemetry",
|
2154
|
-
"opentelemetry-otlp",
|
2155
|
-
"opentelemetry-prometheus",
|
2156
|
-
"parking_lot",
|
2157
|
-
"pin-project",
|
2158
|
-
"prometheus",
|
2159
|
-
"prost",
|
2160
|
-
"prost-wkt-types",
|
2161
|
-
"rand",
|
2162
|
-
"reqwest",
|
2163
|
-
"ringbuf",
|
2164
|
-
"rustfsm",
|
2165
|
-
"serde",
|
2166
|
-
"serde_json",
|
2167
|
-
"siphasher",
|
2168
|
-
"slotmap",
|
2169
|
-
"tar",
|
2170
|
-
"temporal-client",
|
2171
|
-
"temporal-sdk-core-api",
|
2172
|
-
"temporal-sdk-core-protos",
|
2173
|
-
"thiserror",
|
2174
|
-
"tokio",
|
2175
|
-
"tokio-stream",
|
2176
|
-
"tokio-util",
|
2177
|
-
"tonic",
|
2178
|
-
"tonic-build",
|
2179
|
-
"tracing",
|
2180
|
-
"tracing-futures",
|
2181
|
-
"tracing-opentelemetry",
|
2182
|
-
"tracing-subscriber",
|
2183
|
-
"url",
|
2184
|
-
"uuid",
|
2185
|
-
"zip",
|
2186
|
-
]
|
2187
|
-
|
2188
|
-
[[package]]
|
2189
|
-
name = "temporal-sdk-core-api"
|
2190
|
-
version = "0.1.0"
|
2191
|
-
dependencies = [
|
2192
|
-
"async-trait",
|
2193
|
-
"derive_builder",
|
2194
|
-
"prost-types",
|
2195
|
-
"serde",
|
2196
|
-
"serde_json",
|
2197
|
-
"temporal-client",
|
2198
|
-
"temporal-sdk-core-protos",
|
2199
|
-
"thiserror",
|
2200
|
-
"tokio",
|
2201
|
-
"tonic",
|
2202
|
-
"tracing-core",
|
2203
|
-
"url",
|
2204
|
-
]
|
2205
|
-
|
2206
|
-
[[package]]
|
2207
|
-
name = "temporal-sdk-core-protos"
|
2208
|
-
version = "0.1.0"
|
2209
|
-
dependencies = [
|
2210
|
-
"anyhow",
|
2211
|
-
"base64 0.21.0",
|
2212
|
-
"derive_more",
|
2213
|
-
"prost",
|
2214
|
-
"prost-wkt",
|
2215
|
-
"prost-wkt-build",
|
2216
|
-
"prost-wkt-types",
|
2217
|
-
"rand",
|
2218
|
-
"serde",
|
2219
|
-
"serde_json",
|
2220
|
-
"thiserror",
|
2221
|
-
"tonic",
|
2222
|
-
"tonic-build",
|
2223
|
-
"uuid",
|
2224
|
-
]
|
2225
|
-
|
2226
|
-
[[package]]
|
2227
|
-
name = "temporal-sdk-ruby-bridge"
|
2228
|
-
version = "0.1.1"
|
2229
|
-
dependencies = [
|
2230
|
-
"anyhow",
|
2231
|
-
"lazy_static",
|
2232
|
-
"parking_lot",
|
2233
|
-
"prost",
|
2234
|
-
"rutie",
|
2235
|
-
"temporal-client",
|
2236
|
-
"temporal-sdk-core",
|
2237
|
-
"temporal-sdk-core-api",
|
2238
|
-
"temporal-sdk-core-protos",
|
2239
|
-
"thiserror",
|
2240
|
-
"tokio",
|
2241
|
-
"tokio-util",
|
2242
|
-
"tonic",
|
2243
|
-
"url",
|
2244
|
-
]
|
2245
|
-
|
2246
|
-
[[package]]
|
2247
|
-
name = "termtree"
|
2248
|
-
version = "0.4.0"
|
2249
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2250
|
-
checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8"
|
2251
|
-
|
2252
|
-
[[package]]
|
2253
|
-
name = "thiserror"
|
2254
|
-
version = "1.0.37"
|
2255
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2256
|
-
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
|
2257
|
-
dependencies = [
|
2258
|
-
"thiserror-impl",
|
2259
|
-
]
|
2260
|
-
|
2261
|
-
[[package]]
|
2262
|
-
name = "thiserror-impl"
|
2263
|
-
version = "1.0.37"
|
2264
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2265
|
-
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
|
2266
|
-
dependencies = [
|
2267
|
-
"proc-macro2",
|
2268
|
-
"quote",
|
2269
|
-
"syn",
|
2270
|
-
]
|
2271
|
-
|
2272
|
-
[[package]]
|
2273
|
-
name = "thread_local"
|
2274
|
-
version = "1.1.4"
|
2275
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2276
|
-
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
|
2277
|
-
dependencies = [
|
2278
|
-
"once_cell",
|
2279
|
-
]
|
2280
|
-
|
2281
|
-
[[package]]
|
2282
|
-
name = "time"
|
2283
|
-
version = "0.3.17"
|
2284
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2285
|
-
checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376"
|
2286
|
-
dependencies = [
|
2287
|
-
"itoa",
|
2288
|
-
"serde",
|
2289
|
-
"time-core",
|
2290
|
-
"time-macros",
|
2291
|
-
]
|
2292
|
-
|
2293
|
-
[[package]]
|
2294
|
-
name = "time-core"
|
2295
|
-
version = "0.1.0"
|
2296
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2297
|
-
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
|
2298
|
-
|
2299
|
-
[[package]]
|
2300
|
-
name = "time-macros"
|
2301
|
-
version = "0.2.6"
|
2302
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2303
|
-
checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2"
|
2304
|
-
dependencies = [
|
2305
|
-
"time-core",
|
2306
|
-
]
|
2307
|
-
|
2308
|
-
[[package]]
|
2309
|
-
name = "tinyvec"
|
2310
|
-
version = "1.6.0"
|
2311
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2312
|
-
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
2313
|
-
dependencies = [
|
2314
|
-
"tinyvec_macros",
|
2315
|
-
]
|
2316
|
-
|
2317
|
-
[[package]]
|
2318
|
-
name = "tinyvec_macros"
|
2319
|
-
version = "0.1.0"
|
2320
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2321
|
-
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
2322
|
-
|
2323
|
-
[[package]]
|
2324
|
-
name = "tokio"
|
2325
|
-
version = "1.25.0"
|
2326
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2327
|
-
checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af"
|
2328
|
-
dependencies = [
|
2329
|
-
"autocfg",
|
2330
|
-
"bytes",
|
2331
|
-
"libc",
|
2332
|
-
"memchr",
|
2333
|
-
"mio",
|
2334
|
-
"num_cpus",
|
2335
|
-
"parking_lot",
|
2336
|
-
"pin-project-lite",
|
2337
|
-
"signal-hook-registry",
|
2338
|
-
"socket2",
|
2339
|
-
"tokio-macros",
|
2340
|
-
"windows-sys 0.42.0",
|
2341
|
-
]
|
2342
|
-
|
2343
|
-
[[package]]
|
2344
|
-
name = "tokio-io-timeout"
|
2345
|
-
version = "1.2.0"
|
2346
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2347
|
-
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
|
2348
|
-
dependencies = [
|
2349
|
-
"pin-project-lite",
|
2350
|
-
"tokio",
|
2351
|
-
]
|
2352
|
-
|
2353
|
-
[[package]]
|
2354
|
-
name = "tokio-macros"
|
2355
|
-
version = "1.8.0"
|
2356
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2357
|
-
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
|
2358
|
-
dependencies = [
|
2359
|
-
"proc-macro2",
|
2360
|
-
"quote",
|
2361
|
-
"syn",
|
2362
|
-
]
|
2363
|
-
|
2364
|
-
[[package]]
|
2365
|
-
name = "tokio-rustls"
|
2366
|
-
version = "0.23.4"
|
2367
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2368
|
-
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
|
2369
|
-
dependencies = [
|
2370
|
-
"rustls",
|
2371
|
-
"tokio",
|
2372
|
-
"webpki",
|
2373
|
-
]
|
2374
|
-
|
2375
|
-
[[package]]
|
2376
|
-
name = "tokio-stream"
|
2377
|
-
version = "0.1.11"
|
2378
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2379
|
-
checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
|
2380
|
-
dependencies = [
|
2381
|
-
"futures-core",
|
2382
|
-
"pin-project-lite",
|
2383
|
-
"tokio",
|
2384
|
-
]
|
2385
|
-
|
2386
|
-
[[package]]
|
2387
|
-
name = "tokio-util"
|
2388
|
-
version = "0.7.4"
|
2389
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2390
|
-
checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
|
2391
|
-
dependencies = [
|
2392
|
-
"bytes",
|
2393
|
-
"futures-core",
|
2394
|
-
"futures-sink",
|
2395
|
-
"pin-project-lite",
|
2396
|
-
"tokio",
|
2397
|
-
"tracing",
|
2398
|
-
]
|
2399
|
-
|
2400
|
-
[[package]]
|
2401
|
-
name = "tonic"
|
2402
|
-
version = "0.8.2"
|
2403
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2404
|
-
checksum = "55b9af819e54b8f33d453655bef9b9acc171568fb49523078d0cc4e7484200ec"
|
2405
|
-
dependencies = [
|
2406
|
-
"async-stream",
|
2407
|
-
"async-trait",
|
2408
|
-
"axum",
|
2409
|
-
"base64 0.13.1",
|
2410
|
-
"bytes",
|
2411
|
-
"futures-core",
|
2412
|
-
"futures-util",
|
2413
|
-
"h2",
|
2414
|
-
"http",
|
2415
|
-
"http-body",
|
2416
|
-
"hyper",
|
2417
|
-
"hyper-timeout",
|
2418
|
-
"percent-encoding",
|
2419
|
-
"pin-project",
|
2420
|
-
"prost",
|
2421
|
-
"prost-derive",
|
2422
|
-
"rustls-native-certs",
|
2423
|
-
"rustls-pemfile",
|
2424
|
-
"tokio",
|
2425
|
-
"tokio-rustls",
|
2426
|
-
"tokio-stream",
|
2427
|
-
"tokio-util",
|
2428
|
-
"tower",
|
2429
|
-
"tower-layer",
|
2430
|
-
"tower-service",
|
2431
|
-
"tracing",
|
2432
|
-
"tracing-futures",
|
2433
|
-
]
|
2434
|
-
|
2435
|
-
[[package]]
|
2436
|
-
name = "tonic-build"
|
2437
|
-
version = "0.8.2"
|
2438
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2439
|
-
checksum = "48c6fd7c2581e36d63388a9e04c350c21beb7a8b059580b2e93993c526899ddc"
|
2440
|
-
dependencies = [
|
2441
|
-
"prettyplease",
|
2442
|
-
"proc-macro2",
|
2443
|
-
"prost-build",
|
2444
|
-
"quote",
|
2445
|
-
"syn",
|
2446
|
-
]
|
2447
|
-
|
2448
|
-
[[package]]
|
2449
|
-
name = "tower"
|
2450
|
-
version = "0.4.13"
|
2451
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2452
|
-
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
2453
|
-
dependencies = [
|
2454
|
-
"futures-core",
|
2455
|
-
"futures-util",
|
2456
|
-
"indexmap",
|
2457
|
-
"pin-project",
|
2458
|
-
"pin-project-lite",
|
2459
|
-
"rand",
|
2460
|
-
"slab",
|
2461
|
-
"tokio",
|
2462
|
-
"tokio-util",
|
2463
|
-
"tower-layer",
|
2464
|
-
"tower-service",
|
2465
|
-
"tracing",
|
2466
|
-
]
|
2467
|
-
|
2468
|
-
[[package]]
|
2469
|
-
name = "tower-http"
|
2470
|
-
version = "0.3.4"
|
2471
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2472
|
-
checksum = "3c530c8675c1dbf98facee631536fa116b5fb6382d7dd6dc1b118d970eafe3ba"
|
2473
|
-
dependencies = [
|
2474
|
-
"bitflags",
|
2475
|
-
"bytes",
|
2476
|
-
"futures-core",
|
2477
|
-
"futures-util",
|
2478
|
-
"http",
|
2479
|
-
"http-body",
|
2480
|
-
"http-range-header",
|
2481
|
-
"pin-project-lite",
|
2482
|
-
"tower",
|
2483
|
-
"tower-layer",
|
2484
|
-
"tower-service",
|
2485
|
-
]
|
2486
|
-
|
2487
|
-
[[package]]
|
2488
|
-
name = "tower-layer"
|
2489
|
-
version = "0.3.2"
|
2490
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2491
|
-
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
|
2492
|
-
|
2493
|
-
[[package]]
|
2494
|
-
name = "tower-service"
|
2495
|
-
version = "0.3.2"
|
2496
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2497
|
-
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
2498
|
-
|
2499
|
-
[[package]]
|
2500
|
-
name = "tracing"
|
2501
|
-
version = "0.1.37"
|
2502
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2503
|
-
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
|
2504
|
-
dependencies = [
|
2505
|
-
"cfg-if",
|
2506
|
-
"log",
|
2507
|
-
"pin-project-lite",
|
2508
|
-
"tracing-attributes",
|
2509
|
-
"tracing-core",
|
2510
|
-
]
|
2511
|
-
|
2512
|
-
[[package]]
|
2513
|
-
name = "tracing-attributes"
|
2514
|
-
version = "0.1.23"
|
2515
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2516
|
-
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
|
2517
|
-
dependencies = [
|
2518
|
-
"proc-macro2",
|
2519
|
-
"quote",
|
2520
|
-
"syn",
|
2521
|
-
]
|
2522
|
-
|
2523
|
-
[[package]]
|
2524
|
-
name = "tracing-core"
|
2525
|
-
version = "0.1.30"
|
2526
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2527
|
-
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
|
2528
|
-
dependencies = [
|
2529
|
-
"once_cell",
|
2530
|
-
"valuable",
|
2531
|
-
]
|
2532
|
-
|
2533
|
-
[[package]]
|
2534
|
-
name = "tracing-futures"
|
2535
|
-
version = "0.2.5"
|
2536
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2537
|
-
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
|
2538
|
-
dependencies = [
|
2539
|
-
"pin-project",
|
2540
|
-
"tracing",
|
2541
|
-
]
|
2542
|
-
|
2543
|
-
[[package]]
|
2544
|
-
name = "tracing-log"
|
2545
|
-
version = "0.1.3"
|
2546
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2547
|
-
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
|
2548
|
-
dependencies = [
|
2549
|
-
"lazy_static",
|
2550
|
-
"log",
|
2551
|
-
"tracing-core",
|
2552
|
-
]
|
2553
|
-
|
2554
|
-
[[package]]
|
2555
|
-
name = "tracing-opentelemetry"
|
2556
|
-
version = "0.18.0"
|
2557
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2558
|
-
checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de"
|
2559
|
-
dependencies = [
|
2560
|
-
"once_cell",
|
2561
|
-
"opentelemetry",
|
2562
|
-
"tracing",
|
2563
|
-
"tracing-core",
|
2564
|
-
"tracing-log",
|
2565
|
-
"tracing-subscriber",
|
2566
|
-
]
|
2567
|
-
|
2568
|
-
[[package]]
|
2569
|
-
name = "tracing-subscriber"
|
2570
|
-
version = "0.3.16"
|
2571
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2572
|
-
checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
|
2573
|
-
dependencies = [
|
2574
|
-
"matchers",
|
2575
|
-
"nu-ansi-term",
|
2576
|
-
"once_cell",
|
2577
|
-
"parking_lot",
|
2578
|
-
"regex",
|
2579
|
-
"sharded-slab",
|
2580
|
-
"smallvec",
|
2581
|
-
"thread_local",
|
2582
|
-
"tracing",
|
2583
|
-
"tracing-core",
|
2584
|
-
"tracing-log",
|
2585
|
-
]
|
2586
|
-
|
2587
|
-
[[package]]
|
2588
|
-
name = "try-lock"
|
2589
|
-
version = "0.2.3"
|
2590
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2591
|
-
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
|
2592
|
-
|
2593
|
-
[[package]]
|
2594
|
-
name = "typenum"
|
2595
|
-
version = "1.15.0"
|
2596
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2597
|
-
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
2598
|
-
|
2599
|
-
[[package]]
|
2600
|
-
name = "typetag"
|
2601
|
-
version = "0.2.5"
|
2602
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2603
|
-
checksum = "8eecd98403ae5ea2813689125cf5b3f99c40b8abed46c0a8945c81eadb673b31"
|
2604
|
-
dependencies = [
|
2605
|
-
"erased-serde",
|
2606
|
-
"inventory",
|
2607
|
-
"once_cell",
|
2608
|
-
"serde",
|
2609
|
-
"typetag-impl",
|
2610
|
-
]
|
2611
|
-
|
2612
|
-
[[package]]
|
2613
|
-
name = "typetag-impl"
|
2614
|
-
version = "0.2.5"
|
2615
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2616
|
-
checksum = "8f9568611f0de5e83e0993b85c54679cd0afd659adcfcb0233f16280b980492e"
|
2617
|
-
dependencies = [
|
2618
|
-
"proc-macro2",
|
2619
|
-
"quote",
|
2620
|
-
"syn",
|
2621
|
-
]
|
2622
|
-
|
2623
|
-
[[package]]
|
2624
|
-
name = "unicode-bidi"
|
2625
|
-
version = "0.3.8"
|
2626
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2627
|
-
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
|
2628
|
-
|
2629
|
-
[[package]]
|
2630
|
-
name = "unicode-ident"
|
2631
|
-
version = "1.0.5"
|
2632
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2633
|
-
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
|
2634
|
-
|
2635
|
-
[[package]]
|
2636
|
-
name = "unicode-normalization"
|
2637
|
-
version = "0.1.22"
|
2638
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2639
|
-
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
|
2640
|
-
dependencies = [
|
2641
|
-
"tinyvec",
|
2642
|
-
]
|
2643
|
-
|
2644
|
-
[[package]]
|
2645
|
-
name = "untrusted"
|
2646
|
-
version = "0.7.1"
|
2647
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2648
|
-
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
2649
|
-
|
2650
|
-
[[package]]
|
2651
|
-
name = "url"
|
2652
|
-
version = "2.3.1"
|
2653
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2654
|
-
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
|
2655
|
-
dependencies = [
|
2656
|
-
"form_urlencoded",
|
2657
|
-
"idna",
|
2658
|
-
"percent-encoding",
|
2659
|
-
]
|
2660
|
-
|
2661
|
-
[[package]]
|
2662
|
-
name = "uuid"
|
2663
|
-
version = "1.2.2"
|
2664
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2665
|
-
checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c"
|
2666
|
-
dependencies = [
|
2667
|
-
"getrandom",
|
2668
|
-
]
|
2669
|
-
|
2670
|
-
[[package]]
|
2671
|
-
name = "valuable"
|
2672
|
-
version = "0.1.0"
|
2673
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2674
|
-
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
2675
|
-
|
2676
|
-
[[package]]
|
2677
|
-
name = "version_check"
|
2678
|
-
version = "0.9.4"
|
2679
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2680
|
-
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2681
|
-
|
2682
|
-
[[package]]
|
2683
|
-
name = "want"
|
2684
|
-
version = "0.3.0"
|
2685
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2686
|
-
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
|
2687
|
-
dependencies = [
|
2688
|
-
"log",
|
2689
|
-
"try-lock",
|
2690
|
-
]
|
2691
|
-
|
2692
|
-
[[package]]
|
2693
|
-
name = "wasi"
|
2694
|
-
version = "0.10.2+wasi-snapshot-preview1"
|
2695
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2696
|
-
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
|
2697
|
-
|
2698
|
-
[[package]]
|
2699
|
-
name = "wasi"
|
2700
|
-
version = "0.11.0+wasi-snapshot-preview1"
|
2701
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2702
|
-
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
2703
|
-
|
2704
|
-
[[package]]
|
2705
|
-
name = "wasm-bindgen"
|
2706
|
-
version = "0.2.83"
|
2707
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2708
|
-
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
|
2709
|
-
dependencies = [
|
2710
|
-
"cfg-if",
|
2711
|
-
"wasm-bindgen-macro",
|
2712
|
-
]
|
2713
|
-
|
2714
|
-
[[package]]
|
2715
|
-
name = "wasm-bindgen-backend"
|
2716
|
-
version = "0.2.83"
|
2717
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2718
|
-
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
|
2719
|
-
dependencies = [
|
2720
|
-
"bumpalo",
|
2721
|
-
"log",
|
2722
|
-
"once_cell",
|
2723
|
-
"proc-macro2",
|
2724
|
-
"quote",
|
2725
|
-
"syn",
|
2726
|
-
"wasm-bindgen-shared",
|
2727
|
-
]
|
2728
|
-
|
2729
|
-
[[package]]
|
2730
|
-
name = "wasm-bindgen-futures"
|
2731
|
-
version = "0.4.33"
|
2732
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2733
|
-
checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
|
2734
|
-
dependencies = [
|
2735
|
-
"cfg-if",
|
2736
|
-
"js-sys",
|
2737
|
-
"wasm-bindgen",
|
2738
|
-
"web-sys",
|
2739
|
-
]
|
2740
|
-
|
2741
|
-
[[package]]
|
2742
|
-
name = "wasm-bindgen-macro"
|
2743
|
-
version = "0.2.83"
|
2744
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2745
|
-
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
|
2746
|
-
dependencies = [
|
2747
|
-
"quote",
|
2748
|
-
"wasm-bindgen-macro-support",
|
2749
|
-
]
|
2750
|
-
|
2751
|
-
[[package]]
|
2752
|
-
name = "wasm-bindgen-macro-support"
|
2753
|
-
version = "0.2.83"
|
2754
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2755
|
-
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
|
2756
|
-
dependencies = [
|
2757
|
-
"proc-macro2",
|
2758
|
-
"quote",
|
2759
|
-
"syn",
|
2760
|
-
"wasm-bindgen-backend",
|
2761
|
-
"wasm-bindgen-shared",
|
2762
|
-
]
|
2763
|
-
|
2764
|
-
[[package]]
|
2765
|
-
name = "wasm-bindgen-shared"
|
2766
|
-
version = "0.2.83"
|
2767
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2768
|
-
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
|
2769
|
-
|
2770
|
-
[[package]]
|
2771
|
-
name = "web-sys"
|
2772
|
-
version = "0.3.60"
|
2773
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2774
|
-
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
|
2775
|
-
dependencies = [
|
2776
|
-
"js-sys",
|
2777
|
-
"wasm-bindgen",
|
2778
|
-
]
|
2779
|
-
|
2780
|
-
[[package]]
|
2781
|
-
name = "webpki"
|
2782
|
-
version = "0.22.0"
|
2783
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2784
|
-
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
|
2785
|
-
dependencies = [
|
2786
|
-
"ring",
|
2787
|
-
"untrusted",
|
2788
|
-
]
|
2789
|
-
|
2790
|
-
[[package]]
|
2791
|
-
name = "webpki-roots"
|
2792
|
-
version = "0.22.5"
|
2793
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2794
|
-
checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be"
|
2795
|
-
dependencies = [
|
2796
|
-
"webpki",
|
2797
|
-
]
|
2798
|
-
|
2799
|
-
[[package]]
|
2800
|
-
name = "which"
|
2801
|
-
version = "4.3.0"
|
2802
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2803
|
-
checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
|
2804
|
-
dependencies = [
|
2805
|
-
"either",
|
2806
|
-
"libc",
|
2807
|
-
"once_cell",
|
2808
|
-
]
|
2809
|
-
|
2810
|
-
[[package]]
|
2811
|
-
name = "winapi"
|
2812
|
-
version = "0.3.9"
|
2813
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2814
|
-
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2815
|
-
dependencies = [
|
2816
|
-
"winapi-i686-pc-windows-gnu",
|
2817
|
-
"winapi-x86_64-pc-windows-gnu",
|
2818
|
-
]
|
2819
|
-
|
2820
|
-
[[package]]
|
2821
|
-
name = "winapi-i686-pc-windows-gnu"
|
2822
|
-
version = "0.4.0"
|
2823
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2824
|
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2825
|
-
|
2826
|
-
[[package]]
|
2827
|
-
name = "winapi-x86_64-pc-windows-gnu"
|
2828
|
-
version = "0.4.0"
|
2829
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2830
|
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2831
|
-
|
2832
|
-
[[package]]
|
2833
|
-
name = "windows-sys"
|
2834
|
-
version = "0.36.1"
|
2835
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2836
|
-
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
2837
|
-
dependencies = [
|
2838
|
-
"windows_aarch64_msvc 0.36.1",
|
2839
|
-
"windows_i686_gnu 0.36.1",
|
2840
|
-
"windows_i686_msvc 0.36.1",
|
2841
|
-
"windows_x86_64_gnu 0.36.1",
|
2842
|
-
"windows_x86_64_msvc 0.36.1",
|
2843
|
-
]
|
2844
|
-
|
2845
|
-
[[package]]
|
2846
|
-
name = "windows-sys"
|
2847
|
-
version = "0.42.0"
|
2848
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2849
|
-
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
2850
|
-
dependencies = [
|
2851
|
-
"windows_aarch64_gnullvm",
|
2852
|
-
"windows_aarch64_msvc 0.42.0",
|
2853
|
-
"windows_i686_gnu 0.42.0",
|
2854
|
-
"windows_i686_msvc 0.42.0",
|
2855
|
-
"windows_x86_64_gnu 0.42.0",
|
2856
|
-
"windows_x86_64_gnullvm",
|
2857
|
-
"windows_x86_64_msvc 0.42.0",
|
2858
|
-
]
|
2859
|
-
|
2860
|
-
[[package]]
|
2861
|
-
name = "windows_aarch64_gnullvm"
|
2862
|
-
version = "0.42.0"
|
2863
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2864
|
-
checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
|
2865
|
-
|
2866
|
-
[[package]]
|
2867
|
-
name = "windows_aarch64_msvc"
|
2868
|
-
version = "0.36.1"
|
2869
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2870
|
-
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
2871
|
-
|
2872
|
-
[[package]]
|
2873
|
-
name = "windows_aarch64_msvc"
|
2874
|
-
version = "0.42.0"
|
2875
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2876
|
-
checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
|
2877
|
-
|
2878
|
-
[[package]]
|
2879
|
-
name = "windows_i686_gnu"
|
2880
|
-
version = "0.36.1"
|
2881
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2882
|
-
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
2883
|
-
|
2884
|
-
[[package]]
|
2885
|
-
name = "windows_i686_gnu"
|
2886
|
-
version = "0.42.0"
|
2887
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2888
|
-
checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
|
2889
|
-
|
2890
|
-
[[package]]
|
2891
|
-
name = "windows_i686_msvc"
|
2892
|
-
version = "0.36.1"
|
2893
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2894
|
-
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
2895
|
-
|
2896
|
-
[[package]]
|
2897
|
-
name = "windows_i686_msvc"
|
2898
|
-
version = "0.42.0"
|
2899
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2900
|
-
checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
|
2901
|
-
|
2902
|
-
[[package]]
|
2903
|
-
name = "windows_x86_64_gnu"
|
2904
|
-
version = "0.36.1"
|
2905
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2906
|
-
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
2907
|
-
|
2908
|
-
[[package]]
|
2909
|
-
name = "windows_x86_64_gnu"
|
2910
|
-
version = "0.42.0"
|
2911
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2912
|
-
checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
|
2913
|
-
|
2914
|
-
[[package]]
|
2915
|
-
name = "windows_x86_64_gnullvm"
|
2916
|
-
version = "0.42.0"
|
2917
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2918
|
-
checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
|
2919
|
-
|
2920
|
-
[[package]]
|
2921
|
-
name = "windows_x86_64_msvc"
|
2922
|
-
version = "0.36.1"
|
2923
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2924
|
-
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
|
2925
|
-
|
2926
|
-
[[package]]
|
2927
|
-
name = "windows_x86_64_msvc"
|
2928
|
-
version = "0.42.0"
|
2929
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2930
|
-
checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
|
2931
|
-
|
2932
|
-
[[package]]
|
2933
|
-
name = "winreg"
|
2934
|
-
version = "0.10.1"
|
2935
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2936
|
-
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
|
2937
|
-
dependencies = [
|
2938
|
-
"winapi",
|
2939
|
-
]
|
2940
|
-
|
2941
|
-
[[package]]
|
2942
|
-
name = "xattr"
|
2943
|
-
version = "0.2.3"
|
2944
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2945
|
-
checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
|
2946
|
-
dependencies = [
|
2947
|
-
"libc",
|
2948
|
-
]
|
2949
|
-
|
2950
|
-
[[package]]
|
2951
|
-
name = "zip"
|
2952
|
-
version = "0.6.3"
|
2953
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2954
|
-
checksum = "537ce7411d25e54e8ae21a7ce0b15840e7bfcff15b51d697ec3266cc76bdf080"
|
2955
|
-
dependencies = [
|
2956
|
-
"aes",
|
2957
|
-
"byteorder",
|
2958
|
-
"bzip2",
|
2959
|
-
"constant_time_eq",
|
2960
|
-
"crc32fast",
|
2961
|
-
"crossbeam-utils",
|
2962
|
-
"flate2",
|
2963
|
-
"hmac",
|
2964
|
-
"pbkdf2",
|
2965
|
-
"sha1",
|
2966
|
-
"time",
|
2967
|
-
"zstd",
|
2968
|
-
]
|
2969
|
-
|
2970
|
-
[[package]]
|
2971
|
-
name = "zstd"
|
2972
|
-
version = "0.11.2+zstd.1.5.2"
|
2973
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2974
|
-
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
2975
|
-
dependencies = [
|
2976
|
-
"zstd-safe",
|
2977
|
-
]
|
2978
|
-
|
2979
|
-
[[package]]
|
2980
|
-
name = "zstd-safe"
|
2981
|
-
version = "5.0.2+zstd.1.5.2"
|
2982
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2983
|
-
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
|
2984
|
-
dependencies = [
|
2985
|
-
"libc",
|
2986
|
-
"zstd-sys",
|
2987
|
-
]
|
2988
|
-
|
2989
|
-
[[package]]
|
2990
|
-
name = "zstd-sys"
|
2991
|
-
version = "2.0.1+zstd.1.5.2"
|
2992
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2993
|
-
checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
|
2994
|
-
dependencies = [
|
2995
|
-
"cc",
|
2996
|
-
"libc",
|
2997
|
-
]
|