temporalio 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/LICENSE +20 -0
- data/README.md +130 -0
- data/bridge/Cargo.lock +2865 -0
- data/bridge/Cargo.toml +26 -0
- data/bridge/sdk-core/ARCHITECTURE.md +76 -0
- data/bridge/sdk-core/Cargo.lock +2606 -0
- data/bridge/sdk-core/Cargo.toml +2 -0
- data/bridge/sdk-core/LICENSE.txt +23 -0
- data/bridge/sdk-core/README.md +107 -0
- data/bridge/sdk-core/arch_docs/diagrams/README.md +10 -0
- data/bridge/sdk-core/arch_docs/diagrams/sticky_queues.puml +40 -0
- data/bridge/sdk-core/arch_docs/diagrams/workflow_internals.svg +1 -0
- data/bridge/sdk-core/arch_docs/sticky_queues.md +51 -0
- data/bridge/sdk-core/bridge-ffi/Cargo.toml +24 -0
- data/bridge/sdk-core/bridge-ffi/LICENSE.txt +23 -0
- data/bridge/sdk-core/bridge-ffi/build.rs +25 -0
- data/bridge/sdk-core/bridge-ffi/include/sdk-core-bridge.h +249 -0
- data/bridge/sdk-core/bridge-ffi/src/lib.rs +825 -0
- data/bridge/sdk-core/bridge-ffi/src/wrappers.rs +211 -0
- data/bridge/sdk-core/client/Cargo.toml +40 -0
- data/bridge/sdk-core/client/LICENSE.txt +23 -0
- data/bridge/sdk-core/client/src/lib.rs +1294 -0
- data/bridge/sdk-core/client/src/metrics.rs +165 -0
- data/bridge/sdk-core/client/src/raw.rs +931 -0
- data/bridge/sdk-core/client/src/retry.rs +674 -0
- data/bridge/sdk-core/client/src/workflow_handle/mod.rs +185 -0
- data/bridge/sdk-core/core/Cargo.toml +116 -0
- data/bridge/sdk-core/core/LICENSE.txt +23 -0
- data/bridge/sdk-core/core/benches/workflow_replay.rs +73 -0
- data/bridge/sdk-core/core/src/abstractions.rs +166 -0
- data/bridge/sdk-core/core/src/core_tests/activity_tasks.rs +911 -0
- data/bridge/sdk-core/core/src/core_tests/child_workflows.rs +221 -0
- data/bridge/sdk-core/core/src/core_tests/determinism.rs +107 -0
- data/bridge/sdk-core/core/src/core_tests/local_activities.rs +515 -0
- data/bridge/sdk-core/core/src/core_tests/mod.rs +100 -0
- data/bridge/sdk-core/core/src/core_tests/queries.rs +736 -0
- data/bridge/sdk-core/core/src/core_tests/replay_flag.rs +65 -0
- data/bridge/sdk-core/core/src/core_tests/workers.rs +259 -0
- data/bridge/sdk-core/core/src/core_tests/workflow_cancels.rs +124 -0
- data/bridge/sdk-core/core/src/core_tests/workflow_tasks.rs +2070 -0
- data/bridge/sdk-core/core/src/ephemeral_server/mod.rs +515 -0
- data/bridge/sdk-core/core/src/lib.rs +175 -0
- data/bridge/sdk-core/core/src/log_export.rs +62 -0
- data/bridge/sdk-core/core/src/pollers/mod.rs +54 -0
- data/bridge/sdk-core/core/src/pollers/poll_buffer.rs +297 -0
- data/bridge/sdk-core/core/src/protosext/mod.rs +428 -0
- data/bridge/sdk-core/core/src/replay/mod.rs +71 -0
- data/bridge/sdk-core/core/src/retry_logic.rs +202 -0
- data/bridge/sdk-core/core/src/telemetry/metrics.rs +383 -0
- data/bridge/sdk-core/core/src/telemetry/mod.rs +412 -0
- data/bridge/sdk-core/core/src/telemetry/prometheus_server.rs +77 -0
- data/bridge/sdk-core/core/src/test_help/mod.rs +875 -0
- data/bridge/sdk-core/core/src/worker/activities/activity_heartbeat_manager.rs +580 -0
- data/bridge/sdk-core/core/src/worker/activities/local_activities.rs +1042 -0
- data/bridge/sdk-core/core/src/worker/activities.rs +464 -0
- data/bridge/sdk-core/core/src/worker/client/mocks.rs +87 -0
- data/bridge/sdk-core/core/src/worker/client.rs +347 -0
- data/bridge/sdk-core/core/src/worker/mod.rs +566 -0
- data/bridge/sdk-core/core/src/worker/workflow/bridge.rs +37 -0
- data/bridge/sdk-core/core/src/worker/workflow/driven_workflow.rs +110 -0
- data/bridge/sdk-core/core/src/worker/workflow/history_update.rs +458 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +911 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/cancel_external_state_machine.rs +298 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/cancel_workflow_state_machine.rs +171 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +860 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/complete_workflow_state_machine.rs +140 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs +161 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/fail_workflow_state_machine.rs +133 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/local_activity_state_machine.rs +1448 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/mod.rs +342 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/mutable_side_effect_state_machine.rs +127 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/patch_state_machine.rs +712 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/side_effect_state_machine.rs +71 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +443 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/timer_state_machine.rs +439 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/transition_coverage.rs +169 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +246 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_machines/local_acts.rs +96 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +1184 -0
- data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_task_state_machine.rs +277 -0
- data/bridge/sdk-core/core/src/worker/workflow/managed_run/managed_wf_test.rs +198 -0
- data/bridge/sdk-core/core/src/worker/workflow/managed_run.rs +647 -0
- data/bridge/sdk-core/core/src/worker/workflow/mod.rs +1143 -0
- data/bridge/sdk-core/core/src/worker/workflow/run_cache.rs +145 -0
- data/bridge/sdk-core/core/src/worker/workflow/wft_poller.rs +88 -0
- data/bridge/sdk-core/core/src/worker/workflow/workflow_stream.rs +940 -0
- data/bridge/sdk-core/core-api/Cargo.toml +31 -0
- data/bridge/sdk-core/core-api/LICENSE.txt +23 -0
- data/bridge/sdk-core/core-api/src/errors.rs +95 -0
- data/bridge/sdk-core/core-api/src/lib.rs +151 -0
- data/bridge/sdk-core/core-api/src/worker.rs +135 -0
- data/bridge/sdk-core/etc/deps.svg +187 -0
- data/bridge/sdk-core/etc/dynamic-config.yaml +2 -0
- data/bridge/sdk-core/etc/otel-collector-config.yaml +36 -0
- data/bridge/sdk-core/etc/prometheus.yaml +6 -0
- data/bridge/sdk-core/fsm/Cargo.toml +18 -0
- data/bridge/sdk-core/fsm/LICENSE.txt +23 -0
- data/bridge/sdk-core/fsm/README.md +3 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/Cargo.toml +27 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/LICENSE.txt +23 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/src/lib.rs +647 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/progress.rs +8 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/dupe_transitions_fail.rs +18 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/dupe_transitions_fail.stderr +12 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/dynamic_dest_pass.rs +41 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/forgot_name_fail.rs +14 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/forgot_name_fail.stderr +11 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/handler_arg_pass.rs +32 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/handler_pass.rs +31 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/medium_complex_pass.rs +46 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.rs +29 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.stderr +12 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/simple_pass.rs +32 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/struct_event_variant_fail.rs +18 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/struct_event_variant_fail.stderr +5 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_more_item_event_variant_fail.rs +11 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_more_item_event_variant_fail.stderr +5 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_zero_item_event_variant_fail.rs +11 -0
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_zero_item_event_variant_fail.stderr +5 -0
- data/bridge/sdk-core/fsm/rustfsm_trait/Cargo.toml +14 -0
- data/bridge/sdk-core/fsm/rustfsm_trait/LICENSE.txt +23 -0
- data/bridge/sdk-core/fsm/rustfsm_trait/src/lib.rs +249 -0
- data/bridge/sdk-core/fsm/src/lib.rs +2 -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 +7 -0
- data/bridge/sdk-core/protos/api_upstream/README.md +9 -0
- data/bridge/sdk-core/protos/api_upstream/api-linter.yaml +40 -0
- data/bridge/sdk-core/protos/api_upstream/buf.yaml +12 -0
- data/bridge/sdk-core/protos/api_upstream/dependencies/gogoproto/gogo.proto +141 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/batch/v1/message.proto +86 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/cluster/v1/message.proto +83 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/command/v1/message.proto +259 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/common/v1/message.proto +112 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/batch_operation.proto +46 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/cluster.proto +40 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/command_type.proto +57 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/common.proto +55 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/event_type.proto +168 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +97 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/namespace.proto +51 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/query.proto +50 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/reset.proto +41 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/schedule.proto +60 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/task_queue.proto +59 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/update.proto +51 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/workflow.proto +122 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/errordetails/v1/message.proto +108 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/failure/v1/message.proto +114 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/filter/v1/message.proto +56 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/history/v1/message.proto +751 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/namespace/v1/message.proto +97 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +161 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +99 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/query/v1/message.proto +61 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/replication/v1/message.proto +55 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/schedule/v1/message.proto +300 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +108 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/update/v1/message.proto +46 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/version/v1/message.proto +59 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/workflow/v1/message.proto +145 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +1124 -0
- data/bridge/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +401 -0
- data/bridge/sdk-core/protos/grpc/health/v1/health.proto +63 -0
- data/bridge/sdk-core/protos/local/temporal/sdk/core/activity_result/activity_result.proto +78 -0
- data/bridge/sdk-core/protos/local/temporal/sdk/core/activity_task/activity_task.proto +79 -0
- data/bridge/sdk-core/protos/local/temporal/sdk/core/bridge/bridge.proto +210 -0
- data/bridge/sdk-core/protos/local/temporal/sdk/core/child_workflow/child_workflow.proto +77 -0
- data/bridge/sdk-core/protos/local/temporal/sdk/core/common/common.proto +15 -0
- data/bridge/sdk-core/protos/local/temporal/sdk/core/core_interface.proto +30 -0
- data/bridge/sdk-core/protos/local/temporal/sdk/core/external_data/external_data.proto +30 -0
- data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +261 -0
- data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +297 -0
- data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_completion/workflow_completion.proto +29 -0
- data/bridge/sdk-core/protos/testsrv_upstream/api-linter.yaml +38 -0
- data/bridge/sdk-core/protos/testsrv_upstream/buf.yaml +13 -0
- data/bridge/sdk-core/protos/testsrv_upstream/dependencies/gogoproto/gogo.proto +141 -0
- data/bridge/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/request_response.proto +63 -0
- data/bridge/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/service.proto +90 -0
- data/bridge/sdk-core/rustfmt.toml +1 -0
- data/bridge/sdk-core/sdk/Cargo.toml +47 -0
- data/bridge/sdk-core/sdk/LICENSE.txt +23 -0
- data/bridge/sdk-core/sdk/src/activity_context.rs +230 -0
- data/bridge/sdk-core/sdk/src/app_data.rs +37 -0
- data/bridge/sdk-core/sdk/src/conversions.rs +8 -0
- data/bridge/sdk-core/sdk/src/interceptors.rs +17 -0
- data/bridge/sdk-core/sdk/src/lib.rs +792 -0
- data/bridge/sdk-core/sdk/src/payload_converter.rs +11 -0
- data/bridge/sdk-core/sdk/src/workflow_context/options.rs +295 -0
- data/bridge/sdk-core/sdk/src/workflow_context.rs +683 -0
- data/bridge/sdk-core/sdk/src/workflow_future.rs +503 -0
- data/bridge/sdk-core/sdk-core-protos/Cargo.toml +30 -0
- data/bridge/sdk-core/sdk-core-protos/LICENSE.txt +23 -0
- data/bridge/sdk-core/sdk-core-protos/build.rs +108 -0
- data/bridge/sdk-core/sdk-core-protos/src/constants.rs +7 -0
- data/bridge/sdk-core/sdk-core-protos/src/history_builder.rs +497 -0
- data/bridge/sdk-core/sdk-core-protos/src/history_info.rs +230 -0
- data/bridge/sdk-core/sdk-core-protos/src/lib.rs +1910 -0
- data/bridge/sdk-core/sdk-core-protos/src/task_token.rs +38 -0
- data/bridge/sdk-core/sdk-core-protos/src/utilities.rs +14 -0
- data/bridge/sdk-core/test-utils/Cargo.toml +35 -0
- data/bridge/sdk-core/test-utils/src/canned_histories.rs +1579 -0
- data/bridge/sdk-core/test-utils/src/histfetch.rs +28 -0
- data/bridge/sdk-core/test-utils/src/lib.rs +598 -0
- data/bridge/sdk-core/tests/integ_tests/client_tests.rs +36 -0
- data/bridge/sdk-core/tests/integ_tests/ephemeral_server_tests.rs +128 -0
- data/bridge/sdk-core/tests/integ_tests/heartbeat_tests.rs +218 -0
- data/bridge/sdk-core/tests/integ_tests/polling_tests.rs +146 -0
- data/bridge/sdk-core/tests/integ_tests/queries_tests.rs +437 -0
- data/bridge/sdk-core/tests/integ_tests/visibility_tests.rs +93 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/activities.rs +878 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/appdata_propagation.rs +61 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/cancel_external.rs +59 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/cancel_wf.rs +58 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/child_workflows.rs +50 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/continue_as_new.rs +60 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/determinism.rs +54 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +634 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/patches.rs +113 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/replay.rs +137 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/resets.rs +93 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/signals.rs +167 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/stickyness.rs +99 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/timers.rs +131 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/upsert_search_attrs.rs +75 -0
- data/bridge/sdk-core/tests/integ_tests/workflow_tests.rs +587 -0
- data/bridge/sdk-core/tests/load_tests.rs +191 -0
- data/bridge/sdk-core/tests/main.rs +111 -0
- data/bridge/sdk-core/tests/runner.rs +93 -0
- data/bridge/src/connection.rs +167 -0
- data/bridge/src/lib.rs +180 -0
- data/bridge/src/runtime.rs +47 -0
- data/bridge/src/worker.rs +73 -0
- data/ext/Rakefile +9 -0
- data/lib/bridge.so +0 -0
- data/lib/gen/dependencies/gogoproto/gogo_pb.rb +14 -0
- data/lib/gen/temporal/api/batch/v1/message_pb.rb +48 -0
- data/lib/gen/temporal/api/cluster/v1/message_pb.rb +67 -0
- data/lib/gen/temporal/api/command/v1/message_pb.rb +166 -0
- data/lib/gen/temporal/api/common/v1/message_pb.rb +69 -0
- data/lib/gen/temporal/api/enums/v1/batch_operation_pb.rb +32 -0
- data/lib/gen/temporal/api/enums/v1/cluster_pb.rb +26 -0
- data/lib/gen/temporal/api/enums/v1/command_type_pb.rb +37 -0
- data/lib/gen/temporal/api/enums/v1/common_pb.rb +41 -0
- data/lib/gen/temporal/api/enums/v1/event_type_pb.rb +67 -0
- data/lib/gen/temporal/api/enums/v1/failed_cause_pb.rb +71 -0
- data/lib/gen/temporal/api/enums/v1/namespace_pb.rb +37 -0
- data/lib/gen/temporal/api/enums/v1/query_pb.rb +31 -0
- data/lib/gen/temporal/api/enums/v1/reset_pb.rb +24 -0
- data/lib/gen/temporal/api/enums/v1/schedule_pb.rb +28 -0
- data/lib/gen/temporal/api/enums/v1/task_queue_pb.rb +30 -0
- data/lib/gen/temporal/api/enums/v1/update_pb.rb +28 -0
- data/lib/gen/temporal/api/enums/v1/workflow_pb.rb +89 -0
- data/lib/gen/temporal/api/errordetails/v1/message_pb.rb +84 -0
- data/lib/gen/temporal/api/failure/v1/message_pb.rb +83 -0
- data/lib/gen/temporal/api/filter/v1/message_pb.rb +40 -0
- data/lib/gen/temporal/api/history/v1/message_pb.rb +489 -0
- data/lib/gen/temporal/api/namespace/v1/message_pb.rb +63 -0
- data/lib/gen/temporal/api/operatorservice/v1/request_response_pb.rb +125 -0
- data/lib/gen/temporal/api/operatorservice/v1/service_pb.rb +20 -0
- data/lib/gen/temporal/api/query/v1/message_pb.rb +38 -0
- data/lib/gen/temporal/api/replication/v1/message_pb.rb +37 -0
- data/lib/gen/temporal/api/schedule/v1/message_pb.rb +128 -0
- data/lib/gen/temporal/api/taskqueue/v1/message_pb.rb +73 -0
- data/lib/gen/temporal/api/update/v1/message_pb.rb +26 -0
- data/lib/gen/temporal/api/version/v1/message_pb.rb +41 -0
- data/lib/gen/temporal/api/workflow/v1/message_pb.rb +110 -0
- data/lib/gen/temporal/api/workflowservice/v1/request_response_pb.rb +771 -0
- data/lib/gen/temporal/api/workflowservice/v1/service_pb.rb +20 -0
- data/lib/gen/temporal/sdk/core/activity_result/activity_result_pb.rb +58 -0
- data/lib/gen/temporal/sdk/core/activity_task/activity_task_pb.rb +57 -0
- data/lib/gen/temporal/sdk/core/bridge/bridge_pb.rb +222 -0
- data/lib/gen/temporal/sdk/core/child_workflow/child_workflow_pb.rb +57 -0
- data/lib/gen/temporal/sdk/core/common/common_pb.rb +22 -0
- data/lib/gen/temporal/sdk/core/core_interface_pb.rb +34 -0
- data/lib/gen/temporal/sdk/core/external_data/external_data_pb.rb +27 -0
- data/lib/gen/temporal/sdk/core/workflow_activation/workflow_activation_pb.rb +164 -0
- data/lib/gen/temporal/sdk/core/workflow_commands/workflow_commands_pb.rb +192 -0
- data/lib/gen/temporal/sdk/core/workflow_completion/workflow_completion_pb.rb +34 -0
- data/lib/temporal/bridge.rb +14 -0
- data/lib/temporal/client/implementation.rb +339 -0
- data/lib/temporal/client/workflow_handle.rb +243 -0
- data/lib/temporal/client.rb +144 -0
- data/lib/temporal/connection.rb +736 -0
- data/lib/temporal/data_converter.rb +150 -0
- data/lib/temporal/error/failure.rb +194 -0
- data/lib/temporal/error/workflow_failure.rb +17 -0
- data/lib/temporal/errors.rb +22 -0
- data/lib/temporal/failure_converter/base.rb +26 -0
- data/lib/temporal/failure_converter/basic.rb +313 -0
- data/lib/temporal/failure_converter.rb +8 -0
- data/lib/temporal/interceptor/chain.rb +27 -0
- data/lib/temporal/interceptor/client.rb +102 -0
- data/lib/temporal/payload_codec/base.rb +32 -0
- data/lib/temporal/payload_converter/base.rb +24 -0
- data/lib/temporal/payload_converter/bytes.rb +26 -0
- data/lib/temporal/payload_converter/composite.rb +47 -0
- data/lib/temporal/payload_converter/encoding_base.rb +35 -0
- data/lib/temporal/payload_converter/json.rb +25 -0
- data/lib/temporal/payload_converter/nil.rb +25 -0
- data/lib/temporal/payload_converter.rb +14 -0
- data/lib/temporal/retry_policy.rb +82 -0
- data/lib/temporal/retry_state.rb +35 -0
- data/lib/temporal/runtime.rb +22 -0
- data/lib/temporal/timeout_type.rb +29 -0
- data/lib/temporal/version.rb +3 -0
- data/lib/temporal/workflow/execution_info.rb +54 -0
- data/lib/temporal/workflow/execution_status.rb +36 -0
- data/lib/temporal/workflow/id_reuse_policy.rb +36 -0
- data/lib/temporal/workflow/query_reject_condition.rb +33 -0
- data/lib/temporal.rb +8 -0
- data/lib/temporalio.rb +3 -0
- data/lib/thermite_patch.rb +23 -0
- data/temporalio.gemspec +41 -0
- metadata +583 -0
@@ -0,0 +1,2606 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 3
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "ahash"
|
7
|
+
version = "0.7.6"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
|
10
|
+
dependencies = [
|
11
|
+
"getrandom",
|
12
|
+
"once_cell",
|
13
|
+
"version_check",
|
14
|
+
]
|
15
|
+
|
16
|
+
[[package]]
|
17
|
+
name = "aho-corasick"
|
18
|
+
version = "0.7.18"
|
19
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
20
|
+
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
|
21
|
+
dependencies = [
|
22
|
+
"memchr",
|
23
|
+
]
|
24
|
+
|
25
|
+
[[package]]
|
26
|
+
name = "ansi_term"
|
27
|
+
version = "0.12.1"
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
29
|
+
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
|
30
|
+
dependencies = [
|
31
|
+
"winapi",
|
32
|
+
]
|
33
|
+
|
34
|
+
[[package]]
|
35
|
+
name = "anyhow"
|
36
|
+
version = "1.0.57"
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
|
+
checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc"
|
39
|
+
|
40
|
+
[[package]]
|
41
|
+
name = "arc-swap"
|
42
|
+
version = "1.5.0"
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
+
checksum = "c5d78ce20460b82d3fa150275ed9d55e21064fc7951177baacf86a145c4a4b1f"
|
45
|
+
|
46
|
+
[[package]]
|
47
|
+
name = "assert_matches"
|
48
|
+
version = "1.5.0"
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
+
checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
|
51
|
+
|
52
|
+
[[package]]
|
53
|
+
name = "async-channel"
|
54
|
+
version = "1.6.1"
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
|
+
checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319"
|
57
|
+
dependencies = [
|
58
|
+
"concurrent-queue",
|
59
|
+
"event-listener",
|
60
|
+
"futures-core",
|
61
|
+
]
|
62
|
+
|
63
|
+
[[package]]
|
64
|
+
name = "async-stream"
|
65
|
+
version = "0.3.3"
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
67
|
+
checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
|
68
|
+
dependencies = [
|
69
|
+
"async-stream-impl",
|
70
|
+
"futures-core",
|
71
|
+
]
|
72
|
+
|
73
|
+
[[package]]
|
74
|
+
name = "async-stream-impl"
|
75
|
+
version = "0.3.3"
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
77
|
+
checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
|
78
|
+
dependencies = [
|
79
|
+
"proc-macro2",
|
80
|
+
"quote",
|
81
|
+
"syn",
|
82
|
+
]
|
83
|
+
|
84
|
+
[[package]]
|
85
|
+
name = "async-trait"
|
86
|
+
version = "0.1.53"
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
88
|
+
checksum = "ed6aa3524a2dfcf9fe180c51eae2b58738348d819517ceadf95789c51fff7600"
|
89
|
+
dependencies = [
|
90
|
+
"proc-macro2",
|
91
|
+
"quote",
|
92
|
+
"syn",
|
93
|
+
]
|
94
|
+
|
95
|
+
[[package]]
|
96
|
+
name = "atty"
|
97
|
+
version = "0.2.14"
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
99
|
+
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
100
|
+
dependencies = [
|
101
|
+
"hermit-abi",
|
102
|
+
"libc",
|
103
|
+
"winapi",
|
104
|
+
]
|
105
|
+
|
106
|
+
[[package]]
|
107
|
+
name = "autocfg"
|
108
|
+
version = "1.1.0"
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
110
|
+
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
111
|
+
|
112
|
+
[[package]]
|
113
|
+
name = "backoff"
|
114
|
+
version = "0.4.0"
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
116
|
+
checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
|
117
|
+
dependencies = [
|
118
|
+
"getrandom",
|
119
|
+
"instant",
|
120
|
+
"rand",
|
121
|
+
]
|
122
|
+
|
123
|
+
[[package]]
|
124
|
+
name = "base64"
|
125
|
+
version = "0.13.0"
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
127
|
+
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
|
128
|
+
|
129
|
+
[[package]]
|
130
|
+
name = "bimap"
|
131
|
+
version = "0.6.2"
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
133
|
+
checksum = "bc0455254eb5c6964c4545d8bac815e1a1be4f3afe0ae695ea539c12d728d44b"
|
134
|
+
|
135
|
+
[[package]]
|
136
|
+
name = "bitflags"
|
137
|
+
version = "1.3.2"
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
139
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
140
|
+
|
141
|
+
[[package]]
|
142
|
+
name = "block-buffer"
|
143
|
+
version = "0.10.2"
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
145
|
+
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
|
146
|
+
dependencies = [
|
147
|
+
"generic-array",
|
148
|
+
]
|
149
|
+
|
150
|
+
[[package]]
|
151
|
+
name = "bstr"
|
152
|
+
version = "0.2.17"
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
154
|
+
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
|
155
|
+
dependencies = [
|
156
|
+
"lazy_static",
|
157
|
+
"memchr",
|
158
|
+
"regex-automata",
|
159
|
+
"serde",
|
160
|
+
]
|
161
|
+
|
162
|
+
[[package]]
|
163
|
+
name = "bumpalo"
|
164
|
+
version = "3.9.1"
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
166
|
+
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
|
167
|
+
|
168
|
+
[[package]]
|
169
|
+
name = "bytes"
|
170
|
+
version = "1.1.0"
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
172
|
+
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
|
173
|
+
|
174
|
+
[[package]]
|
175
|
+
name = "cache-padded"
|
176
|
+
version = "1.2.0"
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
178
|
+
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
|
179
|
+
|
180
|
+
[[package]]
|
181
|
+
name = "cast"
|
182
|
+
version = "0.2.7"
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
184
|
+
checksum = "4c24dab4283a142afa2fdca129b80ad2c6284e073930f964c3a1293c225ee39a"
|
185
|
+
dependencies = [
|
186
|
+
"rustc_version",
|
187
|
+
]
|
188
|
+
|
189
|
+
[[package]]
|
190
|
+
name = "cbindgen"
|
191
|
+
version = "0.20.0"
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
193
|
+
checksum = "51e3973b165dc0f435831a9e426de67e894de532754ff7a3f307c03ee5dec7dc"
|
194
|
+
dependencies = [
|
195
|
+
"clap",
|
196
|
+
"heck",
|
197
|
+
"indexmap",
|
198
|
+
"log",
|
199
|
+
"proc-macro2",
|
200
|
+
"quote",
|
201
|
+
"serde",
|
202
|
+
"serde_json",
|
203
|
+
"syn",
|
204
|
+
"tempfile",
|
205
|
+
"toml",
|
206
|
+
]
|
207
|
+
|
208
|
+
[[package]]
|
209
|
+
name = "cc"
|
210
|
+
version = "1.0.73"
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
212
|
+
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
|
213
|
+
|
214
|
+
[[package]]
|
215
|
+
name = "cfg-if"
|
216
|
+
version = "1.0.0"
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
218
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
219
|
+
|
220
|
+
[[package]]
|
221
|
+
name = "clap"
|
222
|
+
version = "2.34.0"
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
224
|
+
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
|
225
|
+
dependencies = [
|
226
|
+
"ansi_term",
|
227
|
+
"atty",
|
228
|
+
"bitflags",
|
229
|
+
"strsim 0.8.0",
|
230
|
+
"textwrap",
|
231
|
+
"unicode-width",
|
232
|
+
"vec_map",
|
233
|
+
]
|
234
|
+
|
235
|
+
[[package]]
|
236
|
+
name = "concurrent-queue"
|
237
|
+
version = "1.2.2"
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
239
|
+
checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
|
240
|
+
dependencies = [
|
241
|
+
"cache-padded",
|
242
|
+
]
|
243
|
+
|
244
|
+
[[package]]
|
245
|
+
name = "convert_case"
|
246
|
+
version = "0.4.0"
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
+
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
249
|
+
|
250
|
+
[[package]]
|
251
|
+
name = "core-foundation"
|
252
|
+
version = "0.9.3"
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
254
|
+
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
|
255
|
+
dependencies = [
|
256
|
+
"core-foundation-sys",
|
257
|
+
"libc",
|
258
|
+
]
|
259
|
+
|
260
|
+
[[package]]
|
261
|
+
name = "core-foundation-sys"
|
262
|
+
version = "0.8.3"
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
264
|
+
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
|
265
|
+
|
266
|
+
[[package]]
|
267
|
+
name = "cpufeatures"
|
268
|
+
version = "0.2.2"
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
270
|
+
checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
|
271
|
+
dependencies = [
|
272
|
+
"libc",
|
273
|
+
]
|
274
|
+
|
275
|
+
[[package]]
|
276
|
+
name = "criterion"
|
277
|
+
version = "0.3.5"
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
279
|
+
checksum = "1604dafd25fba2fe2d5895a9da139f8dc9b319a5fe5354ca137cbbce4e178d10"
|
280
|
+
dependencies = [
|
281
|
+
"atty",
|
282
|
+
"cast",
|
283
|
+
"clap",
|
284
|
+
"criterion-plot",
|
285
|
+
"csv",
|
286
|
+
"itertools",
|
287
|
+
"lazy_static",
|
288
|
+
"num-traits",
|
289
|
+
"oorandom",
|
290
|
+
"plotters",
|
291
|
+
"rayon",
|
292
|
+
"regex",
|
293
|
+
"serde",
|
294
|
+
"serde_cbor",
|
295
|
+
"serde_derive",
|
296
|
+
"serde_json",
|
297
|
+
"tinytemplate",
|
298
|
+
"walkdir",
|
299
|
+
]
|
300
|
+
|
301
|
+
[[package]]
|
302
|
+
name = "criterion-plot"
|
303
|
+
version = "0.4.4"
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
305
|
+
checksum = "d00996de9f2f7559f7f4dc286073197f83e92256a59ed395f9aac01fe717da57"
|
306
|
+
dependencies = [
|
307
|
+
"cast",
|
308
|
+
"itertools",
|
309
|
+
]
|
310
|
+
|
311
|
+
[[package]]
|
312
|
+
name = "crossbeam"
|
313
|
+
version = "0.8.1"
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
315
|
+
checksum = "4ae5588f6b3c3cb05239e90bd110f257254aecd01e4635400391aeae07497845"
|
316
|
+
dependencies = [
|
317
|
+
"cfg-if",
|
318
|
+
"crossbeam-channel",
|
319
|
+
"crossbeam-deque",
|
320
|
+
"crossbeam-epoch",
|
321
|
+
"crossbeam-queue",
|
322
|
+
"crossbeam-utils",
|
323
|
+
]
|
324
|
+
|
325
|
+
[[package]]
|
326
|
+
name = "crossbeam-channel"
|
327
|
+
version = "0.5.4"
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
329
|
+
checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53"
|
330
|
+
dependencies = [
|
331
|
+
"cfg-if",
|
332
|
+
"crossbeam-utils",
|
333
|
+
]
|
334
|
+
|
335
|
+
[[package]]
|
336
|
+
name = "crossbeam-deque"
|
337
|
+
version = "0.8.1"
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
339
|
+
checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
|
340
|
+
dependencies = [
|
341
|
+
"cfg-if",
|
342
|
+
"crossbeam-epoch",
|
343
|
+
"crossbeam-utils",
|
344
|
+
]
|
345
|
+
|
346
|
+
[[package]]
|
347
|
+
name = "crossbeam-epoch"
|
348
|
+
version = "0.9.8"
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
350
|
+
checksum = "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c"
|
351
|
+
dependencies = [
|
352
|
+
"autocfg",
|
353
|
+
"cfg-if",
|
354
|
+
"crossbeam-utils",
|
355
|
+
"lazy_static",
|
356
|
+
"memoffset",
|
357
|
+
"scopeguard",
|
358
|
+
]
|
359
|
+
|
360
|
+
[[package]]
|
361
|
+
name = "crossbeam-queue"
|
362
|
+
version = "0.3.5"
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
364
|
+
checksum = "1f25d8400f4a7a5778f0e4e52384a48cbd9b5c495d110786187fc750075277a2"
|
365
|
+
dependencies = [
|
366
|
+
"cfg-if",
|
367
|
+
"crossbeam-utils",
|
368
|
+
]
|
369
|
+
|
370
|
+
[[package]]
|
371
|
+
name = "crossbeam-utils"
|
372
|
+
version = "0.8.8"
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
374
|
+
checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
|
375
|
+
dependencies = [
|
376
|
+
"cfg-if",
|
377
|
+
"lazy_static",
|
378
|
+
]
|
379
|
+
|
380
|
+
[[package]]
|
381
|
+
name = "crypto-common"
|
382
|
+
version = "0.1.3"
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
384
|
+
checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8"
|
385
|
+
dependencies = [
|
386
|
+
"generic-array",
|
387
|
+
"typenum",
|
388
|
+
]
|
389
|
+
|
390
|
+
[[package]]
|
391
|
+
name = "csv"
|
392
|
+
version = "1.1.6"
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
394
|
+
checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
|
395
|
+
dependencies = [
|
396
|
+
"bstr",
|
397
|
+
"csv-core",
|
398
|
+
"itoa 0.4.8",
|
399
|
+
"ryu",
|
400
|
+
"serde",
|
401
|
+
]
|
402
|
+
|
403
|
+
[[package]]
|
404
|
+
name = "csv-core"
|
405
|
+
version = "0.1.10"
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
407
|
+
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
|
408
|
+
dependencies = [
|
409
|
+
"memchr",
|
410
|
+
]
|
411
|
+
|
412
|
+
[[package]]
|
413
|
+
name = "darling"
|
414
|
+
version = "0.14.1"
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
416
|
+
checksum = "4529658bdda7fd6769b8614be250cdcfc3aeb0ee72fe66f9e41e5e5eb73eac02"
|
417
|
+
dependencies = [
|
418
|
+
"darling_core",
|
419
|
+
"darling_macro",
|
420
|
+
]
|
421
|
+
|
422
|
+
[[package]]
|
423
|
+
name = "darling_core"
|
424
|
+
version = "0.14.1"
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
426
|
+
checksum = "649c91bc01e8b1eac09fb91e8dbc7d517684ca6be8ebc75bb9cafc894f9fdb6f"
|
427
|
+
dependencies = [
|
428
|
+
"fnv",
|
429
|
+
"ident_case",
|
430
|
+
"proc-macro2",
|
431
|
+
"quote",
|
432
|
+
"strsim 0.10.0",
|
433
|
+
"syn",
|
434
|
+
]
|
435
|
+
|
436
|
+
[[package]]
|
437
|
+
name = "darling_macro"
|
438
|
+
version = "0.14.1"
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
440
|
+
checksum = "ddfc69c5bfcbd2fc09a0f38451d2daf0e372e367986a83906d1b0dbc88134fb5"
|
441
|
+
dependencies = [
|
442
|
+
"darling_core",
|
443
|
+
"quote",
|
444
|
+
"syn",
|
445
|
+
]
|
446
|
+
|
447
|
+
[[package]]
|
448
|
+
name = "dashmap"
|
449
|
+
version = "4.0.2"
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
451
|
+
checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c"
|
452
|
+
dependencies = [
|
453
|
+
"cfg-if",
|
454
|
+
"num_cpus",
|
455
|
+
]
|
456
|
+
|
457
|
+
[[package]]
|
458
|
+
name = "dashmap"
|
459
|
+
version = "5.3.3"
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
461
|
+
checksum = "391b56fbd302e585b7a9494fb70e40949567b1cf9003a8e4a6041a1687c26573"
|
462
|
+
dependencies = [
|
463
|
+
"cfg-if",
|
464
|
+
"hashbrown 0.12.1",
|
465
|
+
"lock_api",
|
466
|
+
]
|
467
|
+
|
468
|
+
[[package]]
|
469
|
+
name = "derive_builder"
|
470
|
+
version = "0.11.2"
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
472
|
+
checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3"
|
473
|
+
dependencies = [
|
474
|
+
"derive_builder_macro",
|
475
|
+
]
|
476
|
+
|
477
|
+
[[package]]
|
478
|
+
name = "derive_builder_core"
|
479
|
+
version = "0.11.2"
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
481
|
+
checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4"
|
482
|
+
dependencies = [
|
483
|
+
"darling",
|
484
|
+
"proc-macro2",
|
485
|
+
"quote",
|
486
|
+
"syn",
|
487
|
+
]
|
488
|
+
|
489
|
+
[[package]]
|
490
|
+
name = "derive_builder_macro"
|
491
|
+
version = "0.11.2"
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
493
|
+
checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68"
|
494
|
+
dependencies = [
|
495
|
+
"derive_builder_core",
|
496
|
+
"syn",
|
497
|
+
]
|
498
|
+
|
499
|
+
[[package]]
|
500
|
+
name = "derive_more"
|
501
|
+
version = "0.99.17"
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
503
|
+
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
|
504
|
+
dependencies = [
|
505
|
+
"convert_case",
|
506
|
+
"proc-macro2",
|
507
|
+
"quote",
|
508
|
+
"rustc_version",
|
509
|
+
"syn",
|
510
|
+
]
|
511
|
+
|
512
|
+
[[package]]
|
513
|
+
name = "difflib"
|
514
|
+
version = "0.4.0"
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
516
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
517
|
+
|
518
|
+
[[package]]
|
519
|
+
name = "digest"
|
520
|
+
version = "0.10.3"
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
522
|
+
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
|
523
|
+
dependencies = [
|
524
|
+
"block-buffer",
|
525
|
+
"crypto-common",
|
526
|
+
]
|
527
|
+
|
528
|
+
[[package]]
|
529
|
+
name = "dissimilar"
|
530
|
+
version = "1.0.4"
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
532
|
+
checksum = "8c97b9233581d84b8e1e689cdd3a47b6f69770084fc246e86a7f78b0d9c1d4a5"
|
533
|
+
|
534
|
+
[[package]]
|
535
|
+
name = "downcast"
|
536
|
+
version = "0.11.0"
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
538
|
+
checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
|
539
|
+
|
540
|
+
[[package]]
|
541
|
+
name = "either"
|
542
|
+
version = "1.6.1"
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
544
|
+
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
|
545
|
+
|
546
|
+
[[package]]
|
547
|
+
name = "enum_dispatch"
|
548
|
+
version = "0.3.8"
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
550
|
+
checksum = "0eb359f1476bf611266ac1f5355bc14aeca37b299d0ebccc038ee7058891c9cb"
|
551
|
+
dependencies = [
|
552
|
+
"once_cell",
|
553
|
+
"proc-macro2",
|
554
|
+
"quote",
|
555
|
+
"syn",
|
556
|
+
]
|
557
|
+
|
558
|
+
[[package]]
|
559
|
+
name = "event-listener"
|
560
|
+
version = "2.5.2"
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
562
|
+
checksum = "77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71"
|
563
|
+
|
564
|
+
[[package]]
|
565
|
+
name = "fastrand"
|
566
|
+
version = "1.7.0"
|
567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
568
|
+
checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
|
569
|
+
dependencies = [
|
570
|
+
"instant",
|
571
|
+
]
|
572
|
+
|
573
|
+
[[package]]
|
574
|
+
name = "fixedbitset"
|
575
|
+
version = "0.4.1"
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
577
|
+
checksum = "279fb028e20b3c4c320317955b77c5e0c9701f05a1d309905d6fc702cdc5053e"
|
578
|
+
|
579
|
+
[[package]]
|
580
|
+
name = "float-cmp"
|
581
|
+
version = "0.9.0"
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
583
|
+
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
584
|
+
dependencies = [
|
585
|
+
"num-traits",
|
586
|
+
]
|
587
|
+
|
588
|
+
[[package]]
|
589
|
+
name = "fnv"
|
590
|
+
version = "1.0.7"
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
592
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
593
|
+
|
594
|
+
[[package]]
|
595
|
+
name = "form_urlencoded"
|
596
|
+
version = "1.0.1"
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
598
|
+
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
|
599
|
+
dependencies = [
|
600
|
+
"matches",
|
601
|
+
"percent-encoding",
|
602
|
+
]
|
603
|
+
|
604
|
+
[[package]]
|
605
|
+
name = "fragile"
|
606
|
+
version = "1.2.0"
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
608
|
+
checksum = "e9d758e60b45e8d749c89c1b389ad8aee550f86aa12e2b9298b546dda7a82ab1"
|
609
|
+
|
610
|
+
[[package]]
|
611
|
+
name = "futures"
|
612
|
+
version = "0.3.21"
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
614
|
+
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
|
615
|
+
dependencies = [
|
616
|
+
"futures-channel",
|
617
|
+
"futures-core",
|
618
|
+
"futures-executor",
|
619
|
+
"futures-io",
|
620
|
+
"futures-sink",
|
621
|
+
"futures-task",
|
622
|
+
"futures-util",
|
623
|
+
]
|
624
|
+
|
625
|
+
[[package]]
|
626
|
+
name = "futures-channel"
|
627
|
+
version = "0.3.21"
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
629
|
+
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
|
630
|
+
dependencies = [
|
631
|
+
"futures-core",
|
632
|
+
"futures-sink",
|
633
|
+
]
|
634
|
+
|
635
|
+
[[package]]
|
636
|
+
name = "futures-core"
|
637
|
+
version = "0.3.21"
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
639
|
+
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
|
640
|
+
|
641
|
+
[[package]]
|
642
|
+
name = "futures-executor"
|
643
|
+
version = "0.3.21"
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
645
|
+
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
|
646
|
+
dependencies = [
|
647
|
+
"futures-core",
|
648
|
+
"futures-task",
|
649
|
+
"futures-util",
|
650
|
+
]
|
651
|
+
|
652
|
+
[[package]]
|
653
|
+
name = "futures-io"
|
654
|
+
version = "0.3.21"
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
656
|
+
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
|
657
|
+
|
658
|
+
[[package]]
|
659
|
+
name = "futures-macro"
|
660
|
+
version = "0.3.21"
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
662
|
+
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
|
663
|
+
dependencies = [
|
664
|
+
"proc-macro2",
|
665
|
+
"quote",
|
666
|
+
"syn",
|
667
|
+
]
|
668
|
+
|
669
|
+
[[package]]
|
670
|
+
name = "futures-retry"
|
671
|
+
version = "0.6.0"
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
+
checksum = "fde5a672a61f96552aa5ed9fd9c81c3fbdae4be9b1e205d6eaf17c83705adc0f"
|
674
|
+
dependencies = [
|
675
|
+
"futures",
|
676
|
+
"pin-project-lite",
|
677
|
+
"tokio",
|
678
|
+
]
|
679
|
+
|
680
|
+
[[package]]
|
681
|
+
name = "futures-sink"
|
682
|
+
version = "0.3.21"
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
684
|
+
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
|
685
|
+
|
686
|
+
[[package]]
|
687
|
+
name = "futures-task"
|
688
|
+
version = "0.3.21"
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
690
|
+
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
|
691
|
+
|
692
|
+
[[package]]
|
693
|
+
name = "futures-util"
|
694
|
+
version = "0.3.21"
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
696
|
+
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
|
697
|
+
dependencies = [
|
698
|
+
"futures-channel",
|
699
|
+
"futures-core",
|
700
|
+
"futures-io",
|
701
|
+
"futures-macro",
|
702
|
+
"futures-sink",
|
703
|
+
"futures-task",
|
704
|
+
"memchr",
|
705
|
+
"pin-project-lite",
|
706
|
+
"pin-utils",
|
707
|
+
"slab",
|
708
|
+
]
|
709
|
+
|
710
|
+
[[package]]
|
711
|
+
name = "generic-array"
|
712
|
+
version = "0.14.5"
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
714
|
+
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
|
715
|
+
dependencies = [
|
716
|
+
"typenum",
|
717
|
+
"version_check",
|
718
|
+
]
|
719
|
+
|
720
|
+
[[package]]
|
721
|
+
name = "getrandom"
|
722
|
+
version = "0.2.6"
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
724
|
+
checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
|
725
|
+
dependencies = [
|
726
|
+
"cfg-if",
|
727
|
+
"libc",
|
728
|
+
"wasi 0.10.2+wasi-snapshot-preview1",
|
729
|
+
]
|
730
|
+
|
731
|
+
[[package]]
|
732
|
+
name = "glob"
|
733
|
+
version = "0.3.0"
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
735
|
+
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
736
|
+
|
737
|
+
[[package]]
|
738
|
+
name = "h2"
|
739
|
+
version = "0.3.13"
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
741
|
+
checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
|
742
|
+
dependencies = [
|
743
|
+
"bytes",
|
744
|
+
"fnv",
|
745
|
+
"futures-core",
|
746
|
+
"futures-sink",
|
747
|
+
"futures-util",
|
748
|
+
"http",
|
749
|
+
"indexmap",
|
750
|
+
"slab",
|
751
|
+
"tokio",
|
752
|
+
"tokio-util 0.7.2",
|
753
|
+
"tracing",
|
754
|
+
]
|
755
|
+
|
756
|
+
[[package]]
|
757
|
+
name = "half"
|
758
|
+
version = "1.8.2"
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
760
|
+
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
|
761
|
+
|
762
|
+
[[package]]
|
763
|
+
name = "hashbrown"
|
764
|
+
version = "0.11.2"
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
766
|
+
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
|
767
|
+
dependencies = [
|
768
|
+
"ahash",
|
769
|
+
]
|
770
|
+
|
771
|
+
[[package]]
|
772
|
+
name = "hashbrown"
|
773
|
+
version = "0.12.1"
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
775
|
+
checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
|
776
|
+
|
777
|
+
[[package]]
|
778
|
+
name = "heck"
|
779
|
+
version = "0.3.3"
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
781
|
+
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
|
782
|
+
dependencies = [
|
783
|
+
"unicode-segmentation",
|
784
|
+
]
|
785
|
+
|
786
|
+
[[package]]
|
787
|
+
name = "hermit-abi"
|
788
|
+
version = "0.1.19"
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
790
|
+
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
791
|
+
dependencies = [
|
792
|
+
"libc",
|
793
|
+
]
|
794
|
+
|
795
|
+
[[package]]
|
796
|
+
name = "http"
|
797
|
+
version = "0.2.7"
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
799
|
+
checksum = "ff8670570af52249509a86f5e3e18a08c60b177071826898fde8997cf5f6bfbb"
|
800
|
+
dependencies = [
|
801
|
+
"bytes",
|
802
|
+
"fnv",
|
803
|
+
"itoa 1.0.2",
|
804
|
+
]
|
805
|
+
|
806
|
+
[[package]]
|
807
|
+
name = "http-body"
|
808
|
+
version = "0.4.5"
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
810
|
+
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
|
811
|
+
dependencies = [
|
812
|
+
"bytes",
|
813
|
+
"http",
|
814
|
+
"pin-project-lite",
|
815
|
+
]
|
816
|
+
|
817
|
+
[[package]]
|
818
|
+
name = "httparse"
|
819
|
+
version = "1.7.1"
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
821
|
+
checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
|
822
|
+
|
823
|
+
[[package]]
|
824
|
+
name = "httpdate"
|
825
|
+
version = "1.0.2"
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
827
|
+
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
828
|
+
|
829
|
+
[[package]]
|
830
|
+
name = "hyper"
|
831
|
+
version = "0.14.18"
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
833
|
+
checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2"
|
834
|
+
dependencies = [
|
835
|
+
"bytes",
|
836
|
+
"futures-channel",
|
837
|
+
"futures-core",
|
838
|
+
"futures-util",
|
839
|
+
"h2",
|
840
|
+
"http",
|
841
|
+
"http-body",
|
842
|
+
"httparse",
|
843
|
+
"httpdate",
|
844
|
+
"itoa 1.0.2",
|
845
|
+
"pin-project-lite",
|
846
|
+
"socket2",
|
847
|
+
"tokio",
|
848
|
+
"tower-service",
|
849
|
+
"tracing",
|
850
|
+
"want",
|
851
|
+
]
|
852
|
+
|
853
|
+
[[package]]
|
854
|
+
name = "hyper-timeout"
|
855
|
+
version = "0.4.1"
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
857
|
+
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
|
858
|
+
dependencies = [
|
859
|
+
"hyper",
|
860
|
+
"pin-project-lite",
|
861
|
+
"tokio",
|
862
|
+
"tokio-io-timeout",
|
863
|
+
]
|
864
|
+
|
865
|
+
[[package]]
|
866
|
+
name = "ident_case"
|
867
|
+
version = "1.0.1"
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
869
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
870
|
+
|
871
|
+
[[package]]
|
872
|
+
name = "idna"
|
873
|
+
version = "0.2.3"
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
875
|
+
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
|
876
|
+
dependencies = [
|
877
|
+
"matches",
|
878
|
+
"unicode-bidi",
|
879
|
+
"unicode-normalization",
|
880
|
+
]
|
881
|
+
|
882
|
+
[[package]]
|
883
|
+
name = "indexmap"
|
884
|
+
version = "1.7.0"
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
886
|
+
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
|
887
|
+
dependencies = [
|
888
|
+
"autocfg",
|
889
|
+
"hashbrown 0.11.2",
|
890
|
+
]
|
891
|
+
|
892
|
+
[[package]]
|
893
|
+
name = "instant"
|
894
|
+
version = "0.1.12"
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
896
|
+
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
897
|
+
dependencies = [
|
898
|
+
"cfg-if",
|
899
|
+
]
|
900
|
+
|
901
|
+
[[package]]
|
902
|
+
name = "itertools"
|
903
|
+
version = "0.10.3"
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
905
|
+
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
|
906
|
+
dependencies = [
|
907
|
+
"either",
|
908
|
+
]
|
909
|
+
|
910
|
+
[[package]]
|
911
|
+
name = "itoa"
|
912
|
+
version = "0.4.8"
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
914
|
+
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
915
|
+
|
916
|
+
[[package]]
|
917
|
+
name = "itoa"
|
918
|
+
version = "1.0.2"
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
920
|
+
checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
|
921
|
+
|
922
|
+
[[package]]
|
923
|
+
name = "js-sys"
|
924
|
+
version = "0.3.57"
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
926
|
+
checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397"
|
927
|
+
dependencies = [
|
928
|
+
"wasm-bindgen",
|
929
|
+
]
|
930
|
+
|
931
|
+
[[package]]
|
932
|
+
name = "lazy_static"
|
933
|
+
version = "1.4.0"
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
935
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
936
|
+
|
937
|
+
[[package]]
|
938
|
+
name = "libc"
|
939
|
+
version = "0.2.126"
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
941
|
+
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
|
942
|
+
|
943
|
+
[[package]]
|
944
|
+
name = "lock_api"
|
945
|
+
version = "0.4.7"
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
947
|
+
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
|
948
|
+
dependencies = [
|
949
|
+
"autocfg",
|
950
|
+
"scopeguard",
|
951
|
+
]
|
952
|
+
|
953
|
+
[[package]]
|
954
|
+
name = "log"
|
955
|
+
version = "0.4.17"
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
957
|
+
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
958
|
+
dependencies = [
|
959
|
+
"cfg-if",
|
960
|
+
]
|
961
|
+
|
962
|
+
[[package]]
|
963
|
+
name = "lru"
|
964
|
+
version = "0.7.5"
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
966
|
+
checksum = "32613e41de4c47ab04970c348ca7ae7382cf116625755af070b008a15516a889"
|
967
|
+
dependencies = [
|
968
|
+
"hashbrown 0.11.2",
|
969
|
+
]
|
970
|
+
|
971
|
+
[[package]]
|
972
|
+
name = "matchers"
|
973
|
+
version = "0.1.0"
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
975
|
+
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
976
|
+
dependencies = [
|
977
|
+
"regex-automata",
|
978
|
+
]
|
979
|
+
|
980
|
+
[[package]]
|
981
|
+
name = "matches"
|
982
|
+
version = "0.1.9"
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
984
|
+
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
|
985
|
+
|
986
|
+
[[package]]
|
987
|
+
name = "memchr"
|
988
|
+
version = "2.5.0"
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
990
|
+
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
991
|
+
|
992
|
+
[[package]]
|
993
|
+
name = "memoffset"
|
994
|
+
version = "0.6.5"
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
996
|
+
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
|
997
|
+
dependencies = [
|
998
|
+
"autocfg",
|
999
|
+
]
|
1000
|
+
|
1001
|
+
[[package]]
|
1002
|
+
name = "mio"
|
1003
|
+
version = "0.8.3"
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1005
|
+
checksum = "713d550d9b44d89174e066b7a6217ae06234c10cb47819a88290d2b353c31799"
|
1006
|
+
dependencies = [
|
1007
|
+
"libc",
|
1008
|
+
"log",
|
1009
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
1010
|
+
"windows-sys",
|
1011
|
+
]
|
1012
|
+
|
1013
|
+
[[package]]
|
1014
|
+
name = "mockall"
|
1015
|
+
version = "0.11.1"
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1017
|
+
checksum = "5641e476bbaf592a3939a7485fa079f427b4db21407d5ebfd5bba4e07a1f6f4c"
|
1018
|
+
dependencies = [
|
1019
|
+
"cfg-if",
|
1020
|
+
"downcast",
|
1021
|
+
"fragile",
|
1022
|
+
"lazy_static",
|
1023
|
+
"mockall_derive",
|
1024
|
+
"predicates",
|
1025
|
+
"predicates-tree",
|
1026
|
+
]
|
1027
|
+
|
1028
|
+
[[package]]
|
1029
|
+
name = "mockall_derive"
|
1030
|
+
version = "0.11.1"
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1032
|
+
checksum = "262d56735932ee0240d515656e5a7667af3af2a5b0af4da558c4cff2b2aeb0c7"
|
1033
|
+
dependencies = [
|
1034
|
+
"cfg-if",
|
1035
|
+
"proc-macro2",
|
1036
|
+
"quote",
|
1037
|
+
"syn",
|
1038
|
+
]
|
1039
|
+
|
1040
|
+
[[package]]
|
1041
|
+
name = "multimap"
|
1042
|
+
version = "0.8.3"
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1044
|
+
checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
|
1045
|
+
|
1046
|
+
[[package]]
|
1047
|
+
name = "normalize-line-endings"
|
1048
|
+
version = "0.3.0"
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1050
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
1051
|
+
|
1052
|
+
[[package]]
|
1053
|
+
name = "num-traits"
|
1054
|
+
version = "0.2.15"
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1056
|
+
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
|
1057
|
+
dependencies = [
|
1058
|
+
"autocfg",
|
1059
|
+
]
|
1060
|
+
|
1061
|
+
[[package]]
|
1062
|
+
name = "num_cpus"
|
1063
|
+
version = "1.13.1"
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1065
|
+
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
|
1066
|
+
dependencies = [
|
1067
|
+
"hermit-abi",
|
1068
|
+
"libc",
|
1069
|
+
]
|
1070
|
+
|
1071
|
+
[[package]]
|
1072
|
+
name = "once_cell"
|
1073
|
+
version = "1.12.0"
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1075
|
+
checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225"
|
1076
|
+
|
1077
|
+
[[package]]
|
1078
|
+
name = "oorandom"
|
1079
|
+
version = "11.1.3"
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1081
|
+
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
|
1082
|
+
|
1083
|
+
[[package]]
|
1084
|
+
name = "openssl-probe"
|
1085
|
+
version = "0.1.5"
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1087
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
1088
|
+
|
1089
|
+
[[package]]
|
1090
|
+
name = "opentelemetry"
|
1091
|
+
version = "0.17.0"
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1093
|
+
checksum = "6105e89802af13fdf48c49d7646d3b533a70e536d818aae7e78ba0433d01acb8"
|
1094
|
+
dependencies = [
|
1095
|
+
"async-trait",
|
1096
|
+
"crossbeam-channel",
|
1097
|
+
"dashmap 4.0.2",
|
1098
|
+
"fnv",
|
1099
|
+
"futures-channel",
|
1100
|
+
"futures-executor",
|
1101
|
+
"futures-util",
|
1102
|
+
"js-sys",
|
1103
|
+
"lazy_static",
|
1104
|
+
"percent-encoding",
|
1105
|
+
"pin-project",
|
1106
|
+
"rand",
|
1107
|
+
"thiserror",
|
1108
|
+
"tokio",
|
1109
|
+
"tokio-stream",
|
1110
|
+
]
|
1111
|
+
|
1112
|
+
[[package]]
|
1113
|
+
name = "opentelemetry-otlp"
|
1114
|
+
version = "0.10.0"
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1116
|
+
checksum = "9d1a6ca9de4c8b00aa7f1a153bd76cb263287155cec642680d79d98706f3d28a"
|
1117
|
+
dependencies = [
|
1118
|
+
"async-trait",
|
1119
|
+
"futures",
|
1120
|
+
"futures-util",
|
1121
|
+
"http",
|
1122
|
+
"opentelemetry",
|
1123
|
+
"prost",
|
1124
|
+
"thiserror",
|
1125
|
+
"tokio",
|
1126
|
+
"tonic",
|
1127
|
+
"tonic-build",
|
1128
|
+
]
|
1129
|
+
|
1130
|
+
[[package]]
|
1131
|
+
name = "opentelemetry-prometheus"
|
1132
|
+
version = "0.10.0"
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1134
|
+
checksum = "9328977e479cebe12ce0d3fcecdaea4721d234895a9440c5b5dfd113f0594ac6"
|
1135
|
+
dependencies = [
|
1136
|
+
"opentelemetry",
|
1137
|
+
"prometheus",
|
1138
|
+
"protobuf",
|
1139
|
+
]
|
1140
|
+
|
1141
|
+
[[package]]
|
1142
|
+
name = "parking_lot"
|
1143
|
+
version = "0.12.0"
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1145
|
+
checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58"
|
1146
|
+
dependencies = [
|
1147
|
+
"lock_api",
|
1148
|
+
"parking_lot_core",
|
1149
|
+
]
|
1150
|
+
|
1151
|
+
[[package]]
|
1152
|
+
name = "parking_lot_core"
|
1153
|
+
version = "0.9.3"
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1155
|
+
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
|
1156
|
+
dependencies = [
|
1157
|
+
"cfg-if",
|
1158
|
+
"libc",
|
1159
|
+
"redox_syscall",
|
1160
|
+
"smallvec",
|
1161
|
+
"windows-sys",
|
1162
|
+
]
|
1163
|
+
|
1164
|
+
[[package]]
|
1165
|
+
name = "percent-encoding"
|
1166
|
+
version = "2.1.0"
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1168
|
+
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
|
1169
|
+
|
1170
|
+
[[package]]
|
1171
|
+
name = "petgraph"
|
1172
|
+
version = "0.6.1"
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1174
|
+
checksum = "51b305cc4569dd4e8765bab46261f67ef5d4d11a4b6e745100ee5dad8948b46c"
|
1175
|
+
dependencies = [
|
1176
|
+
"fixedbitset",
|
1177
|
+
"indexmap",
|
1178
|
+
]
|
1179
|
+
|
1180
|
+
[[package]]
|
1181
|
+
name = "pin-project"
|
1182
|
+
version = "1.0.10"
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1184
|
+
checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e"
|
1185
|
+
dependencies = [
|
1186
|
+
"pin-project-internal",
|
1187
|
+
]
|
1188
|
+
|
1189
|
+
[[package]]
|
1190
|
+
name = "pin-project-internal"
|
1191
|
+
version = "1.0.10"
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1193
|
+
checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb"
|
1194
|
+
dependencies = [
|
1195
|
+
"proc-macro2",
|
1196
|
+
"quote",
|
1197
|
+
"syn",
|
1198
|
+
]
|
1199
|
+
|
1200
|
+
[[package]]
|
1201
|
+
name = "pin-project-lite"
|
1202
|
+
version = "0.2.9"
|
1203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1204
|
+
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
1205
|
+
|
1206
|
+
[[package]]
|
1207
|
+
name = "pin-utils"
|
1208
|
+
version = "0.1.0"
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1210
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1211
|
+
|
1212
|
+
[[package]]
|
1213
|
+
name = "plotters"
|
1214
|
+
version = "0.3.1"
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1216
|
+
checksum = "32a3fd9ec30b9749ce28cd91f255d569591cdf937fe280c312143e3c4bad6f2a"
|
1217
|
+
dependencies = [
|
1218
|
+
"num-traits",
|
1219
|
+
"plotters-backend",
|
1220
|
+
"plotters-svg",
|
1221
|
+
"wasm-bindgen",
|
1222
|
+
"web-sys",
|
1223
|
+
]
|
1224
|
+
|
1225
|
+
[[package]]
|
1226
|
+
name = "plotters-backend"
|
1227
|
+
version = "0.3.2"
|
1228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1229
|
+
checksum = "d88417318da0eaf0fdcdb51a0ee6c3bed624333bff8f946733049380be67ac1c"
|
1230
|
+
|
1231
|
+
[[package]]
|
1232
|
+
name = "plotters-svg"
|
1233
|
+
version = "0.3.1"
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1235
|
+
checksum = "521fa9638fa597e1dc53e9412a4f9cefb01187ee1f7413076f9e6749e2885ba9"
|
1236
|
+
dependencies = [
|
1237
|
+
"plotters-backend",
|
1238
|
+
]
|
1239
|
+
|
1240
|
+
[[package]]
|
1241
|
+
name = "ppv-lite86"
|
1242
|
+
version = "0.2.16"
|
1243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1244
|
+
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
|
1245
|
+
|
1246
|
+
[[package]]
|
1247
|
+
name = "predicates"
|
1248
|
+
version = "2.1.1"
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1250
|
+
checksum = "a5aab5be6e4732b473071984b3164dbbfb7a3674d30ea5ff44410b6bcd960c3c"
|
1251
|
+
dependencies = [
|
1252
|
+
"difflib",
|
1253
|
+
"float-cmp",
|
1254
|
+
"itertools",
|
1255
|
+
"normalize-line-endings",
|
1256
|
+
"predicates-core",
|
1257
|
+
"regex",
|
1258
|
+
]
|
1259
|
+
|
1260
|
+
[[package]]
|
1261
|
+
name = "predicates-core"
|
1262
|
+
version = "1.0.3"
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1264
|
+
checksum = "da1c2388b1513e1b605fcec39a95e0a9e8ef088f71443ef37099fa9ae6673fcb"
|
1265
|
+
|
1266
|
+
[[package]]
|
1267
|
+
name = "predicates-tree"
|
1268
|
+
version = "1.0.5"
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1270
|
+
checksum = "4d86de6de25020a36c6d3643a86d9a6a9f552107c0559c60ea03551b5e16c032"
|
1271
|
+
dependencies = [
|
1272
|
+
"predicates-core",
|
1273
|
+
"termtree",
|
1274
|
+
]
|
1275
|
+
|
1276
|
+
[[package]]
|
1277
|
+
name = "proc-macro2"
|
1278
|
+
version = "1.0.39"
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1280
|
+
checksum = "c54b25569025b7fc9651de43004ae593a75ad88543b17178aa5e1b9c4f15f56f"
|
1281
|
+
dependencies = [
|
1282
|
+
"unicode-ident",
|
1283
|
+
]
|
1284
|
+
|
1285
|
+
[[package]]
|
1286
|
+
name = "prometheus"
|
1287
|
+
version = "0.13.1"
|
1288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1289
|
+
checksum = "cface98dfa6d645ea4c789839f176e4b072265d085bfcc48eaa8d137f58d3c39"
|
1290
|
+
dependencies = [
|
1291
|
+
"cfg-if",
|
1292
|
+
"fnv",
|
1293
|
+
"lazy_static",
|
1294
|
+
"memchr",
|
1295
|
+
"parking_lot",
|
1296
|
+
"protobuf",
|
1297
|
+
"thiserror",
|
1298
|
+
]
|
1299
|
+
|
1300
|
+
[[package]]
|
1301
|
+
name = "prost"
|
1302
|
+
version = "0.9.0"
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1304
|
+
checksum = "444879275cb4fd84958b1a1d5420d15e6fcf7c235fe47f053c9c2a80aceb6001"
|
1305
|
+
dependencies = [
|
1306
|
+
"bytes",
|
1307
|
+
"prost-derive",
|
1308
|
+
]
|
1309
|
+
|
1310
|
+
[[package]]
|
1311
|
+
name = "prost-build"
|
1312
|
+
version = "0.9.0"
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1314
|
+
checksum = "62941722fb675d463659e49c4f3fe1fe792ff24fe5bbaa9c08cd3b98a1c354f5"
|
1315
|
+
dependencies = [
|
1316
|
+
"bytes",
|
1317
|
+
"heck",
|
1318
|
+
"itertools",
|
1319
|
+
"lazy_static",
|
1320
|
+
"log",
|
1321
|
+
"multimap",
|
1322
|
+
"petgraph",
|
1323
|
+
"prost",
|
1324
|
+
"prost-types",
|
1325
|
+
"regex",
|
1326
|
+
"tempfile",
|
1327
|
+
"which",
|
1328
|
+
]
|
1329
|
+
|
1330
|
+
[[package]]
|
1331
|
+
name = "prost-derive"
|
1332
|
+
version = "0.9.0"
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1334
|
+
checksum = "f9cc1a3263e07e0bf68e96268f37665207b49560d98739662cdfaae215c720fe"
|
1335
|
+
dependencies = [
|
1336
|
+
"anyhow",
|
1337
|
+
"itertools",
|
1338
|
+
"proc-macro2",
|
1339
|
+
"quote",
|
1340
|
+
"syn",
|
1341
|
+
]
|
1342
|
+
|
1343
|
+
[[package]]
|
1344
|
+
name = "prost-types"
|
1345
|
+
version = "0.9.0"
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1347
|
+
checksum = "534b7a0e836e3c482d2693070f982e39e7611da9695d4d1f5a4b186b51faef0a"
|
1348
|
+
dependencies = [
|
1349
|
+
"bytes",
|
1350
|
+
"prost",
|
1351
|
+
]
|
1352
|
+
|
1353
|
+
[[package]]
|
1354
|
+
name = "protobuf"
|
1355
|
+
version = "2.27.1"
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1357
|
+
checksum = "cf7e6d18738ecd0902d30d1ad232c9125985a3422929b16c65517b38adc14f96"
|
1358
|
+
|
1359
|
+
[[package]]
|
1360
|
+
name = "quote"
|
1361
|
+
version = "1.0.18"
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1363
|
+
checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
|
1364
|
+
dependencies = [
|
1365
|
+
"proc-macro2",
|
1366
|
+
]
|
1367
|
+
|
1368
|
+
[[package]]
|
1369
|
+
name = "rand"
|
1370
|
+
version = "0.8.5"
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1372
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
1373
|
+
dependencies = [
|
1374
|
+
"libc",
|
1375
|
+
"rand_chacha",
|
1376
|
+
"rand_core",
|
1377
|
+
]
|
1378
|
+
|
1379
|
+
[[package]]
|
1380
|
+
name = "rand_chacha"
|
1381
|
+
version = "0.3.1"
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1383
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
1384
|
+
dependencies = [
|
1385
|
+
"ppv-lite86",
|
1386
|
+
"rand_core",
|
1387
|
+
]
|
1388
|
+
|
1389
|
+
[[package]]
|
1390
|
+
name = "rand_core"
|
1391
|
+
version = "0.6.3"
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1393
|
+
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
|
1394
|
+
dependencies = [
|
1395
|
+
"getrandom",
|
1396
|
+
]
|
1397
|
+
|
1398
|
+
[[package]]
|
1399
|
+
name = "rayon"
|
1400
|
+
version = "1.5.3"
|
1401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1402
|
+
checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
|
1403
|
+
dependencies = [
|
1404
|
+
"autocfg",
|
1405
|
+
"crossbeam-deque",
|
1406
|
+
"either",
|
1407
|
+
"rayon-core",
|
1408
|
+
]
|
1409
|
+
|
1410
|
+
[[package]]
|
1411
|
+
name = "rayon-core"
|
1412
|
+
version = "1.9.3"
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1414
|
+
checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
|
1415
|
+
dependencies = [
|
1416
|
+
"crossbeam-channel",
|
1417
|
+
"crossbeam-deque",
|
1418
|
+
"crossbeam-utils",
|
1419
|
+
"num_cpus",
|
1420
|
+
]
|
1421
|
+
|
1422
|
+
[[package]]
|
1423
|
+
name = "redox_syscall"
|
1424
|
+
version = "0.2.13"
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1426
|
+
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
|
1427
|
+
dependencies = [
|
1428
|
+
"bitflags",
|
1429
|
+
]
|
1430
|
+
|
1431
|
+
[[package]]
|
1432
|
+
name = "regex"
|
1433
|
+
version = "1.5.6"
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1435
|
+
checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1"
|
1436
|
+
dependencies = [
|
1437
|
+
"aho-corasick",
|
1438
|
+
"memchr",
|
1439
|
+
"regex-syntax",
|
1440
|
+
]
|
1441
|
+
|
1442
|
+
[[package]]
|
1443
|
+
name = "regex-automata"
|
1444
|
+
version = "0.1.10"
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1446
|
+
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
1447
|
+
dependencies = [
|
1448
|
+
"regex-syntax",
|
1449
|
+
]
|
1450
|
+
|
1451
|
+
[[package]]
|
1452
|
+
name = "regex-syntax"
|
1453
|
+
version = "0.6.26"
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1455
|
+
checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64"
|
1456
|
+
|
1457
|
+
[[package]]
|
1458
|
+
name = "remove_dir_all"
|
1459
|
+
version = "0.5.3"
|
1460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1461
|
+
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
1462
|
+
dependencies = [
|
1463
|
+
"winapi",
|
1464
|
+
]
|
1465
|
+
|
1466
|
+
[[package]]
|
1467
|
+
name = "ring"
|
1468
|
+
version = "0.16.20"
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1470
|
+
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
|
1471
|
+
dependencies = [
|
1472
|
+
"cc",
|
1473
|
+
"libc",
|
1474
|
+
"once_cell",
|
1475
|
+
"spin",
|
1476
|
+
"untrusted",
|
1477
|
+
"web-sys",
|
1478
|
+
"winapi",
|
1479
|
+
]
|
1480
|
+
|
1481
|
+
[[package]]
|
1482
|
+
name = "ringbuf"
|
1483
|
+
version = "0.2.8"
|
1484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1485
|
+
checksum = "f65af18d50f789e74aaf23bbb3f65dcd22a3cb6e029b5bced149f6bd57c5c2a2"
|
1486
|
+
dependencies = [
|
1487
|
+
"cache-padded",
|
1488
|
+
]
|
1489
|
+
|
1490
|
+
[[package]]
|
1491
|
+
name = "rstest"
|
1492
|
+
version = "0.12.0"
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1494
|
+
checksum = "d912f35156a3f99a66ee3e11ac2e0b3f34ac85a07e05263d05a7e2c8810d616f"
|
1495
|
+
dependencies = [
|
1496
|
+
"cfg-if",
|
1497
|
+
"proc-macro2",
|
1498
|
+
"quote",
|
1499
|
+
"rustc_version",
|
1500
|
+
"syn",
|
1501
|
+
]
|
1502
|
+
|
1503
|
+
[[package]]
|
1504
|
+
name = "rustc_version"
|
1505
|
+
version = "0.4.0"
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1507
|
+
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
1508
|
+
dependencies = [
|
1509
|
+
"semver",
|
1510
|
+
]
|
1511
|
+
|
1512
|
+
[[package]]
|
1513
|
+
name = "rustfsm"
|
1514
|
+
version = "0.1.0"
|
1515
|
+
dependencies = [
|
1516
|
+
"rustfsm_procmacro",
|
1517
|
+
"rustfsm_trait",
|
1518
|
+
]
|
1519
|
+
|
1520
|
+
[[package]]
|
1521
|
+
name = "rustfsm_procmacro"
|
1522
|
+
version = "0.1.0"
|
1523
|
+
dependencies = [
|
1524
|
+
"derive_more",
|
1525
|
+
"proc-macro2",
|
1526
|
+
"quote",
|
1527
|
+
"rustfsm_trait",
|
1528
|
+
"syn",
|
1529
|
+
"trybuild",
|
1530
|
+
]
|
1531
|
+
|
1532
|
+
[[package]]
|
1533
|
+
name = "rustfsm_trait"
|
1534
|
+
version = "0.1.0"
|
1535
|
+
|
1536
|
+
[[package]]
|
1537
|
+
name = "rustls"
|
1538
|
+
version = "0.19.1"
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1540
|
+
checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
|
1541
|
+
dependencies = [
|
1542
|
+
"base64",
|
1543
|
+
"log",
|
1544
|
+
"ring",
|
1545
|
+
"sct",
|
1546
|
+
"webpki",
|
1547
|
+
]
|
1548
|
+
|
1549
|
+
[[package]]
|
1550
|
+
name = "rustls-native-certs"
|
1551
|
+
version = "0.5.0"
|
1552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1553
|
+
checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092"
|
1554
|
+
dependencies = [
|
1555
|
+
"openssl-probe",
|
1556
|
+
"rustls",
|
1557
|
+
"schannel",
|
1558
|
+
"security-framework",
|
1559
|
+
]
|
1560
|
+
|
1561
|
+
[[package]]
|
1562
|
+
name = "ryu"
|
1563
|
+
version = "1.0.10"
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1565
|
+
checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
|
1566
|
+
|
1567
|
+
[[package]]
|
1568
|
+
name = "same-file"
|
1569
|
+
version = "1.0.6"
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1571
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
1572
|
+
dependencies = [
|
1573
|
+
"winapi-util",
|
1574
|
+
]
|
1575
|
+
|
1576
|
+
[[package]]
|
1577
|
+
name = "schannel"
|
1578
|
+
version = "0.1.20"
|
1579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1580
|
+
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
|
1581
|
+
dependencies = [
|
1582
|
+
"lazy_static",
|
1583
|
+
"windows-sys",
|
1584
|
+
]
|
1585
|
+
|
1586
|
+
[[package]]
|
1587
|
+
name = "scopeguard"
|
1588
|
+
version = "1.1.0"
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1590
|
+
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1591
|
+
|
1592
|
+
[[package]]
|
1593
|
+
name = "sct"
|
1594
|
+
version = "0.6.1"
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1596
|
+
checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
|
1597
|
+
dependencies = [
|
1598
|
+
"ring",
|
1599
|
+
"untrusted",
|
1600
|
+
]
|
1601
|
+
|
1602
|
+
[[package]]
|
1603
|
+
name = "security-framework"
|
1604
|
+
version = "2.6.1"
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1606
|
+
checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
|
1607
|
+
dependencies = [
|
1608
|
+
"bitflags",
|
1609
|
+
"core-foundation",
|
1610
|
+
"core-foundation-sys",
|
1611
|
+
"libc",
|
1612
|
+
"security-framework-sys",
|
1613
|
+
]
|
1614
|
+
|
1615
|
+
[[package]]
|
1616
|
+
name = "security-framework-sys"
|
1617
|
+
version = "2.6.1"
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1619
|
+
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
|
1620
|
+
dependencies = [
|
1621
|
+
"core-foundation-sys",
|
1622
|
+
"libc",
|
1623
|
+
]
|
1624
|
+
|
1625
|
+
[[package]]
|
1626
|
+
name = "semver"
|
1627
|
+
version = "1.0.9"
|
1628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1629
|
+
checksum = "8cb243bdfdb5936c8dc3c45762a19d12ab4550cdc753bc247637d4ec35a040fd"
|
1630
|
+
|
1631
|
+
[[package]]
|
1632
|
+
name = "serde"
|
1633
|
+
version = "1.0.137"
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1635
|
+
checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
|
1636
|
+
dependencies = [
|
1637
|
+
"serde_derive",
|
1638
|
+
]
|
1639
|
+
|
1640
|
+
[[package]]
|
1641
|
+
name = "serde_cbor"
|
1642
|
+
version = "0.11.2"
|
1643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1644
|
+
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
|
1645
|
+
dependencies = [
|
1646
|
+
"half",
|
1647
|
+
"serde",
|
1648
|
+
]
|
1649
|
+
|
1650
|
+
[[package]]
|
1651
|
+
name = "serde_derive"
|
1652
|
+
version = "1.0.137"
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1654
|
+
checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
|
1655
|
+
dependencies = [
|
1656
|
+
"proc-macro2",
|
1657
|
+
"quote",
|
1658
|
+
"syn",
|
1659
|
+
]
|
1660
|
+
|
1661
|
+
[[package]]
|
1662
|
+
name = "serde_json"
|
1663
|
+
version = "1.0.81"
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1665
|
+
checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c"
|
1666
|
+
dependencies = [
|
1667
|
+
"itoa 1.0.2",
|
1668
|
+
"ryu",
|
1669
|
+
"serde",
|
1670
|
+
]
|
1671
|
+
|
1672
|
+
[[package]]
|
1673
|
+
name = "sha2"
|
1674
|
+
version = "0.10.2"
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1676
|
+
checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
|
1677
|
+
dependencies = [
|
1678
|
+
"cfg-if",
|
1679
|
+
"cpufeatures",
|
1680
|
+
"digest",
|
1681
|
+
]
|
1682
|
+
|
1683
|
+
[[package]]
|
1684
|
+
name = "sharded-slab"
|
1685
|
+
version = "0.1.4"
|
1686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1687
|
+
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
|
1688
|
+
dependencies = [
|
1689
|
+
"lazy_static",
|
1690
|
+
]
|
1691
|
+
|
1692
|
+
[[package]]
|
1693
|
+
name = "signal-hook-registry"
|
1694
|
+
version = "1.4.0"
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1696
|
+
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
|
1697
|
+
dependencies = [
|
1698
|
+
"libc",
|
1699
|
+
]
|
1700
|
+
|
1701
|
+
[[package]]
|
1702
|
+
name = "siphasher"
|
1703
|
+
version = "0.3.10"
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1705
|
+
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
|
1706
|
+
|
1707
|
+
[[package]]
|
1708
|
+
name = "slab"
|
1709
|
+
version = "0.4.6"
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1711
|
+
checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
|
1712
|
+
|
1713
|
+
[[package]]
|
1714
|
+
name = "slotmap"
|
1715
|
+
version = "1.0.6"
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1717
|
+
checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342"
|
1718
|
+
dependencies = [
|
1719
|
+
"version_check",
|
1720
|
+
]
|
1721
|
+
|
1722
|
+
[[package]]
|
1723
|
+
name = "smallvec"
|
1724
|
+
version = "1.8.0"
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1726
|
+
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
|
1727
|
+
|
1728
|
+
[[package]]
|
1729
|
+
name = "socket2"
|
1730
|
+
version = "0.4.4"
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1732
|
+
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
|
1733
|
+
dependencies = [
|
1734
|
+
"libc",
|
1735
|
+
"winapi",
|
1736
|
+
]
|
1737
|
+
|
1738
|
+
[[package]]
|
1739
|
+
name = "spin"
|
1740
|
+
version = "0.5.2"
|
1741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1742
|
+
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
1743
|
+
|
1744
|
+
[[package]]
|
1745
|
+
name = "strsim"
|
1746
|
+
version = "0.8.0"
|
1747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1748
|
+
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
1749
|
+
|
1750
|
+
[[package]]
|
1751
|
+
name = "strsim"
|
1752
|
+
version = "0.10.0"
|
1753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1754
|
+
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
1755
|
+
|
1756
|
+
[[package]]
|
1757
|
+
name = "syn"
|
1758
|
+
version = "1.0.95"
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1760
|
+
checksum = "fbaf6116ab8924f39d52792136fb74fd60a80194cf1b1c6ffa6453eef1c3f942"
|
1761
|
+
dependencies = [
|
1762
|
+
"proc-macro2",
|
1763
|
+
"quote",
|
1764
|
+
"unicode-ident",
|
1765
|
+
]
|
1766
|
+
|
1767
|
+
[[package]]
|
1768
|
+
name = "tempfile"
|
1769
|
+
version = "3.3.0"
|
1770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1771
|
+
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
|
1772
|
+
dependencies = [
|
1773
|
+
"cfg-if",
|
1774
|
+
"fastrand",
|
1775
|
+
"libc",
|
1776
|
+
"redox_syscall",
|
1777
|
+
"remove_dir_all",
|
1778
|
+
"winapi",
|
1779
|
+
]
|
1780
|
+
|
1781
|
+
[[package]]
|
1782
|
+
name = "temporal-client"
|
1783
|
+
version = "0.1.0"
|
1784
|
+
dependencies = [
|
1785
|
+
"anyhow",
|
1786
|
+
"async-trait",
|
1787
|
+
"backoff",
|
1788
|
+
"derive_builder",
|
1789
|
+
"derive_more",
|
1790
|
+
"futures",
|
1791
|
+
"futures-retry",
|
1792
|
+
"http",
|
1793
|
+
"mockall",
|
1794
|
+
"opentelemetry",
|
1795
|
+
"parking_lot",
|
1796
|
+
"prost-types",
|
1797
|
+
"temporal-sdk-core-protos",
|
1798
|
+
"thiserror",
|
1799
|
+
"tokio",
|
1800
|
+
"tonic",
|
1801
|
+
"tower",
|
1802
|
+
"tracing",
|
1803
|
+
"url",
|
1804
|
+
"uuid",
|
1805
|
+
]
|
1806
|
+
|
1807
|
+
[[package]]
|
1808
|
+
name = "temporal-sdk"
|
1809
|
+
version = "0.1.0-alpha.1"
|
1810
|
+
dependencies = [
|
1811
|
+
"anyhow",
|
1812
|
+
"async-trait",
|
1813
|
+
"base64",
|
1814
|
+
"crossbeam",
|
1815
|
+
"derive_more",
|
1816
|
+
"futures",
|
1817
|
+
"once_cell",
|
1818
|
+
"parking_lot",
|
1819
|
+
"prost-types",
|
1820
|
+
"serde",
|
1821
|
+
"sha2",
|
1822
|
+
"temporal-client",
|
1823
|
+
"temporal-sdk-core",
|
1824
|
+
"temporal-sdk-core-api",
|
1825
|
+
"temporal-sdk-core-protos",
|
1826
|
+
"tokio",
|
1827
|
+
"tokio-stream",
|
1828
|
+
"tokio-util 0.7.2",
|
1829
|
+
"tonic",
|
1830
|
+
"tracing",
|
1831
|
+
]
|
1832
|
+
|
1833
|
+
[[package]]
|
1834
|
+
name = "temporal-sdk-core"
|
1835
|
+
version = "0.1.0"
|
1836
|
+
dependencies = [
|
1837
|
+
"anyhow",
|
1838
|
+
"arc-swap",
|
1839
|
+
"assert_matches",
|
1840
|
+
"async-channel",
|
1841
|
+
"async-trait",
|
1842
|
+
"base64",
|
1843
|
+
"bimap",
|
1844
|
+
"criterion",
|
1845
|
+
"crossbeam",
|
1846
|
+
"dashmap 5.3.3",
|
1847
|
+
"derive_builder",
|
1848
|
+
"derive_more",
|
1849
|
+
"enum_dispatch",
|
1850
|
+
"futures",
|
1851
|
+
"http",
|
1852
|
+
"hyper",
|
1853
|
+
"itertools",
|
1854
|
+
"lazy_static",
|
1855
|
+
"log",
|
1856
|
+
"lru",
|
1857
|
+
"mockall",
|
1858
|
+
"once_cell",
|
1859
|
+
"opentelemetry",
|
1860
|
+
"opentelemetry-otlp",
|
1861
|
+
"opentelemetry-prometheus",
|
1862
|
+
"parking_lot",
|
1863
|
+
"prometheus",
|
1864
|
+
"prost",
|
1865
|
+
"prost-types",
|
1866
|
+
"rand",
|
1867
|
+
"ringbuf",
|
1868
|
+
"rstest",
|
1869
|
+
"rustfsm",
|
1870
|
+
"serde",
|
1871
|
+
"siphasher",
|
1872
|
+
"slotmap",
|
1873
|
+
"temporal-client",
|
1874
|
+
"temporal-sdk",
|
1875
|
+
"temporal-sdk-core-api",
|
1876
|
+
"temporal-sdk-core-protos",
|
1877
|
+
"temporal-sdk-core-test-utils",
|
1878
|
+
"thiserror",
|
1879
|
+
"tokio",
|
1880
|
+
"tokio-stream",
|
1881
|
+
"tokio-util 0.7.2",
|
1882
|
+
"tonic",
|
1883
|
+
"tonic-build",
|
1884
|
+
"tracing",
|
1885
|
+
"tracing-futures",
|
1886
|
+
"tracing-opentelemetry",
|
1887
|
+
"tracing-subscriber",
|
1888
|
+
"url",
|
1889
|
+
"uuid",
|
1890
|
+
]
|
1891
|
+
|
1892
|
+
[[package]]
|
1893
|
+
name = "temporal-sdk-core-api"
|
1894
|
+
version = "0.1.0"
|
1895
|
+
dependencies = [
|
1896
|
+
"anyhow",
|
1897
|
+
"async-trait",
|
1898
|
+
"derive_builder",
|
1899
|
+
"log",
|
1900
|
+
"opentelemetry",
|
1901
|
+
"prost-types",
|
1902
|
+
"temporal-client",
|
1903
|
+
"temporal-sdk-core-protos",
|
1904
|
+
"thiserror",
|
1905
|
+
"tonic",
|
1906
|
+
]
|
1907
|
+
|
1908
|
+
[[package]]
|
1909
|
+
name = "temporal-sdk-core-bridge-ffi"
|
1910
|
+
version = "0.1.0"
|
1911
|
+
dependencies = [
|
1912
|
+
"cbindgen",
|
1913
|
+
"lazy_static",
|
1914
|
+
"libc",
|
1915
|
+
"log",
|
1916
|
+
"prost",
|
1917
|
+
"temporal-sdk-core",
|
1918
|
+
"temporal-sdk-core-api",
|
1919
|
+
"temporal-sdk-core-protos",
|
1920
|
+
"tokio",
|
1921
|
+
]
|
1922
|
+
|
1923
|
+
[[package]]
|
1924
|
+
name = "temporal-sdk-core-protos"
|
1925
|
+
version = "0.1.0"
|
1926
|
+
dependencies = [
|
1927
|
+
"anyhow",
|
1928
|
+
"base64",
|
1929
|
+
"derive_more",
|
1930
|
+
"prost",
|
1931
|
+
"prost-types",
|
1932
|
+
"rand",
|
1933
|
+
"serde",
|
1934
|
+
"serde_json",
|
1935
|
+
"thiserror",
|
1936
|
+
"tonic",
|
1937
|
+
"tonic-build",
|
1938
|
+
"uuid",
|
1939
|
+
]
|
1940
|
+
|
1941
|
+
[[package]]
|
1942
|
+
name = "temporal-sdk-core-test-utils"
|
1943
|
+
version = "0.1.0"
|
1944
|
+
dependencies = [
|
1945
|
+
"anyhow",
|
1946
|
+
"async-trait",
|
1947
|
+
"base64",
|
1948
|
+
"futures",
|
1949
|
+
"log",
|
1950
|
+
"parking_lot",
|
1951
|
+
"prost",
|
1952
|
+
"prost-types",
|
1953
|
+
"rand",
|
1954
|
+
"serde_json",
|
1955
|
+
"temporal-client",
|
1956
|
+
"temporal-sdk",
|
1957
|
+
"temporal-sdk-core",
|
1958
|
+
"temporal-sdk-core-api",
|
1959
|
+
"temporal-sdk-core-protos",
|
1960
|
+
"thiserror",
|
1961
|
+
"tokio",
|
1962
|
+
"tokio-util 0.7.2",
|
1963
|
+
"tracing",
|
1964
|
+
"url",
|
1965
|
+
"uuid",
|
1966
|
+
]
|
1967
|
+
|
1968
|
+
[[package]]
|
1969
|
+
name = "termcolor"
|
1970
|
+
version = "1.1.3"
|
1971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1972
|
+
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
|
1973
|
+
dependencies = [
|
1974
|
+
"winapi-util",
|
1975
|
+
]
|
1976
|
+
|
1977
|
+
[[package]]
|
1978
|
+
name = "termtree"
|
1979
|
+
version = "0.2.4"
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1981
|
+
checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b"
|
1982
|
+
|
1983
|
+
[[package]]
|
1984
|
+
name = "textwrap"
|
1985
|
+
version = "0.11.0"
|
1986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1987
|
+
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
|
1988
|
+
dependencies = [
|
1989
|
+
"unicode-width",
|
1990
|
+
]
|
1991
|
+
|
1992
|
+
[[package]]
|
1993
|
+
name = "thiserror"
|
1994
|
+
version = "1.0.31"
|
1995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1996
|
+
checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
|
1997
|
+
dependencies = [
|
1998
|
+
"thiserror-impl",
|
1999
|
+
]
|
2000
|
+
|
2001
|
+
[[package]]
|
2002
|
+
name = "thiserror-impl"
|
2003
|
+
version = "1.0.31"
|
2004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2005
|
+
checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
|
2006
|
+
dependencies = [
|
2007
|
+
"proc-macro2",
|
2008
|
+
"quote",
|
2009
|
+
"syn",
|
2010
|
+
]
|
2011
|
+
|
2012
|
+
[[package]]
|
2013
|
+
name = "thread_local"
|
2014
|
+
version = "1.1.4"
|
2015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2016
|
+
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
|
2017
|
+
dependencies = [
|
2018
|
+
"once_cell",
|
2019
|
+
]
|
2020
|
+
|
2021
|
+
[[package]]
|
2022
|
+
name = "tinytemplate"
|
2023
|
+
version = "1.2.1"
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
2026
|
+
dependencies = [
|
2027
|
+
"serde",
|
2028
|
+
"serde_json",
|
2029
|
+
]
|
2030
|
+
|
2031
|
+
[[package]]
|
2032
|
+
name = "tinyvec"
|
2033
|
+
version = "1.6.0"
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2035
|
+
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
2036
|
+
dependencies = [
|
2037
|
+
"tinyvec_macros",
|
2038
|
+
]
|
2039
|
+
|
2040
|
+
[[package]]
|
2041
|
+
name = "tinyvec_macros"
|
2042
|
+
version = "0.1.0"
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2044
|
+
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
2045
|
+
|
2046
|
+
[[package]]
|
2047
|
+
name = "tokio"
|
2048
|
+
version = "1.18.2"
|
2049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2050
|
+
checksum = "4903bf0427cf68dddd5aa6a93220756f8be0c34fcfa9f5e6191e103e15a31395"
|
2051
|
+
dependencies = [
|
2052
|
+
"bytes",
|
2053
|
+
"libc",
|
2054
|
+
"memchr",
|
2055
|
+
"mio",
|
2056
|
+
"num_cpus",
|
2057
|
+
"once_cell",
|
2058
|
+
"parking_lot",
|
2059
|
+
"pin-project-lite",
|
2060
|
+
"signal-hook-registry",
|
2061
|
+
"socket2",
|
2062
|
+
"tokio-macros",
|
2063
|
+
"winapi",
|
2064
|
+
]
|
2065
|
+
|
2066
|
+
[[package]]
|
2067
|
+
name = "tokio-io-timeout"
|
2068
|
+
version = "1.2.0"
|
2069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2070
|
+
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
|
2071
|
+
dependencies = [
|
2072
|
+
"pin-project-lite",
|
2073
|
+
"tokio",
|
2074
|
+
]
|
2075
|
+
|
2076
|
+
[[package]]
|
2077
|
+
name = "tokio-macros"
|
2078
|
+
version = "1.7.0"
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2080
|
+
checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
|
2081
|
+
dependencies = [
|
2082
|
+
"proc-macro2",
|
2083
|
+
"quote",
|
2084
|
+
"syn",
|
2085
|
+
]
|
2086
|
+
|
2087
|
+
[[package]]
|
2088
|
+
name = "tokio-rustls"
|
2089
|
+
version = "0.22.0"
|
2090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2091
|
+
checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"
|
2092
|
+
dependencies = [
|
2093
|
+
"rustls",
|
2094
|
+
"tokio",
|
2095
|
+
"webpki",
|
2096
|
+
]
|
2097
|
+
|
2098
|
+
[[package]]
|
2099
|
+
name = "tokio-stream"
|
2100
|
+
version = "0.1.8"
|
2101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2102
|
+
checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3"
|
2103
|
+
dependencies = [
|
2104
|
+
"futures-core",
|
2105
|
+
"pin-project-lite",
|
2106
|
+
"tokio",
|
2107
|
+
]
|
2108
|
+
|
2109
|
+
[[package]]
|
2110
|
+
name = "tokio-util"
|
2111
|
+
version = "0.6.10"
|
2112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2113
|
+
checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
|
2114
|
+
dependencies = [
|
2115
|
+
"bytes",
|
2116
|
+
"futures-core",
|
2117
|
+
"futures-sink",
|
2118
|
+
"log",
|
2119
|
+
"pin-project-lite",
|
2120
|
+
"tokio",
|
2121
|
+
]
|
2122
|
+
|
2123
|
+
[[package]]
|
2124
|
+
name = "tokio-util"
|
2125
|
+
version = "0.7.2"
|
2126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2127
|
+
checksum = "f988a1a1adc2fb21f9c12aa96441da33a1728193ae0b95d2be22dbd17fcb4e5c"
|
2128
|
+
dependencies = [
|
2129
|
+
"bytes",
|
2130
|
+
"futures-core",
|
2131
|
+
"futures-sink",
|
2132
|
+
"pin-project-lite",
|
2133
|
+
"tokio",
|
2134
|
+
"tracing",
|
2135
|
+
]
|
2136
|
+
|
2137
|
+
[[package]]
|
2138
|
+
name = "toml"
|
2139
|
+
version = "0.5.9"
|
2140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2141
|
+
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
|
2142
|
+
dependencies = [
|
2143
|
+
"serde",
|
2144
|
+
]
|
2145
|
+
|
2146
|
+
[[package]]
|
2147
|
+
name = "tonic"
|
2148
|
+
version = "0.6.2"
|
2149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2150
|
+
checksum = "ff08f4649d10a70ffa3522ca559031285d8e421d727ac85c60825761818f5d0a"
|
2151
|
+
dependencies = [
|
2152
|
+
"async-stream",
|
2153
|
+
"async-trait",
|
2154
|
+
"base64",
|
2155
|
+
"bytes",
|
2156
|
+
"futures-core",
|
2157
|
+
"futures-util",
|
2158
|
+
"h2",
|
2159
|
+
"http",
|
2160
|
+
"http-body",
|
2161
|
+
"hyper",
|
2162
|
+
"hyper-timeout",
|
2163
|
+
"percent-encoding",
|
2164
|
+
"pin-project",
|
2165
|
+
"prost",
|
2166
|
+
"prost-derive",
|
2167
|
+
"rustls-native-certs",
|
2168
|
+
"tokio",
|
2169
|
+
"tokio-rustls",
|
2170
|
+
"tokio-stream",
|
2171
|
+
"tokio-util 0.6.10",
|
2172
|
+
"tower",
|
2173
|
+
"tower-layer",
|
2174
|
+
"tower-service",
|
2175
|
+
"tracing",
|
2176
|
+
"tracing-futures",
|
2177
|
+
]
|
2178
|
+
|
2179
|
+
[[package]]
|
2180
|
+
name = "tonic-build"
|
2181
|
+
version = "0.6.2"
|
2182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2183
|
+
checksum = "9403f1bafde247186684b230dc6f38b5cd514584e8bec1dd32514be4745fa757"
|
2184
|
+
dependencies = [
|
2185
|
+
"proc-macro2",
|
2186
|
+
"prost-build",
|
2187
|
+
"quote",
|
2188
|
+
"syn",
|
2189
|
+
]
|
2190
|
+
|
2191
|
+
[[package]]
|
2192
|
+
name = "tower"
|
2193
|
+
version = "0.4.12"
|
2194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2195
|
+
checksum = "9a89fd63ad6adf737582df5db40d286574513c69a11dac5214dc3b5603d6713e"
|
2196
|
+
dependencies = [
|
2197
|
+
"futures-core",
|
2198
|
+
"futures-util",
|
2199
|
+
"indexmap",
|
2200
|
+
"pin-project",
|
2201
|
+
"pin-project-lite",
|
2202
|
+
"rand",
|
2203
|
+
"slab",
|
2204
|
+
"tokio",
|
2205
|
+
"tokio-util 0.7.2",
|
2206
|
+
"tower-layer",
|
2207
|
+
"tower-service",
|
2208
|
+
"tracing",
|
2209
|
+
]
|
2210
|
+
|
2211
|
+
[[package]]
|
2212
|
+
name = "tower-layer"
|
2213
|
+
version = "0.3.1"
|
2214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2215
|
+
checksum = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62"
|
2216
|
+
|
2217
|
+
[[package]]
|
2218
|
+
name = "tower-service"
|
2219
|
+
version = "0.3.1"
|
2220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2221
|
+
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
|
2222
|
+
|
2223
|
+
[[package]]
|
2224
|
+
name = "tracing"
|
2225
|
+
version = "0.1.34"
|
2226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2227
|
+
checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09"
|
2228
|
+
dependencies = [
|
2229
|
+
"cfg-if",
|
2230
|
+
"log",
|
2231
|
+
"pin-project-lite",
|
2232
|
+
"tracing-attributes",
|
2233
|
+
"tracing-core",
|
2234
|
+
]
|
2235
|
+
|
2236
|
+
[[package]]
|
2237
|
+
name = "tracing-attributes"
|
2238
|
+
version = "0.1.21"
|
2239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2240
|
+
checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c"
|
2241
|
+
dependencies = [
|
2242
|
+
"proc-macro2",
|
2243
|
+
"quote",
|
2244
|
+
"syn",
|
2245
|
+
]
|
2246
|
+
|
2247
|
+
[[package]]
|
2248
|
+
name = "tracing-core"
|
2249
|
+
version = "0.1.26"
|
2250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2251
|
+
checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f"
|
2252
|
+
dependencies = [
|
2253
|
+
"lazy_static",
|
2254
|
+
"valuable",
|
2255
|
+
]
|
2256
|
+
|
2257
|
+
[[package]]
|
2258
|
+
name = "tracing-futures"
|
2259
|
+
version = "0.2.5"
|
2260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2261
|
+
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
|
2262
|
+
dependencies = [
|
2263
|
+
"pin-project",
|
2264
|
+
"tracing",
|
2265
|
+
]
|
2266
|
+
|
2267
|
+
[[package]]
|
2268
|
+
name = "tracing-log"
|
2269
|
+
version = "0.1.3"
|
2270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2271
|
+
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
|
2272
|
+
dependencies = [
|
2273
|
+
"lazy_static",
|
2274
|
+
"log",
|
2275
|
+
"tracing-core",
|
2276
|
+
]
|
2277
|
+
|
2278
|
+
[[package]]
|
2279
|
+
name = "tracing-opentelemetry"
|
2280
|
+
version = "0.17.2"
|
2281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2282
|
+
checksum = "1f9378e96a9361190ae297e7f3a8ff644aacd2897f244b1ff81f381669196fa6"
|
2283
|
+
dependencies = [
|
2284
|
+
"opentelemetry",
|
2285
|
+
"tracing",
|
2286
|
+
"tracing-core",
|
2287
|
+
"tracing-log",
|
2288
|
+
"tracing-subscriber",
|
2289
|
+
]
|
2290
|
+
|
2291
|
+
[[package]]
|
2292
|
+
name = "tracing-subscriber"
|
2293
|
+
version = "0.3.11"
|
2294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2295
|
+
checksum = "4bc28f93baff38037f64e6f43d34cfa1605f27a49c34e8a04c5e78b0babf2596"
|
2296
|
+
dependencies = [
|
2297
|
+
"ansi_term",
|
2298
|
+
"lazy_static",
|
2299
|
+
"matchers",
|
2300
|
+
"parking_lot",
|
2301
|
+
"regex",
|
2302
|
+
"sharded-slab",
|
2303
|
+
"smallvec",
|
2304
|
+
"thread_local",
|
2305
|
+
"tracing",
|
2306
|
+
"tracing-core",
|
2307
|
+
"tracing-log",
|
2308
|
+
]
|
2309
|
+
|
2310
|
+
[[package]]
|
2311
|
+
name = "try-lock"
|
2312
|
+
version = "0.2.3"
|
2313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2314
|
+
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
|
2315
|
+
|
2316
|
+
[[package]]
|
2317
|
+
name = "trybuild"
|
2318
|
+
version = "1.0.61"
|
2319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2320
|
+
checksum = "7fc92f558afb6d1d7c6f175eb8d615b8ef49c227543e68e19c123d4ee43d8a7d"
|
2321
|
+
dependencies = [
|
2322
|
+
"dissimilar",
|
2323
|
+
"glob",
|
2324
|
+
"once_cell",
|
2325
|
+
"serde",
|
2326
|
+
"serde_derive",
|
2327
|
+
"serde_json",
|
2328
|
+
"termcolor",
|
2329
|
+
"toml",
|
2330
|
+
]
|
2331
|
+
|
2332
|
+
[[package]]
|
2333
|
+
name = "typenum"
|
2334
|
+
version = "1.15.0"
|
2335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2336
|
+
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
2337
|
+
|
2338
|
+
[[package]]
|
2339
|
+
name = "unicode-bidi"
|
2340
|
+
version = "0.3.8"
|
2341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2342
|
+
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
|
2343
|
+
|
2344
|
+
[[package]]
|
2345
|
+
name = "unicode-ident"
|
2346
|
+
version = "1.0.0"
|
2347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2348
|
+
checksum = "d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee"
|
2349
|
+
|
2350
|
+
[[package]]
|
2351
|
+
name = "unicode-normalization"
|
2352
|
+
version = "0.1.19"
|
2353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2354
|
+
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
|
2355
|
+
dependencies = [
|
2356
|
+
"tinyvec",
|
2357
|
+
]
|
2358
|
+
|
2359
|
+
[[package]]
|
2360
|
+
name = "unicode-segmentation"
|
2361
|
+
version = "1.9.0"
|
2362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2363
|
+
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
|
2364
|
+
|
2365
|
+
[[package]]
|
2366
|
+
name = "unicode-width"
|
2367
|
+
version = "0.1.9"
|
2368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2369
|
+
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
|
2370
|
+
|
2371
|
+
[[package]]
|
2372
|
+
name = "untrusted"
|
2373
|
+
version = "0.7.1"
|
2374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2375
|
+
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
2376
|
+
|
2377
|
+
[[package]]
|
2378
|
+
name = "url"
|
2379
|
+
version = "2.2.2"
|
2380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2381
|
+
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
|
2382
|
+
dependencies = [
|
2383
|
+
"form_urlencoded",
|
2384
|
+
"idna",
|
2385
|
+
"matches",
|
2386
|
+
"percent-encoding",
|
2387
|
+
]
|
2388
|
+
|
2389
|
+
[[package]]
|
2390
|
+
name = "uuid"
|
2391
|
+
version = "0.8.2"
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2393
|
+
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
|
2394
|
+
dependencies = [
|
2395
|
+
"getrandom",
|
2396
|
+
]
|
2397
|
+
|
2398
|
+
[[package]]
|
2399
|
+
name = "valuable"
|
2400
|
+
version = "0.1.0"
|
2401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2402
|
+
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
2403
|
+
|
2404
|
+
[[package]]
|
2405
|
+
name = "vec_map"
|
2406
|
+
version = "0.8.2"
|
2407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2408
|
+
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
|
2409
|
+
|
2410
|
+
[[package]]
|
2411
|
+
name = "version_check"
|
2412
|
+
version = "0.9.4"
|
2413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2414
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2415
|
+
|
2416
|
+
[[package]]
|
2417
|
+
name = "walkdir"
|
2418
|
+
version = "2.3.2"
|
2419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2420
|
+
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
|
2421
|
+
dependencies = [
|
2422
|
+
"same-file",
|
2423
|
+
"winapi",
|
2424
|
+
"winapi-util",
|
2425
|
+
]
|
2426
|
+
|
2427
|
+
[[package]]
|
2428
|
+
name = "want"
|
2429
|
+
version = "0.3.0"
|
2430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2431
|
+
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
|
2432
|
+
dependencies = [
|
2433
|
+
"log",
|
2434
|
+
"try-lock",
|
2435
|
+
]
|
2436
|
+
|
2437
|
+
[[package]]
|
2438
|
+
name = "wasi"
|
2439
|
+
version = "0.10.2+wasi-snapshot-preview1"
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2441
|
+
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
|
2442
|
+
|
2443
|
+
[[package]]
|
2444
|
+
name = "wasi"
|
2445
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
2446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2447
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
2448
|
+
|
2449
|
+
[[package]]
|
2450
|
+
name = "wasm-bindgen"
|
2451
|
+
version = "0.2.80"
|
2452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2453
|
+
checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad"
|
2454
|
+
dependencies = [
|
2455
|
+
"cfg-if",
|
2456
|
+
"wasm-bindgen-macro",
|
2457
|
+
]
|
2458
|
+
|
2459
|
+
[[package]]
|
2460
|
+
name = "wasm-bindgen-backend"
|
2461
|
+
version = "0.2.80"
|
2462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2463
|
+
checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4"
|
2464
|
+
dependencies = [
|
2465
|
+
"bumpalo",
|
2466
|
+
"lazy_static",
|
2467
|
+
"log",
|
2468
|
+
"proc-macro2",
|
2469
|
+
"quote",
|
2470
|
+
"syn",
|
2471
|
+
"wasm-bindgen-shared",
|
2472
|
+
]
|
2473
|
+
|
2474
|
+
[[package]]
|
2475
|
+
name = "wasm-bindgen-macro"
|
2476
|
+
version = "0.2.80"
|
2477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2478
|
+
checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5"
|
2479
|
+
dependencies = [
|
2480
|
+
"quote",
|
2481
|
+
"wasm-bindgen-macro-support",
|
2482
|
+
]
|
2483
|
+
|
2484
|
+
[[package]]
|
2485
|
+
name = "wasm-bindgen-macro-support"
|
2486
|
+
version = "0.2.80"
|
2487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2488
|
+
checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b"
|
2489
|
+
dependencies = [
|
2490
|
+
"proc-macro2",
|
2491
|
+
"quote",
|
2492
|
+
"syn",
|
2493
|
+
"wasm-bindgen-backend",
|
2494
|
+
"wasm-bindgen-shared",
|
2495
|
+
]
|
2496
|
+
|
2497
|
+
[[package]]
|
2498
|
+
name = "wasm-bindgen-shared"
|
2499
|
+
version = "0.2.80"
|
2500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2501
|
+
checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744"
|
2502
|
+
|
2503
|
+
[[package]]
|
2504
|
+
name = "web-sys"
|
2505
|
+
version = "0.3.57"
|
2506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2507
|
+
checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283"
|
2508
|
+
dependencies = [
|
2509
|
+
"js-sys",
|
2510
|
+
"wasm-bindgen",
|
2511
|
+
]
|
2512
|
+
|
2513
|
+
[[package]]
|
2514
|
+
name = "webpki"
|
2515
|
+
version = "0.21.4"
|
2516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2517
|
+
checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
|
2518
|
+
dependencies = [
|
2519
|
+
"ring",
|
2520
|
+
"untrusted",
|
2521
|
+
]
|
2522
|
+
|
2523
|
+
[[package]]
|
2524
|
+
name = "which"
|
2525
|
+
version = "4.2.5"
|
2526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2527
|
+
checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae"
|
2528
|
+
dependencies = [
|
2529
|
+
"either",
|
2530
|
+
"lazy_static",
|
2531
|
+
"libc",
|
2532
|
+
]
|
2533
|
+
|
2534
|
+
[[package]]
|
2535
|
+
name = "winapi"
|
2536
|
+
version = "0.3.9"
|
2537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2538
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2539
|
+
dependencies = [
|
2540
|
+
"winapi-i686-pc-windows-gnu",
|
2541
|
+
"winapi-x86_64-pc-windows-gnu",
|
2542
|
+
]
|
2543
|
+
|
2544
|
+
[[package]]
|
2545
|
+
name = "winapi-i686-pc-windows-gnu"
|
2546
|
+
version = "0.4.0"
|
2547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2548
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2549
|
+
|
2550
|
+
[[package]]
|
2551
|
+
name = "winapi-util"
|
2552
|
+
version = "0.1.5"
|
2553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2554
|
+
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
2555
|
+
dependencies = [
|
2556
|
+
"winapi",
|
2557
|
+
]
|
2558
|
+
|
2559
|
+
[[package]]
|
2560
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
2561
|
+
version = "0.4.0"
|
2562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2563
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2564
|
+
|
2565
|
+
[[package]]
|
2566
|
+
name = "windows-sys"
|
2567
|
+
version = "0.36.1"
|
2568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2569
|
+
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
2570
|
+
dependencies = [
|
2571
|
+
"windows_aarch64_msvc",
|
2572
|
+
"windows_i686_gnu",
|
2573
|
+
"windows_i686_msvc",
|
2574
|
+
"windows_x86_64_gnu",
|
2575
|
+
"windows_x86_64_msvc",
|
2576
|
+
]
|
2577
|
+
|
2578
|
+
[[package]]
|
2579
|
+
name = "windows_aarch64_msvc"
|
2580
|
+
version = "0.36.1"
|
2581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2582
|
+
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
2583
|
+
|
2584
|
+
[[package]]
|
2585
|
+
name = "windows_i686_gnu"
|
2586
|
+
version = "0.36.1"
|
2587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2588
|
+
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
2589
|
+
|
2590
|
+
[[package]]
|
2591
|
+
name = "windows_i686_msvc"
|
2592
|
+
version = "0.36.1"
|
2593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2594
|
+
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
2595
|
+
|
2596
|
+
[[package]]
|
2597
|
+
name = "windows_x86_64_gnu"
|
2598
|
+
version = "0.36.1"
|
2599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2600
|
+
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
2601
|
+
|
2602
|
+
[[package]]
|
2603
|
+
name = "windows_x86_64_msvc"
|
2604
|
+
version = "0.36.1"
|
2605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2606
|
+
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
|