temporalio 0.1.1 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +2 -0
- data/Cargo.lock +4324 -0
- data/Cargo.toml +25 -0
- data/Gemfile +20 -0
- data/LICENSE +16 -15
- data/README.md +985 -183
- data/Rakefile +101 -0
- data/ext/Cargo.toml +26 -0
- data/lib/temporalio/activity/complete_async_error.rb +11 -0
- data/lib/temporalio/activity/context.rb +86 -78
- data/lib/temporalio/activity/definition.rb +175 -0
- data/lib/temporalio/activity/info.rb +44 -47
- data/lib/temporalio/activity.rb +8 -81
- data/lib/temporalio/api/activity/v1/message.rb +25 -0
- data/lib/temporalio/api/batch/v1/message.rb +31 -0
- data/lib/temporalio/api/cloud/account/v1/message.rb +28 -0
- data/lib/temporalio/api/cloud/cloudservice/v1/request_response.rb +126 -0
- data/lib/temporalio/api/cloud/cloudservice/v1/service.rb +25 -0
- data/lib/temporalio/api/cloud/cloudservice.rb +3 -0
- data/lib/temporalio/api/cloud/identity/v1/message.rb +41 -0
- data/lib/temporalio/api/cloud/namespace/v1/message.rb +42 -0
- data/lib/temporalio/api/cloud/nexus/v1/message.rb +31 -0
- data/lib/temporalio/api/cloud/operation/v1/message.rb +28 -0
- data/lib/temporalio/api/cloud/region/v1/message.rb +24 -0
- data/lib/temporalio/api/cloud/resource/v1/message.rb +23 -0
- data/lib/temporalio/api/cloud/sink/v1/message.rb +24 -0
- data/lib/temporalio/api/cloud/usage/v1/message.rb +31 -0
- data/lib/temporalio/api/command/v1/message.rb +46 -0
- data/lib/temporalio/api/common/v1/grpc_status.rb +23 -0
- data/lib/temporalio/api/common/v1/message.rb +47 -0
- data/lib/temporalio/api/enums/v1/batch_operation.rb +22 -0
- data/lib/temporalio/api/enums/v1/command_type.rb +21 -0
- data/lib/temporalio/api/enums/v1/common.rb +26 -0
- data/lib/temporalio/api/enums/v1/event_type.rb +21 -0
- data/lib/temporalio/api/enums/v1/failed_cause.rb +26 -0
- data/lib/temporalio/api/enums/v1/namespace.rb +23 -0
- data/lib/temporalio/api/enums/v1/query.rb +22 -0
- data/lib/temporalio/api/enums/v1/reset.rb +23 -0
- data/lib/temporalio/api/enums/v1/schedule.rb +21 -0
- data/lib/temporalio/api/enums/v1/task_queue.rb +25 -0
- data/lib/temporalio/api/enums/v1/update.rb +22 -0
- data/lib/temporalio/api/enums/v1/workflow.rb +30 -0
- data/lib/temporalio/api/errordetails/v1/message.rb +42 -0
- data/lib/temporalio/api/export/v1/message.rb +24 -0
- data/lib/temporalio/api/failure/v1/message.rb +35 -0
- data/lib/temporalio/api/filter/v1/message.rb +27 -0
- data/lib/temporalio/api/history/v1/message.rb +90 -0
- data/lib/temporalio/api/namespace/v1/message.rb +31 -0
- data/lib/temporalio/api/nexus/v1/message.rb +40 -0
- data/lib/temporalio/api/operatorservice/v1/request_response.rb +49 -0
- data/lib/temporalio/api/operatorservice/v1/service.rb +23 -0
- data/lib/temporalio/api/operatorservice.rb +3 -0
- data/lib/temporalio/api/payload_visitor.rb +1513 -0
- data/lib/temporalio/api/protocol/v1/message.rb +23 -0
- data/lib/temporalio/api/query/v1/message.rb +27 -0
- data/lib/temporalio/api/replication/v1/message.rb +26 -0
- data/lib/temporalio/api/schedule/v1/message.rb +43 -0
- data/lib/temporalio/api/sdk/v1/enhanced_stack_trace.rb +25 -0
- data/lib/temporalio/api/sdk/v1/task_complete_metadata.rb +21 -0
- data/lib/temporalio/api/sdk/v1/user_metadata.rb +23 -0
- data/lib/temporalio/api/sdk/v1/workflow_metadata.rb +23 -0
- data/lib/temporalio/api/taskqueue/v1/message.rb +45 -0
- data/lib/{gen/temporal/api/testservice/v1/request_response_pb.rb → temporalio/api/testservice/v1/request_response.rb} +6 -24
- data/lib/temporalio/api/testservice/v1/service.rb +23 -0
- data/lib/temporalio/api/update/v1/message.rb +33 -0
- data/lib/temporalio/api/version/v1/message.rb +26 -0
- data/lib/temporalio/api/workflow/v1/message.rb +43 -0
- data/lib/temporalio/api/workflowservice/v1/request_response.rb +204 -0
- data/lib/temporalio/api/workflowservice/v1/service.rb +23 -0
- data/lib/temporalio/api/workflowservice.rb +3 -0
- data/lib/temporalio/api.rb +14 -0
- data/lib/temporalio/cancellation.rb +170 -0
- data/lib/temporalio/client/activity_id_reference.rb +32 -0
- data/lib/temporalio/client/async_activity_handle.rb +85 -0
- data/lib/temporalio/client/connection/cloud_service.rb +726 -0
- data/lib/temporalio/client/connection/operator_service.rb +201 -0
- data/lib/temporalio/client/connection/service.rb +42 -0
- data/lib/temporalio/client/connection/test_service.rb +111 -0
- data/lib/temporalio/client/connection/workflow_service.rb +1041 -0
- data/lib/temporalio/client/connection.rb +316 -0
- data/lib/temporalio/client/interceptor.rb +416 -0
- data/lib/temporalio/client/schedule.rb +967 -0
- data/lib/temporalio/client/schedule_handle.rb +126 -0
- data/lib/temporalio/client/workflow_execution.rb +100 -0
- data/lib/temporalio/client/workflow_execution_count.rb +36 -0
- data/lib/temporalio/client/workflow_execution_status.rb +18 -0
- data/lib/temporalio/client/workflow_handle.rb +326 -180
- data/lib/temporalio/client/workflow_query_reject_condition.rb +14 -0
- data/lib/temporalio/client/workflow_update_handle.rb +65 -0
- data/lib/temporalio/client/workflow_update_wait_stage.rb +17 -0
- data/lib/temporalio/client.rb +447 -94
- data/lib/temporalio/common_enums.rb +41 -0
- data/lib/temporalio/converters/data_converter.rb +99 -0
- data/lib/temporalio/converters/failure_converter.rb +202 -0
- data/lib/temporalio/converters/payload_codec.rb +26 -0
- data/lib/temporalio/converters/payload_converter/binary_null.rb +34 -0
- data/lib/temporalio/converters/payload_converter/binary_plain.rb +35 -0
- data/lib/temporalio/converters/payload_converter/binary_protobuf.rb +42 -0
- data/lib/temporalio/converters/payload_converter/composite.rb +66 -0
- data/lib/temporalio/converters/payload_converter/encoding.rb +35 -0
- data/lib/temporalio/converters/payload_converter/json_plain.rb +44 -0
- data/lib/temporalio/converters/payload_converter/json_protobuf.rb +41 -0
- data/lib/temporalio/converters/payload_converter.rb +71 -0
- data/lib/temporalio/converters/raw_value.rb +20 -0
- data/lib/temporalio/converters.rb +9 -0
- data/lib/temporalio/error/failure.rb +119 -94
- data/lib/temporalio/error.rb +155 -0
- data/lib/temporalio/internal/bridge/api/activity_result/activity_result.rb +34 -0
- data/lib/temporalio/internal/bridge/api/activity_task/activity_task.rb +31 -0
- data/lib/temporalio/internal/bridge/api/child_workflow/child_workflow.rb +33 -0
- data/lib/temporalio/internal/bridge/api/common/common.rb +26 -0
- data/lib/temporalio/internal/bridge/api/core_interface.rb +40 -0
- data/lib/temporalio/internal/bridge/api/external_data/external_data.rb +27 -0
- data/lib/temporalio/internal/bridge/api/nexus/nexus.rb +33 -0
- data/lib/temporalio/internal/bridge/api/workflow_activation/workflow_activation.rb +56 -0
- data/lib/temporalio/internal/bridge/api/workflow_commands/workflow_commands.rb +57 -0
- data/lib/temporalio/internal/bridge/api/workflow_completion/workflow_completion.rb +30 -0
- data/lib/temporalio/internal/bridge/api.rb +3 -0
- data/lib/temporalio/internal/bridge/client.rb +95 -0
- data/lib/temporalio/internal/bridge/runtime.rb +53 -0
- data/lib/temporalio/internal/bridge/testing.rb +66 -0
- data/lib/temporalio/internal/bridge/worker.rb +85 -0
- data/lib/temporalio/internal/bridge.rb +36 -0
- data/lib/temporalio/internal/client/implementation.rb +700 -0
- data/lib/temporalio/internal/metric.rb +122 -0
- data/lib/temporalio/internal/proto_utils.rb +133 -0
- data/lib/temporalio/internal/worker/activity_worker.rb +373 -0
- data/lib/temporalio/internal/worker/multi_runner.rb +213 -0
- data/lib/temporalio/internal/worker/workflow_instance/child_workflow_handle.rb +54 -0
- data/lib/temporalio/internal/worker/workflow_instance/context.rb +329 -0
- data/lib/temporalio/internal/worker/workflow_instance/details.rb +44 -0
- data/lib/temporalio/internal/worker/workflow_instance/external_workflow_handle.rb +32 -0
- data/lib/temporalio/internal/worker/workflow_instance/externally_immutable_hash.rb +22 -0
- data/lib/temporalio/internal/worker/workflow_instance/handler_execution.rb +25 -0
- data/lib/temporalio/internal/worker/workflow_instance/handler_hash.rb +41 -0
- data/lib/temporalio/internal/worker/workflow_instance/illegal_call_tracer.rb +97 -0
- data/lib/temporalio/internal/worker/workflow_instance/inbound_implementation.rb +62 -0
- data/lib/temporalio/internal/worker/workflow_instance/outbound_implementation.rb +415 -0
- data/lib/temporalio/internal/worker/workflow_instance/replay_safe_logger.rb +37 -0
- data/lib/temporalio/internal/worker/workflow_instance/replay_safe_metric.rb +40 -0
- data/lib/temporalio/internal/worker/workflow_instance/scheduler.rb +163 -0
- data/lib/temporalio/internal/worker/workflow_instance.rb +730 -0
- data/lib/temporalio/internal/worker/workflow_worker.rb +196 -0
- data/lib/temporalio/internal.rb +7 -0
- data/lib/temporalio/metric.rb +109 -0
- data/lib/temporalio/retry_policy.rb +55 -73
- data/lib/temporalio/runtime.rb +302 -13
- data/lib/temporalio/scoped_logger.rb +96 -0
- data/lib/temporalio/search_attributes.rb +343 -0
- data/lib/temporalio/testing/activity_environment.rb +132 -0
- data/lib/temporalio/testing/workflow_environment.rb +345 -74
- data/lib/temporalio/testing.rb +4 -169
- data/lib/temporalio/version.rb +3 -1
- data/lib/temporalio/worker/activity_executor/fiber.rb +49 -0
- data/lib/temporalio/worker/activity_executor/thread_pool.rb +46 -0
- data/lib/temporalio/worker/activity_executor.rb +55 -0
- data/lib/temporalio/worker/interceptor.rb +362 -0
- data/lib/temporalio/worker/thread_pool.rb +237 -0
- data/lib/temporalio/worker/tuner.rb +151 -0
- data/lib/temporalio/worker/workflow_executor/thread_pool.rb +230 -0
- data/lib/temporalio/worker/workflow_executor.rb +26 -0
- data/lib/temporalio/worker.rb +554 -161
- data/lib/temporalio/workflow/activity_cancellation_type.rb +20 -0
- data/lib/temporalio/workflow/child_workflow_cancellation_type.rb +21 -0
- data/lib/temporalio/workflow/child_workflow_handle.rb +43 -0
- data/lib/temporalio/workflow/definition.rb +566 -0
- data/lib/temporalio/workflow/external_workflow_handle.rb +41 -0
- data/lib/temporalio/workflow/future.rb +117 -104
- data/lib/temporalio/workflow/handler_unfinished_policy.rb +13 -0
- data/lib/temporalio/workflow/info.rb +63 -57
- data/lib/temporalio/workflow/parent_close_policy.rb +19 -0
- data/lib/temporalio/workflow/update_info.rb +20 -0
- data/lib/temporalio/workflow.rb +523 -0
- data/lib/temporalio/workflow_history.rb +22 -0
- data/lib/temporalio.rb +6 -7
- data/temporalio.gemspec +20 -39
- metadata +171 -710
- data/bridge/Cargo.lock +0 -2997
- data/bridge/Cargo.toml +0 -29
- data/bridge/sdk-core/ARCHITECTURE.md +0 -76
- data/bridge/sdk-core/Cargo.toml +0 -2
- data/bridge/sdk-core/LICENSE.txt +0 -23
- data/bridge/sdk-core/README.md +0 -117
- data/bridge/sdk-core/arch_docs/diagrams/README.md +0 -10
- data/bridge/sdk-core/arch_docs/diagrams/sticky_queues.puml +0 -40
- data/bridge/sdk-core/arch_docs/diagrams/workflow_internals.svg +0 -1
- data/bridge/sdk-core/arch_docs/sticky_queues.md +0 -51
- data/bridge/sdk-core/client/Cargo.toml +0 -40
- data/bridge/sdk-core/client/LICENSE.txt +0 -23
- data/bridge/sdk-core/client/src/lib.rs +0 -1462
- data/bridge/sdk-core/client/src/metrics.rs +0 -174
- data/bridge/sdk-core/client/src/raw.rs +0 -932
- data/bridge/sdk-core/client/src/retry.rs +0 -763
- data/bridge/sdk-core/client/src/workflow_handle/mod.rs +0 -185
- data/bridge/sdk-core/core/Cargo.toml +0 -129
- data/bridge/sdk-core/core/LICENSE.txt +0 -23
- data/bridge/sdk-core/core/benches/workflow_replay.rs +0 -76
- data/bridge/sdk-core/core/src/abstractions.rs +0 -355
- data/bridge/sdk-core/core/src/core_tests/activity_tasks.rs +0 -1049
- data/bridge/sdk-core/core/src/core_tests/child_workflows.rs +0 -221
- data/bridge/sdk-core/core/src/core_tests/determinism.rs +0 -270
- data/bridge/sdk-core/core/src/core_tests/local_activities.rs +0 -1046
- data/bridge/sdk-core/core/src/core_tests/mod.rs +0 -100
- data/bridge/sdk-core/core/src/core_tests/queries.rs +0 -893
- data/bridge/sdk-core/core/src/core_tests/replay_flag.rs +0 -65
- data/bridge/sdk-core/core/src/core_tests/workers.rs +0 -257
- data/bridge/sdk-core/core/src/core_tests/workflow_cancels.rs +0 -124
- data/bridge/sdk-core/core/src/core_tests/workflow_tasks.rs +0 -2433
- data/bridge/sdk-core/core/src/ephemeral_server/mod.rs +0 -609
- data/bridge/sdk-core/core/src/internal_flags.rs +0 -136
- data/bridge/sdk-core/core/src/lib.rs +0 -289
- data/bridge/sdk-core/core/src/pollers/mod.rs +0 -54
- data/bridge/sdk-core/core/src/pollers/poll_buffer.rs +0 -297
- data/bridge/sdk-core/core/src/protosext/mod.rs +0 -428
- data/bridge/sdk-core/core/src/replay/mod.rs +0 -215
- data/bridge/sdk-core/core/src/retry_logic.rs +0 -202
- data/bridge/sdk-core/core/src/telemetry/log_export.rs +0 -190
- data/bridge/sdk-core/core/src/telemetry/metrics.rs +0 -462
- data/bridge/sdk-core/core/src/telemetry/mod.rs +0 -423
- data/bridge/sdk-core/core/src/telemetry/prometheus_server.rs +0 -83
- data/bridge/sdk-core/core/src/test_help/mod.rs +0 -939
- data/bridge/sdk-core/core/src/worker/activities/activity_heartbeat_manager.rs +0 -536
- data/bridge/sdk-core/core/src/worker/activities/activity_task_poller_stream.rs +0 -89
- data/bridge/sdk-core/core/src/worker/activities/local_activities.rs +0 -1278
- data/bridge/sdk-core/core/src/worker/activities.rs +0 -557
- data/bridge/sdk-core/core/src/worker/client/mocks.rs +0 -107
- data/bridge/sdk-core/core/src/worker/client.rs +0 -389
- data/bridge/sdk-core/core/src/worker/mod.rs +0 -677
- data/bridge/sdk-core/core/src/worker/workflow/bridge.rs +0 -35
- data/bridge/sdk-core/core/src/worker/workflow/driven_workflow.rs +0 -99
- data/bridge/sdk-core/core/src/worker/workflow/history_update.rs +0 -1111
- data/bridge/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +0 -964
- data/bridge/sdk-core/core/src/worker/workflow/machines/cancel_external_state_machine.rs +0 -294
- data/bridge/sdk-core/core/src/worker/workflow/machines/cancel_workflow_state_machine.rs +0 -168
- data/bridge/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +0 -918
- data/bridge/sdk-core/core/src/worker/workflow/machines/complete_workflow_state_machine.rs +0 -137
- data/bridge/sdk-core/core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs +0 -158
- data/bridge/sdk-core/core/src/worker/workflow/machines/fail_workflow_state_machine.rs +0 -130
- data/bridge/sdk-core/core/src/worker/workflow/machines/local_activity_state_machine.rs +0 -1525
- data/bridge/sdk-core/core/src/worker/workflow/machines/mod.rs +0 -324
- data/bridge/sdk-core/core/src/worker/workflow/machines/modify_workflow_properties_state_machine.rs +0 -179
- data/bridge/sdk-core/core/src/worker/workflow/machines/patch_state_machine.rs +0 -659
- data/bridge/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +0 -439
- data/bridge/sdk-core/core/src/worker/workflow/machines/timer_state_machine.rs +0 -435
- data/bridge/sdk-core/core/src/worker/workflow/machines/transition_coverage.rs +0 -175
- data/bridge/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +0 -249
- data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_machines/local_acts.rs +0 -85
- data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +0 -1280
- data/bridge/sdk-core/core/src/worker/workflow/machines/workflow_task_state_machine.rs +0 -269
- data/bridge/sdk-core/core/src/worker/workflow/managed_run/managed_wf_test.rs +0 -213
- data/bridge/sdk-core/core/src/worker/workflow/managed_run.rs +0 -1305
- data/bridge/sdk-core/core/src/worker/workflow/mod.rs +0 -1276
- data/bridge/sdk-core/core/src/worker/workflow/run_cache.rs +0 -128
- data/bridge/sdk-core/core/src/worker/workflow/wft_extraction.rs +0 -125
- data/bridge/sdk-core/core/src/worker/workflow/wft_poller.rs +0 -85
- data/bridge/sdk-core/core/src/worker/workflow/workflow_stream/saved_wf_inputs.rs +0 -117
- data/bridge/sdk-core/core/src/worker/workflow/workflow_stream/tonic_status_serde.rs +0 -24
- data/bridge/sdk-core/core/src/worker/workflow/workflow_stream.rs +0 -715
- data/bridge/sdk-core/core-api/Cargo.toml +0 -33
- data/bridge/sdk-core/core-api/LICENSE.txt +0 -23
- data/bridge/sdk-core/core-api/src/errors.rs +0 -62
- data/bridge/sdk-core/core-api/src/lib.rs +0 -113
- data/bridge/sdk-core/core-api/src/telemetry.rs +0 -141
- data/bridge/sdk-core/core-api/src/worker.rs +0 -161
- data/bridge/sdk-core/etc/deps.svg +0 -162
- data/bridge/sdk-core/etc/dynamic-config.yaml +0 -2
- data/bridge/sdk-core/etc/otel-collector-config.yaml +0 -36
- data/bridge/sdk-core/etc/prometheus.yaml +0 -6
- data/bridge/sdk-core/etc/regen-depgraph.sh +0 -5
- data/bridge/sdk-core/fsm/Cargo.toml +0 -18
- data/bridge/sdk-core/fsm/LICENSE.txt +0 -23
- data/bridge/sdk-core/fsm/README.md +0 -3
- data/bridge/sdk-core/fsm/rustfsm_procmacro/Cargo.toml +0 -27
- data/bridge/sdk-core/fsm/rustfsm_procmacro/LICENSE.txt +0 -23
- data/bridge/sdk-core/fsm/rustfsm_procmacro/src/lib.rs +0 -650
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/progress.rs +0 -8
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/dupe_transitions_fail.rs +0 -18
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/dupe_transitions_fail.stderr +0 -12
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/dynamic_dest_pass.rs +0 -41
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/forgot_name_fail.rs +0 -14
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/forgot_name_fail.stderr +0 -11
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/handler_arg_pass.rs +0 -32
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/handler_pass.rs +0 -31
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/medium_complex_pass.rs +0 -46
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.rs +0 -29
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.stderr +0 -12
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/simple_pass.rs +0 -32
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/struct_event_variant_fail.rs +0 -18
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/struct_event_variant_fail.stderr +0 -5
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_more_item_event_variant_fail.rs +0 -11
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_more_item_event_variant_fail.stderr +0 -5
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_zero_item_event_variant_fail.rs +0 -11
- data/bridge/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/tuple_zero_item_event_variant_fail.stderr +0 -5
- data/bridge/sdk-core/fsm/rustfsm_trait/Cargo.toml +0 -14
- data/bridge/sdk-core/fsm/rustfsm_trait/LICENSE.txt +0 -23
- data/bridge/sdk-core/fsm/rustfsm_trait/src/lib.rs +0 -254
- data/bridge/sdk-core/fsm/src/lib.rs +0 -2
- data/bridge/sdk-core/histories/evict_while_la_running_no_interference-16_history.bin +0 -0
- data/bridge/sdk-core/histories/evict_while_la_running_no_interference-23_history.bin +0 -0
- data/bridge/sdk-core/histories/evict_while_la_running_no_interference-85_history.bin +0 -0
- data/bridge/sdk-core/histories/fail_wf_task.bin +0 -0
- data/bridge/sdk-core/histories/timer_workflow_history.bin +0 -0
- data/bridge/sdk-core/integ-with-otel.sh +0 -7
- data/bridge/sdk-core/protos/api_upstream/README.md +0 -9
- data/bridge/sdk-core/protos/api_upstream/api-linter.yaml +0 -40
- data/bridge/sdk-core/protos/api_upstream/buf.yaml +0 -9
- data/bridge/sdk-core/protos/api_upstream/build/go.mod +0 -7
- data/bridge/sdk-core/protos/api_upstream/build/go.sum +0 -5
- data/bridge/sdk-core/protos/api_upstream/build/tools.go +0 -29
- data/bridge/sdk-core/protos/api_upstream/dependencies/gogoproto/gogo.proto +0 -141
- data/bridge/sdk-core/protos/api_upstream/go.mod +0 -6
- data/bridge/sdk-core/protos/api_upstream/temporal/api/batch/v1/message.proto +0 -89
- data/bridge/sdk-core/protos/api_upstream/temporal/api/command/v1/message.proto +0 -248
- data/bridge/sdk-core/protos/api_upstream/temporal/api/common/v1/message.proto +0 -123
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/batch_operation.proto +0 -47
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/command_type.proto +0 -52
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/common.proto +0 -56
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/event_type.proto +0 -170
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +0 -123
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/namespace.proto +0 -51
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/query.proto +0 -50
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/reset.proto +0 -41
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/schedule.proto +0 -60
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/task_queue.proto +0 -59
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/update.proto +0 -56
- data/bridge/sdk-core/protos/api_upstream/temporal/api/enums/v1/workflow.proto +0 -122
- data/bridge/sdk-core/protos/api_upstream/temporal/api/errordetails/v1/message.proto +0 -108
- data/bridge/sdk-core/protos/api_upstream/temporal/api/failure/v1/message.proto +0 -114
- data/bridge/sdk-core/protos/api_upstream/temporal/api/filter/v1/message.proto +0 -56
- data/bridge/sdk-core/protos/api_upstream/temporal/api/history/v1/message.proto +0 -787
- data/bridge/sdk-core/protos/api_upstream/temporal/api/namespace/v1/message.proto +0 -99
- data/bridge/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +0 -124
- data/bridge/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +0 -80
- data/bridge/sdk-core/protos/api_upstream/temporal/api/protocol/v1/message.proto +0 -57
- data/bridge/sdk-core/protos/api_upstream/temporal/api/query/v1/message.proto +0 -61
- data/bridge/sdk-core/protos/api_upstream/temporal/api/replication/v1/message.proto +0 -55
- data/bridge/sdk-core/protos/api_upstream/temporal/api/schedule/v1/message.proto +0 -379
- data/bridge/sdk-core/protos/api_upstream/temporal/api/sdk/v1/task_complete_metadata.proto +0 -63
- data/bridge/sdk-core/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +0 -108
- data/bridge/sdk-core/protos/api_upstream/temporal/api/update/v1/message.proto +0 -111
- data/bridge/sdk-core/protos/api_upstream/temporal/api/version/v1/message.proto +0 -59
- data/bridge/sdk-core/protos/api_upstream/temporal/api/workflow/v1/message.proto +0 -146
- data/bridge/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +0 -1199
- data/bridge/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +0 -415
- data/bridge/sdk-core/protos/grpc/health/v1/health.proto +0 -63
- data/bridge/sdk-core/protos/local/temporal/sdk/core/activity_result/activity_result.proto +0 -79
- data/bridge/sdk-core/protos/local/temporal/sdk/core/activity_task/activity_task.proto +0 -80
- data/bridge/sdk-core/protos/local/temporal/sdk/core/child_workflow/child_workflow.proto +0 -78
- data/bridge/sdk-core/protos/local/temporal/sdk/core/common/common.proto +0 -16
- data/bridge/sdk-core/protos/local/temporal/sdk/core/core_interface.proto +0 -31
- data/bridge/sdk-core/protos/local/temporal/sdk/core/external_data/external_data.proto +0 -31
- data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +0 -270
- data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +0 -305
- data/bridge/sdk-core/protos/local/temporal/sdk/core/workflow_completion/workflow_completion.proto +0 -35
- data/bridge/sdk-core/protos/testsrv_upstream/api-linter.yaml +0 -38
- data/bridge/sdk-core/protos/testsrv_upstream/buf.yaml +0 -13
- data/bridge/sdk-core/protos/testsrv_upstream/dependencies/gogoproto/gogo.proto +0 -141
- data/bridge/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/request_response.proto +0 -63
- data/bridge/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/service.proto +0 -90
- data/bridge/sdk-core/rustfmt.toml +0 -1
- data/bridge/sdk-core/sdk/Cargo.toml +0 -48
- data/bridge/sdk-core/sdk/LICENSE.txt +0 -23
- data/bridge/sdk-core/sdk/src/activity_context.rs +0 -230
- data/bridge/sdk-core/sdk/src/app_data.rs +0 -37
- data/bridge/sdk-core/sdk/src/interceptors.rs +0 -50
- data/bridge/sdk-core/sdk/src/lib.rs +0 -861
- data/bridge/sdk-core/sdk/src/payload_converter.rs +0 -11
- data/bridge/sdk-core/sdk/src/workflow_context/options.rs +0 -295
- data/bridge/sdk-core/sdk/src/workflow_context.rs +0 -694
- data/bridge/sdk-core/sdk/src/workflow_future.rs +0 -500
- data/bridge/sdk-core/sdk-core-protos/Cargo.toml +0 -33
- data/bridge/sdk-core/sdk-core-protos/LICENSE.txt +0 -23
- data/bridge/sdk-core/sdk-core-protos/build.rs +0 -142
- data/bridge/sdk-core/sdk-core-protos/src/constants.rs +0 -7
- data/bridge/sdk-core/sdk-core-protos/src/history_builder.rs +0 -557
- data/bridge/sdk-core/sdk-core-protos/src/history_info.rs +0 -234
- data/bridge/sdk-core/sdk-core-protos/src/lib.rs +0 -2088
- data/bridge/sdk-core/sdk-core-protos/src/task_token.rs +0 -48
- data/bridge/sdk-core/sdk-core-protos/src/utilities.rs +0 -14
- data/bridge/sdk-core/test-utils/Cargo.toml +0 -38
- data/bridge/sdk-core/test-utils/src/canned_histories.rs +0 -1389
- data/bridge/sdk-core/test-utils/src/histfetch.rs +0 -28
- data/bridge/sdk-core/test-utils/src/lib.rs +0 -709
- data/bridge/sdk-core/test-utils/src/wf_input_saver.rs +0 -50
- data/bridge/sdk-core/test-utils/src/workflows.rs +0 -29
- data/bridge/sdk-core/tests/fuzzy_workflow.rs +0 -130
- data/bridge/sdk-core/tests/heavy_tests.rs +0 -265
- data/bridge/sdk-core/tests/integ_tests/client_tests.rs +0 -36
- data/bridge/sdk-core/tests/integ_tests/ephemeral_server_tests.rs +0 -150
- data/bridge/sdk-core/tests/integ_tests/heartbeat_tests.rs +0 -223
- data/bridge/sdk-core/tests/integ_tests/metrics_tests.rs +0 -239
- data/bridge/sdk-core/tests/integ_tests/polling_tests.rs +0 -90
- data/bridge/sdk-core/tests/integ_tests/queries_tests.rs +0 -314
- data/bridge/sdk-core/tests/integ_tests/visibility_tests.rs +0 -151
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/activities.rs +0 -902
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/appdata_propagation.rs +0 -61
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/cancel_external.rs +0 -60
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/cancel_wf.rs +0 -51
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/child_workflows.rs +0 -51
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/continue_as_new.rs +0 -64
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/determinism.rs +0 -47
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +0 -669
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/modify_wf_properties.rs +0 -54
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/patches.rs +0 -92
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/replay.rs +0 -228
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/resets.rs +0 -94
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/signals.rs +0 -171
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/stickyness.rs +0 -85
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/timers.rs +0 -120
- data/bridge/sdk-core/tests/integ_tests/workflow_tests/upsert_search_attrs.rs +0 -77
- data/bridge/sdk-core/tests/integ_tests/workflow_tests.rs +0 -596
- data/bridge/sdk-core/tests/main.rs +0 -103
- data/bridge/sdk-core/tests/runner.rs +0 -132
- data/bridge/sdk-core/tests/wf_input_replay.rs +0 -32
- data/bridge/src/connection.rs +0 -202
- data/bridge/src/lib.rs +0 -494
- data/bridge/src/runtime.rs +0 -54
- data/bridge/src/test_server.rs +0 -153
- data/bridge/src/worker.rs +0 -197
- data/ext/Rakefile +0 -9
- data/lib/gen/dependencies/gogoproto/gogo_pb.rb +0 -14
- data/lib/gen/temporal/api/batch/v1/message_pb.rb +0 -50
- data/lib/gen/temporal/api/command/v1/message_pb.rb +0 -160
- data/lib/gen/temporal/api/common/v1/message_pb.rb +0 -73
- data/lib/gen/temporal/api/enums/v1/batch_operation_pb.rb +0 -33
- data/lib/gen/temporal/api/enums/v1/command_type_pb.rb +0 -37
- data/lib/gen/temporal/api/enums/v1/common_pb.rb +0 -42
- data/lib/gen/temporal/api/enums/v1/event_type_pb.rb +0 -68
- data/lib/gen/temporal/api/enums/v1/failed_cause_pb.rb +0 -79
- data/lib/gen/temporal/api/enums/v1/namespace_pb.rb +0 -37
- data/lib/gen/temporal/api/enums/v1/query_pb.rb +0 -31
- data/lib/gen/temporal/api/enums/v1/reset_pb.rb +0 -24
- data/lib/gen/temporal/api/enums/v1/schedule_pb.rb +0 -28
- data/lib/gen/temporal/api/enums/v1/task_queue_pb.rb +0 -30
- data/lib/gen/temporal/api/enums/v1/update_pb.rb +0 -25
- data/lib/gen/temporal/api/enums/v1/workflow_pb.rb +0 -89
- data/lib/gen/temporal/api/errordetails/v1/message_pb.rb +0 -84
- data/lib/gen/temporal/api/failure/v1/message_pb.rb +0 -83
- data/lib/gen/temporal/api/filter/v1/message_pb.rb +0 -40
- data/lib/gen/temporal/api/history/v1/message_pb.rb +0 -498
- data/lib/gen/temporal/api/namespace/v1/message_pb.rb +0 -64
- data/lib/gen/temporal/api/operatorservice/v1/request_response_pb.rb +0 -88
- data/lib/gen/temporal/api/operatorservice/v1/service_pb.rb +0 -20
- data/lib/gen/temporal/api/protocol/v1/message_pb.rb +0 -30
- data/lib/gen/temporal/api/query/v1/message_pb.rb +0 -38
- data/lib/gen/temporal/api/replication/v1/message_pb.rb +0 -37
- data/lib/gen/temporal/api/schedule/v1/message_pb.rb +0 -149
- data/lib/gen/temporal/api/sdk/v1/task_complete_metadata_pb.rb +0 -23
- data/lib/gen/temporal/api/taskqueue/v1/message_pb.rb +0 -73
- data/lib/gen/temporal/api/testservice/v1/service_pb.rb +0 -21
- data/lib/gen/temporal/api/update/v1/message_pb.rb +0 -72
- data/lib/gen/temporal/api/version/v1/message_pb.rb +0 -41
- data/lib/gen/temporal/api/workflow/v1/message_pb.rb +0 -111
- data/lib/gen/temporal/api/workflowservice/v1/request_response_pb.rb +0 -798
- data/lib/gen/temporal/api/workflowservice/v1/service_pb.rb +0 -20
- data/lib/gen/temporal/sdk/core/activity_result/activity_result_pb.rb +0 -62
- data/lib/gen/temporal/sdk/core/activity_task/activity_task_pb.rb +0 -61
- data/lib/gen/temporal/sdk/core/child_workflow/child_workflow_pb.rb +0 -61
- data/lib/gen/temporal/sdk/core/common/common_pb.rb +0 -26
- data/lib/gen/temporal/sdk/core/core_interface_pb.rb +0 -40
- data/lib/gen/temporal/sdk/core/external_data/external_data_pb.rb +0 -31
- data/lib/gen/temporal/sdk/core/workflow_activation/workflow_activation_pb.rb +0 -171
- data/lib/gen/temporal/sdk/core/workflow_commands/workflow_commands_pb.rb +0 -200
- data/lib/gen/temporal/sdk/core/workflow_completion/workflow_completion_pb.rb +0 -41
- data/lib/temporalio/bridge/connect_options.rb +0 -15
- data/lib/temporalio/bridge/error.rb +0 -8
- data/lib/temporalio/bridge/retry_config.rb +0 -24
- data/lib/temporalio/bridge/tls_options.rb +0 -19
- data/lib/temporalio/bridge.rb +0 -14
- data/lib/temporalio/client/implementation.rb +0 -340
- data/lib/temporalio/connection/retry_config.rb +0 -44
- data/lib/temporalio/connection/service.rb +0 -20
- data/lib/temporalio/connection/test_service.rb +0 -92
- data/lib/temporalio/connection/tls_options.rb +0 -51
- data/lib/temporalio/connection/workflow_service.rb +0 -731
- data/lib/temporalio/connection.rb +0 -86
- data/lib/temporalio/data_converter.rb +0 -191
- data/lib/temporalio/error/workflow_failure.rb +0 -19
- data/lib/temporalio/errors.rb +0 -40
- data/lib/temporalio/failure_converter/base.rb +0 -26
- data/lib/temporalio/failure_converter/basic.rb +0 -319
- data/lib/temporalio/failure_converter.rb +0 -7
- data/lib/temporalio/interceptor/activity_inbound.rb +0 -22
- data/lib/temporalio/interceptor/activity_outbound.rb +0 -24
- data/lib/temporalio/interceptor/chain.rb +0 -28
- data/lib/temporalio/interceptor/client.rb +0 -127
- data/lib/temporalio/interceptor.rb +0 -22
- data/lib/temporalio/payload_codec/base.rb +0 -32
- data/lib/temporalio/payload_converter/base.rb +0 -24
- data/lib/temporalio/payload_converter/bytes.rb +0 -27
- data/lib/temporalio/payload_converter/composite.rb +0 -49
- data/lib/temporalio/payload_converter/encoding_base.rb +0 -35
- data/lib/temporalio/payload_converter/json.rb +0 -26
- data/lib/temporalio/payload_converter/nil.rb +0 -26
- data/lib/temporalio/payload_converter.rb +0 -14
- data/lib/temporalio/retry_state.rb +0 -35
- data/lib/temporalio/testing/time_skipping_handle.rb +0 -32
- data/lib/temporalio/testing/time_skipping_interceptor.rb +0 -23
- data/lib/temporalio/timeout_type.rb +0 -29
- data/lib/temporalio/worker/activity_runner.rb +0 -114
- data/lib/temporalio/worker/activity_worker.rb +0 -164
- data/lib/temporalio/worker/reactor.rb +0 -46
- data/lib/temporalio/worker/runner.rb +0 -63
- data/lib/temporalio/worker/sync_worker.rb +0 -124
- data/lib/temporalio/worker/thread_pool_executor.rb +0 -51
- data/lib/temporalio/workflow/async.rb +0 -46
- data/lib/temporalio/workflow/execution_info.rb +0 -54
- data/lib/temporalio/workflow/execution_status.rb +0 -36
- data/lib/temporalio/workflow/id_reuse_policy.rb +0 -36
- data/lib/temporalio/workflow/query_reject_condition.rb +0 -33
- data/lib/thermite_patch.rb +0 -33
- data/sig/async.rbs +0 -17
- data/sig/protobuf.rbs +0 -16
- data/sig/protos/dependencies/gogoproto/gogo.rbs +0 -914
- data/sig/protos/google/protobuf/any.rbs +0 -157
- data/sig/protos/google/protobuf/descriptor.rbs +0 -2825
- data/sig/protos/google/protobuf/duration.rbs +0 -114
- data/sig/protos/google/protobuf/empty.rbs +0 -36
- data/sig/protos/google/protobuf/timestamp.rbs +0 -145
- data/sig/protos/google/protobuf/wrappers.rbs +0 -358
- data/sig/protos/temporal/api/batch/v1/message.rbs +0 -300
- data/sig/protos/temporal/api/command/v1/message.rbs +0 -1399
- data/sig/protos/temporal/api/common/v1/message.rbs +0 -528
- data/sig/protos/temporal/api/enums/v1/batch_operation.rbs +0 -79
- data/sig/protos/temporal/api/enums/v1/command_type.rbs +0 -68
- data/sig/protos/temporal/api/enums/v1/common.rbs +0 -118
- data/sig/protos/temporal/api/enums/v1/event_type.rbs +0 -264
- data/sig/protos/temporal/api/enums/v1/failed_cause.rbs +0 -277
- data/sig/protos/temporal/api/enums/v1/namespace.rbs +0 -108
- data/sig/protos/temporal/api/enums/v1/query.rbs +0 -81
- data/sig/protos/temporal/api/enums/v1/reset.rbs +0 -44
- data/sig/protos/temporal/api/enums/v1/schedule.rbs +0 -72
- data/sig/protos/temporal/api/enums/v1/task_queue.rbs +0 -92
- data/sig/protos/temporal/api/enums/v1/update.rbs +0 -64
- data/sig/protos/temporal/api/enums/v1/workflow.rbs +0 -371
- data/sig/protos/temporal/api/errordetails/v1/message.rbs +0 -551
- data/sig/protos/temporal/api/failure/v1/message.rbs +0 -581
- data/sig/protos/temporal/api/filter/v1/message.rbs +0 -171
- data/sig/protos/temporal/api/history/v1/message.rbs +0 -4609
- data/sig/protos/temporal/api/namespace/v1/message.rbs +0 -410
- data/sig/protos/temporal/api/operatorservice/v1/request_response.rbs +0 -643
- data/sig/protos/temporal/api/operatorservice/v1/service.rbs +0 -17
- data/sig/protos/temporal/api/protocol/v1/message.rbs +0 -84
- data/sig/protos/temporal/api/query/v1/message.rbs +0 -182
- data/sig/protos/temporal/api/replication/v1/message.rbs +0 -148
- data/sig/protos/temporal/api/schedule/v1/message.rbs +0 -1488
- data/sig/protos/temporal/api/sdk/v1/task_complete_metadata.rbs +0 -110
- data/sig/protos/temporal/api/taskqueue/v1/message.rbs +0 -486
- data/sig/protos/temporal/api/testservice/v1/request_response.rbs +0 -249
- data/sig/protos/temporal/api/testservice/v1/service.rbs +0 -15
- data/sig/protos/temporal/api/update/v1/message.rbs +0 -489
- data/sig/protos/temporal/api/version/v1/message.rbs +0 -184
- data/sig/protos/temporal/api/workflow/v1/message.rbs +0 -824
- data/sig/protos/temporal/api/workflowservice/v1/request_response.rbs +0 -7250
- data/sig/protos/temporal/api/workflowservice/v1/service.rbs +0 -22
- data/sig/protos/temporal/sdk/core/activity_result/activity_result.rbs +0 -380
- data/sig/protos/temporal/sdk/core/activity_task/activity_task.rbs +0 -386
- data/sig/protos/temporal/sdk/core/child_workflow/child_workflow.rbs +0 -323
- data/sig/protos/temporal/sdk/core/common/common.rbs +0 -62
- data/sig/protos/temporal/sdk/core/core_interface.rbs +0 -101
- data/sig/protos/temporal/sdk/core/external_data/external_data.rbs +0 -119
- data/sig/protos/temporal/sdk/core/workflow_activation/workflow_activation.rbs +0 -1473
- data/sig/protos/temporal/sdk/core/workflow_commands/workflow_commands.rbs +0 -1784
- data/sig/protos/temporal/sdk/core/workflow_completion/workflow_completion.rbs +0 -180
- data/sig/ruby.rbs +0 -12
- data/sig/temporalio/activity/context.rbs +0 -29
- data/sig/temporalio/activity/info.rbs +0 -43
- data/sig/temporalio/activity.rbs +0 -19
- data/sig/temporalio/bridge/connect_options.rbs +0 -19
- data/sig/temporalio/bridge/error.rbs +0 -8
- data/sig/temporalio/bridge/retry_config.rbs +0 -21
- data/sig/temporalio/bridge/tls_options.rbs +0 -17
- data/sig/temporalio/bridge.rbs +0 -71
- data/sig/temporalio/client/implementation.rbs +0 -38
- data/sig/temporalio/client/workflow_handle.rbs +0 -41
- data/sig/temporalio/client.rbs +0 -35
- data/sig/temporalio/connection/retry_config.rbs +0 -37
- data/sig/temporalio/connection/service.rbs +0 -14
- data/sig/temporalio/connection/test_service.rbs +0 -13
- data/sig/temporalio/connection/tls_options.rbs +0 -43
- data/sig/temporalio/connection/workflow_service.rbs +0 -48
- data/sig/temporalio/connection.rbs +0 -30
- data/sig/temporalio/data_converter.rbs +0 -35
- data/sig/temporalio/error/failure.rbs +0 -121
- data/sig/temporalio/error/workflow_failure.rbs +0 -9
- data/sig/temporalio/errors.rbs +0 -36
- data/sig/temporalio/failure_converter/base.rbs +0 -12
- data/sig/temporalio/failure_converter/basic.rbs +0 -86
- data/sig/temporalio/failure_converter.rbs +0 -5
- data/sig/temporalio/interceptor/activity_inbound.rbs +0 -21
- data/sig/temporalio/interceptor/activity_outbound.rbs +0 -10
- data/sig/temporalio/interceptor/chain.rbs +0 -24
- data/sig/temporalio/interceptor/client.rbs +0 -148
- data/sig/temporalio/interceptor.rbs +0 -6
- data/sig/temporalio/payload_codec/base.rbs +0 -12
- data/sig/temporalio/payload_converter/base.rbs +0 -12
- data/sig/temporalio/payload_converter/bytes.rbs +0 -9
- data/sig/temporalio/payload_converter/composite.rbs +0 -19
- data/sig/temporalio/payload_converter/encoding_base.rbs +0 -14
- data/sig/temporalio/payload_converter/json.rbs +0 -9
- data/sig/temporalio/payload_converter/nil.rbs +0 -9
- data/sig/temporalio/payload_converter.rbs +0 -5
- data/sig/temporalio/retry_policy.rbs +0 -25
- data/sig/temporalio/retry_state.rbs +0 -20
- data/sig/temporalio/runtime.rbs +0 -12
- data/sig/temporalio/testing/time_skipping_handle.rbs +0 -15
- data/sig/temporalio/testing/time_skipping_interceptor.rbs +0 -13
- data/sig/temporalio/testing/workflow_environment.rbs +0 -22
- data/sig/temporalio/testing.rbs +0 -35
- data/sig/temporalio/timeout_type.rbs +0 -15
- data/sig/temporalio/version.rbs +0 -3
- data/sig/temporalio/worker/activity_runner.rbs +0 -35
- data/sig/temporalio/worker/activity_worker.rbs +0 -44
- data/sig/temporalio/worker/reactor.rbs +0 -22
- data/sig/temporalio/worker/runner.rbs +0 -21
- data/sig/temporalio/worker/sync_worker.rbs +0 -23
- data/sig/temporalio/worker/thread_pool_executor.rbs +0 -23
- data/sig/temporalio/worker.rbs +0 -46
- data/sig/temporalio/workflow/async.rbs +0 -9
- data/sig/temporalio/workflow/execution_info.rbs +0 -55
- data/sig/temporalio/workflow/execution_status.rbs +0 -21
- data/sig/temporalio/workflow/future.rbs +0 -40
- data/sig/temporalio/workflow/id_reuse_policy.rbs +0 -15
- data/sig/temporalio/workflow/info.rbs +0 -55
- data/sig/temporalio/workflow/query_reject_condition.rbs +0 -14
- data/sig/temporalio.rbs +0 -2
- data/sig/thermite_patch.rbs +0 -15
data/Cargo.lock
ADDED
@@ -0,0 +1,4324 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 4
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "addr2line"
|
7
|
+
version = "0.24.2"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
10
|
+
dependencies = [
|
11
|
+
"gimli",
|
12
|
+
]
|
13
|
+
|
14
|
+
[[package]]
|
15
|
+
name = "adler2"
|
16
|
+
version = "2.0.0"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
19
|
+
|
20
|
+
[[package]]
|
21
|
+
name = "aes"
|
22
|
+
version = "0.8.4"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
25
|
+
dependencies = [
|
26
|
+
"cfg-if",
|
27
|
+
"cipher",
|
28
|
+
"cpufeatures",
|
29
|
+
]
|
30
|
+
|
31
|
+
[[package]]
|
32
|
+
name = "aho-corasick"
|
33
|
+
version = "1.1.3"
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
35
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
36
|
+
dependencies = [
|
37
|
+
"memchr",
|
38
|
+
]
|
39
|
+
|
40
|
+
[[package]]
|
41
|
+
name = "allocator-api2"
|
42
|
+
version = "0.2.21"
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
45
|
+
|
46
|
+
[[package]]
|
47
|
+
name = "anes"
|
48
|
+
version = "0.1.6"
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
51
|
+
|
52
|
+
[[package]]
|
53
|
+
name = "anstream"
|
54
|
+
version = "0.6.18"
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
|
+
checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
|
57
|
+
dependencies = [
|
58
|
+
"anstyle",
|
59
|
+
"anstyle-parse",
|
60
|
+
"anstyle-query",
|
61
|
+
"anstyle-wincon",
|
62
|
+
"colorchoice",
|
63
|
+
"is_terminal_polyfill",
|
64
|
+
"utf8parse",
|
65
|
+
]
|
66
|
+
|
67
|
+
[[package]]
|
68
|
+
name = "anstyle"
|
69
|
+
version = "1.0.10"
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
71
|
+
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
|
72
|
+
|
73
|
+
[[package]]
|
74
|
+
name = "anstyle-parse"
|
75
|
+
version = "0.2.6"
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
77
|
+
checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
|
78
|
+
dependencies = [
|
79
|
+
"utf8parse",
|
80
|
+
]
|
81
|
+
|
82
|
+
[[package]]
|
83
|
+
name = "anstyle-query"
|
84
|
+
version = "1.1.2"
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
86
|
+
checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
|
87
|
+
dependencies = [
|
88
|
+
"windows-sys 0.59.0",
|
89
|
+
]
|
90
|
+
|
91
|
+
[[package]]
|
92
|
+
name = "anstyle-wincon"
|
93
|
+
version = "3.0.7"
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
95
|
+
checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
|
96
|
+
dependencies = [
|
97
|
+
"anstyle",
|
98
|
+
"once_cell",
|
99
|
+
"windows-sys 0.59.0",
|
100
|
+
]
|
101
|
+
|
102
|
+
[[package]]
|
103
|
+
name = "anyhow"
|
104
|
+
version = "1.0.95"
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
106
|
+
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
|
107
|
+
|
108
|
+
[[package]]
|
109
|
+
name = "arbitrary"
|
110
|
+
version = "1.4.1"
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
112
|
+
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
113
|
+
dependencies = [
|
114
|
+
"derive_arbitrary",
|
115
|
+
]
|
116
|
+
|
117
|
+
[[package]]
|
118
|
+
name = "assert_matches"
|
119
|
+
version = "1.5.0"
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
121
|
+
checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
|
122
|
+
|
123
|
+
[[package]]
|
124
|
+
name = "async-stream"
|
125
|
+
version = "0.3.6"
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
127
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
128
|
+
dependencies = [
|
129
|
+
"async-stream-impl",
|
130
|
+
"futures-core",
|
131
|
+
"pin-project-lite",
|
132
|
+
]
|
133
|
+
|
134
|
+
[[package]]
|
135
|
+
name = "async-stream-impl"
|
136
|
+
version = "0.3.6"
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
138
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
139
|
+
dependencies = [
|
140
|
+
"proc-macro2",
|
141
|
+
"quote",
|
142
|
+
"syn",
|
143
|
+
]
|
144
|
+
|
145
|
+
[[package]]
|
146
|
+
name = "async-trait"
|
147
|
+
version = "0.1.85"
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
149
|
+
checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056"
|
150
|
+
dependencies = [
|
151
|
+
"proc-macro2",
|
152
|
+
"quote",
|
153
|
+
"syn",
|
154
|
+
]
|
155
|
+
|
156
|
+
[[package]]
|
157
|
+
name = "atomic-waker"
|
158
|
+
version = "1.1.2"
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
160
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
161
|
+
|
162
|
+
[[package]]
|
163
|
+
name = "autocfg"
|
164
|
+
version = "1.4.0"
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
166
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
167
|
+
|
168
|
+
[[package]]
|
169
|
+
name = "axum"
|
170
|
+
version = "0.7.9"
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
172
|
+
checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
|
173
|
+
dependencies = [
|
174
|
+
"async-trait",
|
175
|
+
"axum-core",
|
176
|
+
"bytes",
|
177
|
+
"futures-util",
|
178
|
+
"http",
|
179
|
+
"http-body",
|
180
|
+
"http-body-util",
|
181
|
+
"itoa",
|
182
|
+
"matchit",
|
183
|
+
"memchr",
|
184
|
+
"mime",
|
185
|
+
"percent-encoding",
|
186
|
+
"pin-project-lite",
|
187
|
+
"rustversion",
|
188
|
+
"serde",
|
189
|
+
"sync_wrapper",
|
190
|
+
"tower 0.5.2",
|
191
|
+
"tower-layer",
|
192
|
+
"tower-service",
|
193
|
+
]
|
194
|
+
|
195
|
+
[[package]]
|
196
|
+
name = "axum-core"
|
197
|
+
version = "0.4.5"
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
199
|
+
checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
|
200
|
+
dependencies = [
|
201
|
+
"async-trait",
|
202
|
+
"bytes",
|
203
|
+
"futures-util",
|
204
|
+
"http",
|
205
|
+
"http-body",
|
206
|
+
"http-body-util",
|
207
|
+
"mime",
|
208
|
+
"pin-project-lite",
|
209
|
+
"rustversion",
|
210
|
+
"sync_wrapper",
|
211
|
+
"tower-layer",
|
212
|
+
"tower-service",
|
213
|
+
]
|
214
|
+
|
215
|
+
[[package]]
|
216
|
+
name = "backoff"
|
217
|
+
version = "0.4.0"
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
219
|
+
checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
|
220
|
+
dependencies = [
|
221
|
+
"getrandom",
|
222
|
+
"instant",
|
223
|
+
"rand",
|
224
|
+
]
|
225
|
+
|
226
|
+
[[package]]
|
227
|
+
name = "backtrace"
|
228
|
+
version = "0.3.74"
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
230
|
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
231
|
+
dependencies = [
|
232
|
+
"addr2line",
|
233
|
+
"cfg-if",
|
234
|
+
"libc",
|
235
|
+
"miniz_oxide",
|
236
|
+
"object",
|
237
|
+
"rustc-demangle",
|
238
|
+
"windows-targets",
|
239
|
+
]
|
240
|
+
|
241
|
+
[[package]]
|
242
|
+
name = "base64"
|
243
|
+
version = "0.21.7"
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
245
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
246
|
+
|
247
|
+
[[package]]
|
248
|
+
name = "base64"
|
249
|
+
version = "0.22.1"
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
251
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
252
|
+
|
253
|
+
[[package]]
|
254
|
+
name = "bimap"
|
255
|
+
version = "0.6.3"
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
257
|
+
checksum = "230c5f1ca6a325a32553f8640d31ac9b49f2411e901e427570154868b46da4f7"
|
258
|
+
|
259
|
+
[[package]]
|
260
|
+
name = "bindgen"
|
261
|
+
version = "0.69.5"
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
263
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
264
|
+
dependencies = [
|
265
|
+
"bitflags",
|
266
|
+
"cexpr",
|
267
|
+
"clang-sys",
|
268
|
+
"itertools 0.12.1",
|
269
|
+
"lazy_static",
|
270
|
+
"lazycell",
|
271
|
+
"proc-macro2",
|
272
|
+
"quote",
|
273
|
+
"regex",
|
274
|
+
"rustc-hash 1.1.0",
|
275
|
+
"shlex",
|
276
|
+
"syn",
|
277
|
+
]
|
278
|
+
|
279
|
+
[[package]]
|
280
|
+
name = "bitflags"
|
281
|
+
version = "2.8.0"
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
283
|
+
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
|
284
|
+
|
285
|
+
[[package]]
|
286
|
+
name = "block-buffer"
|
287
|
+
version = "0.10.4"
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
289
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
290
|
+
dependencies = [
|
291
|
+
"generic-array",
|
292
|
+
]
|
293
|
+
|
294
|
+
[[package]]
|
295
|
+
name = "bumpalo"
|
296
|
+
version = "3.16.0"
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
298
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
299
|
+
|
300
|
+
[[package]]
|
301
|
+
name = "byteorder"
|
302
|
+
version = "1.5.0"
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
304
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
305
|
+
|
306
|
+
[[package]]
|
307
|
+
name = "bytes"
|
308
|
+
version = "1.9.0"
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
310
|
+
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
|
311
|
+
|
312
|
+
[[package]]
|
313
|
+
name = "bzip2"
|
314
|
+
version = "0.4.4"
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
316
|
+
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
|
317
|
+
dependencies = [
|
318
|
+
"bzip2-sys",
|
319
|
+
"libc",
|
320
|
+
]
|
321
|
+
|
322
|
+
[[package]]
|
323
|
+
name = "bzip2-sys"
|
324
|
+
version = "0.1.11+1.0.8"
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
326
|
+
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
|
327
|
+
dependencies = [
|
328
|
+
"cc",
|
329
|
+
"libc",
|
330
|
+
"pkg-config",
|
331
|
+
]
|
332
|
+
|
333
|
+
[[package]]
|
334
|
+
name = "cast"
|
335
|
+
version = "0.3.0"
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
337
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
338
|
+
|
339
|
+
[[package]]
|
340
|
+
name = "cc"
|
341
|
+
version = "1.2.10"
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
343
|
+
checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
|
344
|
+
dependencies = [
|
345
|
+
"jobserver",
|
346
|
+
"libc",
|
347
|
+
"shlex",
|
348
|
+
]
|
349
|
+
|
350
|
+
[[package]]
|
351
|
+
name = "cexpr"
|
352
|
+
version = "0.6.0"
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
354
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
355
|
+
dependencies = [
|
356
|
+
"nom",
|
357
|
+
]
|
358
|
+
|
359
|
+
[[package]]
|
360
|
+
name = "cfg-if"
|
361
|
+
version = "1.0.0"
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
363
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
364
|
+
|
365
|
+
[[package]]
|
366
|
+
name = "cfg_aliases"
|
367
|
+
version = "0.2.1"
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
369
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
370
|
+
|
371
|
+
[[package]]
|
372
|
+
name = "chrono"
|
373
|
+
version = "0.4.39"
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
375
|
+
checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
|
376
|
+
dependencies = [
|
377
|
+
"num-traits",
|
378
|
+
"serde",
|
379
|
+
]
|
380
|
+
|
381
|
+
[[package]]
|
382
|
+
name = "ciborium"
|
383
|
+
version = "0.2.2"
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
385
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
386
|
+
dependencies = [
|
387
|
+
"ciborium-io",
|
388
|
+
"ciborium-ll",
|
389
|
+
"serde",
|
390
|
+
]
|
391
|
+
|
392
|
+
[[package]]
|
393
|
+
name = "ciborium-io"
|
394
|
+
version = "0.2.2"
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
396
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
397
|
+
|
398
|
+
[[package]]
|
399
|
+
name = "ciborium-ll"
|
400
|
+
version = "0.2.2"
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
402
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
403
|
+
dependencies = [
|
404
|
+
"ciborium-io",
|
405
|
+
"half",
|
406
|
+
]
|
407
|
+
|
408
|
+
[[package]]
|
409
|
+
name = "cipher"
|
410
|
+
version = "0.4.4"
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
412
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
413
|
+
dependencies = [
|
414
|
+
"crypto-common",
|
415
|
+
"inout",
|
416
|
+
]
|
417
|
+
|
418
|
+
[[package]]
|
419
|
+
name = "clang-sys"
|
420
|
+
version = "1.8.1"
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
422
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
423
|
+
dependencies = [
|
424
|
+
"glob",
|
425
|
+
"libc",
|
426
|
+
"libloading",
|
427
|
+
]
|
428
|
+
|
429
|
+
[[package]]
|
430
|
+
name = "clap"
|
431
|
+
version = "4.5.26"
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
433
|
+
checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783"
|
434
|
+
dependencies = [
|
435
|
+
"clap_builder",
|
436
|
+
"clap_derive",
|
437
|
+
]
|
438
|
+
|
439
|
+
[[package]]
|
440
|
+
name = "clap_builder"
|
441
|
+
version = "4.5.26"
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
443
|
+
checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121"
|
444
|
+
dependencies = [
|
445
|
+
"anstream",
|
446
|
+
"anstyle",
|
447
|
+
"clap_lex",
|
448
|
+
"strsim",
|
449
|
+
]
|
450
|
+
|
451
|
+
[[package]]
|
452
|
+
name = "clap_derive"
|
453
|
+
version = "4.5.24"
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
455
|
+
checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
|
456
|
+
dependencies = [
|
457
|
+
"heck",
|
458
|
+
"proc-macro2",
|
459
|
+
"quote",
|
460
|
+
"syn",
|
461
|
+
]
|
462
|
+
|
463
|
+
[[package]]
|
464
|
+
name = "clap_lex"
|
465
|
+
version = "0.7.4"
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
467
|
+
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
468
|
+
|
469
|
+
[[package]]
|
470
|
+
name = "colorchoice"
|
471
|
+
version = "1.0.3"
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
473
|
+
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
|
474
|
+
|
475
|
+
[[package]]
|
476
|
+
name = "console-api"
|
477
|
+
version = "0.8.1"
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
479
|
+
checksum = "8030735ecb0d128428b64cd379809817e620a40e5001c54465b99ec5feec2857"
|
480
|
+
dependencies = [
|
481
|
+
"futures-core",
|
482
|
+
"prost",
|
483
|
+
"prost-types",
|
484
|
+
"tonic",
|
485
|
+
"tracing-core",
|
486
|
+
]
|
487
|
+
|
488
|
+
[[package]]
|
489
|
+
name = "console-subscriber"
|
490
|
+
version = "0.4.1"
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
492
|
+
checksum = "6539aa9c6a4cd31f4b1c040f860a1eac9aa80e7df6b05d506a6e7179936d6a01"
|
493
|
+
dependencies = [
|
494
|
+
"console-api",
|
495
|
+
"crossbeam-channel",
|
496
|
+
"crossbeam-utils",
|
497
|
+
"futures-task",
|
498
|
+
"hdrhistogram",
|
499
|
+
"humantime",
|
500
|
+
"hyper-util",
|
501
|
+
"prost",
|
502
|
+
"prost-types",
|
503
|
+
"serde",
|
504
|
+
"serde_json",
|
505
|
+
"thread_local",
|
506
|
+
"tokio",
|
507
|
+
"tokio-stream",
|
508
|
+
"tonic",
|
509
|
+
"tracing",
|
510
|
+
"tracing-core",
|
511
|
+
"tracing-subscriber",
|
512
|
+
]
|
513
|
+
|
514
|
+
[[package]]
|
515
|
+
name = "constant_time_eq"
|
516
|
+
version = "0.3.1"
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
518
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
519
|
+
|
520
|
+
[[package]]
|
521
|
+
name = "core-foundation"
|
522
|
+
version = "0.10.0"
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
524
|
+
checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
|
525
|
+
dependencies = [
|
526
|
+
"core-foundation-sys",
|
527
|
+
"libc",
|
528
|
+
]
|
529
|
+
|
530
|
+
[[package]]
|
531
|
+
name = "core-foundation-sys"
|
532
|
+
version = "0.8.7"
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
534
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
535
|
+
|
536
|
+
[[package]]
|
537
|
+
name = "cpufeatures"
|
538
|
+
version = "0.2.16"
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
540
|
+
checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
|
541
|
+
dependencies = [
|
542
|
+
"libc",
|
543
|
+
]
|
544
|
+
|
545
|
+
[[package]]
|
546
|
+
name = "crc"
|
547
|
+
version = "3.2.1"
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
549
|
+
checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
|
550
|
+
dependencies = [
|
551
|
+
"crc-catalog",
|
552
|
+
]
|
553
|
+
|
554
|
+
[[package]]
|
555
|
+
name = "crc-catalog"
|
556
|
+
version = "2.4.0"
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
558
|
+
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
|
559
|
+
|
560
|
+
[[package]]
|
561
|
+
name = "crc32fast"
|
562
|
+
version = "1.4.2"
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
564
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
565
|
+
dependencies = [
|
566
|
+
"cfg-if",
|
567
|
+
]
|
568
|
+
|
569
|
+
[[package]]
|
570
|
+
name = "criterion"
|
571
|
+
version = "0.5.1"
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
573
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
574
|
+
dependencies = [
|
575
|
+
"anes",
|
576
|
+
"cast",
|
577
|
+
"ciborium",
|
578
|
+
"clap",
|
579
|
+
"criterion-plot",
|
580
|
+
"is-terminal",
|
581
|
+
"itertools 0.10.5",
|
582
|
+
"num-traits",
|
583
|
+
"once_cell",
|
584
|
+
"oorandom",
|
585
|
+
"plotters",
|
586
|
+
"rayon",
|
587
|
+
"regex",
|
588
|
+
"serde",
|
589
|
+
"serde_derive",
|
590
|
+
"serde_json",
|
591
|
+
"tinytemplate",
|
592
|
+
"walkdir",
|
593
|
+
]
|
594
|
+
|
595
|
+
[[package]]
|
596
|
+
name = "criterion-plot"
|
597
|
+
version = "0.5.0"
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
599
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
600
|
+
dependencies = [
|
601
|
+
"cast",
|
602
|
+
"itertools 0.10.5",
|
603
|
+
]
|
604
|
+
|
605
|
+
[[package]]
|
606
|
+
name = "crossbeam-channel"
|
607
|
+
version = "0.5.14"
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
609
|
+
checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
|
610
|
+
dependencies = [
|
611
|
+
"crossbeam-utils",
|
612
|
+
]
|
613
|
+
|
614
|
+
[[package]]
|
615
|
+
name = "crossbeam-deque"
|
616
|
+
version = "0.8.6"
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
618
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
619
|
+
dependencies = [
|
620
|
+
"crossbeam-epoch",
|
621
|
+
"crossbeam-utils",
|
622
|
+
]
|
623
|
+
|
624
|
+
[[package]]
|
625
|
+
name = "crossbeam-epoch"
|
626
|
+
version = "0.9.18"
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
628
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
629
|
+
dependencies = [
|
630
|
+
"crossbeam-utils",
|
631
|
+
]
|
632
|
+
|
633
|
+
[[package]]
|
634
|
+
name = "crossbeam-queue"
|
635
|
+
version = "0.3.12"
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
637
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
638
|
+
dependencies = [
|
639
|
+
"crossbeam-utils",
|
640
|
+
]
|
641
|
+
|
642
|
+
[[package]]
|
643
|
+
name = "crossbeam-utils"
|
644
|
+
version = "0.8.21"
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
646
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
647
|
+
|
648
|
+
[[package]]
|
649
|
+
name = "crunchy"
|
650
|
+
version = "0.2.2"
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
652
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
653
|
+
|
654
|
+
[[package]]
|
655
|
+
name = "crypto-common"
|
656
|
+
version = "0.1.6"
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
658
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
659
|
+
dependencies = [
|
660
|
+
"generic-array",
|
661
|
+
"typenum",
|
662
|
+
]
|
663
|
+
|
664
|
+
[[package]]
|
665
|
+
name = "darling"
|
666
|
+
version = "0.20.10"
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
668
|
+
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
|
669
|
+
dependencies = [
|
670
|
+
"darling_core",
|
671
|
+
"darling_macro",
|
672
|
+
]
|
673
|
+
|
674
|
+
[[package]]
|
675
|
+
name = "darling_core"
|
676
|
+
version = "0.20.10"
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
678
|
+
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
|
679
|
+
dependencies = [
|
680
|
+
"fnv",
|
681
|
+
"ident_case",
|
682
|
+
"proc-macro2",
|
683
|
+
"quote",
|
684
|
+
"strsim",
|
685
|
+
"syn",
|
686
|
+
]
|
687
|
+
|
688
|
+
[[package]]
|
689
|
+
name = "darling_macro"
|
690
|
+
version = "0.20.10"
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
692
|
+
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
693
|
+
dependencies = [
|
694
|
+
"darling_core",
|
695
|
+
"quote",
|
696
|
+
"syn",
|
697
|
+
]
|
698
|
+
|
699
|
+
[[package]]
|
700
|
+
name = "dashmap"
|
701
|
+
version = "6.1.0"
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
703
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
704
|
+
dependencies = [
|
705
|
+
"cfg-if",
|
706
|
+
"crossbeam-utils",
|
707
|
+
"hashbrown 0.14.5",
|
708
|
+
"lock_api",
|
709
|
+
"once_cell",
|
710
|
+
"parking_lot_core",
|
711
|
+
]
|
712
|
+
|
713
|
+
[[package]]
|
714
|
+
name = "deflate64"
|
715
|
+
version = "0.1.9"
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
717
|
+
checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
|
718
|
+
|
719
|
+
[[package]]
|
720
|
+
name = "deranged"
|
721
|
+
version = "0.3.11"
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
723
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
724
|
+
dependencies = [
|
725
|
+
"powerfmt",
|
726
|
+
]
|
727
|
+
|
728
|
+
[[package]]
|
729
|
+
name = "derive_arbitrary"
|
730
|
+
version = "1.4.1"
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
732
|
+
checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
|
733
|
+
dependencies = [
|
734
|
+
"proc-macro2",
|
735
|
+
"quote",
|
736
|
+
"syn",
|
737
|
+
]
|
738
|
+
|
739
|
+
[[package]]
|
740
|
+
name = "derive_builder"
|
741
|
+
version = "0.20.2"
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
743
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
744
|
+
dependencies = [
|
745
|
+
"derive_builder_macro",
|
746
|
+
]
|
747
|
+
|
748
|
+
[[package]]
|
749
|
+
name = "derive_builder_core"
|
750
|
+
version = "0.20.2"
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
752
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
753
|
+
dependencies = [
|
754
|
+
"darling",
|
755
|
+
"proc-macro2",
|
756
|
+
"quote",
|
757
|
+
"syn",
|
758
|
+
]
|
759
|
+
|
760
|
+
[[package]]
|
761
|
+
name = "derive_builder_macro"
|
762
|
+
version = "0.20.2"
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
764
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
765
|
+
dependencies = [
|
766
|
+
"derive_builder_core",
|
767
|
+
"syn",
|
768
|
+
]
|
769
|
+
|
770
|
+
[[package]]
|
771
|
+
name = "derive_more"
|
772
|
+
version = "1.0.0"
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
774
|
+
checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
|
775
|
+
dependencies = [
|
776
|
+
"derive_more-impl",
|
777
|
+
]
|
778
|
+
|
779
|
+
[[package]]
|
780
|
+
name = "derive_more-impl"
|
781
|
+
version = "1.0.0"
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
783
|
+
checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
|
784
|
+
dependencies = [
|
785
|
+
"proc-macro2",
|
786
|
+
"quote",
|
787
|
+
"syn",
|
788
|
+
"unicode-xid",
|
789
|
+
]
|
790
|
+
|
791
|
+
[[package]]
|
792
|
+
name = "digest"
|
793
|
+
version = "0.10.7"
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
795
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
796
|
+
dependencies = [
|
797
|
+
"block-buffer",
|
798
|
+
"crypto-common",
|
799
|
+
"subtle",
|
800
|
+
]
|
801
|
+
|
802
|
+
[[package]]
|
803
|
+
name = "displaydoc"
|
804
|
+
version = "0.2.5"
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
806
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
807
|
+
dependencies = [
|
808
|
+
"proc-macro2",
|
809
|
+
"quote",
|
810
|
+
"syn",
|
811
|
+
]
|
812
|
+
|
813
|
+
[[package]]
|
814
|
+
name = "dissimilar"
|
815
|
+
version = "1.0.9"
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
817
|
+
checksum = "59f8e79d1fbf76bdfbde321e902714bf6c49df88a7dda6fc682fc2979226962d"
|
818
|
+
|
819
|
+
[[package]]
|
820
|
+
name = "downcast"
|
821
|
+
version = "0.11.0"
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
823
|
+
checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
|
824
|
+
|
825
|
+
[[package]]
|
826
|
+
name = "either"
|
827
|
+
version = "1.13.0"
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
829
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
830
|
+
|
831
|
+
[[package]]
|
832
|
+
name = "enum-iterator"
|
833
|
+
version = "2.1.0"
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
835
|
+
checksum = "c280b9e6b3ae19e152d8e31cf47f18389781e119d4013a2a2bb0180e5facc635"
|
836
|
+
dependencies = [
|
837
|
+
"enum-iterator-derive",
|
838
|
+
]
|
839
|
+
|
840
|
+
[[package]]
|
841
|
+
name = "enum-iterator-derive"
|
842
|
+
version = "1.4.0"
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
844
|
+
checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
|
845
|
+
dependencies = [
|
846
|
+
"proc-macro2",
|
847
|
+
"quote",
|
848
|
+
"syn",
|
849
|
+
]
|
850
|
+
|
851
|
+
[[package]]
|
852
|
+
name = "enum_dispatch"
|
853
|
+
version = "0.3.13"
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
855
|
+
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
856
|
+
dependencies = [
|
857
|
+
"once_cell",
|
858
|
+
"proc-macro2",
|
859
|
+
"quote",
|
860
|
+
"syn",
|
861
|
+
]
|
862
|
+
|
863
|
+
[[package]]
|
864
|
+
name = "equivalent"
|
865
|
+
version = "1.0.1"
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
867
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
868
|
+
|
869
|
+
[[package]]
|
870
|
+
name = "erased-serde"
|
871
|
+
version = "0.4.5"
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
873
|
+
checksum = "24e2389d65ab4fab27dc2a5de7b191e1f6617d1f1c8855c0dc569c94a4cbb18d"
|
874
|
+
dependencies = [
|
875
|
+
"serde",
|
876
|
+
"typeid",
|
877
|
+
]
|
878
|
+
|
879
|
+
[[package]]
|
880
|
+
name = "errno"
|
881
|
+
version = "0.3.10"
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
883
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
884
|
+
dependencies = [
|
885
|
+
"libc",
|
886
|
+
"windows-sys 0.59.0",
|
887
|
+
]
|
888
|
+
|
889
|
+
[[package]]
|
890
|
+
name = "fastrand"
|
891
|
+
version = "2.3.0"
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
893
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
894
|
+
|
895
|
+
[[package]]
|
896
|
+
name = "filetime"
|
897
|
+
version = "0.2.25"
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
899
|
+
checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
|
900
|
+
dependencies = [
|
901
|
+
"cfg-if",
|
902
|
+
"libc",
|
903
|
+
"libredox",
|
904
|
+
"windows-sys 0.59.0",
|
905
|
+
]
|
906
|
+
|
907
|
+
[[package]]
|
908
|
+
name = "fixedbitset"
|
909
|
+
version = "0.4.2"
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
911
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
912
|
+
|
913
|
+
[[package]]
|
914
|
+
name = "flate2"
|
915
|
+
version = "1.0.35"
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
917
|
+
checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
|
918
|
+
dependencies = [
|
919
|
+
"crc32fast",
|
920
|
+
"miniz_oxide",
|
921
|
+
]
|
922
|
+
|
923
|
+
[[package]]
|
924
|
+
name = "fnv"
|
925
|
+
version = "1.0.7"
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
927
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
928
|
+
|
929
|
+
[[package]]
|
930
|
+
name = "foldhash"
|
931
|
+
version = "0.1.4"
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
933
|
+
checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
|
934
|
+
|
935
|
+
[[package]]
|
936
|
+
name = "form_urlencoded"
|
937
|
+
version = "1.2.1"
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
939
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
940
|
+
dependencies = [
|
941
|
+
"percent-encoding",
|
942
|
+
]
|
943
|
+
|
944
|
+
[[package]]
|
945
|
+
name = "fragile"
|
946
|
+
version = "2.0.0"
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
948
|
+
checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
|
949
|
+
|
950
|
+
[[package]]
|
951
|
+
name = "futures"
|
952
|
+
version = "0.3.31"
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
954
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
955
|
+
dependencies = [
|
956
|
+
"futures-channel",
|
957
|
+
"futures-core",
|
958
|
+
"futures-executor",
|
959
|
+
"futures-io",
|
960
|
+
"futures-sink",
|
961
|
+
"futures-task",
|
962
|
+
"futures-util",
|
963
|
+
]
|
964
|
+
|
965
|
+
[[package]]
|
966
|
+
name = "futures-channel"
|
967
|
+
version = "0.3.31"
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
969
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
970
|
+
dependencies = [
|
971
|
+
"futures-core",
|
972
|
+
"futures-sink",
|
973
|
+
]
|
974
|
+
|
975
|
+
[[package]]
|
976
|
+
name = "futures-core"
|
977
|
+
version = "0.3.31"
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
979
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
980
|
+
|
981
|
+
[[package]]
|
982
|
+
name = "futures-executor"
|
983
|
+
version = "0.3.31"
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
985
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
986
|
+
dependencies = [
|
987
|
+
"futures-core",
|
988
|
+
"futures-task",
|
989
|
+
"futures-util",
|
990
|
+
]
|
991
|
+
|
992
|
+
[[package]]
|
993
|
+
name = "futures-io"
|
994
|
+
version = "0.3.31"
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
996
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
997
|
+
|
998
|
+
[[package]]
|
999
|
+
name = "futures-macro"
|
1000
|
+
version = "0.3.31"
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1002
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
1003
|
+
dependencies = [
|
1004
|
+
"proc-macro2",
|
1005
|
+
"quote",
|
1006
|
+
"syn",
|
1007
|
+
]
|
1008
|
+
|
1009
|
+
[[package]]
|
1010
|
+
name = "futures-retry"
|
1011
|
+
version = "0.6.0"
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
|
+
checksum = "fde5a672a61f96552aa5ed9fd9c81c3fbdae4be9b1e205d6eaf17c83705adc0f"
|
1014
|
+
dependencies = [
|
1015
|
+
"futures",
|
1016
|
+
"pin-project-lite",
|
1017
|
+
"tokio",
|
1018
|
+
]
|
1019
|
+
|
1020
|
+
[[package]]
|
1021
|
+
name = "futures-sink"
|
1022
|
+
version = "0.3.31"
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1024
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
1025
|
+
|
1026
|
+
[[package]]
|
1027
|
+
name = "futures-task"
|
1028
|
+
version = "0.3.31"
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1030
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
1031
|
+
|
1032
|
+
[[package]]
|
1033
|
+
name = "futures-timer"
|
1034
|
+
version = "3.0.3"
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1036
|
+
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
1037
|
+
|
1038
|
+
[[package]]
|
1039
|
+
name = "futures-util"
|
1040
|
+
version = "0.3.31"
|
1041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1042
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
1043
|
+
dependencies = [
|
1044
|
+
"futures-channel",
|
1045
|
+
"futures-core",
|
1046
|
+
"futures-io",
|
1047
|
+
"futures-macro",
|
1048
|
+
"futures-sink",
|
1049
|
+
"futures-task",
|
1050
|
+
"memchr",
|
1051
|
+
"pin-project-lite",
|
1052
|
+
"pin-utils",
|
1053
|
+
"slab",
|
1054
|
+
]
|
1055
|
+
|
1056
|
+
[[package]]
|
1057
|
+
name = "generic-array"
|
1058
|
+
version = "0.14.7"
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1060
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
1061
|
+
dependencies = [
|
1062
|
+
"typenum",
|
1063
|
+
"version_check",
|
1064
|
+
]
|
1065
|
+
|
1066
|
+
[[package]]
|
1067
|
+
name = "getrandom"
|
1068
|
+
version = "0.2.15"
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1070
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
1071
|
+
dependencies = [
|
1072
|
+
"cfg-if",
|
1073
|
+
"js-sys",
|
1074
|
+
"libc",
|
1075
|
+
"wasi",
|
1076
|
+
"wasm-bindgen",
|
1077
|
+
]
|
1078
|
+
|
1079
|
+
[[package]]
|
1080
|
+
name = "gimli"
|
1081
|
+
version = "0.31.1"
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1083
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
1084
|
+
|
1085
|
+
[[package]]
|
1086
|
+
name = "glob"
|
1087
|
+
version = "0.3.2"
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1089
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
1090
|
+
|
1091
|
+
[[package]]
|
1092
|
+
name = "governor"
|
1093
|
+
version = "0.7.0"
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1095
|
+
checksum = "0746aa765db78b521451ef74221663b57ba595bf83f75d0ce23cc09447c8139f"
|
1096
|
+
dependencies = [
|
1097
|
+
"cfg-if",
|
1098
|
+
"dashmap",
|
1099
|
+
"futures-sink",
|
1100
|
+
"futures-timer",
|
1101
|
+
"futures-util",
|
1102
|
+
"no-std-compat",
|
1103
|
+
"nonzero_ext",
|
1104
|
+
"parking_lot",
|
1105
|
+
"portable-atomic",
|
1106
|
+
"quanta",
|
1107
|
+
"rand",
|
1108
|
+
"smallvec",
|
1109
|
+
"spinning_top",
|
1110
|
+
]
|
1111
|
+
|
1112
|
+
[[package]]
|
1113
|
+
name = "h2"
|
1114
|
+
version = "0.4.7"
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1116
|
+
checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
|
1117
|
+
dependencies = [
|
1118
|
+
"atomic-waker",
|
1119
|
+
"bytes",
|
1120
|
+
"fnv",
|
1121
|
+
"futures-core",
|
1122
|
+
"futures-sink",
|
1123
|
+
"http",
|
1124
|
+
"indexmap 2.7.0",
|
1125
|
+
"slab",
|
1126
|
+
"tokio",
|
1127
|
+
"tokio-util",
|
1128
|
+
"tracing",
|
1129
|
+
]
|
1130
|
+
|
1131
|
+
[[package]]
|
1132
|
+
name = "half"
|
1133
|
+
version = "2.4.1"
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1135
|
+
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
|
1136
|
+
dependencies = [
|
1137
|
+
"cfg-if",
|
1138
|
+
"crunchy",
|
1139
|
+
]
|
1140
|
+
|
1141
|
+
[[package]]
|
1142
|
+
name = "hashbrown"
|
1143
|
+
version = "0.12.3"
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1145
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
1146
|
+
|
1147
|
+
[[package]]
|
1148
|
+
name = "hashbrown"
|
1149
|
+
version = "0.14.5"
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1151
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
1152
|
+
|
1153
|
+
[[package]]
|
1154
|
+
name = "hashbrown"
|
1155
|
+
version = "0.15.2"
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1157
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
1158
|
+
dependencies = [
|
1159
|
+
"allocator-api2",
|
1160
|
+
"equivalent",
|
1161
|
+
"foldhash",
|
1162
|
+
]
|
1163
|
+
|
1164
|
+
[[package]]
|
1165
|
+
name = "hdrhistogram"
|
1166
|
+
version = "7.5.4"
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1168
|
+
checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d"
|
1169
|
+
dependencies = [
|
1170
|
+
"base64 0.21.7",
|
1171
|
+
"byteorder",
|
1172
|
+
"flate2",
|
1173
|
+
"nom",
|
1174
|
+
"num-traits",
|
1175
|
+
]
|
1176
|
+
|
1177
|
+
[[package]]
|
1178
|
+
name = "heck"
|
1179
|
+
version = "0.5.0"
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1181
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
1182
|
+
|
1183
|
+
[[package]]
|
1184
|
+
name = "hermit-abi"
|
1185
|
+
version = "0.4.0"
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1187
|
+
checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
|
1188
|
+
|
1189
|
+
[[package]]
|
1190
|
+
name = "hmac"
|
1191
|
+
version = "0.12.1"
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1193
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
1194
|
+
dependencies = [
|
1195
|
+
"digest",
|
1196
|
+
]
|
1197
|
+
|
1198
|
+
[[package]]
|
1199
|
+
name = "http"
|
1200
|
+
version = "1.2.0"
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1202
|
+
checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
|
1203
|
+
dependencies = [
|
1204
|
+
"bytes",
|
1205
|
+
"fnv",
|
1206
|
+
"itoa",
|
1207
|
+
]
|
1208
|
+
|
1209
|
+
[[package]]
|
1210
|
+
name = "http-body"
|
1211
|
+
version = "1.0.1"
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1213
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
1214
|
+
dependencies = [
|
1215
|
+
"bytes",
|
1216
|
+
"http",
|
1217
|
+
]
|
1218
|
+
|
1219
|
+
[[package]]
|
1220
|
+
name = "http-body-util"
|
1221
|
+
version = "0.1.2"
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1223
|
+
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
|
1224
|
+
dependencies = [
|
1225
|
+
"bytes",
|
1226
|
+
"futures-util",
|
1227
|
+
"http",
|
1228
|
+
"http-body",
|
1229
|
+
"pin-project-lite",
|
1230
|
+
]
|
1231
|
+
|
1232
|
+
[[package]]
|
1233
|
+
name = "httparse"
|
1234
|
+
version = "1.9.5"
|
1235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1236
|
+
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
|
1237
|
+
|
1238
|
+
[[package]]
|
1239
|
+
name = "httpdate"
|
1240
|
+
version = "1.0.3"
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1242
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
1243
|
+
|
1244
|
+
[[package]]
|
1245
|
+
name = "humantime"
|
1246
|
+
version = "2.1.0"
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1248
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
1249
|
+
|
1250
|
+
[[package]]
|
1251
|
+
name = "hyper"
|
1252
|
+
version = "1.5.2"
|
1253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1254
|
+
checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0"
|
1255
|
+
dependencies = [
|
1256
|
+
"bytes",
|
1257
|
+
"futures-channel",
|
1258
|
+
"futures-util",
|
1259
|
+
"h2",
|
1260
|
+
"http",
|
1261
|
+
"http-body",
|
1262
|
+
"httparse",
|
1263
|
+
"httpdate",
|
1264
|
+
"itoa",
|
1265
|
+
"pin-project-lite",
|
1266
|
+
"smallvec",
|
1267
|
+
"tokio",
|
1268
|
+
"want",
|
1269
|
+
]
|
1270
|
+
|
1271
|
+
[[package]]
|
1272
|
+
name = "hyper-rustls"
|
1273
|
+
version = "0.27.5"
|
1274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1275
|
+
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
1276
|
+
dependencies = [
|
1277
|
+
"futures-util",
|
1278
|
+
"http",
|
1279
|
+
"hyper",
|
1280
|
+
"hyper-util",
|
1281
|
+
"rustls",
|
1282
|
+
"rustls-native-certs",
|
1283
|
+
"rustls-pki-types",
|
1284
|
+
"tokio",
|
1285
|
+
"tokio-rustls",
|
1286
|
+
"tower-service",
|
1287
|
+
]
|
1288
|
+
|
1289
|
+
[[package]]
|
1290
|
+
name = "hyper-timeout"
|
1291
|
+
version = "0.5.2"
|
1292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1293
|
+
checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
|
1294
|
+
dependencies = [
|
1295
|
+
"hyper",
|
1296
|
+
"hyper-util",
|
1297
|
+
"pin-project-lite",
|
1298
|
+
"tokio",
|
1299
|
+
"tower-service",
|
1300
|
+
]
|
1301
|
+
|
1302
|
+
[[package]]
|
1303
|
+
name = "hyper-util"
|
1304
|
+
version = "0.1.10"
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1306
|
+
checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
|
1307
|
+
dependencies = [
|
1308
|
+
"bytes",
|
1309
|
+
"futures-channel",
|
1310
|
+
"futures-util",
|
1311
|
+
"http",
|
1312
|
+
"http-body",
|
1313
|
+
"hyper",
|
1314
|
+
"pin-project-lite",
|
1315
|
+
"socket2",
|
1316
|
+
"tokio",
|
1317
|
+
"tower-service",
|
1318
|
+
"tracing",
|
1319
|
+
]
|
1320
|
+
|
1321
|
+
[[package]]
|
1322
|
+
name = "icu_collections"
|
1323
|
+
version = "1.5.0"
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1325
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
1326
|
+
dependencies = [
|
1327
|
+
"displaydoc",
|
1328
|
+
"yoke",
|
1329
|
+
"zerofrom",
|
1330
|
+
"zerovec",
|
1331
|
+
]
|
1332
|
+
|
1333
|
+
[[package]]
|
1334
|
+
name = "icu_locid"
|
1335
|
+
version = "1.5.0"
|
1336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1337
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
1338
|
+
dependencies = [
|
1339
|
+
"displaydoc",
|
1340
|
+
"litemap",
|
1341
|
+
"tinystr",
|
1342
|
+
"writeable",
|
1343
|
+
"zerovec",
|
1344
|
+
]
|
1345
|
+
|
1346
|
+
[[package]]
|
1347
|
+
name = "icu_locid_transform"
|
1348
|
+
version = "1.5.0"
|
1349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1350
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
1351
|
+
dependencies = [
|
1352
|
+
"displaydoc",
|
1353
|
+
"icu_locid",
|
1354
|
+
"icu_locid_transform_data",
|
1355
|
+
"icu_provider",
|
1356
|
+
"tinystr",
|
1357
|
+
"zerovec",
|
1358
|
+
]
|
1359
|
+
|
1360
|
+
[[package]]
|
1361
|
+
name = "icu_locid_transform_data"
|
1362
|
+
version = "1.5.0"
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1364
|
+
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
1365
|
+
|
1366
|
+
[[package]]
|
1367
|
+
name = "icu_normalizer"
|
1368
|
+
version = "1.5.0"
|
1369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1370
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
1371
|
+
dependencies = [
|
1372
|
+
"displaydoc",
|
1373
|
+
"icu_collections",
|
1374
|
+
"icu_normalizer_data",
|
1375
|
+
"icu_properties",
|
1376
|
+
"icu_provider",
|
1377
|
+
"smallvec",
|
1378
|
+
"utf16_iter",
|
1379
|
+
"utf8_iter",
|
1380
|
+
"write16",
|
1381
|
+
"zerovec",
|
1382
|
+
]
|
1383
|
+
|
1384
|
+
[[package]]
|
1385
|
+
name = "icu_normalizer_data"
|
1386
|
+
version = "1.5.0"
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1388
|
+
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
|
1389
|
+
|
1390
|
+
[[package]]
|
1391
|
+
name = "icu_properties"
|
1392
|
+
version = "1.5.1"
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1394
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
1395
|
+
dependencies = [
|
1396
|
+
"displaydoc",
|
1397
|
+
"icu_collections",
|
1398
|
+
"icu_locid_transform",
|
1399
|
+
"icu_properties_data",
|
1400
|
+
"icu_provider",
|
1401
|
+
"tinystr",
|
1402
|
+
"zerovec",
|
1403
|
+
]
|
1404
|
+
|
1405
|
+
[[package]]
|
1406
|
+
name = "icu_properties_data"
|
1407
|
+
version = "1.5.0"
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1409
|
+
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
1410
|
+
|
1411
|
+
[[package]]
|
1412
|
+
name = "icu_provider"
|
1413
|
+
version = "1.5.0"
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1415
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
1416
|
+
dependencies = [
|
1417
|
+
"displaydoc",
|
1418
|
+
"icu_locid",
|
1419
|
+
"icu_provider_macros",
|
1420
|
+
"stable_deref_trait",
|
1421
|
+
"tinystr",
|
1422
|
+
"writeable",
|
1423
|
+
"yoke",
|
1424
|
+
"zerofrom",
|
1425
|
+
"zerovec",
|
1426
|
+
]
|
1427
|
+
|
1428
|
+
[[package]]
|
1429
|
+
name = "icu_provider_macros"
|
1430
|
+
version = "1.5.0"
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1432
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
1433
|
+
dependencies = [
|
1434
|
+
"proc-macro2",
|
1435
|
+
"quote",
|
1436
|
+
"syn",
|
1437
|
+
]
|
1438
|
+
|
1439
|
+
[[package]]
|
1440
|
+
name = "ident_case"
|
1441
|
+
version = "1.0.1"
|
1442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1443
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
1444
|
+
|
1445
|
+
[[package]]
|
1446
|
+
name = "idna"
|
1447
|
+
version = "1.0.3"
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1449
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
1450
|
+
dependencies = [
|
1451
|
+
"idna_adapter",
|
1452
|
+
"smallvec",
|
1453
|
+
"utf8_iter",
|
1454
|
+
]
|
1455
|
+
|
1456
|
+
[[package]]
|
1457
|
+
name = "idna_adapter"
|
1458
|
+
version = "1.2.0"
|
1459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1460
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
1461
|
+
dependencies = [
|
1462
|
+
"icu_normalizer",
|
1463
|
+
"icu_properties",
|
1464
|
+
]
|
1465
|
+
|
1466
|
+
[[package]]
|
1467
|
+
name = "indexmap"
|
1468
|
+
version = "1.9.3"
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1470
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
1471
|
+
dependencies = [
|
1472
|
+
"autocfg",
|
1473
|
+
"hashbrown 0.12.3",
|
1474
|
+
]
|
1475
|
+
|
1476
|
+
[[package]]
|
1477
|
+
name = "indexmap"
|
1478
|
+
version = "2.7.0"
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1480
|
+
checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
|
1481
|
+
dependencies = [
|
1482
|
+
"equivalent",
|
1483
|
+
"hashbrown 0.15.2",
|
1484
|
+
]
|
1485
|
+
|
1486
|
+
[[package]]
|
1487
|
+
name = "inout"
|
1488
|
+
version = "0.1.3"
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1490
|
+
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
|
1491
|
+
dependencies = [
|
1492
|
+
"generic-array",
|
1493
|
+
]
|
1494
|
+
|
1495
|
+
[[package]]
|
1496
|
+
name = "instant"
|
1497
|
+
version = "0.1.13"
|
1498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1499
|
+
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
1500
|
+
dependencies = [
|
1501
|
+
"cfg-if",
|
1502
|
+
]
|
1503
|
+
|
1504
|
+
[[package]]
|
1505
|
+
name = "inventory"
|
1506
|
+
version = "0.3.17"
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1508
|
+
checksum = "3b31349d02fe60f80bbbab1a9402364cad7460626d6030494b08ac4a2075bf81"
|
1509
|
+
dependencies = [
|
1510
|
+
"rustversion",
|
1511
|
+
]
|
1512
|
+
|
1513
|
+
[[package]]
|
1514
|
+
name = "ipnet"
|
1515
|
+
version = "2.10.1"
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1517
|
+
checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
|
1518
|
+
|
1519
|
+
[[package]]
|
1520
|
+
name = "is-terminal"
|
1521
|
+
version = "0.4.13"
|
1522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1523
|
+
checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
|
1524
|
+
dependencies = [
|
1525
|
+
"hermit-abi",
|
1526
|
+
"libc",
|
1527
|
+
"windows-sys 0.52.0",
|
1528
|
+
]
|
1529
|
+
|
1530
|
+
[[package]]
|
1531
|
+
name = "is_terminal_polyfill"
|
1532
|
+
version = "1.70.1"
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1534
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
1535
|
+
|
1536
|
+
[[package]]
|
1537
|
+
name = "itertools"
|
1538
|
+
version = "0.10.5"
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1540
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
1541
|
+
dependencies = [
|
1542
|
+
"either",
|
1543
|
+
]
|
1544
|
+
|
1545
|
+
[[package]]
|
1546
|
+
name = "itertools"
|
1547
|
+
version = "0.12.1"
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1549
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
1550
|
+
dependencies = [
|
1551
|
+
"either",
|
1552
|
+
]
|
1553
|
+
|
1554
|
+
[[package]]
|
1555
|
+
name = "itertools"
|
1556
|
+
version = "0.13.0"
|
1557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1558
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
1559
|
+
dependencies = [
|
1560
|
+
"either",
|
1561
|
+
]
|
1562
|
+
|
1563
|
+
[[package]]
|
1564
|
+
name = "itoa"
|
1565
|
+
version = "1.0.14"
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1567
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
1568
|
+
|
1569
|
+
[[package]]
|
1570
|
+
name = "jobserver"
|
1571
|
+
version = "0.1.32"
|
1572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1573
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
1574
|
+
dependencies = [
|
1575
|
+
"libc",
|
1576
|
+
]
|
1577
|
+
|
1578
|
+
[[package]]
|
1579
|
+
name = "js-sys"
|
1580
|
+
version = "0.3.77"
|
1581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1582
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
1583
|
+
dependencies = [
|
1584
|
+
"once_cell",
|
1585
|
+
"wasm-bindgen",
|
1586
|
+
]
|
1587
|
+
|
1588
|
+
[[package]]
|
1589
|
+
name = "lazy_static"
|
1590
|
+
version = "1.5.0"
|
1591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1592
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
1593
|
+
|
1594
|
+
[[package]]
|
1595
|
+
name = "lazycell"
|
1596
|
+
version = "1.3.0"
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1598
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
1599
|
+
|
1600
|
+
[[package]]
|
1601
|
+
name = "libc"
|
1602
|
+
version = "0.2.169"
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1604
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
1605
|
+
|
1606
|
+
[[package]]
|
1607
|
+
name = "libloading"
|
1608
|
+
version = "0.8.6"
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1610
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
1611
|
+
dependencies = [
|
1612
|
+
"cfg-if",
|
1613
|
+
"windows-targets",
|
1614
|
+
]
|
1615
|
+
|
1616
|
+
[[package]]
|
1617
|
+
name = "libredox"
|
1618
|
+
version = "0.1.3"
|
1619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1620
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
1621
|
+
dependencies = [
|
1622
|
+
"bitflags",
|
1623
|
+
"libc",
|
1624
|
+
"redox_syscall",
|
1625
|
+
]
|
1626
|
+
|
1627
|
+
[[package]]
|
1628
|
+
name = "linux-raw-sys"
|
1629
|
+
version = "0.4.15"
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1631
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
1632
|
+
|
1633
|
+
[[package]]
|
1634
|
+
name = "litemap"
|
1635
|
+
version = "0.7.4"
|
1636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1637
|
+
checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
|
1638
|
+
|
1639
|
+
[[package]]
|
1640
|
+
name = "lock_api"
|
1641
|
+
version = "0.4.12"
|
1642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1643
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
1644
|
+
dependencies = [
|
1645
|
+
"autocfg",
|
1646
|
+
"scopeguard",
|
1647
|
+
]
|
1648
|
+
|
1649
|
+
[[package]]
|
1650
|
+
name = "lockfree-object-pool"
|
1651
|
+
version = "0.1.6"
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1653
|
+
checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
|
1654
|
+
|
1655
|
+
[[package]]
|
1656
|
+
name = "log"
|
1657
|
+
version = "0.4.25"
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1659
|
+
checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
|
1660
|
+
|
1661
|
+
[[package]]
|
1662
|
+
name = "lru"
|
1663
|
+
version = "0.12.5"
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1665
|
+
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
1666
|
+
dependencies = [
|
1667
|
+
"hashbrown 0.15.2",
|
1668
|
+
]
|
1669
|
+
|
1670
|
+
[[package]]
|
1671
|
+
name = "lzma-rs"
|
1672
|
+
version = "0.3.0"
|
1673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1674
|
+
checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
|
1675
|
+
dependencies = [
|
1676
|
+
"byteorder",
|
1677
|
+
"crc",
|
1678
|
+
]
|
1679
|
+
|
1680
|
+
[[package]]
|
1681
|
+
name = "magnus"
|
1682
|
+
version = "0.7.1"
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1684
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
1685
|
+
dependencies = [
|
1686
|
+
"magnus-macros",
|
1687
|
+
"rb-sys",
|
1688
|
+
"rb-sys-env",
|
1689
|
+
"seq-macro",
|
1690
|
+
]
|
1691
|
+
|
1692
|
+
[[package]]
|
1693
|
+
name = "magnus-macros"
|
1694
|
+
version = "0.6.0"
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1696
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
1697
|
+
dependencies = [
|
1698
|
+
"proc-macro2",
|
1699
|
+
"quote",
|
1700
|
+
"syn",
|
1701
|
+
]
|
1702
|
+
|
1703
|
+
[[package]]
|
1704
|
+
name = "matchers"
|
1705
|
+
version = "0.1.0"
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1707
|
+
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
1708
|
+
dependencies = [
|
1709
|
+
"regex-automata 0.1.10",
|
1710
|
+
]
|
1711
|
+
|
1712
|
+
[[package]]
|
1713
|
+
name = "matchit"
|
1714
|
+
version = "0.7.3"
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1716
|
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
1717
|
+
|
1718
|
+
[[package]]
|
1719
|
+
name = "memchr"
|
1720
|
+
version = "2.7.4"
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1722
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
1723
|
+
|
1724
|
+
[[package]]
|
1725
|
+
name = "mime"
|
1726
|
+
version = "0.3.17"
|
1727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1728
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
1729
|
+
|
1730
|
+
[[package]]
|
1731
|
+
name = "minimal-lexical"
|
1732
|
+
version = "0.2.1"
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1734
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
1735
|
+
|
1736
|
+
[[package]]
|
1737
|
+
name = "miniz_oxide"
|
1738
|
+
version = "0.8.3"
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1740
|
+
checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
|
1741
|
+
dependencies = [
|
1742
|
+
"adler2",
|
1743
|
+
]
|
1744
|
+
|
1745
|
+
[[package]]
|
1746
|
+
name = "mio"
|
1747
|
+
version = "1.0.3"
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1749
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
1750
|
+
dependencies = [
|
1751
|
+
"libc",
|
1752
|
+
"wasi",
|
1753
|
+
"windows-sys 0.52.0",
|
1754
|
+
]
|
1755
|
+
|
1756
|
+
[[package]]
|
1757
|
+
name = "mockall"
|
1758
|
+
version = "0.13.1"
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1760
|
+
checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2"
|
1761
|
+
dependencies = [
|
1762
|
+
"cfg-if",
|
1763
|
+
"downcast",
|
1764
|
+
"fragile",
|
1765
|
+
"mockall_derive",
|
1766
|
+
"predicates",
|
1767
|
+
"predicates-tree",
|
1768
|
+
]
|
1769
|
+
|
1770
|
+
[[package]]
|
1771
|
+
name = "mockall_derive"
|
1772
|
+
version = "0.13.1"
|
1773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1774
|
+
checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898"
|
1775
|
+
dependencies = [
|
1776
|
+
"cfg-if",
|
1777
|
+
"proc-macro2",
|
1778
|
+
"quote",
|
1779
|
+
"syn",
|
1780
|
+
]
|
1781
|
+
|
1782
|
+
[[package]]
|
1783
|
+
name = "multimap"
|
1784
|
+
version = "0.10.0"
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1786
|
+
checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
|
1787
|
+
|
1788
|
+
[[package]]
|
1789
|
+
name = "no-std-compat"
|
1790
|
+
version = "0.4.1"
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1792
|
+
checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c"
|
1793
|
+
|
1794
|
+
[[package]]
|
1795
|
+
name = "nom"
|
1796
|
+
version = "7.1.3"
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1798
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
1799
|
+
dependencies = [
|
1800
|
+
"memchr",
|
1801
|
+
"minimal-lexical",
|
1802
|
+
]
|
1803
|
+
|
1804
|
+
[[package]]
|
1805
|
+
name = "nonzero_ext"
|
1806
|
+
version = "0.3.0"
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1808
|
+
checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
|
1809
|
+
|
1810
|
+
[[package]]
|
1811
|
+
name = "ntapi"
|
1812
|
+
version = "0.4.1"
|
1813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1814
|
+
checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
|
1815
|
+
dependencies = [
|
1816
|
+
"winapi",
|
1817
|
+
]
|
1818
|
+
|
1819
|
+
[[package]]
|
1820
|
+
name = "nu-ansi-term"
|
1821
|
+
version = "0.46.0"
|
1822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1823
|
+
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
1824
|
+
dependencies = [
|
1825
|
+
"overload",
|
1826
|
+
"winapi",
|
1827
|
+
]
|
1828
|
+
|
1829
|
+
[[package]]
|
1830
|
+
name = "num-conv"
|
1831
|
+
version = "0.1.0"
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1833
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
1834
|
+
|
1835
|
+
[[package]]
|
1836
|
+
name = "num-traits"
|
1837
|
+
version = "0.2.19"
|
1838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1839
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
1840
|
+
dependencies = [
|
1841
|
+
"autocfg",
|
1842
|
+
]
|
1843
|
+
|
1844
|
+
[[package]]
|
1845
|
+
name = "object"
|
1846
|
+
version = "0.36.7"
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1848
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
1849
|
+
dependencies = [
|
1850
|
+
"memchr",
|
1851
|
+
]
|
1852
|
+
|
1853
|
+
[[package]]
|
1854
|
+
name = "once_cell"
|
1855
|
+
version = "1.20.2"
|
1856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1857
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
1858
|
+
|
1859
|
+
[[package]]
|
1860
|
+
name = "oorandom"
|
1861
|
+
version = "11.1.4"
|
1862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1863
|
+
checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
|
1864
|
+
|
1865
|
+
[[package]]
|
1866
|
+
name = "openssl-probe"
|
1867
|
+
version = "0.1.5"
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1869
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
1870
|
+
|
1871
|
+
[[package]]
|
1872
|
+
name = "opentelemetry"
|
1873
|
+
version = "0.26.0"
|
1874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1875
|
+
checksum = "570074cc999d1a58184080966e5bd3bf3a9a4af650c3b05047c2621e7405cd17"
|
1876
|
+
dependencies = [
|
1877
|
+
"futures-core",
|
1878
|
+
"futures-sink",
|
1879
|
+
"js-sys",
|
1880
|
+
"once_cell",
|
1881
|
+
"pin-project-lite",
|
1882
|
+
"thiserror 1.0.69",
|
1883
|
+
]
|
1884
|
+
|
1885
|
+
[[package]]
|
1886
|
+
name = "opentelemetry-http"
|
1887
|
+
version = "0.26.0"
|
1888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1889
|
+
checksum = "6351496aeaa49d7c267fb480678d85d1cd30c5edb20b497c48c56f62a8c14b99"
|
1890
|
+
dependencies = [
|
1891
|
+
"async-trait",
|
1892
|
+
"bytes",
|
1893
|
+
"http",
|
1894
|
+
"opentelemetry",
|
1895
|
+
"reqwest",
|
1896
|
+
]
|
1897
|
+
|
1898
|
+
[[package]]
|
1899
|
+
name = "opentelemetry-otlp"
|
1900
|
+
version = "0.26.0"
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1902
|
+
checksum = "29e1f9c8b032d4f635c730c0efcf731d5e2530ea13fa8bef7939ddc8420696bd"
|
1903
|
+
dependencies = [
|
1904
|
+
"async-trait",
|
1905
|
+
"futures-core",
|
1906
|
+
"http",
|
1907
|
+
"opentelemetry",
|
1908
|
+
"opentelemetry-http",
|
1909
|
+
"opentelemetry-proto",
|
1910
|
+
"opentelemetry_sdk",
|
1911
|
+
"prost",
|
1912
|
+
"reqwest",
|
1913
|
+
"thiserror 1.0.69",
|
1914
|
+
"tokio",
|
1915
|
+
"tonic",
|
1916
|
+
]
|
1917
|
+
|
1918
|
+
[[package]]
|
1919
|
+
name = "opentelemetry-prometheus"
|
1920
|
+
version = "0.17.0"
|
1921
|
+
source = "git+https://github.com/open-telemetry/opentelemetry-rust.git?rev=e911383#e91138351a689cd21923c15eb48f5fbc95ded807"
|
1922
|
+
dependencies = [
|
1923
|
+
"once_cell",
|
1924
|
+
"opentelemetry",
|
1925
|
+
"opentelemetry_sdk",
|
1926
|
+
"prometheus",
|
1927
|
+
"protobuf",
|
1928
|
+
]
|
1929
|
+
|
1930
|
+
[[package]]
|
1931
|
+
name = "opentelemetry-proto"
|
1932
|
+
version = "0.26.1"
|
1933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1934
|
+
checksum = "c9d3968ce3aefdcca5c27e3c4ea4391b37547726a70893aab52d3de95d5f8b34"
|
1935
|
+
dependencies = [
|
1936
|
+
"opentelemetry",
|
1937
|
+
"opentelemetry_sdk",
|
1938
|
+
"prost",
|
1939
|
+
"tonic",
|
1940
|
+
]
|
1941
|
+
|
1942
|
+
[[package]]
|
1943
|
+
name = "opentelemetry_sdk"
|
1944
|
+
version = "0.26.0"
|
1945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1946
|
+
checksum = "d2c627d9f4c9cdc1f21a29ee4bfbd6028fcb8bcf2a857b43f3abdf72c9c862f3"
|
1947
|
+
dependencies = [
|
1948
|
+
"async-trait",
|
1949
|
+
"futures-channel",
|
1950
|
+
"futures-executor",
|
1951
|
+
"futures-util",
|
1952
|
+
"glob",
|
1953
|
+
"once_cell",
|
1954
|
+
"opentelemetry",
|
1955
|
+
"percent-encoding",
|
1956
|
+
"rand",
|
1957
|
+
"serde_json",
|
1958
|
+
"thiserror 1.0.69",
|
1959
|
+
"tokio",
|
1960
|
+
"tokio-stream",
|
1961
|
+
]
|
1962
|
+
|
1963
|
+
[[package]]
|
1964
|
+
name = "overload"
|
1965
|
+
version = "0.1.1"
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1967
|
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
1968
|
+
|
1969
|
+
[[package]]
|
1970
|
+
name = "parking_lot"
|
1971
|
+
version = "0.12.3"
|
1972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1973
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
1974
|
+
dependencies = [
|
1975
|
+
"lock_api",
|
1976
|
+
"parking_lot_core",
|
1977
|
+
]
|
1978
|
+
|
1979
|
+
[[package]]
|
1980
|
+
name = "parking_lot_core"
|
1981
|
+
version = "0.9.10"
|
1982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1983
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
1984
|
+
dependencies = [
|
1985
|
+
"cfg-if",
|
1986
|
+
"libc",
|
1987
|
+
"redox_syscall",
|
1988
|
+
"smallvec",
|
1989
|
+
"windows-targets",
|
1990
|
+
]
|
1991
|
+
|
1992
|
+
[[package]]
|
1993
|
+
name = "paste"
|
1994
|
+
version = "1.0.15"
|
1995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1996
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
1997
|
+
|
1998
|
+
[[package]]
|
1999
|
+
name = "pbkdf2"
|
2000
|
+
version = "0.12.2"
|
2001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2002
|
+
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
|
2003
|
+
dependencies = [
|
2004
|
+
"digest",
|
2005
|
+
"hmac",
|
2006
|
+
]
|
2007
|
+
|
2008
|
+
[[package]]
|
2009
|
+
name = "percent-encoding"
|
2010
|
+
version = "2.3.1"
|
2011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2012
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
2013
|
+
|
2014
|
+
[[package]]
|
2015
|
+
name = "petgraph"
|
2016
|
+
version = "0.6.5"
|
2017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2018
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
2019
|
+
dependencies = [
|
2020
|
+
"fixedbitset",
|
2021
|
+
"indexmap 2.7.0",
|
2022
|
+
]
|
2023
|
+
|
2024
|
+
[[package]]
|
2025
|
+
name = "pid"
|
2026
|
+
version = "4.0.0"
|
2027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2028
|
+
checksum = "d7c931ef9756cd5e3fa3d395bfe09df4dfa6f0612c6ca8f6b12927d17ca34e36"
|
2029
|
+
dependencies = [
|
2030
|
+
"num-traits",
|
2031
|
+
]
|
2032
|
+
|
2033
|
+
[[package]]
|
2034
|
+
name = "pin-project"
|
2035
|
+
version = "1.1.8"
|
2036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2037
|
+
checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916"
|
2038
|
+
dependencies = [
|
2039
|
+
"pin-project-internal",
|
2040
|
+
]
|
2041
|
+
|
2042
|
+
[[package]]
|
2043
|
+
name = "pin-project-internal"
|
2044
|
+
version = "1.1.8"
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2046
|
+
checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb"
|
2047
|
+
dependencies = [
|
2048
|
+
"proc-macro2",
|
2049
|
+
"quote",
|
2050
|
+
"syn",
|
2051
|
+
]
|
2052
|
+
|
2053
|
+
[[package]]
|
2054
|
+
name = "pin-project-lite"
|
2055
|
+
version = "0.2.16"
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2057
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
2058
|
+
|
2059
|
+
[[package]]
|
2060
|
+
name = "pin-utils"
|
2061
|
+
version = "0.1.0"
|
2062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2063
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
2064
|
+
|
2065
|
+
[[package]]
|
2066
|
+
name = "pkg-config"
|
2067
|
+
version = "0.3.31"
|
2068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2069
|
+
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
2070
|
+
|
2071
|
+
[[package]]
|
2072
|
+
name = "plotters"
|
2073
|
+
version = "0.3.7"
|
2074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2075
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
2076
|
+
dependencies = [
|
2077
|
+
"num-traits",
|
2078
|
+
"plotters-backend",
|
2079
|
+
"plotters-svg",
|
2080
|
+
"wasm-bindgen",
|
2081
|
+
"web-sys",
|
2082
|
+
]
|
2083
|
+
|
2084
|
+
[[package]]
|
2085
|
+
name = "plotters-backend"
|
2086
|
+
version = "0.3.7"
|
2087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2088
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
2089
|
+
|
2090
|
+
[[package]]
|
2091
|
+
name = "plotters-svg"
|
2092
|
+
version = "0.3.7"
|
2093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2094
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
2095
|
+
dependencies = [
|
2096
|
+
"plotters-backend",
|
2097
|
+
]
|
2098
|
+
|
2099
|
+
[[package]]
|
2100
|
+
name = "portable-atomic"
|
2101
|
+
version = "1.10.0"
|
2102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2103
|
+
checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
|
2104
|
+
|
2105
|
+
[[package]]
|
2106
|
+
name = "powerfmt"
|
2107
|
+
version = "0.2.0"
|
2108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2109
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
2110
|
+
|
2111
|
+
[[package]]
|
2112
|
+
name = "ppv-lite86"
|
2113
|
+
version = "0.2.20"
|
2114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2115
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
2116
|
+
dependencies = [
|
2117
|
+
"zerocopy",
|
2118
|
+
]
|
2119
|
+
|
2120
|
+
[[package]]
|
2121
|
+
name = "predicates"
|
2122
|
+
version = "3.1.3"
|
2123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2124
|
+
checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
|
2125
|
+
dependencies = [
|
2126
|
+
"anstyle",
|
2127
|
+
"predicates-core",
|
2128
|
+
]
|
2129
|
+
|
2130
|
+
[[package]]
|
2131
|
+
name = "predicates-core"
|
2132
|
+
version = "1.0.9"
|
2133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2134
|
+
checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
|
2135
|
+
|
2136
|
+
[[package]]
|
2137
|
+
name = "predicates-tree"
|
2138
|
+
version = "1.0.12"
|
2139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2140
|
+
checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
|
2141
|
+
dependencies = [
|
2142
|
+
"predicates-core",
|
2143
|
+
"termtree",
|
2144
|
+
]
|
2145
|
+
|
2146
|
+
[[package]]
|
2147
|
+
name = "prettyplease"
|
2148
|
+
version = "0.2.29"
|
2149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2150
|
+
checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
|
2151
|
+
dependencies = [
|
2152
|
+
"proc-macro2",
|
2153
|
+
"syn",
|
2154
|
+
]
|
2155
|
+
|
2156
|
+
[[package]]
|
2157
|
+
name = "proc-macro-crate"
|
2158
|
+
version = "3.2.0"
|
2159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2160
|
+
checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b"
|
2161
|
+
dependencies = [
|
2162
|
+
"toml_edit",
|
2163
|
+
]
|
2164
|
+
|
2165
|
+
[[package]]
|
2166
|
+
name = "proc-macro2"
|
2167
|
+
version = "1.0.93"
|
2168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2169
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
2170
|
+
dependencies = [
|
2171
|
+
"unicode-ident",
|
2172
|
+
]
|
2173
|
+
|
2174
|
+
[[package]]
|
2175
|
+
name = "prometheus"
|
2176
|
+
version = "0.13.4"
|
2177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2178
|
+
checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
|
2179
|
+
dependencies = [
|
2180
|
+
"cfg-if",
|
2181
|
+
"fnv",
|
2182
|
+
"lazy_static",
|
2183
|
+
"memchr",
|
2184
|
+
"parking_lot",
|
2185
|
+
"protobuf",
|
2186
|
+
"thiserror 1.0.69",
|
2187
|
+
]
|
2188
|
+
|
2189
|
+
[[package]]
|
2190
|
+
name = "prost"
|
2191
|
+
version = "0.13.4"
|
2192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2193
|
+
checksum = "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec"
|
2194
|
+
dependencies = [
|
2195
|
+
"bytes",
|
2196
|
+
"prost-derive",
|
2197
|
+
]
|
2198
|
+
|
2199
|
+
[[package]]
|
2200
|
+
name = "prost-build"
|
2201
|
+
version = "0.13.4"
|
2202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2203
|
+
checksum = "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b"
|
2204
|
+
dependencies = [
|
2205
|
+
"heck",
|
2206
|
+
"itertools 0.13.0",
|
2207
|
+
"log",
|
2208
|
+
"multimap",
|
2209
|
+
"once_cell",
|
2210
|
+
"petgraph",
|
2211
|
+
"prettyplease",
|
2212
|
+
"prost",
|
2213
|
+
"prost-types",
|
2214
|
+
"regex",
|
2215
|
+
"syn",
|
2216
|
+
"tempfile",
|
2217
|
+
]
|
2218
|
+
|
2219
|
+
[[package]]
|
2220
|
+
name = "prost-derive"
|
2221
|
+
version = "0.13.4"
|
2222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2223
|
+
checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3"
|
2224
|
+
dependencies = [
|
2225
|
+
"anyhow",
|
2226
|
+
"itertools 0.13.0",
|
2227
|
+
"proc-macro2",
|
2228
|
+
"quote",
|
2229
|
+
"syn",
|
2230
|
+
]
|
2231
|
+
|
2232
|
+
[[package]]
|
2233
|
+
name = "prost-types"
|
2234
|
+
version = "0.13.4"
|
2235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2236
|
+
checksum = "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc"
|
2237
|
+
dependencies = [
|
2238
|
+
"prost",
|
2239
|
+
]
|
2240
|
+
|
2241
|
+
[[package]]
|
2242
|
+
name = "prost-wkt"
|
2243
|
+
version = "0.6.0"
|
2244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2245
|
+
checksum = "a8d84e2bee181b04c2bac339f2bfe818c46a99750488cc6728ce4181d5aa8299"
|
2246
|
+
dependencies = [
|
2247
|
+
"chrono",
|
2248
|
+
"inventory",
|
2249
|
+
"prost",
|
2250
|
+
"serde",
|
2251
|
+
"serde_derive",
|
2252
|
+
"serde_json",
|
2253
|
+
"typetag",
|
2254
|
+
]
|
2255
|
+
|
2256
|
+
[[package]]
|
2257
|
+
name = "prost-wkt-build"
|
2258
|
+
version = "0.6.0"
|
2259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2260
|
+
checksum = "8a669d5acbe719010c6f62a64e6d7d88fdedc1fe46e419747949ecb6312e9b14"
|
2261
|
+
dependencies = [
|
2262
|
+
"heck",
|
2263
|
+
"prost",
|
2264
|
+
"prost-build",
|
2265
|
+
"prost-types",
|
2266
|
+
"quote",
|
2267
|
+
]
|
2268
|
+
|
2269
|
+
[[package]]
|
2270
|
+
name = "prost-wkt-types"
|
2271
|
+
version = "0.6.0"
|
2272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2273
|
+
checksum = "01ef068e9b82e654614b22e6b13699bd545b6c0e2e721736008b00b38aeb4f64"
|
2274
|
+
dependencies = [
|
2275
|
+
"chrono",
|
2276
|
+
"prost",
|
2277
|
+
"prost-build",
|
2278
|
+
"prost-types",
|
2279
|
+
"prost-wkt",
|
2280
|
+
"prost-wkt-build",
|
2281
|
+
"regex",
|
2282
|
+
"serde",
|
2283
|
+
"serde_derive",
|
2284
|
+
"serde_json",
|
2285
|
+
]
|
2286
|
+
|
2287
|
+
[[package]]
|
2288
|
+
name = "protobuf"
|
2289
|
+
version = "2.28.0"
|
2290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2291
|
+
checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
|
2292
|
+
|
2293
|
+
[[package]]
|
2294
|
+
name = "quanta"
|
2295
|
+
version = "0.12.5"
|
2296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2297
|
+
checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e"
|
2298
|
+
dependencies = [
|
2299
|
+
"crossbeam-utils",
|
2300
|
+
"libc",
|
2301
|
+
"once_cell",
|
2302
|
+
"raw-cpuid",
|
2303
|
+
"wasi",
|
2304
|
+
"web-sys",
|
2305
|
+
"winapi",
|
2306
|
+
]
|
2307
|
+
|
2308
|
+
[[package]]
|
2309
|
+
name = "quinn"
|
2310
|
+
version = "0.11.6"
|
2311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2312
|
+
checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
|
2313
|
+
dependencies = [
|
2314
|
+
"bytes",
|
2315
|
+
"pin-project-lite",
|
2316
|
+
"quinn-proto",
|
2317
|
+
"quinn-udp",
|
2318
|
+
"rustc-hash 2.1.0",
|
2319
|
+
"rustls",
|
2320
|
+
"socket2",
|
2321
|
+
"thiserror 2.0.11",
|
2322
|
+
"tokio",
|
2323
|
+
"tracing",
|
2324
|
+
]
|
2325
|
+
|
2326
|
+
[[package]]
|
2327
|
+
name = "quinn-proto"
|
2328
|
+
version = "0.11.9"
|
2329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2330
|
+
checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
|
2331
|
+
dependencies = [
|
2332
|
+
"bytes",
|
2333
|
+
"getrandom",
|
2334
|
+
"rand",
|
2335
|
+
"ring",
|
2336
|
+
"rustc-hash 2.1.0",
|
2337
|
+
"rustls",
|
2338
|
+
"rustls-pki-types",
|
2339
|
+
"slab",
|
2340
|
+
"thiserror 2.0.11",
|
2341
|
+
"tinyvec",
|
2342
|
+
"tracing",
|
2343
|
+
"web-time",
|
2344
|
+
]
|
2345
|
+
|
2346
|
+
[[package]]
|
2347
|
+
name = "quinn-udp"
|
2348
|
+
version = "0.5.9"
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2350
|
+
checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904"
|
2351
|
+
dependencies = [
|
2352
|
+
"cfg_aliases",
|
2353
|
+
"libc",
|
2354
|
+
"once_cell",
|
2355
|
+
"socket2",
|
2356
|
+
"tracing",
|
2357
|
+
"windows-sys 0.59.0",
|
2358
|
+
]
|
2359
|
+
|
2360
|
+
[[package]]
|
2361
|
+
name = "quote"
|
2362
|
+
version = "1.0.38"
|
2363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2364
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
2365
|
+
dependencies = [
|
2366
|
+
"proc-macro2",
|
2367
|
+
]
|
2368
|
+
|
2369
|
+
[[package]]
|
2370
|
+
name = "rand"
|
2371
|
+
version = "0.8.5"
|
2372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2373
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
2374
|
+
dependencies = [
|
2375
|
+
"libc",
|
2376
|
+
"rand_chacha",
|
2377
|
+
"rand_core",
|
2378
|
+
]
|
2379
|
+
|
2380
|
+
[[package]]
|
2381
|
+
name = "rand_chacha"
|
2382
|
+
version = "0.3.1"
|
2383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2384
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
2385
|
+
dependencies = [
|
2386
|
+
"ppv-lite86",
|
2387
|
+
"rand_core",
|
2388
|
+
]
|
2389
|
+
|
2390
|
+
[[package]]
|
2391
|
+
name = "rand_core"
|
2392
|
+
version = "0.6.4"
|
2393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2394
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
2395
|
+
dependencies = [
|
2396
|
+
"getrandom",
|
2397
|
+
]
|
2398
|
+
|
2399
|
+
[[package]]
|
2400
|
+
name = "raw-cpuid"
|
2401
|
+
version = "11.3.0"
|
2402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2403
|
+
checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e"
|
2404
|
+
dependencies = [
|
2405
|
+
"bitflags",
|
2406
|
+
]
|
2407
|
+
|
2408
|
+
[[package]]
|
2409
|
+
name = "rayon"
|
2410
|
+
version = "1.10.0"
|
2411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2412
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
2413
|
+
dependencies = [
|
2414
|
+
"either",
|
2415
|
+
"rayon-core",
|
2416
|
+
]
|
2417
|
+
|
2418
|
+
[[package]]
|
2419
|
+
name = "rayon-core"
|
2420
|
+
version = "1.12.1"
|
2421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2422
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
2423
|
+
dependencies = [
|
2424
|
+
"crossbeam-deque",
|
2425
|
+
"crossbeam-utils",
|
2426
|
+
]
|
2427
|
+
|
2428
|
+
[[package]]
|
2429
|
+
name = "rb-sys"
|
2430
|
+
version = "0.9.108"
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2432
|
+
checksum = "1e955384e1a4dc64b71d1e4b39ed0edbd77c7bde4a10dfd5ad208e1160fddfa7"
|
2433
|
+
dependencies = [
|
2434
|
+
"rb-sys-build",
|
2435
|
+
]
|
2436
|
+
|
2437
|
+
[[package]]
|
2438
|
+
name = "rb-sys-build"
|
2439
|
+
version = "0.9.108"
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2441
|
+
checksum = "c167c6571889b2550d6fcb315e8aa60bdb95e47e4b64793e3f65a30dc25afc85"
|
2442
|
+
dependencies = [
|
2443
|
+
"bindgen",
|
2444
|
+
"lazy_static",
|
2445
|
+
"proc-macro2",
|
2446
|
+
"quote",
|
2447
|
+
"regex",
|
2448
|
+
"shell-words",
|
2449
|
+
"syn",
|
2450
|
+
]
|
2451
|
+
|
2452
|
+
[[package]]
|
2453
|
+
name = "rb-sys-env"
|
2454
|
+
version = "0.1.2"
|
2455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2456
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
2457
|
+
|
2458
|
+
[[package]]
|
2459
|
+
name = "redox_syscall"
|
2460
|
+
version = "0.5.8"
|
2461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2462
|
+
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
|
2463
|
+
dependencies = [
|
2464
|
+
"bitflags",
|
2465
|
+
]
|
2466
|
+
|
2467
|
+
[[package]]
|
2468
|
+
name = "regex"
|
2469
|
+
version = "1.11.1"
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2471
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
2472
|
+
dependencies = [
|
2473
|
+
"aho-corasick",
|
2474
|
+
"memchr",
|
2475
|
+
"regex-automata 0.4.9",
|
2476
|
+
"regex-syntax 0.8.5",
|
2477
|
+
]
|
2478
|
+
|
2479
|
+
[[package]]
|
2480
|
+
name = "regex-automata"
|
2481
|
+
version = "0.1.10"
|
2482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2483
|
+
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
2484
|
+
dependencies = [
|
2485
|
+
"regex-syntax 0.6.29",
|
2486
|
+
]
|
2487
|
+
|
2488
|
+
[[package]]
|
2489
|
+
name = "regex-automata"
|
2490
|
+
version = "0.4.9"
|
2491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2492
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
2493
|
+
dependencies = [
|
2494
|
+
"aho-corasick",
|
2495
|
+
"memchr",
|
2496
|
+
"regex-syntax 0.8.5",
|
2497
|
+
]
|
2498
|
+
|
2499
|
+
[[package]]
|
2500
|
+
name = "regex-syntax"
|
2501
|
+
version = "0.6.29"
|
2502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2503
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
2504
|
+
|
2505
|
+
[[package]]
|
2506
|
+
name = "regex-syntax"
|
2507
|
+
version = "0.8.5"
|
2508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2509
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
2510
|
+
|
2511
|
+
[[package]]
|
2512
|
+
name = "relative-path"
|
2513
|
+
version = "1.9.3"
|
2514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2515
|
+
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
2516
|
+
|
2517
|
+
[[package]]
|
2518
|
+
name = "reqwest"
|
2519
|
+
version = "0.12.12"
|
2520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2521
|
+
checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da"
|
2522
|
+
dependencies = [
|
2523
|
+
"base64 0.22.1",
|
2524
|
+
"bytes",
|
2525
|
+
"futures-channel",
|
2526
|
+
"futures-core",
|
2527
|
+
"futures-util",
|
2528
|
+
"http",
|
2529
|
+
"http-body",
|
2530
|
+
"http-body-util",
|
2531
|
+
"hyper",
|
2532
|
+
"hyper-rustls",
|
2533
|
+
"hyper-util",
|
2534
|
+
"ipnet",
|
2535
|
+
"js-sys",
|
2536
|
+
"log",
|
2537
|
+
"mime",
|
2538
|
+
"once_cell",
|
2539
|
+
"percent-encoding",
|
2540
|
+
"pin-project-lite",
|
2541
|
+
"quinn",
|
2542
|
+
"rustls",
|
2543
|
+
"rustls-native-certs",
|
2544
|
+
"rustls-pemfile",
|
2545
|
+
"rustls-pki-types",
|
2546
|
+
"serde",
|
2547
|
+
"serde_json",
|
2548
|
+
"serde_urlencoded",
|
2549
|
+
"sync_wrapper",
|
2550
|
+
"tokio",
|
2551
|
+
"tokio-rustls",
|
2552
|
+
"tokio-util",
|
2553
|
+
"tower 0.5.2",
|
2554
|
+
"tower-service",
|
2555
|
+
"url",
|
2556
|
+
"wasm-bindgen",
|
2557
|
+
"wasm-bindgen-futures",
|
2558
|
+
"wasm-streams",
|
2559
|
+
"web-sys",
|
2560
|
+
"windows-registry",
|
2561
|
+
]
|
2562
|
+
|
2563
|
+
[[package]]
|
2564
|
+
name = "ring"
|
2565
|
+
version = "0.17.8"
|
2566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2567
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
2568
|
+
dependencies = [
|
2569
|
+
"cc",
|
2570
|
+
"cfg-if",
|
2571
|
+
"getrandom",
|
2572
|
+
"libc",
|
2573
|
+
"spin",
|
2574
|
+
"untrusted",
|
2575
|
+
"windows-sys 0.52.0",
|
2576
|
+
]
|
2577
|
+
|
2578
|
+
[[package]]
|
2579
|
+
name = "ringbuf"
|
2580
|
+
version = "0.4.7"
|
2581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2582
|
+
checksum = "726bb493fe9cac765e8f96a144c3a8396bdf766dedad22e504b70b908dcbceb4"
|
2583
|
+
dependencies = [
|
2584
|
+
"crossbeam-utils",
|
2585
|
+
"portable-atomic",
|
2586
|
+
]
|
2587
|
+
|
2588
|
+
[[package]]
|
2589
|
+
name = "rmp"
|
2590
|
+
version = "0.8.14"
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2592
|
+
checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
|
2593
|
+
dependencies = [
|
2594
|
+
"byteorder",
|
2595
|
+
"num-traits",
|
2596
|
+
"paste",
|
2597
|
+
]
|
2598
|
+
|
2599
|
+
[[package]]
|
2600
|
+
name = "rmp-serde"
|
2601
|
+
version = "1.3.0"
|
2602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2603
|
+
checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
|
2604
|
+
dependencies = [
|
2605
|
+
"byteorder",
|
2606
|
+
"rmp",
|
2607
|
+
"serde",
|
2608
|
+
]
|
2609
|
+
|
2610
|
+
[[package]]
|
2611
|
+
name = "rstest"
|
2612
|
+
version = "0.23.0"
|
2613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2614
|
+
checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035"
|
2615
|
+
dependencies = [
|
2616
|
+
"futures",
|
2617
|
+
"futures-timer",
|
2618
|
+
"rstest_macros",
|
2619
|
+
"rustc_version",
|
2620
|
+
]
|
2621
|
+
|
2622
|
+
[[package]]
|
2623
|
+
name = "rstest_macros"
|
2624
|
+
version = "0.23.0"
|
2625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2626
|
+
checksum = "825ea780781b15345a146be27eaefb05085e337e869bff01b4306a4fd4a9ad5a"
|
2627
|
+
dependencies = [
|
2628
|
+
"cfg-if",
|
2629
|
+
"glob",
|
2630
|
+
"proc-macro-crate",
|
2631
|
+
"proc-macro2",
|
2632
|
+
"quote",
|
2633
|
+
"regex",
|
2634
|
+
"relative-path",
|
2635
|
+
"rustc_version",
|
2636
|
+
"syn",
|
2637
|
+
"unicode-ident",
|
2638
|
+
]
|
2639
|
+
|
2640
|
+
[[package]]
|
2641
|
+
name = "rustc-demangle"
|
2642
|
+
version = "0.1.24"
|
2643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2644
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
2645
|
+
|
2646
|
+
[[package]]
|
2647
|
+
name = "rustc-hash"
|
2648
|
+
version = "1.1.0"
|
2649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2650
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
2651
|
+
|
2652
|
+
[[package]]
|
2653
|
+
name = "rustc-hash"
|
2654
|
+
version = "2.1.0"
|
2655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2656
|
+
checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
|
2657
|
+
|
2658
|
+
[[package]]
|
2659
|
+
name = "rustc_version"
|
2660
|
+
version = "0.4.1"
|
2661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2662
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
2663
|
+
dependencies = [
|
2664
|
+
"semver",
|
2665
|
+
]
|
2666
|
+
|
2667
|
+
[[package]]
|
2668
|
+
name = "rustfsm"
|
2669
|
+
version = "0.1.0"
|
2670
|
+
dependencies = [
|
2671
|
+
"rustfsm_procmacro",
|
2672
|
+
"rustfsm_trait",
|
2673
|
+
]
|
2674
|
+
|
2675
|
+
[[package]]
|
2676
|
+
name = "rustfsm_procmacro"
|
2677
|
+
version = "0.1.0"
|
2678
|
+
dependencies = [
|
2679
|
+
"derive_more",
|
2680
|
+
"proc-macro2",
|
2681
|
+
"quote",
|
2682
|
+
"rustfsm_trait",
|
2683
|
+
"syn",
|
2684
|
+
"trybuild",
|
2685
|
+
]
|
2686
|
+
|
2687
|
+
[[package]]
|
2688
|
+
name = "rustfsm_trait"
|
2689
|
+
version = "0.1.0"
|
2690
|
+
|
2691
|
+
[[package]]
|
2692
|
+
name = "rustix"
|
2693
|
+
version = "0.38.43"
|
2694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2695
|
+
checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6"
|
2696
|
+
dependencies = [
|
2697
|
+
"bitflags",
|
2698
|
+
"errno",
|
2699
|
+
"libc",
|
2700
|
+
"linux-raw-sys",
|
2701
|
+
"windows-sys 0.59.0",
|
2702
|
+
]
|
2703
|
+
|
2704
|
+
[[package]]
|
2705
|
+
name = "rustls"
|
2706
|
+
version = "0.23.21"
|
2707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2708
|
+
checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8"
|
2709
|
+
dependencies = [
|
2710
|
+
"log",
|
2711
|
+
"once_cell",
|
2712
|
+
"ring",
|
2713
|
+
"rustls-pki-types",
|
2714
|
+
"rustls-webpki",
|
2715
|
+
"subtle",
|
2716
|
+
"zeroize",
|
2717
|
+
]
|
2718
|
+
|
2719
|
+
[[package]]
|
2720
|
+
name = "rustls-native-certs"
|
2721
|
+
version = "0.8.1"
|
2722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2723
|
+
checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
|
2724
|
+
dependencies = [
|
2725
|
+
"openssl-probe",
|
2726
|
+
"rustls-pki-types",
|
2727
|
+
"schannel",
|
2728
|
+
"security-framework",
|
2729
|
+
]
|
2730
|
+
|
2731
|
+
[[package]]
|
2732
|
+
name = "rustls-pemfile"
|
2733
|
+
version = "2.2.0"
|
2734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2735
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
2736
|
+
dependencies = [
|
2737
|
+
"rustls-pki-types",
|
2738
|
+
]
|
2739
|
+
|
2740
|
+
[[package]]
|
2741
|
+
name = "rustls-pki-types"
|
2742
|
+
version = "1.10.1"
|
2743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2744
|
+
checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37"
|
2745
|
+
dependencies = [
|
2746
|
+
"web-time",
|
2747
|
+
]
|
2748
|
+
|
2749
|
+
[[package]]
|
2750
|
+
name = "rustls-webpki"
|
2751
|
+
version = "0.102.8"
|
2752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2753
|
+
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
|
2754
|
+
dependencies = [
|
2755
|
+
"ring",
|
2756
|
+
"rustls-pki-types",
|
2757
|
+
"untrusted",
|
2758
|
+
]
|
2759
|
+
|
2760
|
+
[[package]]
|
2761
|
+
name = "rustversion"
|
2762
|
+
version = "1.0.19"
|
2763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2764
|
+
checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
|
2765
|
+
|
2766
|
+
[[package]]
|
2767
|
+
name = "ryu"
|
2768
|
+
version = "1.0.18"
|
2769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2770
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
2771
|
+
|
2772
|
+
[[package]]
|
2773
|
+
name = "same-file"
|
2774
|
+
version = "1.0.6"
|
2775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2776
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
2777
|
+
dependencies = [
|
2778
|
+
"winapi-util",
|
2779
|
+
]
|
2780
|
+
|
2781
|
+
[[package]]
|
2782
|
+
name = "schannel"
|
2783
|
+
version = "0.1.27"
|
2784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2785
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
2786
|
+
dependencies = [
|
2787
|
+
"windows-sys 0.59.0",
|
2788
|
+
]
|
2789
|
+
|
2790
|
+
[[package]]
|
2791
|
+
name = "scopeguard"
|
2792
|
+
version = "1.2.0"
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2794
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
2795
|
+
|
2796
|
+
[[package]]
|
2797
|
+
name = "security-framework"
|
2798
|
+
version = "3.2.0"
|
2799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2800
|
+
checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
|
2801
|
+
dependencies = [
|
2802
|
+
"bitflags",
|
2803
|
+
"core-foundation",
|
2804
|
+
"core-foundation-sys",
|
2805
|
+
"libc",
|
2806
|
+
"security-framework-sys",
|
2807
|
+
]
|
2808
|
+
|
2809
|
+
[[package]]
|
2810
|
+
name = "security-framework-sys"
|
2811
|
+
version = "2.14.0"
|
2812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2813
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
2814
|
+
dependencies = [
|
2815
|
+
"core-foundation-sys",
|
2816
|
+
"libc",
|
2817
|
+
]
|
2818
|
+
|
2819
|
+
[[package]]
|
2820
|
+
name = "semver"
|
2821
|
+
version = "1.0.24"
|
2822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2823
|
+
checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
|
2824
|
+
|
2825
|
+
[[package]]
|
2826
|
+
name = "seq-macro"
|
2827
|
+
version = "0.3.5"
|
2828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2829
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
2830
|
+
|
2831
|
+
[[package]]
|
2832
|
+
name = "serde"
|
2833
|
+
version = "1.0.217"
|
2834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2835
|
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
2836
|
+
dependencies = [
|
2837
|
+
"serde_derive",
|
2838
|
+
]
|
2839
|
+
|
2840
|
+
[[package]]
|
2841
|
+
name = "serde_derive"
|
2842
|
+
version = "1.0.217"
|
2843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2844
|
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
2845
|
+
dependencies = [
|
2846
|
+
"proc-macro2",
|
2847
|
+
"quote",
|
2848
|
+
"syn",
|
2849
|
+
]
|
2850
|
+
|
2851
|
+
[[package]]
|
2852
|
+
name = "serde_json"
|
2853
|
+
version = "1.0.135"
|
2854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2855
|
+
checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9"
|
2856
|
+
dependencies = [
|
2857
|
+
"itoa",
|
2858
|
+
"memchr",
|
2859
|
+
"ryu",
|
2860
|
+
"serde",
|
2861
|
+
]
|
2862
|
+
|
2863
|
+
[[package]]
|
2864
|
+
name = "serde_spanned"
|
2865
|
+
version = "0.6.8"
|
2866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2867
|
+
checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
|
2868
|
+
dependencies = [
|
2869
|
+
"serde",
|
2870
|
+
]
|
2871
|
+
|
2872
|
+
[[package]]
|
2873
|
+
name = "serde_urlencoded"
|
2874
|
+
version = "0.7.1"
|
2875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2876
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
2877
|
+
dependencies = [
|
2878
|
+
"form_urlencoded",
|
2879
|
+
"itoa",
|
2880
|
+
"ryu",
|
2881
|
+
"serde",
|
2882
|
+
]
|
2883
|
+
|
2884
|
+
[[package]]
|
2885
|
+
name = "sha1"
|
2886
|
+
version = "0.10.6"
|
2887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2888
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
2889
|
+
dependencies = [
|
2890
|
+
"cfg-if",
|
2891
|
+
"cpufeatures",
|
2892
|
+
"digest",
|
2893
|
+
]
|
2894
|
+
|
2895
|
+
[[package]]
|
2896
|
+
name = "sharded-slab"
|
2897
|
+
version = "0.1.7"
|
2898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2899
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
2900
|
+
dependencies = [
|
2901
|
+
"lazy_static",
|
2902
|
+
]
|
2903
|
+
|
2904
|
+
[[package]]
|
2905
|
+
name = "shell-words"
|
2906
|
+
version = "1.1.0"
|
2907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2908
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
2909
|
+
|
2910
|
+
[[package]]
|
2911
|
+
name = "shlex"
|
2912
|
+
version = "1.3.0"
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2914
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
2915
|
+
|
2916
|
+
[[package]]
|
2917
|
+
name = "signal-hook-registry"
|
2918
|
+
version = "1.4.2"
|
2919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2920
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
2921
|
+
dependencies = [
|
2922
|
+
"libc",
|
2923
|
+
]
|
2924
|
+
|
2925
|
+
[[package]]
|
2926
|
+
name = "simd-adler32"
|
2927
|
+
version = "0.3.7"
|
2928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2929
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
2930
|
+
|
2931
|
+
[[package]]
|
2932
|
+
name = "siphasher"
|
2933
|
+
version = "1.0.1"
|
2934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2935
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
2936
|
+
|
2937
|
+
[[package]]
|
2938
|
+
name = "slab"
|
2939
|
+
version = "0.4.9"
|
2940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2941
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
2942
|
+
dependencies = [
|
2943
|
+
"autocfg",
|
2944
|
+
]
|
2945
|
+
|
2946
|
+
[[package]]
|
2947
|
+
name = "slotmap"
|
2948
|
+
version = "1.0.7"
|
2949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2950
|
+
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
|
2951
|
+
dependencies = [
|
2952
|
+
"version_check",
|
2953
|
+
]
|
2954
|
+
|
2955
|
+
[[package]]
|
2956
|
+
name = "smallvec"
|
2957
|
+
version = "1.13.2"
|
2958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2959
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
2960
|
+
|
2961
|
+
[[package]]
|
2962
|
+
name = "socket2"
|
2963
|
+
version = "0.5.8"
|
2964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2965
|
+
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
|
2966
|
+
dependencies = [
|
2967
|
+
"libc",
|
2968
|
+
"windows-sys 0.52.0",
|
2969
|
+
]
|
2970
|
+
|
2971
|
+
[[package]]
|
2972
|
+
name = "spin"
|
2973
|
+
version = "0.9.8"
|
2974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2975
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
2976
|
+
|
2977
|
+
[[package]]
|
2978
|
+
name = "spinning_top"
|
2979
|
+
version = "0.3.0"
|
2980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2981
|
+
checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300"
|
2982
|
+
dependencies = [
|
2983
|
+
"lock_api",
|
2984
|
+
]
|
2985
|
+
|
2986
|
+
[[package]]
|
2987
|
+
name = "stable_deref_trait"
|
2988
|
+
version = "1.2.0"
|
2989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2990
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
2991
|
+
|
2992
|
+
[[package]]
|
2993
|
+
name = "strsim"
|
2994
|
+
version = "0.11.1"
|
2995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2996
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
2997
|
+
|
2998
|
+
[[package]]
|
2999
|
+
name = "subtle"
|
3000
|
+
version = "2.6.1"
|
3001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3002
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
3003
|
+
|
3004
|
+
[[package]]
|
3005
|
+
name = "syn"
|
3006
|
+
version = "2.0.96"
|
3007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3008
|
+
checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
|
3009
|
+
dependencies = [
|
3010
|
+
"proc-macro2",
|
3011
|
+
"quote",
|
3012
|
+
"unicode-ident",
|
3013
|
+
]
|
3014
|
+
|
3015
|
+
[[package]]
|
3016
|
+
name = "sync_wrapper"
|
3017
|
+
version = "1.0.2"
|
3018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3019
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
3020
|
+
dependencies = [
|
3021
|
+
"futures-core",
|
3022
|
+
]
|
3023
|
+
|
3024
|
+
[[package]]
|
3025
|
+
name = "synstructure"
|
3026
|
+
version = "0.13.1"
|
3027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3028
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
3029
|
+
dependencies = [
|
3030
|
+
"proc-macro2",
|
3031
|
+
"quote",
|
3032
|
+
"syn",
|
3033
|
+
]
|
3034
|
+
|
3035
|
+
[[package]]
|
3036
|
+
name = "sysinfo"
|
3037
|
+
version = "0.32.1"
|
3038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3039
|
+
checksum = "4c33cd241af0f2e9e3b5c32163b873b29956890b5342e6745b917ce9d490f4af"
|
3040
|
+
dependencies = [
|
3041
|
+
"core-foundation-sys",
|
3042
|
+
"libc",
|
3043
|
+
"memchr",
|
3044
|
+
"ntapi",
|
3045
|
+
"windows",
|
3046
|
+
]
|
3047
|
+
|
3048
|
+
[[package]]
|
3049
|
+
name = "tar"
|
3050
|
+
version = "0.4.43"
|
3051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3052
|
+
checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6"
|
3053
|
+
dependencies = [
|
3054
|
+
"filetime",
|
3055
|
+
"libc",
|
3056
|
+
"xattr",
|
3057
|
+
]
|
3058
|
+
|
3059
|
+
[[package]]
|
3060
|
+
name = "target-triple"
|
3061
|
+
version = "0.1.3"
|
3062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3063
|
+
checksum = "42a4d50cdb458045afc8131fd91b64904da29548bcb63c7236e0844936c13078"
|
3064
|
+
|
3065
|
+
[[package]]
|
3066
|
+
name = "tempfile"
|
3067
|
+
version = "3.15.0"
|
3068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3069
|
+
checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
|
3070
|
+
dependencies = [
|
3071
|
+
"cfg-if",
|
3072
|
+
"fastrand",
|
3073
|
+
"getrandom",
|
3074
|
+
"once_cell",
|
3075
|
+
"rustix",
|
3076
|
+
"windows-sys 0.59.0",
|
3077
|
+
]
|
3078
|
+
|
3079
|
+
[[package]]
|
3080
|
+
name = "temporal-client"
|
3081
|
+
version = "0.1.0"
|
3082
|
+
dependencies = [
|
3083
|
+
"anyhow",
|
3084
|
+
"assert_matches",
|
3085
|
+
"async-trait",
|
3086
|
+
"backoff",
|
3087
|
+
"base64 0.22.1",
|
3088
|
+
"derive_builder",
|
3089
|
+
"derive_more",
|
3090
|
+
"futures-retry",
|
3091
|
+
"futures-util",
|
3092
|
+
"http",
|
3093
|
+
"http-body-util",
|
3094
|
+
"hyper",
|
3095
|
+
"hyper-util",
|
3096
|
+
"mockall",
|
3097
|
+
"opentelemetry",
|
3098
|
+
"parking_lot",
|
3099
|
+
"prost-types",
|
3100
|
+
"slotmap",
|
3101
|
+
"temporal-sdk-core-api",
|
3102
|
+
"temporal-sdk-core-protos",
|
3103
|
+
"thiserror 2.0.11",
|
3104
|
+
"tokio",
|
3105
|
+
"tonic",
|
3106
|
+
"tower 0.5.2",
|
3107
|
+
"tracing",
|
3108
|
+
"url",
|
3109
|
+
"uuid",
|
3110
|
+
]
|
3111
|
+
|
3112
|
+
[[package]]
|
3113
|
+
name = "temporal-sdk"
|
3114
|
+
version = "0.1.0-alpha.1"
|
3115
|
+
dependencies = [
|
3116
|
+
"anyhow",
|
3117
|
+
"async-trait",
|
3118
|
+
"derive_more",
|
3119
|
+
"futures-util",
|
3120
|
+
"parking_lot",
|
3121
|
+
"prost-wkt-types",
|
3122
|
+
"serde",
|
3123
|
+
"temporal-client",
|
3124
|
+
"temporal-sdk-core",
|
3125
|
+
"temporal-sdk-core-api",
|
3126
|
+
"temporal-sdk-core-protos",
|
3127
|
+
"thiserror 2.0.11",
|
3128
|
+
"tokio",
|
3129
|
+
"tokio-stream",
|
3130
|
+
"tokio-util",
|
3131
|
+
"tracing",
|
3132
|
+
]
|
3133
|
+
|
3134
|
+
[[package]]
|
3135
|
+
name = "temporal-sdk-core"
|
3136
|
+
version = "0.1.0"
|
3137
|
+
dependencies = [
|
3138
|
+
"anyhow",
|
3139
|
+
"assert_matches",
|
3140
|
+
"async-trait",
|
3141
|
+
"bimap",
|
3142
|
+
"clap",
|
3143
|
+
"console-subscriber",
|
3144
|
+
"criterion",
|
3145
|
+
"crossbeam-channel",
|
3146
|
+
"crossbeam-queue",
|
3147
|
+
"crossbeam-utils",
|
3148
|
+
"dashmap",
|
3149
|
+
"derive_builder",
|
3150
|
+
"derive_more",
|
3151
|
+
"enum-iterator",
|
3152
|
+
"enum_dispatch",
|
3153
|
+
"flate2",
|
3154
|
+
"futures-channel",
|
3155
|
+
"futures-util",
|
3156
|
+
"governor",
|
3157
|
+
"http-body-util",
|
3158
|
+
"hyper",
|
3159
|
+
"hyper-util",
|
3160
|
+
"itertools 0.13.0",
|
3161
|
+
"lru",
|
3162
|
+
"mockall",
|
3163
|
+
"opentelemetry",
|
3164
|
+
"opentelemetry-otlp",
|
3165
|
+
"opentelemetry-prometheus",
|
3166
|
+
"opentelemetry_sdk",
|
3167
|
+
"parking_lot",
|
3168
|
+
"pid",
|
3169
|
+
"pin-project",
|
3170
|
+
"prometheus",
|
3171
|
+
"prost",
|
3172
|
+
"prost-wkt-types",
|
3173
|
+
"rand",
|
3174
|
+
"reqwest",
|
3175
|
+
"ringbuf",
|
3176
|
+
"rstest",
|
3177
|
+
"rustfsm",
|
3178
|
+
"serde",
|
3179
|
+
"serde_json",
|
3180
|
+
"siphasher",
|
3181
|
+
"slotmap",
|
3182
|
+
"sysinfo",
|
3183
|
+
"tar",
|
3184
|
+
"temporal-client",
|
3185
|
+
"temporal-sdk",
|
3186
|
+
"temporal-sdk-core-api",
|
3187
|
+
"temporal-sdk-core-protos",
|
3188
|
+
"temporal-sdk-core-test-utils",
|
3189
|
+
"thiserror 2.0.11",
|
3190
|
+
"tokio",
|
3191
|
+
"tokio-stream",
|
3192
|
+
"tokio-util",
|
3193
|
+
"tonic",
|
3194
|
+
"tracing",
|
3195
|
+
"tracing-subscriber",
|
3196
|
+
"url",
|
3197
|
+
"uuid",
|
3198
|
+
"zip",
|
3199
|
+
]
|
3200
|
+
|
3201
|
+
[[package]]
|
3202
|
+
name = "temporal-sdk-core-api"
|
3203
|
+
version = "0.1.0"
|
3204
|
+
dependencies = [
|
3205
|
+
"async-trait",
|
3206
|
+
"derive_builder",
|
3207
|
+
"derive_more",
|
3208
|
+
"opentelemetry",
|
3209
|
+
"prost",
|
3210
|
+
"prost-types",
|
3211
|
+
"serde_json",
|
3212
|
+
"temporal-sdk-core-protos",
|
3213
|
+
"thiserror 2.0.11",
|
3214
|
+
"tonic",
|
3215
|
+
"tracing-core",
|
3216
|
+
"url",
|
3217
|
+
]
|
3218
|
+
|
3219
|
+
[[package]]
|
3220
|
+
name = "temporal-sdk-core-protos"
|
3221
|
+
version = "0.1.0"
|
3222
|
+
dependencies = [
|
3223
|
+
"anyhow",
|
3224
|
+
"base64 0.22.1",
|
3225
|
+
"derive_more",
|
3226
|
+
"prost",
|
3227
|
+
"prost-build",
|
3228
|
+
"prost-types",
|
3229
|
+
"prost-wkt",
|
3230
|
+
"prost-wkt-build",
|
3231
|
+
"prost-wkt-types",
|
3232
|
+
"rand",
|
3233
|
+
"serde",
|
3234
|
+
"serde_json",
|
3235
|
+
"thiserror 2.0.11",
|
3236
|
+
"tonic",
|
3237
|
+
"tonic-build",
|
3238
|
+
"uuid",
|
3239
|
+
]
|
3240
|
+
|
3241
|
+
[[package]]
|
3242
|
+
name = "temporal-sdk-core-test-utils"
|
3243
|
+
version = "0.1.0"
|
3244
|
+
dependencies = [
|
3245
|
+
"anyhow",
|
3246
|
+
"assert_matches",
|
3247
|
+
"async-trait",
|
3248
|
+
"base64 0.22.1",
|
3249
|
+
"bytes",
|
3250
|
+
"futures-util",
|
3251
|
+
"log",
|
3252
|
+
"parking_lot",
|
3253
|
+
"prost",
|
3254
|
+
"prost-types",
|
3255
|
+
"rand",
|
3256
|
+
"rmp-serde",
|
3257
|
+
"serde_json",
|
3258
|
+
"temporal-client",
|
3259
|
+
"temporal-sdk",
|
3260
|
+
"temporal-sdk-core",
|
3261
|
+
"temporal-sdk-core-api",
|
3262
|
+
"temporal-sdk-core-protos",
|
3263
|
+
"thiserror 2.0.11",
|
3264
|
+
"tokio",
|
3265
|
+
"tokio-util",
|
3266
|
+
"tracing",
|
3267
|
+
"url",
|
3268
|
+
"uuid",
|
3269
|
+
]
|
3270
|
+
|
3271
|
+
[[package]]
|
3272
|
+
name = "temporalio_bridge"
|
3273
|
+
version = "0.1.0"
|
3274
|
+
dependencies = [
|
3275
|
+
"futures",
|
3276
|
+
"magnus",
|
3277
|
+
"parking_lot",
|
3278
|
+
"prost",
|
3279
|
+
"rb-sys",
|
3280
|
+
"temporal-client",
|
3281
|
+
"temporal-sdk-core",
|
3282
|
+
"temporal-sdk-core-api",
|
3283
|
+
"temporal-sdk-core-protos",
|
3284
|
+
"tokio",
|
3285
|
+
"tokio-util",
|
3286
|
+
"tonic",
|
3287
|
+
"tracing",
|
3288
|
+
"url",
|
3289
|
+
]
|
3290
|
+
|
3291
|
+
[[package]]
|
3292
|
+
name = "termcolor"
|
3293
|
+
version = "1.4.1"
|
3294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3295
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
3296
|
+
dependencies = [
|
3297
|
+
"winapi-util",
|
3298
|
+
]
|
3299
|
+
|
3300
|
+
[[package]]
|
3301
|
+
name = "termtree"
|
3302
|
+
version = "0.5.1"
|
3303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3304
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
3305
|
+
|
3306
|
+
[[package]]
|
3307
|
+
name = "thiserror"
|
3308
|
+
version = "1.0.69"
|
3309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3310
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
3311
|
+
dependencies = [
|
3312
|
+
"thiserror-impl 1.0.69",
|
3313
|
+
]
|
3314
|
+
|
3315
|
+
[[package]]
|
3316
|
+
name = "thiserror"
|
3317
|
+
version = "2.0.11"
|
3318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3319
|
+
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
|
3320
|
+
dependencies = [
|
3321
|
+
"thiserror-impl 2.0.11",
|
3322
|
+
]
|
3323
|
+
|
3324
|
+
[[package]]
|
3325
|
+
name = "thiserror-impl"
|
3326
|
+
version = "1.0.69"
|
3327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3328
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
3329
|
+
dependencies = [
|
3330
|
+
"proc-macro2",
|
3331
|
+
"quote",
|
3332
|
+
"syn",
|
3333
|
+
]
|
3334
|
+
|
3335
|
+
[[package]]
|
3336
|
+
name = "thiserror-impl"
|
3337
|
+
version = "2.0.11"
|
3338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3339
|
+
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
|
3340
|
+
dependencies = [
|
3341
|
+
"proc-macro2",
|
3342
|
+
"quote",
|
3343
|
+
"syn",
|
3344
|
+
]
|
3345
|
+
|
3346
|
+
[[package]]
|
3347
|
+
name = "thread_local"
|
3348
|
+
version = "1.1.8"
|
3349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3350
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
3351
|
+
dependencies = [
|
3352
|
+
"cfg-if",
|
3353
|
+
"once_cell",
|
3354
|
+
]
|
3355
|
+
|
3356
|
+
[[package]]
|
3357
|
+
name = "time"
|
3358
|
+
version = "0.3.37"
|
3359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3360
|
+
checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
|
3361
|
+
dependencies = [
|
3362
|
+
"deranged",
|
3363
|
+
"num-conv",
|
3364
|
+
"powerfmt",
|
3365
|
+
"serde",
|
3366
|
+
"time-core",
|
3367
|
+
]
|
3368
|
+
|
3369
|
+
[[package]]
|
3370
|
+
name = "time-core"
|
3371
|
+
version = "0.1.2"
|
3372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3373
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
3374
|
+
|
3375
|
+
[[package]]
|
3376
|
+
name = "tinystr"
|
3377
|
+
version = "0.7.6"
|
3378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3379
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
3380
|
+
dependencies = [
|
3381
|
+
"displaydoc",
|
3382
|
+
"zerovec",
|
3383
|
+
]
|
3384
|
+
|
3385
|
+
[[package]]
|
3386
|
+
name = "tinytemplate"
|
3387
|
+
version = "1.2.1"
|
3388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3389
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
3390
|
+
dependencies = [
|
3391
|
+
"serde",
|
3392
|
+
"serde_json",
|
3393
|
+
]
|
3394
|
+
|
3395
|
+
[[package]]
|
3396
|
+
name = "tinyvec"
|
3397
|
+
version = "1.8.1"
|
3398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3399
|
+
checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
|
3400
|
+
dependencies = [
|
3401
|
+
"tinyvec_macros",
|
3402
|
+
]
|
3403
|
+
|
3404
|
+
[[package]]
|
3405
|
+
name = "tinyvec_macros"
|
3406
|
+
version = "0.1.1"
|
3407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3408
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
3409
|
+
|
3410
|
+
[[package]]
|
3411
|
+
name = "tokio"
|
3412
|
+
version = "1.43.0"
|
3413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3414
|
+
checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
|
3415
|
+
dependencies = [
|
3416
|
+
"backtrace",
|
3417
|
+
"bytes",
|
3418
|
+
"libc",
|
3419
|
+
"mio",
|
3420
|
+
"parking_lot",
|
3421
|
+
"pin-project-lite",
|
3422
|
+
"signal-hook-registry",
|
3423
|
+
"socket2",
|
3424
|
+
"tokio-macros",
|
3425
|
+
"tracing",
|
3426
|
+
"windows-sys 0.52.0",
|
3427
|
+
]
|
3428
|
+
|
3429
|
+
[[package]]
|
3430
|
+
name = "tokio-macros"
|
3431
|
+
version = "2.5.0"
|
3432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3433
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
3434
|
+
dependencies = [
|
3435
|
+
"proc-macro2",
|
3436
|
+
"quote",
|
3437
|
+
"syn",
|
3438
|
+
]
|
3439
|
+
|
3440
|
+
[[package]]
|
3441
|
+
name = "tokio-rustls"
|
3442
|
+
version = "0.26.1"
|
3443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3444
|
+
checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
|
3445
|
+
dependencies = [
|
3446
|
+
"rustls",
|
3447
|
+
"tokio",
|
3448
|
+
]
|
3449
|
+
|
3450
|
+
[[package]]
|
3451
|
+
name = "tokio-stream"
|
3452
|
+
version = "0.1.17"
|
3453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3454
|
+
checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
|
3455
|
+
dependencies = [
|
3456
|
+
"futures-core",
|
3457
|
+
"pin-project-lite",
|
3458
|
+
"tokio",
|
3459
|
+
]
|
3460
|
+
|
3461
|
+
[[package]]
|
3462
|
+
name = "tokio-util"
|
3463
|
+
version = "0.7.13"
|
3464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3465
|
+
checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
|
3466
|
+
dependencies = [
|
3467
|
+
"bytes",
|
3468
|
+
"futures-core",
|
3469
|
+
"futures-sink",
|
3470
|
+
"pin-project-lite",
|
3471
|
+
"tokio",
|
3472
|
+
]
|
3473
|
+
|
3474
|
+
[[package]]
|
3475
|
+
name = "toml"
|
3476
|
+
version = "0.8.19"
|
3477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3478
|
+
checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
|
3479
|
+
dependencies = [
|
3480
|
+
"serde",
|
3481
|
+
"serde_spanned",
|
3482
|
+
"toml_datetime",
|
3483
|
+
"toml_edit",
|
3484
|
+
]
|
3485
|
+
|
3486
|
+
[[package]]
|
3487
|
+
name = "toml_datetime"
|
3488
|
+
version = "0.6.8"
|
3489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3490
|
+
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
|
3491
|
+
dependencies = [
|
3492
|
+
"serde",
|
3493
|
+
]
|
3494
|
+
|
3495
|
+
[[package]]
|
3496
|
+
name = "toml_edit"
|
3497
|
+
version = "0.22.22"
|
3498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3499
|
+
checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
|
3500
|
+
dependencies = [
|
3501
|
+
"indexmap 2.7.0",
|
3502
|
+
"serde",
|
3503
|
+
"serde_spanned",
|
3504
|
+
"toml_datetime",
|
3505
|
+
"winnow",
|
3506
|
+
]
|
3507
|
+
|
3508
|
+
[[package]]
|
3509
|
+
name = "tonic"
|
3510
|
+
version = "0.12.3"
|
3511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3512
|
+
checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
|
3513
|
+
dependencies = [
|
3514
|
+
"async-stream",
|
3515
|
+
"async-trait",
|
3516
|
+
"axum",
|
3517
|
+
"base64 0.22.1",
|
3518
|
+
"bytes",
|
3519
|
+
"h2",
|
3520
|
+
"http",
|
3521
|
+
"http-body",
|
3522
|
+
"http-body-util",
|
3523
|
+
"hyper",
|
3524
|
+
"hyper-timeout",
|
3525
|
+
"hyper-util",
|
3526
|
+
"percent-encoding",
|
3527
|
+
"pin-project",
|
3528
|
+
"prost",
|
3529
|
+
"rustls-native-certs",
|
3530
|
+
"rustls-pemfile",
|
3531
|
+
"socket2",
|
3532
|
+
"tokio",
|
3533
|
+
"tokio-rustls",
|
3534
|
+
"tokio-stream",
|
3535
|
+
"tower 0.4.13",
|
3536
|
+
"tower-layer",
|
3537
|
+
"tower-service",
|
3538
|
+
"tracing",
|
3539
|
+
]
|
3540
|
+
|
3541
|
+
[[package]]
|
3542
|
+
name = "tonic-build"
|
3543
|
+
version = "0.12.3"
|
3544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3545
|
+
checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11"
|
3546
|
+
dependencies = [
|
3547
|
+
"prettyplease",
|
3548
|
+
"proc-macro2",
|
3549
|
+
"prost-build",
|
3550
|
+
"prost-types",
|
3551
|
+
"quote",
|
3552
|
+
"syn",
|
3553
|
+
]
|
3554
|
+
|
3555
|
+
[[package]]
|
3556
|
+
name = "tower"
|
3557
|
+
version = "0.4.13"
|
3558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3559
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
3560
|
+
dependencies = [
|
3561
|
+
"futures-core",
|
3562
|
+
"futures-util",
|
3563
|
+
"indexmap 1.9.3",
|
3564
|
+
"pin-project",
|
3565
|
+
"pin-project-lite",
|
3566
|
+
"rand",
|
3567
|
+
"slab",
|
3568
|
+
"tokio",
|
3569
|
+
"tokio-util",
|
3570
|
+
"tower-layer",
|
3571
|
+
"tower-service",
|
3572
|
+
"tracing",
|
3573
|
+
]
|
3574
|
+
|
3575
|
+
[[package]]
|
3576
|
+
name = "tower"
|
3577
|
+
version = "0.5.2"
|
3578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3579
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
3580
|
+
dependencies = [
|
3581
|
+
"futures-core",
|
3582
|
+
"futures-util",
|
3583
|
+
"pin-project-lite",
|
3584
|
+
"sync_wrapper",
|
3585
|
+
"tokio",
|
3586
|
+
"tower-layer",
|
3587
|
+
"tower-service",
|
3588
|
+
]
|
3589
|
+
|
3590
|
+
[[package]]
|
3591
|
+
name = "tower-layer"
|
3592
|
+
version = "0.3.3"
|
3593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3594
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
3595
|
+
|
3596
|
+
[[package]]
|
3597
|
+
name = "tower-service"
|
3598
|
+
version = "0.3.3"
|
3599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3600
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
3601
|
+
|
3602
|
+
[[package]]
|
3603
|
+
name = "tracing"
|
3604
|
+
version = "0.1.41"
|
3605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3606
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
3607
|
+
dependencies = [
|
3608
|
+
"pin-project-lite",
|
3609
|
+
"tracing-attributes",
|
3610
|
+
"tracing-core",
|
3611
|
+
]
|
3612
|
+
|
3613
|
+
[[package]]
|
3614
|
+
name = "tracing-attributes"
|
3615
|
+
version = "0.1.28"
|
3616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3617
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
3618
|
+
dependencies = [
|
3619
|
+
"proc-macro2",
|
3620
|
+
"quote",
|
3621
|
+
"syn",
|
3622
|
+
]
|
3623
|
+
|
3624
|
+
[[package]]
|
3625
|
+
name = "tracing-core"
|
3626
|
+
version = "0.1.33"
|
3627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3628
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
3629
|
+
dependencies = [
|
3630
|
+
"once_cell",
|
3631
|
+
"valuable",
|
3632
|
+
]
|
3633
|
+
|
3634
|
+
[[package]]
|
3635
|
+
name = "tracing-log"
|
3636
|
+
version = "0.2.0"
|
3637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3638
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
3639
|
+
dependencies = [
|
3640
|
+
"log",
|
3641
|
+
"once_cell",
|
3642
|
+
"tracing-core",
|
3643
|
+
]
|
3644
|
+
|
3645
|
+
[[package]]
|
3646
|
+
name = "tracing-subscriber"
|
3647
|
+
version = "0.3.19"
|
3648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3649
|
+
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
|
3650
|
+
dependencies = [
|
3651
|
+
"matchers",
|
3652
|
+
"nu-ansi-term",
|
3653
|
+
"once_cell",
|
3654
|
+
"parking_lot",
|
3655
|
+
"regex",
|
3656
|
+
"sharded-slab",
|
3657
|
+
"smallvec",
|
3658
|
+
"thread_local",
|
3659
|
+
"tracing",
|
3660
|
+
"tracing-core",
|
3661
|
+
"tracing-log",
|
3662
|
+
]
|
3663
|
+
|
3664
|
+
[[package]]
|
3665
|
+
name = "try-lock"
|
3666
|
+
version = "0.2.5"
|
3667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3668
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
3669
|
+
|
3670
|
+
[[package]]
|
3671
|
+
name = "trybuild"
|
3672
|
+
version = "1.0.101"
|
3673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3674
|
+
checksum = "8dcd332a5496c026f1e14b7f3d2b7bd98e509660c04239c58b0ba38a12daded4"
|
3675
|
+
dependencies = [
|
3676
|
+
"dissimilar",
|
3677
|
+
"glob",
|
3678
|
+
"serde",
|
3679
|
+
"serde_derive",
|
3680
|
+
"serde_json",
|
3681
|
+
"target-triple",
|
3682
|
+
"termcolor",
|
3683
|
+
"toml",
|
3684
|
+
]
|
3685
|
+
|
3686
|
+
[[package]]
|
3687
|
+
name = "typeid"
|
3688
|
+
version = "1.0.2"
|
3689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3690
|
+
checksum = "0e13db2e0ccd5e14a544e8a246ba2312cd25223f616442d7f2cb0e3db614236e"
|
3691
|
+
|
3692
|
+
[[package]]
|
3693
|
+
name = "typenum"
|
3694
|
+
version = "1.17.0"
|
3695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3696
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
3697
|
+
|
3698
|
+
[[package]]
|
3699
|
+
name = "typetag"
|
3700
|
+
version = "0.2.19"
|
3701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3702
|
+
checksum = "044fc3365ddd307c297fe0fe7b2e70588cdab4d0f62dc52055ca0d11b174cf0e"
|
3703
|
+
dependencies = [
|
3704
|
+
"erased-serde",
|
3705
|
+
"inventory",
|
3706
|
+
"once_cell",
|
3707
|
+
"serde",
|
3708
|
+
"typetag-impl",
|
3709
|
+
]
|
3710
|
+
|
3711
|
+
[[package]]
|
3712
|
+
name = "typetag-impl"
|
3713
|
+
version = "0.2.19"
|
3714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3715
|
+
checksum = "d9d30226ac9cbd2d1ff775f74e8febdab985dab14fb14aa2582c29a92d5555dc"
|
3716
|
+
dependencies = [
|
3717
|
+
"proc-macro2",
|
3718
|
+
"quote",
|
3719
|
+
"syn",
|
3720
|
+
]
|
3721
|
+
|
3722
|
+
[[package]]
|
3723
|
+
name = "unicode-ident"
|
3724
|
+
version = "1.0.14"
|
3725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3726
|
+
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
3727
|
+
|
3728
|
+
[[package]]
|
3729
|
+
name = "unicode-xid"
|
3730
|
+
version = "0.2.6"
|
3731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3732
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
3733
|
+
|
3734
|
+
[[package]]
|
3735
|
+
name = "untrusted"
|
3736
|
+
version = "0.9.0"
|
3737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3738
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
3739
|
+
|
3740
|
+
[[package]]
|
3741
|
+
name = "url"
|
3742
|
+
version = "2.5.4"
|
3743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3744
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
3745
|
+
dependencies = [
|
3746
|
+
"form_urlencoded",
|
3747
|
+
"idna",
|
3748
|
+
"percent-encoding",
|
3749
|
+
]
|
3750
|
+
|
3751
|
+
[[package]]
|
3752
|
+
name = "utf16_iter"
|
3753
|
+
version = "1.0.5"
|
3754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3755
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
3756
|
+
|
3757
|
+
[[package]]
|
3758
|
+
name = "utf8_iter"
|
3759
|
+
version = "1.0.4"
|
3760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3761
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
3762
|
+
|
3763
|
+
[[package]]
|
3764
|
+
name = "utf8parse"
|
3765
|
+
version = "0.2.2"
|
3766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3767
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
3768
|
+
|
3769
|
+
[[package]]
|
3770
|
+
name = "uuid"
|
3771
|
+
version = "1.12.0"
|
3772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3773
|
+
checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4"
|
3774
|
+
dependencies = [
|
3775
|
+
"getrandom",
|
3776
|
+
]
|
3777
|
+
|
3778
|
+
[[package]]
|
3779
|
+
name = "valuable"
|
3780
|
+
version = "0.1.1"
|
3781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3782
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
3783
|
+
|
3784
|
+
[[package]]
|
3785
|
+
name = "version_check"
|
3786
|
+
version = "0.9.5"
|
3787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3788
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
3789
|
+
|
3790
|
+
[[package]]
|
3791
|
+
name = "walkdir"
|
3792
|
+
version = "2.5.0"
|
3793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3794
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
3795
|
+
dependencies = [
|
3796
|
+
"same-file",
|
3797
|
+
"winapi-util",
|
3798
|
+
]
|
3799
|
+
|
3800
|
+
[[package]]
|
3801
|
+
name = "want"
|
3802
|
+
version = "0.3.1"
|
3803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3804
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
3805
|
+
dependencies = [
|
3806
|
+
"try-lock",
|
3807
|
+
]
|
3808
|
+
|
3809
|
+
[[package]]
|
3810
|
+
name = "wasi"
|
3811
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
3812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3813
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
3814
|
+
|
3815
|
+
[[package]]
|
3816
|
+
name = "wasm-bindgen"
|
3817
|
+
version = "0.2.100"
|
3818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3819
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
3820
|
+
dependencies = [
|
3821
|
+
"cfg-if",
|
3822
|
+
"once_cell",
|
3823
|
+
"rustversion",
|
3824
|
+
"wasm-bindgen-macro",
|
3825
|
+
]
|
3826
|
+
|
3827
|
+
[[package]]
|
3828
|
+
name = "wasm-bindgen-backend"
|
3829
|
+
version = "0.2.100"
|
3830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3831
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
3832
|
+
dependencies = [
|
3833
|
+
"bumpalo",
|
3834
|
+
"log",
|
3835
|
+
"proc-macro2",
|
3836
|
+
"quote",
|
3837
|
+
"syn",
|
3838
|
+
"wasm-bindgen-shared",
|
3839
|
+
]
|
3840
|
+
|
3841
|
+
[[package]]
|
3842
|
+
name = "wasm-bindgen-futures"
|
3843
|
+
version = "0.4.50"
|
3844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3845
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
3846
|
+
dependencies = [
|
3847
|
+
"cfg-if",
|
3848
|
+
"js-sys",
|
3849
|
+
"once_cell",
|
3850
|
+
"wasm-bindgen",
|
3851
|
+
"web-sys",
|
3852
|
+
]
|
3853
|
+
|
3854
|
+
[[package]]
|
3855
|
+
name = "wasm-bindgen-macro"
|
3856
|
+
version = "0.2.100"
|
3857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3858
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
3859
|
+
dependencies = [
|
3860
|
+
"quote",
|
3861
|
+
"wasm-bindgen-macro-support",
|
3862
|
+
]
|
3863
|
+
|
3864
|
+
[[package]]
|
3865
|
+
name = "wasm-bindgen-macro-support"
|
3866
|
+
version = "0.2.100"
|
3867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3868
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
3869
|
+
dependencies = [
|
3870
|
+
"proc-macro2",
|
3871
|
+
"quote",
|
3872
|
+
"syn",
|
3873
|
+
"wasm-bindgen-backend",
|
3874
|
+
"wasm-bindgen-shared",
|
3875
|
+
]
|
3876
|
+
|
3877
|
+
[[package]]
|
3878
|
+
name = "wasm-bindgen-shared"
|
3879
|
+
version = "0.2.100"
|
3880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3881
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
3882
|
+
dependencies = [
|
3883
|
+
"unicode-ident",
|
3884
|
+
]
|
3885
|
+
|
3886
|
+
[[package]]
|
3887
|
+
name = "wasm-streams"
|
3888
|
+
version = "0.4.2"
|
3889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3890
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
3891
|
+
dependencies = [
|
3892
|
+
"futures-util",
|
3893
|
+
"js-sys",
|
3894
|
+
"wasm-bindgen",
|
3895
|
+
"wasm-bindgen-futures",
|
3896
|
+
"web-sys",
|
3897
|
+
]
|
3898
|
+
|
3899
|
+
[[package]]
|
3900
|
+
name = "web-sys"
|
3901
|
+
version = "0.3.77"
|
3902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3903
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
3904
|
+
dependencies = [
|
3905
|
+
"js-sys",
|
3906
|
+
"wasm-bindgen",
|
3907
|
+
]
|
3908
|
+
|
3909
|
+
[[package]]
|
3910
|
+
name = "web-time"
|
3911
|
+
version = "1.1.0"
|
3912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3913
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
3914
|
+
dependencies = [
|
3915
|
+
"js-sys",
|
3916
|
+
"wasm-bindgen",
|
3917
|
+
]
|
3918
|
+
|
3919
|
+
[[package]]
|
3920
|
+
name = "winapi"
|
3921
|
+
version = "0.3.9"
|
3922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3923
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
3924
|
+
dependencies = [
|
3925
|
+
"winapi-i686-pc-windows-gnu",
|
3926
|
+
"winapi-x86_64-pc-windows-gnu",
|
3927
|
+
]
|
3928
|
+
|
3929
|
+
[[package]]
|
3930
|
+
name = "winapi-i686-pc-windows-gnu"
|
3931
|
+
version = "0.4.0"
|
3932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3933
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
3934
|
+
|
3935
|
+
[[package]]
|
3936
|
+
name = "winapi-util"
|
3937
|
+
version = "0.1.9"
|
3938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3939
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
3940
|
+
dependencies = [
|
3941
|
+
"windows-sys 0.59.0",
|
3942
|
+
]
|
3943
|
+
|
3944
|
+
[[package]]
|
3945
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
3946
|
+
version = "0.4.0"
|
3947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3948
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
3949
|
+
|
3950
|
+
[[package]]
|
3951
|
+
name = "windows"
|
3952
|
+
version = "0.57.0"
|
3953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3954
|
+
checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
|
3955
|
+
dependencies = [
|
3956
|
+
"windows-core",
|
3957
|
+
"windows-targets",
|
3958
|
+
]
|
3959
|
+
|
3960
|
+
[[package]]
|
3961
|
+
name = "windows-core"
|
3962
|
+
version = "0.57.0"
|
3963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3964
|
+
checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
|
3965
|
+
dependencies = [
|
3966
|
+
"windows-implement",
|
3967
|
+
"windows-interface",
|
3968
|
+
"windows-result 0.1.2",
|
3969
|
+
"windows-targets",
|
3970
|
+
]
|
3971
|
+
|
3972
|
+
[[package]]
|
3973
|
+
name = "windows-implement"
|
3974
|
+
version = "0.57.0"
|
3975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3976
|
+
checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
|
3977
|
+
dependencies = [
|
3978
|
+
"proc-macro2",
|
3979
|
+
"quote",
|
3980
|
+
"syn",
|
3981
|
+
]
|
3982
|
+
|
3983
|
+
[[package]]
|
3984
|
+
name = "windows-interface"
|
3985
|
+
version = "0.57.0"
|
3986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3987
|
+
checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
|
3988
|
+
dependencies = [
|
3989
|
+
"proc-macro2",
|
3990
|
+
"quote",
|
3991
|
+
"syn",
|
3992
|
+
]
|
3993
|
+
|
3994
|
+
[[package]]
|
3995
|
+
name = "windows-registry"
|
3996
|
+
version = "0.2.0"
|
3997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3998
|
+
checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
|
3999
|
+
dependencies = [
|
4000
|
+
"windows-result 0.2.0",
|
4001
|
+
"windows-strings",
|
4002
|
+
"windows-targets",
|
4003
|
+
]
|
4004
|
+
|
4005
|
+
[[package]]
|
4006
|
+
name = "windows-result"
|
4007
|
+
version = "0.1.2"
|
4008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4009
|
+
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
|
4010
|
+
dependencies = [
|
4011
|
+
"windows-targets",
|
4012
|
+
]
|
4013
|
+
|
4014
|
+
[[package]]
|
4015
|
+
name = "windows-result"
|
4016
|
+
version = "0.2.0"
|
4017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4018
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
4019
|
+
dependencies = [
|
4020
|
+
"windows-targets",
|
4021
|
+
]
|
4022
|
+
|
4023
|
+
[[package]]
|
4024
|
+
name = "windows-strings"
|
4025
|
+
version = "0.1.0"
|
4026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4027
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
4028
|
+
dependencies = [
|
4029
|
+
"windows-result 0.2.0",
|
4030
|
+
"windows-targets",
|
4031
|
+
]
|
4032
|
+
|
4033
|
+
[[package]]
|
4034
|
+
name = "windows-sys"
|
4035
|
+
version = "0.52.0"
|
4036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4037
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
4038
|
+
dependencies = [
|
4039
|
+
"windows-targets",
|
4040
|
+
]
|
4041
|
+
|
4042
|
+
[[package]]
|
4043
|
+
name = "windows-sys"
|
4044
|
+
version = "0.59.0"
|
4045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4046
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
4047
|
+
dependencies = [
|
4048
|
+
"windows-targets",
|
4049
|
+
]
|
4050
|
+
|
4051
|
+
[[package]]
|
4052
|
+
name = "windows-targets"
|
4053
|
+
version = "0.52.6"
|
4054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4055
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
4056
|
+
dependencies = [
|
4057
|
+
"windows_aarch64_gnullvm",
|
4058
|
+
"windows_aarch64_msvc",
|
4059
|
+
"windows_i686_gnu",
|
4060
|
+
"windows_i686_gnullvm",
|
4061
|
+
"windows_i686_msvc",
|
4062
|
+
"windows_x86_64_gnu",
|
4063
|
+
"windows_x86_64_gnullvm",
|
4064
|
+
"windows_x86_64_msvc",
|
4065
|
+
]
|
4066
|
+
|
4067
|
+
[[package]]
|
4068
|
+
name = "windows_aarch64_gnullvm"
|
4069
|
+
version = "0.52.6"
|
4070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4071
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
4072
|
+
|
4073
|
+
[[package]]
|
4074
|
+
name = "windows_aarch64_msvc"
|
4075
|
+
version = "0.52.6"
|
4076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4077
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
4078
|
+
|
4079
|
+
[[package]]
|
4080
|
+
name = "windows_i686_gnu"
|
4081
|
+
version = "0.52.6"
|
4082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4083
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
4084
|
+
|
4085
|
+
[[package]]
|
4086
|
+
name = "windows_i686_gnullvm"
|
4087
|
+
version = "0.52.6"
|
4088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4089
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
4090
|
+
|
4091
|
+
[[package]]
|
4092
|
+
name = "windows_i686_msvc"
|
4093
|
+
version = "0.52.6"
|
4094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4095
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
4096
|
+
|
4097
|
+
[[package]]
|
4098
|
+
name = "windows_x86_64_gnu"
|
4099
|
+
version = "0.52.6"
|
4100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4101
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
4102
|
+
|
4103
|
+
[[package]]
|
4104
|
+
name = "windows_x86_64_gnullvm"
|
4105
|
+
version = "0.52.6"
|
4106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4107
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
4108
|
+
|
4109
|
+
[[package]]
|
4110
|
+
name = "windows_x86_64_msvc"
|
4111
|
+
version = "0.52.6"
|
4112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4113
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
4114
|
+
|
4115
|
+
[[package]]
|
4116
|
+
name = "winnow"
|
4117
|
+
version = "0.6.24"
|
4118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4119
|
+
checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a"
|
4120
|
+
dependencies = [
|
4121
|
+
"memchr",
|
4122
|
+
]
|
4123
|
+
|
4124
|
+
[[package]]
|
4125
|
+
name = "write16"
|
4126
|
+
version = "1.0.0"
|
4127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4128
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
4129
|
+
|
4130
|
+
[[package]]
|
4131
|
+
name = "writeable"
|
4132
|
+
version = "0.5.5"
|
4133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4134
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
4135
|
+
|
4136
|
+
[[package]]
|
4137
|
+
name = "xattr"
|
4138
|
+
version = "1.4.0"
|
4139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4140
|
+
checksum = "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909"
|
4141
|
+
dependencies = [
|
4142
|
+
"libc",
|
4143
|
+
"linux-raw-sys",
|
4144
|
+
"rustix",
|
4145
|
+
]
|
4146
|
+
|
4147
|
+
[[package]]
|
4148
|
+
name = "yoke"
|
4149
|
+
version = "0.7.5"
|
4150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4151
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
4152
|
+
dependencies = [
|
4153
|
+
"serde",
|
4154
|
+
"stable_deref_trait",
|
4155
|
+
"yoke-derive",
|
4156
|
+
"zerofrom",
|
4157
|
+
]
|
4158
|
+
|
4159
|
+
[[package]]
|
4160
|
+
name = "yoke-derive"
|
4161
|
+
version = "0.7.5"
|
4162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4163
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
4164
|
+
dependencies = [
|
4165
|
+
"proc-macro2",
|
4166
|
+
"quote",
|
4167
|
+
"syn",
|
4168
|
+
"synstructure",
|
4169
|
+
]
|
4170
|
+
|
4171
|
+
[[package]]
|
4172
|
+
name = "zerocopy"
|
4173
|
+
version = "0.7.35"
|
4174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4175
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
4176
|
+
dependencies = [
|
4177
|
+
"byteorder",
|
4178
|
+
"zerocopy-derive",
|
4179
|
+
]
|
4180
|
+
|
4181
|
+
[[package]]
|
4182
|
+
name = "zerocopy-derive"
|
4183
|
+
version = "0.7.35"
|
4184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4185
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
4186
|
+
dependencies = [
|
4187
|
+
"proc-macro2",
|
4188
|
+
"quote",
|
4189
|
+
"syn",
|
4190
|
+
]
|
4191
|
+
|
4192
|
+
[[package]]
|
4193
|
+
name = "zerofrom"
|
4194
|
+
version = "0.1.5"
|
4195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4196
|
+
checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
|
4197
|
+
dependencies = [
|
4198
|
+
"zerofrom-derive",
|
4199
|
+
]
|
4200
|
+
|
4201
|
+
[[package]]
|
4202
|
+
name = "zerofrom-derive"
|
4203
|
+
version = "0.1.5"
|
4204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4205
|
+
checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
|
4206
|
+
dependencies = [
|
4207
|
+
"proc-macro2",
|
4208
|
+
"quote",
|
4209
|
+
"syn",
|
4210
|
+
"synstructure",
|
4211
|
+
]
|
4212
|
+
|
4213
|
+
[[package]]
|
4214
|
+
name = "zeroize"
|
4215
|
+
version = "1.8.1"
|
4216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4217
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
4218
|
+
dependencies = [
|
4219
|
+
"zeroize_derive",
|
4220
|
+
]
|
4221
|
+
|
4222
|
+
[[package]]
|
4223
|
+
name = "zeroize_derive"
|
4224
|
+
version = "1.4.2"
|
4225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4226
|
+
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
4227
|
+
dependencies = [
|
4228
|
+
"proc-macro2",
|
4229
|
+
"quote",
|
4230
|
+
"syn",
|
4231
|
+
]
|
4232
|
+
|
4233
|
+
[[package]]
|
4234
|
+
name = "zerovec"
|
4235
|
+
version = "0.10.4"
|
4236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4237
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
4238
|
+
dependencies = [
|
4239
|
+
"yoke",
|
4240
|
+
"zerofrom",
|
4241
|
+
"zerovec-derive",
|
4242
|
+
]
|
4243
|
+
|
4244
|
+
[[package]]
|
4245
|
+
name = "zerovec-derive"
|
4246
|
+
version = "0.10.3"
|
4247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4248
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
4249
|
+
dependencies = [
|
4250
|
+
"proc-macro2",
|
4251
|
+
"quote",
|
4252
|
+
"syn",
|
4253
|
+
]
|
4254
|
+
|
4255
|
+
[[package]]
|
4256
|
+
name = "zip"
|
4257
|
+
version = "2.2.2"
|
4258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4259
|
+
checksum = "ae9c1ea7b3a5e1f4b922ff856a129881167511563dc219869afe3787fc0c1a45"
|
4260
|
+
dependencies = [
|
4261
|
+
"aes",
|
4262
|
+
"arbitrary",
|
4263
|
+
"bzip2",
|
4264
|
+
"constant_time_eq",
|
4265
|
+
"crc32fast",
|
4266
|
+
"crossbeam-utils",
|
4267
|
+
"deflate64",
|
4268
|
+
"displaydoc",
|
4269
|
+
"flate2",
|
4270
|
+
"hmac",
|
4271
|
+
"indexmap 2.7.0",
|
4272
|
+
"lzma-rs",
|
4273
|
+
"memchr",
|
4274
|
+
"pbkdf2",
|
4275
|
+
"rand",
|
4276
|
+
"sha1",
|
4277
|
+
"thiserror 2.0.11",
|
4278
|
+
"time",
|
4279
|
+
"zeroize",
|
4280
|
+
"zopfli",
|
4281
|
+
"zstd",
|
4282
|
+
]
|
4283
|
+
|
4284
|
+
[[package]]
|
4285
|
+
name = "zopfli"
|
4286
|
+
version = "0.8.1"
|
4287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4288
|
+
checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946"
|
4289
|
+
dependencies = [
|
4290
|
+
"bumpalo",
|
4291
|
+
"crc32fast",
|
4292
|
+
"lockfree-object-pool",
|
4293
|
+
"log",
|
4294
|
+
"once_cell",
|
4295
|
+
"simd-adler32",
|
4296
|
+
]
|
4297
|
+
|
4298
|
+
[[package]]
|
4299
|
+
name = "zstd"
|
4300
|
+
version = "0.13.2"
|
4301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4302
|
+
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
4303
|
+
dependencies = [
|
4304
|
+
"zstd-safe",
|
4305
|
+
]
|
4306
|
+
|
4307
|
+
[[package]]
|
4308
|
+
name = "zstd-safe"
|
4309
|
+
version = "7.2.1"
|
4310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4311
|
+
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
4312
|
+
dependencies = [
|
4313
|
+
"zstd-sys",
|
4314
|
+
]
|
4315
|
+
|
4316
|
+
[[package]]
|
4317
|
+
name = "zstd-sys"
|
4318
|
+
version = "2.0.13+zstd.1.5.6"
|
4319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4320
|
+
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
|
4321
|
+
dependencies = [
|
4322
|
+
"cc",
|
4323
|
+
"pkg-config",
|
4324
|
+
]
|