temporalio 0.1.0 → 0.2.0

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