temporalio 0.0.0 → 0.0.2

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