temporalio 0.1.1 → 0.2.0

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