temporalio 0.0.0 → 0.0.1

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