temporalio 1.5.0 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (492) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +1461 -621
  3. data/Cargo.toml +1 -1
  4. data/Gemfile +6 -5
  5. data/README.md +42 -1
  6. data/ext/Cargo.toml +9 -3
  7. data/lib/temporalio/api/activity/v1/message.rb +1 -1
  8. data/lib/temporalio/api/cloud/billing/v1/message.rb +2 -1
  9. data/lib/temporalio/api/cloud/cloudservice/v1/request_response.rb +17 -1
  10. data/lib/temporalio/api/cloud/cloudservice/v1/service.rb +1 -1
  11. data/lib/temporalio/api/cloud/connectivityrule/v1/message.rb +1 -1
  12. data/lib/temporalio/api/cloud/identity/v1/message.rb +8 -1
  13. data/lib/temporalio/api/cloud/namespace/v1/message.rb +5 -1
  14. data/lib/temporalio/api/command/v1/message.rb +2 -1
  15. data/lib/temporalio/api/common/v1/message.rb +5 -1
  16. data/lib/temporalio/api/deployment/v1/message.rb +3 -1
  17. data/lib/temporalio/api/history/v1/message.rb +3 -1
  18. data/lib/temporalio/api/namespace/v1/message.rb +1 -1
  19. data/lib/temporalio/api/nexus/v1/message.rb +1 -1
  20. data/lib/temporalio/api/nexusannotations/v1/options.rb +20 -0
  21. data/lib/temporalio/api/payload_visitor.rb +32 -0
  22. data/lib/temporalio/api/schedule/v1/message.rb +1 -1
  23. data/lib/temporalio/api/sdk/v1/event_group_marker.rb +26 -0
  24. data/lib/temporalio/api/update/v1/message.rb +1 -1
  25. data/lib/temporalio/api/workflow/v1/message.rb +3 -2
  26. data/lib/temporalio/api/workflowservice/v1/request_response.rb +11 -1
  27. data/lib/temporalio/api/workflowservice/v1/service.rb +3 -2
  28. data/lib/temporalio/client/connection/cloud_service.rb +120 -0
  29. data/lib/temporalio/client/connection/workflow_service.rb +75 -0
  30. data/lib/temporalio/client/connection.rb +37 -2
  31. data/lib/temporalio/client.rb +10 -5
  32. data/lib/temporalio/internal/bridge/api/workflow_commands/workflow_commands.rb +1 -1
  33. data/lib/temporalio/internal/bridge/client.rb +6 -1
  34. data/lib/temporalio/internal/bridge.rb +20 -0
  35. data/lib/temporalio/internal/google_protobuf.rb +11 -0
  36. data/lib/temporalio/internal/worker/workflow_instance/context.rb +2 -0
  37. data/lib/temporalio/internal/worker/workflow_instance/details.rb +3 -1
  38. data/lib/temporalio/internal/worker/workflow_instance/scheduler.rb +73 -2
  39. data/lib/temporalio/internal/worker/workflow_instance.rb +36 -6
  40. data/lib/temporalio/internal/worker/workflow_worker.rb +10 -2
  41. data/lib/temporalio/internal/workflow_task_failure_error.rb +9 -0
  42. data/lib/temporalio/version.rb +1 -1
  43. data/lib/temporalio/worker/activity_executor/fiber.rb +1 -1
  44. data/lib/temporalio/worker/activity_executor/thread_pool.rb +1 -1
  45. data/lib/temporalio/worker/illegal_workflow_call_validator.rb +3 -1
  46. data/lib/temporalio/worker/workflow_executor/thread_pool.rb +5 -1
  47. data/lib/temporalio/worker/workflow_replayer.rb +17 -4
  48. data/lib/temporalio/worker.rb +30 -5
  49. data/lib/temporalio/workflow/future.rb +5 -0
  50. data/lib/temporalio/workflow/nexus_operation_cancellation_type.rb +4 -2
  51. data/lib/temporalio/workflow.rb +8 -0
  52. data/rbi/google/protobuf.rbi +25 -0
  53. data/rbi/temporalio/activity/cancellation_details.rbi +33 -0
  54. data/rbi/temporalio/activity/complete_async_error.rbi +3 -0
  55. data/rbi/temporalio/activity/context.rbi +42 -0
  56. data/rbi/temporalio/activity/definition.rbi +74 -0
  57. data/rbi/temporalio/activity/info.rbi +112 -0
  58. data/rbi/temporalio/activity.rbi +3 -0
  59. data/rbi/temporalio/api/activity/v1/message.rbi +1453 -0
  60. data/rbi/temporalio/api/batch/v1/message.rbi +1283 -0
  61. data/rbi/temporalio/api/callback/v1/message.rbi +188 -0
  62. data/rbi/temporalio/api/cloud/account/v1/message.rbi +650 -0
  63. data/rbi/temporalio/api/cloud/auditlog/v1/message.rbi +318 -0
  64. data/rbi/temporalio/api/cloud/billing/v1/message.rbi +480 -0
  65. data/rbi/temporalio/api/cloud/cloudservice/v1/request_response.rbi +12454 -0
  66. data/rbi/temporalio/api/cloud/cloudservice/v1/service.rbi +3 -0
  67. data/rbi/temporalio/api/cloud/cloudservice/v1/service_services.rbi +709 -0
  68. data/rbi/temporalio/api/cloud/cloudservice.rbi +5 -0
  69. data/rbi/temporalio/api/cloud/connectivityrule/v1/message.rbi +403 -0
  70. data/rbi/temporalio/api/cloud/identity/v1/message.rbi +3072 -0
  71. data/rbi/temporalio/api/cloud/namespace/v1/message.rbi +3659 -0
  72. data/rbi/temporalio/api/cloud/nexus/v1/message.rbi +595 -0
  73. data/rbi/temporalio/api/cloud/operation/v1/message.rbi +244 -0
  74. data/rbi/temporalio/api/cloud/region/v1/message.rbi +166 -0
  75. data/rbi/temporalio/api/cloud/resource/v1/message.rbi +29 -0
  76. data/rbi/temporalio/api/cloud/sink/v1/message.rbi +438 -0
  77. data/rbi/temporalio/api/cloud/usage/v1/message.rbi +409 -0
  78. data/rbi/temporalio/api/command/v1/message.rbi +2655 -0
  79. data/rbi/temporalio/api/common/v1/grpc_status.rbi +92 -0
  80. data/rbi/temporalio/api/common/v1/message.rbi +2983 -0
  81. data/rbi/temporalio/api/compute/v1/config.rbi +421 -0
  82. data/rbi/temporalio/api/compute/v1/provider.rbi +125 -0
  83. data/rbi/temporalio/api/compute/v1/scaler.rbi +102 -0
  84. data/rbi/temporalio/api/deployment/v1/message.rbi +2340 -0
  85. data/rbi/temporalio/api/enums/v1/activity.rbi +62 -0
  86. data/rbi/temporalio/api/enums/v1/batch_operation.rbi +47 -0
  87. data/rbi/temporalio/api/enums/v1/command_type.rbi +36 -0
  88. data/rbi/temporalio/api/enums/v1/common.rbi +181 -0
  89. data/rbi/temporalio/api/enums/v1/deployment.rbi +80 -0
  90. data/rbi/temporalio/api/enums/v1/event_type.rbi +79 -0
  91. data/rbi/temporalio/api/enums/v1/failed_cause.rbi +155 -0
  92. data/rbi/temporalio/api/enums/v1/namespace.rbi +58 -0
  93. data/rbi/temporalio/api/enums/v1/nexus.rbi +98 -0
  94. data/rbi/temporalio/api/enums/v1/query.rbi +40 -0
  95. data/rbi/temporalio/api/enums/v1/reset.rbi +60 -0
  96. data/rbi/temporalio/api/enums/v1/schedule.rbi +25 -0
  97. data/rbi/temporalio/api/enums/v1/task_queue.rbi +134 -0
  98. data/rbi/temporalio/api/enums/v1/update.rbi +39 -0
  99. data/rbi/temporalio/api/enums/v1/workflow.rbi +259 -0
  100. data/rbi/temporalio/api/errordetails/v1/message.rbi +1389 -0
  101. data/rbi/temporalio/api/export/v1/message.rbi +123 -0
  102. data/rbi/temporalio/api/failure/v1/message.rbi +1303 -0
  103. data/rbi/temporalio/api/filter/v1/message.rbi +267 -0
  104. data/rbi/temporalio/api/history/v1/message.rbi +10737 -0
  105. data/rbi/temporalio/api/namespace/v1/message.rbi +1044 -0
  106. data/rbi/temporalio/api/nexus/v1/message.rbi +2780 -0
  107. data/rbi/temporalio/api/nexusannotations/v1/options.rbi +161 -0
  108. data/rbi/temporalio/api/nexusservices/workerservice/v1/request_response.rbi +124 -0
  109. data/rbi/temporalio/api/operatorservice/v1/request_response.rbi +1836 -0
  110. data/rbi/temporalio/api/operatorservice/v1/service.rbi +3 -0
  111. data/rbi/temporalio/api/operatorservice/v1/service_services.rbi +143 -0
  112. data/rbi/temporalio/api/operatorservice.rbi +5 -0
  113. data/rbi/temporalio/api/payload_visitor.rbi +876 -0
  114. data/rbi/temporalio/api/protoc_gen_openapiv2/options/annotations.rbi +3 -0
  115. data/rbi/temporalio/api/protoc_gen_openapiv2/options/openapiv2.rbi +3482 -0
  116. data/rbi/temporalio/api/protocol/v1/message.rbi +139 -0
  117. data/rbi/temporalio/api/protometa/v1/annotations.rbi +97 -0
  118. data/rbi/temporalio/api/query/v1/message.rbi +288 -0
  119. data/rbi/temporalio/api/replication/v1/message.rbi +226 -0
  120. data/rbi/temporalio/api/rules/v1/message.rbi +492 -0
  121. data/rbi/temporalio/api/schedule/v1/message.rbi +2377 -0
  122. data/rbi/temporalio/api/sdk/v1/enhanced_stack_trace.rbi +478 -0
  123. data/rbi/temporalio/api/sdk/v1/event_group_marker.rbi +337 -0
  124. data/rbi/temporalio/api/sdk/v1/external_storage.rbi +85 -0
  125. data/rbi/temporalio/api/sdk/v1/task_complete_metadata.rbi +206 -0
  126. data/rbi/temporalio/api/sdk/v1/user_metadata.rbi +98 -0
  127. data/rbi/temporalio/api/sdk/v1/worker_config.rbi +255 -0
  128. data/rbi/temporalio/api/sdk/v1/workflow_metadata.rbi +297 -0
  129. data/rbi/temporalio/api/taskqueue/v1/message.rbi +2460 -0
  130. data/rbi/temporalio/api/testservice/v1/request_response.rbi +380 -0
  131. data/rbi/temporalio/api/testservice/v1/service.rbi +3 -0
  132. data/rbi/temporalio/api/testservice/v1/service_services.rbi +100 -0
  133. data/rbi/temporalio/api/update/v1/message.rbi +800 -0
  134. data/rbi/temporalio/api/version/v1/message.rbi +281 -0
  135. data/rbi/temporalio/api/worker/v1/message.rbi +1565 -0
  136. data/rbi/temporalio/api/workflow/v1/message.rbi +5011 -0
  137. data/rbi/temporalio/api/workflowservice/v1/request_response.rbi +30477 -0
  138. data/rbi/temporalio/api/workflowservice/v1/service.rbi +3 -0
  139. data/rbi/temporalio/api/workflowservice/v1/service_services.rbi +1571 -0
  140. data/rbi/temporalio/api/workflowservice.rbi +5 -0
  141. data/rbi/temporalio/api.rbi +7 -0
  142. data/rbi/temporalio/cancellation.rbi +40 -0
  143. data/rbi/temporalio/client/activity_execution.rbi +134 -0
  144. data/rbi/temporalio/client/activity_execution_count.rbi +23 -0
  145. data/rbi/temporalio/client/activity_execution_status.rbi +11 -0
  146. data/rbi/temporalio/client/activity_handle.rbi +49 -0
  147. data/rbi/temporalio/client/activity_id_reference.rbi +24 -0
  148. data/rbi/temporalio/client/async_activity_handle.rbi +49 -0
  149. data/rbi/temporalio/client/connection/cloud_service.rbi +239 -0
  150. data/rbi/temporalio/client/connection/operator_service.rbi +47 -0
  151. data/rbi/temporalio/client/connection/service.rbi +19 -0
  152. data/rbi/temporalio/client/connection/test_service.rbi +29 -0
  153. data/rbi/temporalio/client/connection/workflow_service.rbi +377 -0
  154. data/rbi/temporalio/client/connection.rbi +284 -0
  155. data/rbi/temporalio/client/interceptor.rbi +1067 -0
  156. data/rbi/temporalio/client/pending_activity_state.rbi +9 -0
  157. data/rbi/temporalio/client/plugin.rbi +17 -0
  158. data/rbi/temporalio/client/schedule.rbi +677 -0
  159. data/rbi/temporalio/client/schedule_handle.rbi +40 -0
  160. data/rbi/temporalio/client/with_start_workflow_operation.rbi +126 -0
  161. data/rbi/temporalio/client/workflow_execution.rbi +62 -0
  162. data/rbi/temporalio/client/workflow_execution_count.rbi +23 -0
  163. data/rbi/temporalio/client/workflow_execution_status.rbi +11 -0
  164. data/rbi/temporalio/client/workflow_handle.rbi +148 -0
  165. data/rbi/temporalio/client/workflow_query_reject_condition.rbi +7 -0
  166. data/rbi/temporalio/client/workflow_update_handle.rbi +38 -0
  167. data/rbi/temporalio/client/workflow_update_wait_stage.rbi +7 -0
  168. data/rbi/temporalio/client.rbi +534 -0
  169. data/rbi/temporalio/common_enums.rbi +45 -0
  170. data/rbi/temporalio/contrib/open_telemetry.rbi +73 -0
  171. data/rbi/temporalio/converters/data_converter.rbi +44 -0
  172. data/rbi/temporalio/converters/failure_converter.rbi +20 -0
  173. data/rbi/temporalio/converters/payload_codec.rbi +11 -0
  174. data/rbi/temporalio/converters/payload_converter/binary_null.rbi +5 -0
  175. data/rbi/temporalio/converters/payload_converter/binary_plain.rbi +5 -0
  176. data/rbi/temporalio/converters/payload_converter/binary_protobuf.rbi +5 -0
  177. data/rbi/temporalio/converters/payload_converter/composite.rbi +20 -0
  178. data/rbi/temporalio/converters/payload_converter/encoding.rbi +14 -0
  179. data/rbi/temporalio/converters/payload_converter/json_plain.rbi +10 -0
  180. data/rbi/temporalio/converters/payload_converter/json_protobuf.rbi +5 -0
  181. data/rbi/temporalio/converters/payload_converter.rbi +28 -0
  182. data/rbi/temporalio/converters/raw_value.rbi +11 -0
  183. data/rbi/temporalio/converters.rbi +3 -0
  184. data/rbi/temporalio/env_config.rbi +156 -0
  185. data/rbi/temporalio/error/failure.rbi +3 -0
  186. data/rbi/temporalio/error.rbi +313 -0
  187. data/rbi/temporalio/internal/bridge/api/activity_result/activity_result.rbi +547 -0
  188. data/rbi/temporalio/internal/bridge/api/activity_task/activity_task.rbi +705 -0
  189. data/rbi/temporalio/internal/bridge/api/child_workflow/child_workflow.rbi +332 -0
  190. data/rbi/temporalio/internal/bridge/api/common/common.rbi +191 -0
  191. data/rbi/temporalio/internal/bridge/api/core_interface.rbi +567 -0
  192. data/rbi/temporalio/internal/bridge/api/external_data/external_data.rbi +255 -0
  193. data/rbi/temporalio/internal/bridge/api/nexus/nexus.rbi +527 -0
  194. data/rbi/temporalio/internal/bridge/api/workflow_activation/workflow_activation.rbi +2808 -0
  195. data/rbi/temporalio/internal/bridge/api/workflow_commands/workflow_commands.rbi +3309 -0
  196. data/rbi/temporalio/internal/bridge/api/workflow_completion/workflow_completion.rbi +272 -0
  197. data/rbi/temporalio/internal/bridge/api.rbi +3 -0
  198. data/rbi/temporalio/internal/bridge/client.rbi +346 -0
  199. data/rbi/temporalio/internal/bridge/runtime.rbi +231 -0
  200. data/rbi/temporalio/internal/bridge/testing.rbi +109 -0
  201. data/rbi/temporalio/internal/bridge/worker.rbi +250 -0
  202. data/rbi/temporalio/internal/bridge.rbi +47 -0
  203. data/rbi/temporalio/internal/client/implementation.rbi +53 -0
  204. data/rbi/temporalio/internal/google_protobuf.rbi +8 -0
  205. data/rbi/temporalio/internal/metric.rbi +55 -0
  206. data/rbi/temporalio/internal/proto_utils.rbi +148 -0
  207. data/rbi/temporalio/internal/worker/activity_worker.rbi +108 -0
  208. data/rbi/temporalio/internal/worker/multi_runner.rbi +175 -0
  209. data/rbi/temporalio/internal/worker/workflow_instance/child_workflow_handle.rbi +20 -0
  210. data/rbi/temporalio/internal/worker/workflow_instance/context.rbi +290 -0
  211. data/rbi/temporalio/internal/worker/workflow_instance/details.rbi +87 -0
  212. data/rbi/temporalio/internal/worker/workflow_instance/external_workflow_handle.rbi +14 -0
  213. data/rbi/temporalio/internal/worker/workflow_instance/externally_immutable_hash.rbi +17 -0
  214. data/rbi/temporalio/internal/worker/workflow_instance/handler_execution.rbi +17 -0
  215. data/rbi/temporalio/internal/worker/workflow_instance/handler_hash.rbi +24 -0
  216. data/rbi/temporalio/internal/worker/workflow_instance/illegal_call_tracer.rbi +17 -0
  217. data/rbi/temporalio/internal/worker/workflow_instance/inbound_implementation.rbi +21 -0
  218. data/rbi/temporalio/internal/worker/workflow_instance/nexus_client.rbi +47 -0
  219. data/rbi/temporalio/internal/worker/workflow_instance/nexus_operation_handle.rbi +19 -0
  220. data/rbi/temporalio/internal/worker/workflow_instance/outbound_implementation.rbi +43 -0
  221. data/rbi/temporalio/internal/worker/workflow_instance/replay_safe_logger.rbi +11 -0
  222. data/rbi/temporalio/internal/worker/workflow_instance/replay_safe_metric.rbi +15 -0
  223. data/rbi/temporalio/internal/worker/workflow_instance/scheduler.rbi +36 -0
  224. data/rbi/temporalio/internal/worker/workflow_instance.rbi +231 -0
  225. data/rbi/temporalio/internal/worker/workflow_worker.rbi +199 -0
  226. data/rbi/temporalio/internal/workflow_task_failure_error.rbi +3 -0
  227. data/rbi/temporalio/internal.rbi +3 -0
  228. data/rbi/temporalio/metric.rbi +56 -0
  229. data/rbi/temporalio/priority.rbi +38 -0
  230. data/rbi/temporalio/retry_policy.rbi +40 -0
  231. data/rbi/temporalio/runtime/metric_buffer.rbi +45 -0
  232. data/rbi/temporalio/runtime.rbi +185 -0
  233. data/rbi/temporalio/scoped_logger.rbi +50 -0
  234. data/rbi/temporalio/search_attributes.rbi +94 -0
  235. data/rbi/temporalio/simple_plugin.rbi +41 -0
  236. data/rbi/temporalio/testing/activity_environment.rbi +43 -0
  237. data/rbi/temporalio/testing/workflow_environment.rbi +116 -0
  238. data/rbi/temporalio/testing.rbi +3 -0
  239. data/rbi/temporalio/version.rbi +5 -0
  240. data/rbi/temporalio/versioning_override.rbi +13 -0
  241. data/rbi/temporalio/worker/activity_executor/fiber.rbi +20 -0
  242. data/rbi/temporalio/worker/activity_executor/thread_pool.rbi +20 -0
  243. data/rbi/temporalio/worker/activity_executor.rbi +20 -0
  244. data/rbi/temporalio/worker/deployment_options.rbi +23 -0
  245. data/rbi/temporalio/worker/illegal_workflow_call_validator.rbi +33 -0
  246. data/rbi/temporalio/worker/interceptor.rbi +489 -0
  247. data/rbi/temporalio/worker/plugin.rbi +49 -0
  248. data/rbi/temporalio/worker/poller_behavior.rbi +29 -0
  249. data/rbi/temporalio/worker/thread_pool.rbi +38 -0
  250. data/rbi/temporalio/worker/tuner.rbi +221 -0
  251. data/rbi/temporalio/worker/workflow_executor/thread_pool.rbi +15 -0
  252. data/rbi/temporalio/worker/workflow_executor.rbi +8 -0
  253. data/rbi/temporalio/worker/workflow_replayer.rbi +152 -0
  254. data/rbi/temporalio/worker.rbi +258 -0
  255. data/rbi/temporalio/worker_deployment_version.rbi +29 -0
  256. data/rbi/temporalio/workflow/activity_cancellation_type.rbi +7 -0
  257. data/rbi/temporalio/workflow/child_workflow_cancellation_type.rbi +8 -0
  258. data/rbi/temporalio/workflow/child_workflow_handle.rbi +27 -0
  259. data/rbi/temporalio/workflow/definition.rbi +305 -0
  260. data/rbi/temporalio/workflow/external_workflow_handle.rbi +24 -0
  261. data/rbi/temporalio/workflow/future.rbi +62 -0
  262. data/rbi/temporalio/workflow/handler_unfinished_policy.rbi +6 -0
  263. data/rbi/temporalio/workflow/info.rbi +100 -0
  264. data/rbi/temporalio/workflow/nexus_client.rbi +65 -0
  265. data/rbi/temporalio/workflow/nexus_operation_cancellation_type.rbi +8 -0
  266. data/rbi/temporalio/workflow/nexus_operation_handle.rbi +14 -0
  267. data/rbi/temporalio/workflow/parent_close_policy.rbi +8 -0
  268. data/rbi/temporalio/workflow/update_info.rbi +14 -0
  269. data/rbi/temporalio/workflow.rbi +393 -0
  270. data/rbi/temporalio/workflow_history.rbi +21 -0
  271. data/rbi/temporalio.rbi +5 -0
  272. data/sig/common.rbs +1 -0
  273. data/sig/google/protobuf_compat.rbs +17 -0
  274. data/sig/open_telemetry.rbs +47 -0
  275. data/sig/temporalio/activity/cancellation_details.rbs +21 -0
  276. data/sig/temporalio/activity/complete_async_error.rbs +6 -0
  277. data/sig/temporalio/activity/context.rbs +26 -0
  278. data/sig/temporalio/activity/definition.rbs +60 -0
  279. data/sig/temporalio/activity/info.rbs +57 -0
  280. data/sig/temporalio/activity.rbs +4 -0
  281. data/sig/temporalio/api/activity/v1/message.rbs +708 -0
  282. data/sig/temporalio/api/batch/v1/message.rbs +594 -0
  283. data/sig/temporalio/api/callback/v1/message.rbs +112 -0
  284. data/sig/temporalio/api/cloud/account/v1/message.rbs +314 -0
  285. data/sig/temporalio/api/cloud/auditlog/v1/message.rbs +168 -0
  286. data/sig/temporalio/api/cloud/billing/v1/message.rbs +279 -0
  287. data/sig/temporalio/api/cloud/cloudservice/v1/request_response.rbs +4726 -0
  288. data/sig/temporalio/api/cloud/cloudservice/v1/service.rbs +25 -0
  289. data/sig/temporalio/api/cloud/cloudservice.rbs +8 -0
  290. data/sig/temporalio/api/cloud/connectivityrule/v1/message.rbs +191 -0
  291. data/sig/temporalio/api/cloud/identity/v1/message.rbs +1372 -0
  292. data/sig/temporalio/api/cloud/namespace/v1/message.rbs +1571 -0
  293. data/sig/temporalio/api/cloud/nexus/v1/message.rbs +269 -0
  294. data/sig/temporalio/api/cloud/operation/v1/message.rbs +156 -0
  295. data/sig/temporalio/api/cloud/region/v1/message.rbs +109 -0
  296. data/sig/temporalio/api/cloud/resource/v1/message.rbs +61 -0
  297. data/sig/temporalio/api/cloud/sink/v1/message.rbs +207 -0
  298. data/sig/temporalio/api/cloud/usage/v1/message.rbs +230 -0
  299. data/sig/temporalio/api/command/v1/message.rbs +1211 -0
  300. data/sig/temporalio/api/common/v1/grpc_status.rbs +59 -0
  301. data/sig/temporalio/api/common/v1/message.rbs +1238 -0
  302. data/sig/temporalio/api/compute/v1/config.rbs +176 -0
  303. data/sig/temporalio/api/compute/v1/provider.rbs +73 -0
  304. data/sig/temporalio/api/compute/v1/scaler.rbs +60 -0
  305. data/sig/temporalio/api/deployment/v1/message.rbs +1063 -0
  306. data/sig/temporalio/api/enums/v1/activity.rbs +134 -0
  307. data/sig/temporalio/api/enums/v1/batch_operation.rbs +80 -0
  308. data/sig/temporalio/api/enums/v1/command_type.rbs +74 -0
  309. data/sig/temporalio/api/enums/v1/common.rbs +271 -0
  310. data/sig/temporalio/api/enums/v1/deployment.rbs +177 -0
  311. data/sig/temporalio/api/enums/v1/event_type.rbs +263 -0
  312. data/sig/temporalio/api/enums/v1/failed_cause.rbs +281 -0
  313. data/sig/temporalio/api/enums/v1/namespace.rbs +87 -0
  314. data/sig/temporalio/api/enums/v1/nexus.rbs +172 -0
  315. data/sig/temporalio/api/enums/v1/query.rbs +69 -0
  316. data/sig/temporalio/api/enums/v1/reset.rbs +106 -0
  317. data/sig/temporalio/api/enums/v1/schedule.rbs +68 -0
  318. data/sig/temporalio/api/enums/v1/task_queue.rbs +238 -0
  319. data/sig/temporalio/api/enums/v1/update.rbs +87 -0
  320. data/sig/temporalio/api/enums/v1/workflow.rbs +435 -0
  321. data/sig/temporalio/api/errordetails/v1/message.rbs +532 -0
  322. data/sig/temporalio/api/export/v1/message.rbs +63 -0
  323. data/sig/temporalio/api/failure/v1/message.rbs +579 -0
  324. data/sig/temporalio/api/filter/v1/message.rbs +121 -0
  325. data/sig/temporalio/api/history/v1/message.rbs +4928 -0
  326. data/sig/temporalio/api/namespace/v1/message.rbs +465 -0
  327. data/sig/temporalio/api/nexus/v1/message.rbs +1268 -0
  328. data/sig/temporalio/api/nexusannotations/v1/options.rbs +76 -0
  329. data/sig/temporalio/api/nexusservices/workerservice/v1/request_response.rbs +65 -0
  330. data/sig/temporalio/api/operatorservice/v1/request_response.rbs +679 -0
  331. data/sig/temporalio/api/operatorservice/v1/service.rbs +23 -0
  332. data/sig/temporalio/api/operatorservice.rbs +6 -0
  333. data/sig/temporalio/api/payload_visitor.rbs +298 -0
  334. data/sig/temporalio/api/protoc_gen_openapiv2/options/annotations.rbs +23 -0
  335. data/sig/temporalio/api/protoc_gen_openapiv2/options/openapiv2.rbs +1691 -0
  336. data/sig/temporalio/api/protocol/v1/message.rbs +90 -0
  337. data/sig/temporalio/api/protometa/v1/annotations.rbs +62 -0
  338. data/sig/temporalio/api/query/v1/message.rbs +138 -0
  339. data/sig/temporalio/api/replication/v1/message.rbs +109 -0
  340. data/sig/temporalio/api/rules/v1/message.rbs +213 -0
  341. data/sig/temporalio/api/schedule/v1/message.rbs +1066 -0
  342. data/sig/temporalio/api/sdk/v1/enhanced_stack_trace.rbs +210 -0
  343. data/sig/temporalio/api/sdk/v1/event_group_marker.rbs +154 -0
  344. data/sig/temporalio/api/sdk/v1/external_storage.rbs +54 -0
  345. data/sig/temporalio/api/sdk/v1/task_complete_metadata.rbs +92 -0
  346. data/sig/temporalio/api/sdk/v1/user_metadata.rbs +58 -0
  347. data/sig/temporalio/api/sdk/v1/worker_config.rbs +122 -0
  348. data/sig/temporalio/api/sdk/v1/workflow_metadata.rbs +138 -0
  349. data/sig/temporalio/api/taskqueue/v1/message.rbs +1013 -0
  350. data/sig/temporalio/api/testservice/v1/request_response.rbs +125 -0
  351. data/sig/temporalio/api/testservice/v1/service.rbs +23 -0
  352. data/sig/temporalio/api/update/v1/message.rbs +349 -0
  353. data/sig/temporalio/api/version/v1/message.rbs +143 -0
  354. data/sig/temporalio/api/worker/v1/message.rbs +716 -0
  355. data/sig/temporalio/api/workflow/v1/message.rbs +2322 -0
  356. data/sig/temporalio/api/workflowservice/v1/request_response.rbs +12735 -0
  357. data/sig/temporalio/api/workflowservice/v1/service.rbs +23 -0
  358. data/sig/temporalio/api/workflowservice.rbs +6 -0
  359. data/sig/temporalio/api.rbs +4 -0
  360. data/sig/temporalio/cancellation.rbs +20 -0
  361. data/sig/temporalio/client/activity_execution.rbs +50 -0
  362. data/sig/temporalio/client/activity_execution_count.rbs +17 -0
  363. data/sig/temporalio/client/activity_execution_status.rbs +15 -0
  364. data/sig/temporalio/client/activity_handle.rbs +26 -0
  365. data/sig/temporalio/client/activity_id_reference.rbs +16 -0
  366. data/sig/temporalio/client/async_activity_handle.rbs +41 -0
  367. data/sig/temporalio/client/connection/cloud_service.rbs +315 -0
  368. data/sig/temporalio/client/connection/operator_service.rbs +59 -0
  369. data/sig/temporalio/client/connection/service.rbs +17 -0
  370. data/sig/temporalio/client/connection/test_service.rbs +35 -0
  371. data/sig/temporalio/client/connection/workflow_service.rbs +499 -0
  372. data/sig/temporalio/client/connection.rbs +143 -0
  373. data/sig/temporalio/client/interceptor.rbs +622 -0
  374. data/sig/temporalio/client/pending_activity_state.rbs +14 -0
  375. data/sig/temporalio/client/plugin.rbs +14 -0
  376. data/sig/temporalio/client/schedule.rbs +337 -0
  377. data/sig/temporalio/client/schedule_handle.rbs +44 -0
  378. data/sig/temporalio/client/with_start_workflow_operation.rbs +82 -0
  379. data/sig/temporalio/client/workflow_execution.rbs +37 -0
  380. data/sig/temporalio/client/workflow_execution_count.rbs +17 -0
  381. data/sig/temporalio/client/workflow_execution_status.rbs +16 -0
  382. data/sig/temporalio/client/workflow_handle.rbs +95 -0
  383. data/sig/temporalio/client/workflow_query_reject_condition.rbs +12 -0
  384. data/sig/temporalio/client/workflow_update_handle.rbs +26 -0
  385. data/sig/temporalio/client/workflow_update_wait_stage.rbs +12 -0
  386. data/sig/temporalio/client.rbs +271 -0
  387. data/sig/temporalio/common_enums.rbs +60 -0
  388. data/sig/temporalio/contrib/open_telemetry.rbs +74 -0
  389. data/sig/temporalio/converters/data_converter.rbs +32 -0
  390. data/sig/temporalio/converters/failure_converter.rbs +12 -0
  391. data/sig/temporalio/converters/payload_codec.rbs +8 -0
  392. data/sig/temporalio/converters/payload_converter/binary_null.rbs +9 -0
  393. data/sig/temporalio/converters/payload_converter/binary_plain.rbs +9 -0
  394. data/sig/temporalio/converters/payload_converter/binary_protobuf.rbs +9 -0
  395. data/sig/temporalio/converters/payload_converter/composite.rbs +16 -0
  396. data/sig/temporalio/converters/payload_converter/encoding.rbs +13 -0
  397. data/sig/temporalio/converters/payload_converter/json_plain.rbs +14 -0
  398. data/sig/temporalio/converters/payload_converter/json_protobuf.rbs +9 -0
  399. data/sig/temporalio/converters/payload_converter.rbs +24 -0
  400. data/sig/temporalio/converters/raw_value.rbs +9 -0
  401. data/sig/temporalio/converters.rbs +4 -0
  402. data/sig/temporalio/env_config.rbs +86 -0
  403. data/sig/temporalio/error/failure.rbs +170 -0
  404. data/sig/temporalio/error.rbs +88 -0
  405. data/sig/temporalio/internal/bridge/api/activity_result/activity_result.rbs +247 -0
  406. data/sig/temporalio/internal/bridge/api/activity_task/activity_task.rbs +372 -0
  407. data/sig/temporalio/internal/bridge/api/child_workflow/child_workflow.rbs +207 -0
  408. data/sig/temporalio/internal/bridge/api/common/common.rbs +123 -0
  409. data/sig/temporalio/internal/bridge/api/core_interface.rbs +231 -0
  410. data/sig/temporalio/internal/bridge/api/external_data/external_data.rbs +134 -0
  411. data/sig/temporalio/internal/bridge/api/nexus/nexus.rbs +285 -0
  412. data/sig/temporalio/internal/bridge/api/workflow_activation/workflow_activation.rbs +1304 -0
  413. data/sig/temporalio/internal/bridge/api/workflow_commands/workflow_commands.rbs +1526 -0
  414. data/sig/temporalio/internal/bridge/api/workflow_completion/workflow_completion.rbs +136 -0
  415. data/sig/temporalio/internal/bridge/api.rbs +8 -0
  416. data/sig/temporalio/internal/bridge/client.rbs +144 -0
  417. data/sig/temporalio/internal/bridge/metric.rbs +28 -0
  418. data/sig/temporalio/internal/bridge/runtime.rbs +97 -0
  419. data/sig/temporalio/internal/bridge/testing.rbs +91 -0
  420. data/sig/temporalio/internal/bridge/worker.rbs +199 -0
  421. data/sig/temporalio/internal/bridge.rbs +36 -0
  422. data/sig/temporalio/internal/client/implementation.rbs +33 -0
  423. data/sig/temporalio/internal/google_protobuf.rbs +7 -0
  424. data/sig/temporalio/internal/metric.rbs +35 -0
  425. data/sig/temporalio/internal/proto_utils.rbs +94 -0
  426. data/sig/temporalio/internal/worker/activity_worker.rbs +64 -0
  427. data/sig/temporalio/internal/worker/multi_runner.rbs +132 -0
  428. data/sig/temporalio/internal/worker/workflow_instance/child_workflow_handle.rbs +22 -0
  429. data/sig/temporalio/internal/worker/workflow_instance/context.rbs +172 -0
  430. data/sig/temporalio/internal/worker/workflow_instance/details.rbs +43 -0
  431. data/sig/temporalio/internal/worker/workflow_instance/external_workflow_handle.rbs +15 -0
  432. data/sig/temporalio/internal/worker/workflow_instance/externally_immutable_hash.rbs +16 -0
  433. data/sig/temporalio/internal/worker/workflow_instance/handler_execution.rbs +19 -0
  434. data/sig/temporalio/internal/worker/workflow_instance/handler_hash.rbs +14 -0
  435. data/sig/temporalio/internal/worker/workflow_instance/illegal_call_tracer.rbs +20 -0
  436. data/sig/temporalio/internal/worker/workflow_instance/inbound_implementation.rbs +19 -0
  437. data/sig/temporalio/internal/worker/workflow_instance/nexus_client.rbs +25 -0
  438. data/sig/temporalio/internal/worker/workflow_instance/nexus_operation_handle.rbs +19 -0
  439. data/sig/temporalio/internal/worker/workflow_instance/outbound_implementation.rbs +35 -0
  440. data/sig/temporalio/internal/worker/workflow_instance/replay_safe_logger.rbs +16 -0
  441. data/sig/temporalio/internal/worker/workflow_instance/replay_safe_metric.rbs +15 -0
  442. data/sig/temporalio/internal/worker/workflow_instance/scheduler.rbs +52 -0
  443. data/sig/temporalio/internal/worker/workflow_instance.rbs +111 -0
  444. data/sig/temporalio/internal/worker/workflow_worker.rbs +99 -0
  445. data/sig/temporalio/internal/workflow_task_failure_error.rbs +6 -0
  446. data/sig/temporalio/internal.rbs +4 -0
  447. data/sig/temporalio/metric.rbs +55 -0
  448. data/sig/temporalio/priority.rbs +17 -0
  449. data/sig/temporalio/retry_policy.rbs +21 -0
  450. data/sig/temporalio/runtime/metric_buffer.rbs +49 -0
  451. data/sig/temporalio/runtime.rbs +118 -0
  452. data/sig/temporalio/scoped_logger.rbs +15 -0
  453. data/sig/temporalio/search_attributes.rbs +82 -0
  454. data/sig/temporalio/simple_plugin.rbs +65 -0
  455. data/sig/temporalio/testing/activity_environment.rbs +52 -0
  456. data/sig/temporalio/testing/workflow_environment.rbs +141 -0
  457. data/sig/temporalio/testing.rbs +4 -0
  458. data/sig/temporalio/version.rbs +3 -0
  459. data/sig/temporalio/versioning_override.rbs +17 -0
  460. data/sig/temporalio/worker/activity_executor/fiber.rbs +9 -0
  461. data/sig/temporalio/worker/activity_executor/thread_pool.rbs +11 -0
  462. data/sig/temporalio/worker/activity_executor.rbs +12 -0
  463. data/sig/temporalio/worker/deployment_options.rbs +17 -0
  464. data/sig/temporalio/worker/illegal_workflow_call_validator.rbs +25 -0
  465. data/sig/temporalio/worker/interceptor.rbs +373 -0
  466. data/sig/temporalio/worker/plugin.rbs +47 -0
  467. data/sig/temporalio/worker/poller_behavior.rbs +23 -0
  468. data/sig/temporalio/worker/thread_pool.rbs +44 -0
  469. data/sig/temporalio/worker/tuner.rbs +121 -0
  470. data/sig/temporalio/worker/workflow_executor/thread_pool.rbs +58 -0
  471. data/sig/temporalio/worker/workflow_executor.rbs +15 -0
  472. data/sig/temporalio/worker/workflow_replayer.rbs +105 -0
  473. data/sig/temporalio/worker.rbs +168 -0
  474. data/sig/temporalio/worker_deployment_version.rbs +17 -0
  475. data/sig/temporalio/workflow/activity_cancellation_type.rbs +11 -0
  476. data/sig/temporalio/workflow/child_workflow_cancellation_type.rbs +12 -0
  477. data/sig/temporalio/workflow/child_workflow_handle.rbs +18 -0
  478. data/sig/temporalio/workflow/definition.rbs +181 -0
  479. data/sig/temporalio/workflow/external_workflow_handle.rbs +17 -0
  480. data/sig/temporalio/workflow/future.rbs +24 -0
  481. data/sig/temporalio/workflow/handler_unfinished_policy.rbs +10 -0
  482. data/sig/temporalio/workflow/info.rbs +79 -0
  483. data/sig/temporalio/workflow/nexus_client.rbs +34 -0
  484. data/sig/temporalio/workflow/nexus_operation_cancellation_type.rbs +12 -0
  485. data/sig/temporalio/workflow/nexus_operation_handle.rbs +10 -0
  486. data/sig/temporalio/workflow/parent_close_policy.rbs +12 -0
  487. data/sig/temporalio/workflow/update_info.rbs +15 -0
  488. data/sig/temporalio/workflow.rbs +215 -0
  489. data/sig/temporalio/workflow_history.rbs +13 -0
  490. data/sig/temporalio.rbs +3 -0
  491. data/temporalio.gemspec +1 -1
  492. metadata +445 -2
data/Cargo.lock CHANGED
@@ -8,7 +8,16 @@ version = "0.25.1"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
9
  checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
10
10
  dependencies = [
11
- "gimli",
11
+ "gimli 0.32.3",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "addr2line"
16
+ version = "0.26.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "59317f77929f0e679d39364702289274de2f0f0b22cbf50b2b8cff2169a0b27a"
19
+ dependencies = [
20
+ "gimli 0.33.0",
12
21
  ]
13
22
 
14
23
  [[package]]
@@ -83,7 +92,7 @@ version = "1.1.5"
83
92
  source = "registry+https://github.com/rust-lang/crates.io-index"
84
93
  checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
85
94
  dependencies = [
86
- "windows-sys 0.60.2",
95
+ "windows-sys 0.61.2",
87
96
  ]
88
97
 
89
98
  [[package]]
@@ -94,14 +103,14 @@ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
94
103
  dependencies = [
95
104
  "anstyle",
96
105
  "once_cell_polyfill",
97
- "windows-sys 0.60.2",
106
+ "windows-sys 0.61.2",
98
107
  ]
99
108
 
100
109
  [[package]]
101
110
  name = "antithesis_sdk"
102
- version = "0.2.8"
111
+ version = "0.2.9"
103
112
  source = "registry+https://github.com/rust-lang/crates.io-index"
104
- checksum = "18dbd97a5b6c21cc9176891cf715f7f0c273caf3959897f43b9bd1231939e675"
113
+ checksum = "08410fcac93669a476c006cd6c4512ac1e2b30fd117231a5d55d8a2c76599b82"
105
114
  dependencies = [
106
115
  "libc",
107
116
  "libloading",
@@ -115,9 +124,15 @@ dependencies = [
115
124
 
116
125
  [[package]]
117
126
  name = "anyhow"
118
- version = "1.0.102"
127
+ version = "1.0.103"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
130
+
131
+ [[package]]
132
+ name = "arbitrary"
133
+ version = "1.4.2"
119
134
  source = "registry+https://github.com/rust-lang/crates.io-index"
120
- checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
135
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
121
136
 
122
137
  [[package]]
123
138
  name = "assert_matches"
@@ -144,37 +159,55 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
144
159
 
145
160
  [[package]]
146
161
  name = "autocfg"
147
- version = "1.5.0"
162
+ version = "1.5.1"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
165
+
166
+ [[package]]
167
+ name = "aws-lc-fips-sys"
168
+ version = "0.13.15"
148
169
  source = "registry+https://github.com/rust-lang/crates.io-index"
149
- checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
170
+ checksum = "6c0e6249c249b8916c98ebae7bc06216c8dcab3002f32872b4abe642d17063b1"
171
+ dependencies = [
172
+ "bindgen",
173
+ "cc",
174
+ "cmake",
175
+ "dunce",
176
+ "fs_extra",
177
+ "pkg-config",
178
+ "regex",
179
+ ]
150
180
 
151
181
  [[package]]
152
182
  name = "aws-lc-rs"
153
- version = "1.16.2"
183
+ version = "1.17.1"
154
184
  source = "registry+https://github.com/rust-lang/crates.io-index"
155
- checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc"
185
+ checksum = "4342d8937fc7e5dd9b1c60292261c0670c882a2cd1719cfc11b1af41731e32ad"
156
186
  dependencies = [
187
+ "aws-lc-fips-sys",
157
188
  "aws-lc-sys",
189
+ "untrusted 0.7.1",
158
190
  "zeroize",
159
191
  ]
160
192
 
161
193
  [[package]]
162
194
  name = "aws-lc-sys"
163
- version = "0.39.1"
195
+ version = "0.42.0"
164
196
  source = "registry+https://github.com/rust-lang/crates.io-index"
165
- checksum = "83a25cf98105baa966497416dbd42565ce3a8cf8dbfd59803ec9ad46f3126399"
197
+ checksum = "6d9ceb1da931507a12f4fccea479dccd00da1943e1b4ae72d8e502d707361444"
166
198
  dependencies = [
167
199
  "cc",
168
200
  "cmake",
169
201
  "dunce",
170
202
  "fs_extra",
203
+ "pkg-config",
171
204
  ]
172
205
 
173
206
  [[package]]
174
207
  name = "axum"
175
- version = "0.8.8"
208
+ version = "0.8.9"
176
209
  source = "registry+https://github.com/rust-lang/crates.io-index"
177
- checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
210
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
178
211
  dependencies = [
179
212
  "axum-core",
180
213
  "bytes",
@@ -230,11 +263,11 @@ version = "0.3.76"
230
263
  source = "registry+https://github.com/rust-lang/crates.io-index"
231
264
  checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
232
265
  dependencies = [
233
- "addr2line",
266
+ "addr2line 0.25.1",
234
267
  "cfg-if",
235
268
  "libc",
236
269
  "miniz_oxide",
237
- "object",
270
+ "object 0.37.3",
238
271
  "rustc-demangle",
239
272
  "windows-link",
240
273
  ]
@@ -253,35 +286,44 @@ checksum = "230c5f1ca6a325a32553f8640d31ac9b49f2411e901e427570154868b46da4f7"
253
286
 
254
287
  [[package]]
255
288
  name = "bindgen"
256
- version = "0.69.5"
289
+ version = "0.72.1"
257
290
  source = "registry+https://github.com/rust-lang/crates.io-index"
258
- checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
291
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
259
292
  dependencies = [
260
293
  "bitflags",
261
294
  "cexpr",
262
295
  "clang-sys",
263
- "itertools 0.12.1",
264
- "lazy_static",
265
- "lazycell",
296
+ "itertools 0.13.0",
297
+ "log",
298
+ "prettyplease",
266
299
  "proc-macro2",
267
300
  "quote",
268
301
  "regex",
269
- "rustc-hash 1.1.0",
270
- "shlex",
302
+ "rustc-hash 2.1.3",
303
+ "shlex 1.3.0",
271
304
  "syn",
272
305
  ]
273
306
 
274
307
  [[package]]
275
308
  name = "bitflags"
276
- version = "2.11.0"
309
+ version = "2.13.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
312
+
313
+ [[package]]
314
+ name = "block-buffer"
315
+ version = "0.10.4"
277
316
  source = "registry+https://github.com/rust-lang/crates.io-index"
278
- checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
317
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
318
+ dependencies = [
319
+ "generic-array",
320
+ ]
279
321
 
280
322
  [[package]]
281
323
  name = "bon"
282
- version = "3.9.1"
324
+ version = "3.9.3"
283
325
  source = "registry+https://github.com/rust-lang/crates.io-index"
284
- checksum = "f47dbe92550676ee653353c310dfb9cf6ba17ee70396e1f7cf0a2020ad49b2fe"
326
+ checksum = "a602c73c7b0148ec6d12af6fd5cc7a46e2eacc8878271a999abac56eed12f561"
285
327
  dependencies = [
286
328
  "bon-macros",
287
329
  "rustversion",
@@ -289,9 +331,9 @@ dependencies = [
289
331
 
290
332
  [[package]]
291
333
  name = "bon-macros"
292
- version = "3.9.1"
334
+ version = "3.9.3"
293
335
  source = "registry+https://github.com/rust-lang/crates.io-index"
294
- checksum = "519bd3116aeeb42d5372c29d982d16d0170d3d4a5ed85fc7dd91642ffff3c67c"
336
+ checksum = "6dee98b0db6a962de883bf5d20362dee4d7ca0d12fe39a7c6c73c844e1cd7c1f"
295
337
  dependencies = [
296
338
  "darling",
297
339
  "ident_case",
@@ -304,15 +346,18 @@ dependencies = [
304
346
 
305
347
  [[package]]
306
348
  name = "bumpalo"
307
- version = "3.20.2"
349
+ version = "3.20.3"
308
350
  source = "registry+https://github.com/rust-lang/crates.io-index"
309
- checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
351
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
352
+ dependencies = [
353
+ "allocator-api2",
354
+ ]
310
355
 
311
356
  [[package]]
312
357
  name = "bytes"
313
- version = "1.11.1"
358
+ version = "1.12.1"
314
359
  source = "registry+https://github.com/rust-lang/crates.io-index"
315
- checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
360
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
316
361
 
317
362
  [[package]]
318
363
  name = "bzip2"
@@ -331,22 +376,16 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
331
376
 
332
377
  [[package]]
333
378
  name = "cc"
334
- version = "1.2.57"
379
+ version = "1.2.66"
335
380
  source = "registry+https://github.com/rust-lang/crates.io-index"
336
- checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
381
+ checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
337
382
  dependencies = [
338
383
  "find-msvc-tools",
339
384
  "jobserver",
340
385
  "libc",
341
- "shlex",
386
+ "shlex 2.0.1",
342
387
  ]
343
388
 
344
- [[package]]
345
- name = "cesu8"
346
- version = "1.1.0"
347
- source = "registry+https://github.com/rust-lang/crates.io-index"
348
- checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
349
-
350
389
  [[package]]
351
390
  name = "cexpr"
352
391
  version = "0.6.0"
@@ -370,20 +409,20 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
370
409
 
371
410
  [[package]]
372
411
  name = "chacha20"
373
- version = "0.10.0"
412
+ version = "0.10.1"
374
413
  source = "registry+https://github.com/rust-lang/crates.io-index"
375
- checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
414
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
376
415
  dependencies = [
377
416
  "cfg-if",
378
- "cpufeatures",
379
- "rand_core 0.10.0",
417
+ "cpufeatures 0.3.0",
418
+ "rand_core 0.10.1",
380
419
  ]
381
420
 
382
421
  [[package]]
383
422
  name = "chrono"
384
- version = "0.4.44"
423
+ version = "0.4.45"
385
424
  source = "registry+https://github.com/rust-lang/crates.io-index"
386
- checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
425
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
387
426
  dependencies = [
388
427
  "num-traits",
389
428
  "serde",
@@ -429,9 +468,9 @@ dependencies = [
429
468
 
430
469
  [[package]]
431
470
  name = "clap"
432
- version = "4.6.0"
471
+ version = "4.6.1"
433
472
  source = "registry+https://github.com/rust-lang/crates.io-index"
434
- checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
473
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
435
474
  dependencies = [
436
475
  "clap_builder",
437
476
  "clap_derive",
@@ -451,9 +490,9 @@ dependencies = [
451
490
 
452
491
  [[package]]
453
492
  name = "clap_derive"
454
- version = "4.6.0"
493
+ version = "4.6.1"
455
494
  source = "registry+https://github.com/rust-lang/crates.io-index"
456
- checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
495
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
457
496
  dependencies = [
458
497
  "heck",
459
498
  "proc-macro2",
@@ -476,6 +515,15 @@ dependencies = [
476
515
  "cc",
477
516
  ]
478
517
 
518
+ [[package]]
519
+ name = "cobs"
520
+ version = "0.3.0"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
523
+ dependencies = [
524
+ "thiserror 2.0.18",
525
+ ]
526
+
479
527
  [[package]]
480
528
  name = "colorchoice"
481
529
  version = "1.0.5"
@@ -517,6 +565,24 @@ version = "0.8.7"
517
565
  source = "registry+https://github.com/rust-lang/crates.io-index"
518
566
  checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
519
567
 
568
+ [[package]]
569
+ name = "cpp_demangle"
570
+ version = "0.4.5"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253"
573
+ dependencies = [
574
+ "cfg-if",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "cpufeatures"
579
+ version = "0.2.17"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
582
+ dependencies = [
583
+ "libc",
584
+ ]
585
+
520
586
  [[package]]
521
587
  name = "cpufeatures"
522
588
  version = "0.3.0"
@@ -526,6 +592,148 @@ dependencies = [
526
592
  "libc",
527
593
  ]
528
594
 
595
+ [[package]]
596
+ name = "cranelift-assembler-x64"
597
+ version = "0.131.3"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "3867f7a56768640a79fc660d2f60298251dc6d65b5d1c907706cd1afff024957"
600
+ dependencies = [
601
+ "cranelift-assembler-x64-meta",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "cranelift-assembler-x64-meta"
606
+ version = "0.131.3"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "a0661d63dcf8fc4a6538c1ee4d523917c5b27e9fce7a4114cdf9e2b30b4043cf"
609
+ dependencies = [
610
+ "cranelift-srcgen",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "cranelift-bforest"
615
+ version = "0.131.3"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "a8d535b489159ea63e3c40dfbe8d0e12bfb71f2a14845ef2407353e06c5a697c"
618
+ dependencies = [
619
+ "cranelift-entity",
620
+ "wasmtime-internal-core",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "cranelift-bitset"
625
+ version = "0.131.3"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "c3af4f7d421b2354deb01d714266022f38fcdbebc9f5f1ec6d310d3c27286d9e"
628
+ dependencies = [
629
+ "serde",
630
+ "serde_derive",
631
+ "wasmtime-internal-core",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "cranelift-codegen"
636
+ version = "0.131.3"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "09fe4c289e67e0221d1705734a57f95e25c289ed0ead7728743ea21285fc4cf1"
639
+ dependencies = [
640
+ "bumpalo",
641
+ "cranelift-assembler-x64",
642
+ "cranelift-bforest",
643
+ "cranelift-bitset",
644
+ "cranelift-codegen-meta",
645
+ "cranelift-codegen-shared",
646
+ "cranelift-control",
647
+ "cranelift-entity",
648
+ "cranelift-isle",
649
+ "gimli 0.33.0",
650
+ "hashbrown 0.16.1",
651
+ "libm",
652
+ "log",
653
+ "pulley-interpreter",
654
+ "regalloc2",
655
+ "rustc-hash 2.1.3",
656
+ "serde",
657
+ "smallvec",
658
+ "target-lexicon",
659
+ "wasmtime-internal-core",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "cranelift-codegen-meta"
664
+ version = "0.131.3"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "b3063e5363dc5ee6ee8edd930314582c08eb91c209b9564da1cd667f6424b9b3"
667
+ dependencies = [
668
+ "cranelift-assembler-x64-meta",
669
+ "cranelift-codegen-shared",
670
+ "cranelift-srcgen",
671
+ "heck",
672
+ "pulley-interpreter",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "cranelift-codegen-shared"
677
+ version = "0.131.3"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "c34b9c8dbc9edf37744918e56898d4979ef1e764e8e4bbe8b4d50250838ddfe8"
680
+
681
+ [[package]]
682
+ name = "cranelift-control"
683
+ version = "0.131.3"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "4eed9dc54204dc99aad19669bca50142659ed583396d9a99a2aef34d7c136ef4"
686
+ dependencies = [
687
+ "arbitrary",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "cranelift-entity"
692
+ version = "0.131.3"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "9aa2846b239a046217ecf95cfed0e31be4e86843785d07438ad33f456871e888"
695
+ dependencies = [
696
+ "cranelift-bitset",
697
+ "serde",
698
+ "serde_derive",
699
+ "wasmtime-internal-core",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "cranelift-frontend"
704
+ version = "0.131.3"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "144f70fa9cd07efb83497c12dc8fb73f360a690cd990c44e8ceebc293d8c13b5"
707
+ dependencies = [
708
+ "cranelift-codegen",
709
+ "log",
710
+ "smallvec",
711
+ "target-lexicon",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "cranelift-isle"
716
+ version = "0.131.3"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "0733ca5b2aaa5f6d5d6a1439e3c44280d34730d4d5c262ca08c6775c8d83f191"
719
+
720
+ [[package]]
721
+ name = "cranelift-native"
722
+ version = "0.131.3"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "75b1290d6193b171172d5fe9a6e42326edf487a79f211fbf1e76f912a4aed035"
725
+ dependencies = [
726
+ "cranelift-codegen",
727
+ "libc",
728
+ "target-lexicon",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "cranelift-srcgen"
733
+ version = "0.131.3"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "ce0d5c2b4d719566816a0f1c9a9712d35d61e27df0ffd6c72a9afec9048db6c0"
736
+
529
737
  [[package]]
530
738
  name = "crc32fast"
531
739
  version = "1.5.0"
@@ -573,18 +781,18 @@ dependencies = [
573
781
 
574
782
  [[package]]
575
783
  name = "crossbeam-channel"
576
- version = "0.5.15"
784
+ version = "0.5.16"
577
785
  source = "registry+https://github.com/rust-lang/crates.io-index"
578
- checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
786
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
579
787
  dependencies = [
580
788
  "crossbeam-utils",
581
789
  ]
582
790
 
583
791
  [[package]]
584
792
  name = "crossbeam-deque"
585
- version = "0.8.6"
793
+ version = "0.8.7"
586
794
  source = "registry+https://github.com/rust-lang/crates.io-index"
587
- checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
795
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
588
796
  dependencies = [
589
797
  "crossbeam-epoch",
590
798
  "crossbeam-utils",
@@ -592,27 +800,27 @@ dependencies = [
592
800
 
593
801
  [[package]]
594
802
  name = "crossbeam-epoch"
595
- version = "0.9.18"
803
+ version = "0.9.20"
596
804
  source = "registry+https://github.com/rust-lang/crates.io-index"
597
- checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
805
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
598
806
  dependencies = [
599
807
  "crossbeam-utils",
600
808
  ]
601
809
 
602
810
  [[package]]
603
811
  name = "crossbeam-queue"
604
- version = "0.3.12"
812
+ version = "0.3.13"
605
813
  source = "registry+https://github.com/rust-lang/crates.io-index"
606
- checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
814
+ checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
607
815
  dependencies = [
608
816
  "crossbeam-utils",
609
817
  ]
610
818
 
611
819
  [[package]]
612
820
  name = "crossbeam-utils"
613
- version = "0.8.21"
821
+ version = "0.8.22"
614
822
  source = "registry+https://github.com/rust-lang/crates.io-index"
615
- checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
823
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
616
824
 
617
825
  [[package]]
618
826
  name = "crunchy"
@@ -620,6 +828,16 @@ version = "0.2.4"
620
828
  source = "registry+https://github.com/rust-lang/crates.io-index"
621
829
  checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
622
830
 
831
+ [[package]]
832
+ name = "crypto-common"
833
+ version = "0.1.7"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
836
+ dependencies = [
837
+ "generic-array",
838
+ "typenum",
839
+ ]
840
+
623
841
  [[package]]
624
842
  name = "darling"
625
843
  version = "0.23.0"
@@ -654,6 +872,15 @@ dependencies = [
654
872
  "syn",
655
873
  ]
656
874
 
875
+ [[package]]
876
+ name = "debugid"
877
+ version = "0.8.0"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
880
+ dependencies = [
881
+ "uuid",
882
+ ]
883
+
657
884
  [[package]]
658
885
  name = "derive_more"
659
886
  version = "2.1.1"
@@ -693,6 +920,26 @@ dependencies = [
693
920
  "thousands",
694
921
  ]
695
922
 
923
+ [[package]]
924
+ name = "digest"
925
+ version = "0.10.7"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
928
+ dependencies = [
929
+ "block-buffer",
930
+ "crypto-common",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "directories-next"
935
+ version = "2.0.0"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
938
+ dependencies = [
939
+ "cfg-if",
940
+ "dirs-sys-next",
941
+ ]
942
+
696
943
  [[package]]
697
944
  name = "dirs"
698
945
  version = "6.0.0"
@@ -710,15 +957,26 @@ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
710
957
  dependencies = [
711
958
  "libc",
712
959
  "option-ext",
713
- "redox_users",
714
- "windows-sys 0.60.2",
960
+ "redox_users 0.5.2",
961
+ "windows-sys 0.61.2",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "dirs-sys-next"
966
+ version = "0.1.2"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
969
+ dependencies = [
970
+ "libc",
971
+ "redox_users 0.4.6",
972
+ "winapi",
715
973
  ]
716
974
 
717
975
  [[package]]
718
976
  name = "displaydoc"
719
- version = "0.2.5"
977
+ version = "0.2.6"
720
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
721
- checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
979
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
722
980
  dependencies = [
723
981
  "proc-macro2",
724
982
  "quote",
@@ -751,9 +1009,30 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
751
1009
 
752
1010
  [[package]]
753
1011
  name = "either"
754
- version = "1.15.0"
1012
+ version = "1.16.0"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
1015
+
1016
+ [[package]]
1017
+ name = "embedded-io"
1018
+ version = "0.4.0"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
1021
+
1022
+ [[package]]
1023
+ name = "embedded-io"
1024
+ version = "0.6.1"
755
1025
  source = "registry+https://github.com/rust-lang/crates.io-index"
756
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1026
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
1027
+
1028
+ [[package]]
1029
+ name = "encoding_rs"
1030
+ version = "0.8.35"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
1033
+ dependencies = [
1034
+ "cfg-if",
1035
+ ]
757
1036
 
758
1037
  [[package]]
759
1038
  name = "enum-iterator"
@@ -811,24 +1090,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
811
1090
  checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
812
1091
  dependencies = [
813
1092
  "libc",
814
- "windows-sys 0.60.2",
1093
+ "windows-sys 0.61.2",
815
1094
  ]
816
1095
 
817
1096
  [[package]]
818
1097
  name = "fastrand"
819
- version = "2.3.0"
1098
+ version = "2.4.1"
820
1099
  source = "registry+https://github.com/rust-lang/crates.io-index"
821
- checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1100
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
822
1101
 
823
1102
  [[package]]
824
1103
  name = "filetime"
825
- version = "0.2.27"
1104
+ version = "0.2.29"
826
1105
  source = "registry+https://github.com/rust-lang/crates.io-index"
827
- checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
1106
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
828
1107
  dependencies = [
829
1108
  "cfg-if",
830
1109
  "libc",
831
- "libredox",
832
1110
  ]
833
1111
 
834
1112
  [[package]]
@@ -837,6 +1115,12 @@ version = "0.1.9"
837
1115
  source = "registry+https://github.com/rust-lang/crates.io-index"
838
1116
  checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
839
1117
 
1118
+ [[package]]
1119
+ name = "fixedbitset"
1120
+ version = "0.4.2"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
1123
+
840
1124
  [[package]]
841
1125
  name = "fixedbitset"
842
1126
  version = "0.5.7"
@@ -883,9 +1167,12 @@ dependencies = [
883
1167
 
884
1168
  [[package]]
885
1169
  name = "fragile"
886
- version = "2.0.1"
1170
+ version = "2.1.0"
887
1171
  source = "registry+https://github.com/rust-lang/crates.io-index"
888
- checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619"
1172
+ checksum = "8878864ba14bb86e818a412bfd6f18f9eabd4ec0f008a28e8f7eb61db532fcf9"
1173
+ dependencies = [
1174
+ "futures-core",
1175
+ ]
889
1176
 
890
1177
  [[package]]
891
1178
  name = "fs_extra"
@@ -977,9 +1264,9 @@ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
977
1264
 
978
1265
  [[package]]
979
1266
  name = "futures-timer"
980
- version = "3.0.3"
1267
+ version = "3.0.4"
981
1268
  source = "registry+https://github.com/rust-lang/crates.io-index"
982
- checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
1269
+ checksum = "af43fadb8a98512d547e37b4e92e0ced13e205c061b87b4623eff01d918d6968"
983
1270
 
984
1271
  [[package]]
985
1272
  name = "futures-util"
@@ -998,6 +1285,30 @@ dependencies = [
998
1285
  "slab",
999
1286
  ]
1000
1287
 
1288
+ [[package]]
1289
+ name = "fxprof-processed-profile"
1290
+ version = "0.8.1"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "25234f20a3ec0a962a61770cfe39ecf03cb529a6e474ad8cff025ed497eda557"
1293
+ dependencies = [
1294
+ "bitflags",
1295
+ "debugid",
1296
+ "rustc-hash 2.1.3",
1297
+ "serde",
1298
+ "serde_derive",
1299
+ "serde_json",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "generic-array"
1304
+ version = "0.14.7"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1307
+ dependencies = [
1308
+ "typenum",
1309
+ "version_check",
1310
+ ]
1311
+
1001
1312
  [[package]]
1002
1313
  name = "gethostname"
1003
1314
  version = "1.1.0"
@@ -1028,25 +1339,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
1339
  checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1029
1340
  dependencies = [
1030
1341
  "cfg-if",
1031
- "js-sys",
1032
1342
  "libc",
1033
1343
  "r-efi 5.3.0",
1034
1344
  "wasip2",
1035
- "wasm-bindgen",
1036
1345
  ]
1037
1346
 
1038
1347
  [[package]]
1039
1348
  name = "getrandom"
1040
- version = "0.4.2"
1349
+ version = "0.4.3"
1041
1350
  source = "registry+https://github.com/rust-lang/crates.io-index"
1042
- checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1351
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
1043
1352
  dependencies = [
1044
1353
  "cfg-if",
1354
+ "js-sys",
1045
1355
  "libc",
1046
1356
  "r-efi 6.0.0",
1047
- "rand_core 0.10.0",
1048
- "wasip2",
1049
- "wasip3",
1357
+ "rand_core 0.10.1",
1358
+ "wasm-bindgen",
1050
1359
  ]
1051
1360
 
1052
1361
  [[package]]
@@ -1055,6 +1364,18 @@ version = "0.32.3"
1055
1364
  source = "registry+https://github.com/rust-lang/crates.io-index"
1056
1365
  checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
1057
1366
 
1367
+ [[package]]
1368
+ name = "gimli"
1369
+ version = "0.33.0"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "0bf7f043f89559805f8c7cacc432749b2fa0d0a0a9ee46ce47164ed5ba7f126c"
1372
+ dependencies = [
1373
+ "fnv",
1374
+ "hashbrown 0.16.1",
1375
+ "indexmap",
1376
+ "stable_deref_trait",
1377
+ ]
1378
+
1058
1379
  [[package]]
1059
1380
  name = "glob"
1060
1381
  version = "0.3.3"
@@ -1063,9 +1384,9 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1063
1384
 
1064
1385
  [[package]]
1065
1386
  name = "h2"
1066
- version = "0.4.13"
1387
+ version = "0.4.15"
1067
1388
  source = "registry+https://github.com/rust-lang/crates.io-index"
1068
- checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
1389
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
1069
1390
  dependencies = [
1070
1391
  "atomic-waker",
1071
1392
  "bytes",
@@ -1105,6 +1426,17 @@ name = "hashbrown"
1105
1426
  version = "0.16.1"
1106
1427
  source = "registry+https://github.com/rust-lang/crates.io-index"
1107
1428
  checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1429
+ dependencies = [
1430
+ "foldhash 0.2.0",
1431
+ "serde",
1432
+ "serde_core",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "hashbrown"
1437
+ version = "0.17.1"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1108
1440
  dependencies = [
1109
1441
  "allocator-api2",
1110
1442
  "equivalent",
@@ -1119,9 +1451,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1119
1451
 
1120
1452
  [[package]]
1121
1453
  name = "http"
1122
- version = "1.4.0"
1454
+ version = "1.4.2"
1123
1455
  source = "registry+https://github.com/rust-lang/crates.io-index"
1124
- checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1456
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1125
1457
  dependencies = [
1126
1458
  "bytes",
1127
1459
  "itoa",
@@ -1164,9 +1496,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1164
1496
 
1165
1497
  [[package]]
1166
1498
  name = "hyper"
1167
- version = "1.8.1"
1499
+ version = "1.10.1"
1168
1500
  source = "registry+https://github.com/rust-lang/crates.io-index"
1169
- checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1501
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1170
1502
  dependencies = [
1171
1503
  "atomic-waker",
1172
1504
  "bytes",
@@ -1179,7 +1511,6 @@ dependencies = [
1179
1511
  "httpdate",
1180
1512
  "itoa",
1181
1513
  "pin-project-lite",
1182
- "pin-utils",
1183
1514
  "smallvec",
1184
1515
  "tokio",
1185
1516
  "want",
@@ -1187,16 +1518,15 @@ dependencies = [
1187
1518
 
1188
1519
  [[package]]
1189
1520
  name = "hyper-rustls"
1190
- version = "0.27.7"
1521
+ version = "0.27.9"
1191
1522
  source = "registry+https://github.com/rust-lang/crates.io-index"
1192
- checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1523
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1193
1524
  dependencies = [
1194
1525
  "http",
1195
1526
  "hyper",
1196
1527
  "hyper-util",
1197
1528
  "rustls",
1198
1529
  "rustls-native-certs",
1199
- "rustls-pki-types",
1200
1530
  "tokio",
1201
1531
  "tokio-rustls",
1202
1532
  "tower-service",
@@ -1240,12 +1570,13 @@ dependencies = [
1240
1570
 
1241
1571
  [[package]]
1242
1572
  name = "icu_collections"
1243
- version = "2.1.1"
1573
+ version = "2.2.0"
1244
1574
  source = "registry+https://github.com/rust-lang/crates.io-index"
1245
- checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1575
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1246
1576
  dependencies = [
1247
1577
  "displaydoc",
1248
1578
  "potential_utf",
1579
+ "utf8_iter",
1249
1580
  "yoke",
1250
1581
  "zerofrom",
1251
1582
  "zerovec",
@@ -1253,9 +1584,9 @@ dependencies = [
1253
1584
 
1254
1585
  [[package]]
1255
1586
  name = "icu_locale_core"
1256
- version = "2.1.1"
1587
+ version = "2.2.0"
1257
1588
  source = "registry+https://github.com/rust-lang/crates.io-index"
1258
- checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1589
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1259
1590
  dependencies = [
1260
1591
  "displaydoc",
1261
1592
  "litemap",
@@ -1266,9 +1597,9 @@ dependencies = [
1266
1597
 
1267
1598
  [[package]]
1268
1599
  name = "icu_normalizer"
1269
- version = "2.1.1"
1600
+ version = "2.2.0"
1270
1601
  source = "registry+https://github.com/rust-lang/crates.io-index"
1271
- checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1602
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1272
1603
  dependencies = [
1273
1604
  "icu_collections",
1274
1605
  "icu_normalizer_data",
@@ -1280,15 +1611,15 @@ dependencies = [
1280
1611
 
1281
1612
  [[package]]
1282
1613
  name = "icu_normalizer_data"
1283
- version = "2.1.1"
1614
+ version = "2.2.0"
1284
1615
  source = "registry+https://github.com/rust-lang/crates.io-index"
1285
- checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1616
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1286
1617
 
1287
1618
  [[package]]
1288
1619
  name = "icu_properties"
1289
- version = "2.1.2"
1620
+ version = "2.2.0"
1290
1621
  source = "registry+https://github.com/rust-lang/crates.io-index"
1291
- checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1622
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1292
1623
  dependencies = [
1293
1624
  "icu_collections",
1294
1625
  "icu_locale_core",
@@ -1300,15 +1631,15 @@ dependencies = [
1300
1631
 
1301
1632
  [[package]]
1302
1633
  name = "icu_properties_data"
1303
- version = "2.1.2"
1634
+ version = "2.2.0"
1304
1635
  source = "registry+https://github.com/rust-lang/crates.io-index"
1305
- checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1636
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1306
1637
 
1307
1638
  [[package]]
1308
1639
  name = "icu_provider"
1309
- version = "2.1.1"
1640
+ version = "2.2.0"
1310
1641
  source = "registry+https://github.com/rust-lang/crates.io-index"
1311
- checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1642
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1312
1643
  dependencies = [
1313
1644
  "displaydoc",
1314
1645
  "icu_locale_core",
@@ -1344,9 +1675,9 @@ dependencies = [
1344
1675
 
1345
1676
  [[package]]
1346
1677
  name = "idna_adapter"
1347
- version = "1.2.1"
1678
+ version = "1.2.2"
1348
1679
  source = "registry+https://github.com/rust-lang/crates.io-index"
1349
- checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1680
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1350
1681
  dependencies = [
1351
1682
  "icu_normalizer",
1352
1683
  "icu_properties",
@@ -1354,12 +1685,12 @@ dependencies = [
1354
1685
 
1355
1686
  [[package]]
1356
1687
  name = "indexmap"
1357
- version = "2.13.0"
1688
+ version = "2.14.0"
1358
1689
  source = "registry+https://github.com/rust-lang/crates.io-index"
1359
- checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1690
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1360
1691
  dependencies = [
1361
1692
  "equivalent",
1362
- "hashbrown 0.16.1",
1693
+ "hashbrown 0.17.1",
1363
1694
  "serde",
1364
1695
  "serde_core",
1365
1696
  ]
@@ -1375,9 +1706,9 @@ dependencies = [
1375
1706
 
1376
1707
  [[package]]
1377
1708
  name = "inventory"
1378
- version = "0.3.22"
1709
+ version = "0.3.24"
1379
1710
  source = "registry+https://github.com/rust-lang/crates.io-index"
1380
- checksum = "009ae045c87e7082cb72dab0ccd01ae075dd00141ddc108f43a0ea150a9e7227"
1711
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
1381
1712
  dependencies = [
1382
1713
  "rustversion",
1383
1714
  ]
@@ -1388,31 +1719,12 @@ version = "2.12.0"
1388
1719
  source = "registry+https://github.com/rust-lang/crates.io-index"
1389
1720
  checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1390
1721
 
1391
- [[package]]
1392
- name = "iri-string"
1393
- version = "0.7.10"
1394
- source = "registry+https://github.com/rust-lang/crates.io-index"
1395
- checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1396
- dependencies = [
1397
- "memchr",
1398
- "serde",
1399
- ]
1400
-
1401
1722
  [[package]]
1402
1723
  name = "is_terminal_polyfill"
1403
1724
  version = "1.70.2"
1404
1725
  source = "registry+https://github.com/rust-lang/crates.io-index"
1405
1726
  checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1406
1727
 
1407
- [[package]]
1408
- name = "itertools"
1409
- version = "0.12.1"
1410
- source = "registry+https://github.com/rust-lang/crates.io-index"
1411
- checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1412
- dependencies = [
1413
- "either",
1414
- ]
1415
-
1416
1728
  [[package]]
1417
1729
  name = "itertools"
1418
1730
  version = "0.13.0"
@@ -1433,33 +1745,58 @@ dependencies = [
1433
1745
 
1434
1746
  [[package]]
1435
1747
  name = "itoa"
1436
- version = "1.0.17"
1748
+ version = "1.0.18"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1751
+
1752
+ [[package]]
1753
+ name = "ittapi"
1754
+ version = "0.4.0"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1"
1757
+ dependencies = [
1758
+ "anyhow",
1759
+ "ittapi-sys",
1760
+ "log",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "ittapi-sys"
1765
+ version = "0.4.0"
1437
1766
  source = "registry+https://github.com/rust-lang/crates.io-index"
1438
- checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1767
+ checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc"
1768
+ dependencies = [
1769
+ "cc",
1770
+ ]
1439
1771
 
1440
1772
  [[package]]
1441
1773
  name = "jni"
1442
- version = "0.21.1"
1774
+ version = "0.22.4"
1443
1775
  source = "registry+https://github.com/rust-lang/crates.io-index"
1444
- checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1776
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1445
1777
  dependencies = [
1446
- "cesu8",
1447
1778
  "cfg-if",
1448
1779
  "combine",
1449
- "jni-sys 0.3.1",
1780
+ "jni-macros",
1781
+ "jni-sys",
1450
1782
  "log",
1451
- "thiserror 1.0.69",
1783
+ "simd_cesu8",
1784
+ "thiserror 2.0.18",
1452
1785
  "walkdir",
1453
- "windows-sys 0.45.0",
1786
+ "windows-link",
1454
1787
  ]
1455
1788
 
1456
1789
  [[package]]
1457
- name = "jni-sys"
1458
- version = "0.3.1"
1790
+ name = "jni-macros"
1791
+ version = "0.22.4"
1459
1792
  source = "registry+https://github.com/rust-lang/crates.io-index"
1460
- checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
1793
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1461
1794
  dependencies = [
1462
- "jni-sys 0.4.1",
1795
+ "proc-macro2",
1796
+ "quote",
1797
+ "rustc_version",
1798
+ "simd_cesu8",
1799
+ "syn",
1463
1800
  ]
1464
1801
 
1465
1802
  [[package]]
@@ -1483,21 +1820,22 @@ dependencies = [
1483
1820
 
1484
1821
  [[package]]
1485
1822
  name = "jobserver"
1486
- version = "0.1.34"
1823
+ version = "0.1.35"
1487
1824
  source = "registry+https://github.com/rust-lang/crates.io-index"
1488
- checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1825
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
1489
1826
  dependencies = [
1490
- "getrandom 0.3.4",
1827
+ "getrandom 0.4.3",
1491
1828
  "libc",
1492
1829
  ]
1493
1830
 
1494
1831
  [[package]]
1495
1832
  name = "js-sys"
1496
- version = "0.3.91"
1833
+ version = "0.3.103"
1497
1834
  source = "registry+https://github.com/rust-lang/crates.io-index"
1498
- checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
1835
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1499
1836
  dependencies = [
1500
- "once_cell",
1837
+ "cfg-if",
1838
+ "futures-util",
1501
1839
  "wasm-bindgen",
1502
1840
  ]
1503
1841
 
@@ -1507,12 +1845,6 @@ version = "1.5.0"
1507
1845
  source = "registry+https://github.com/rust-lang/crates.io-index"
1508
1846
  checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1509
1847
 
1510
- [[package]]
1511
- name = "lazycell"
1512
- version = "1.3.0"
1513
- source = "registry+https://github.com/rust-lang/crates.io-index"
1514
- checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1515
-
1516
1848
  [[package]]
1517
1849
  name = "leb128fmt"
1518
1850
  version = "0.1.0"
@@ -1521,15 +1853,15 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1521
1853
 
1522
1854
  [[package]]
1523
1855
  name = "libbz2-rs-sys"
1524
- version = "0.2.2"
1856
+ version = "0.2.5"
1525
1857
  source = "registry+https://github.com/rust-lang/crates.io-index"
1526
- checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
1858
+ checksum = "34b357333733e8260735ba5894eb928c02ecc69c78715f01a8019e7fa7f2db4c"
1527
1859
 
1528
1860
  [[package]]
1529
1861
  name = "libc"
1530
- version = "0.2.183"
1862
+ version = "0.2.186"
1531
1863
  source = "registry+https://github.com/rust-lang/crates.io-index"
1532
- checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
1864
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1533
1865
 
1534
1866
  [[package]]
1535
1867
  name = "libloading"
@@ -1541,32 +1873,35 @@ dependencies = [
1541
1873
  "windows-link",
1542
1874
  ]
1543
1875
 
1876
+ [[package]]
1877
+ name = "libm"
1878
+ version = "0.2.16"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1881
+
1544
1882
  [[package]]
1545
1883
  name = "libredox"
1546
- version = "0.1.14"
1884
+ version = "0.1.18"
1547
1885
  source = "registry+https://github.com/rust-lang/crates.io-index"
1548
- checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
1886
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
1549
1887
  dependencies = [
1550
- "bitflags",
1551
1888
  "libc",
1552
- "plain",
1553
- "redox_syscall 0.7.3",
1554
1889
  ]
1555
1890
 
1556
1891
  [[package]]
1557
1892
  name = "linkme"
1558
- version = "0.3.35"
1893
+ version = "0.3.36"
1559
1894
  source = "registry+https://github.com/rust-lang/crates.io-index"
1560
- checksum = "5e3283ed2d0e50c06dd8602e0ab319bb048b6325d0bba739db64ed8205179898"
1895
+ checksum = "e83272d46373fb8decca684579ac3e7c8f3d71d4cc3aa693df8759e260ae41cf"
1561
1896
  dependencies = [
1562
1897
  "linkme-impl",
1563
1898
  ]
1564
1899
 
1565
1900
  [[package]]
1566
1901
  name = "linkme-impl"
1567
- version = "0.3.35"
1902
+ version = "0.3.36"
1568
1903
  source = "registry+https://github.com/rust-lang/crates.io-index"
1569
- checksum = "e5cec0ec4228b4853bb129c84dbf093a27e6c7a20526da046defc334a1b017f7"
1904
+ checksum = "32d59e20403c7d08fe62b4376edfe5c7fb2ef1e6b1465379686d0f21c8df444b"
1570
1905
  dependencies = [
1571
1906
  "proc-macro2",
1572
1907
  "quote",
@@ -1581,9 +1916,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1581
1916
 
1582
1917
  [[package]]
1583
1918
  name = "litemap"
1584
- version = "0.8.1"
1919
+ version = "0.8.2"
1585
1920
  source = "registry+https://github.com/rust-lang/crates.io-index"
1586
- checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1921
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1587
1922
 
1588
1923
  [[package]]
1589
1924
  name = "lock_api"
@@ -1596,17 +1931,17 @@ dependencies = [
1596
1931
 
1597
1932
  [[package]]
1598
1933
  name = "log"
1599
- version = "0.4.29"
1934
+ version = "0.4.33"
1600
1935
  source = "registry+https://github.com/rust-lang/crates.io-index"
1601
- checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1936
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1602
1937
 
1603
1938
  [[package]]
1604
1939
  name = "lru"
1605
- version = "0.16.3"
1940
+ version = "0.18.0"
1606
1941
  source = "registry+https://github.com/rust-lang/crates.io-index"
1607
- checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
1942
+ checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9"
1608
1943
  dependencies = [
1609
- "hashbrown 0.16.1",
1944
+ "hashbrown 0.17.1",
1610
1945
  ]
1611
1946
 
1612
1947
  [[package]]
@@ -1615,6 +1950,15 @@ version = "0.1.2"
1615
1950
  source = "registry+https://github.com/rust-lang/crates.io-index"
1616
1951
  checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1617
1952
 
1953
+ [[package]]
1954
+ name = "mach2"
1955
+ version = "0.4.3"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
1958
+ dependencies = [
1959
+ "libc",
1960
+ ]
1961
+
1618
1962
  [[package]]
1619
1963
  name = "magnus"
1620
1964
  version = "0.8.2"
@@ -1655,9 +1999,18 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1655
1999
 
1656
2000
  [[package]]
1657
2001
  name = "memchr"
1658
- version = "2.8.0"
2002
+ version = "2.8.3"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
2005
+
2006
+ [[package]]
2007
+ name = "memfd"
2008
+ version = "0.6.5"
1659
2009
  source = "registry+https://github.com/rust-lang/crates.io-index"
1660
- checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
2010
+ checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227"
2011
+ dependencies = [
2012
+ "rustix",
2013
+ ]
1661
2014
 
1662
2015
  [[package]]
1663
2016
  name = "mime"
@@ -1689,9 +2042,9 @@ checksum = "c505b3e17ed6b70a7ed2e67fbb2c560ee327353556120d6e72f5232b6880d536"
1689
2042
 
1690
2043
  [[package]]
1691
2044
  name = "mio"
1692
- version = "1.1.1"
2045
+ version = "1.2.1"
1693
2046
  source = "registry+https://github.com/rust-lang/crates.io-index"
1694
- checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
2047
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1695
2048
  dependencies = [
1696
2049
  "libc",
1697
2050
  "wasi",
@@ -1755,7 +2108,7 @@ version = "0.50.3"
1755
2108
  source = "registry+https://github.com/rust-lang/crates.io-index"
1756
2109
  checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1757
2110
  dependencies = [
1758
- "windows-sys 0.60.2",
2111
+ "windows-sys 0.61.2",
1759
2112
  ]
1760
2113
 
1761
2114
  [[package]]
@@ -1795,6 +2148,18 @@ dependencies = [
1795
2148
  "memchr",
1796
2149
  ]
1797
2150
 
2151
+ [[package]]
2152
+ name = "object"
2153
+ version = "0.39.1"
2154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2155
+ checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
2156
+ dependencies = [
2157
+ "crc32fast",
2158
+ "hashbrown 0.17.1",
2159
+ "indexmap",
2160
+ "memchr",
2161
+ ]
2162
+
1798
2163
  [[package]]
1799
2164
  name = "once_cell"
1800
2165
  version = "1.21.4"
@@ -1821,9 +2186,9 @@ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1821
2186
 
1822
2187
  [[package]]
1823
2188
  name = "opentelemetry"
1824
- version = "0.31.0"
2189
+ version = "0.32.0"
1825
2190
  source = "registry+https://github.com/rust-lang/crates.io-index"
1826
- checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0"
2191
+ checksum = "b0142c63252a9e054e68a4c61a5778f7b14f576274d593f8ce883d191a099682"
1827
2192
  dependencies = [
1828
2193
  "futures-core",
1829
2194
  "futures-sink",
@@ -1834,22 +2199,22 @@ dependencies = [
1834
2199
 
1835
2200
  [[package]]
1836
2201
  name = "opentelemetry-http"
1837
- version = "0.31.0"
2202
+ version = "0.32.0"
1838
2203
  source = "registry+https://github.com/rust-lang/crates.io-index"
1839
- checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d"
2204
+ checksum = "5683015d09e2df236ef005b17f6f196f0d5f6313c4fa43a7b6a53b52776e4331"
1840
2205
  dependencies = [
1841
2206
  "async-trait",
1842
2207
  "bytes",
1843
2208
  "http",
1844
2209
  "opentelemetry",
1845
- "reqwest 0.12.28",
2210
+ "reqwest 0.13.4",
1846
2211
  ]
1847
2212
 
1848
2213
  [[package]]
1849
2214
  name = "opentelemetry-otlp"
1850
- version = "0.31.1"
2215
+ version = "0.32.0"
1851
2216
  source = "registry+https://github.com/rust-lang/crates.io-index"
1852
- checksum = "1f69cd6acbb9af919df949cd1ec9e5e7fdc2ef15d234b6b795aaa525cc02f71f"
2217
+ checksum = "9966929966d17620d7c316c643ba62631826e10021409357772d5eea84f62c35"
1853
2218
  dependencies = [
1854
2219
  "http",
1855
2220
  "opentelemetry",
@@ -1857,17 +2222,18 @@ dependencies = [
1857
2222
  "opentelemetry-proto",
1858
2223
  "opentelemetry_sdk",
1859
2224
  "prost",
1860
- "reqwest 0.12.28",
2225
+ "reqwest 0.13.4",
1861
2226
  "thiserror 2.0.18",
1862
2227
  "tokio",
1863
2228
  "tonic",
2229
+ "tonic-types",
1864
2230
  ]
1865
2231
 
1866
2232
  [[package]]
1867
2233
  name = "opentelemetry-proto"
1868
- version = "0.31.0"
2234
+ version = "0.32.0"
1869
2235
  source = "registry+https://github.com/rust-lang/crates.io-index"
1870
- checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f"
2236
+ checksum = "56d658ba1faf63f7b9c492cfbe6e0ec365440a16132d3270c1065f7b33f1b638"
1871
2237
  dependencies = [
1872
2238
  "opentelemetry",
1873
2239
  "opentelemetry_sdk",
@@ -1878,16 +2244,17 @@ dependencies = [
1878
2244
 
1879
2245
  [[package]]
1880
2246
  name = "opentelemetry_sdk"
1881
- version = "0.31.0"
2247
+ version = "0.32.1"
1882
2248
  source = "registry+https://github.com/rust-lang/crates.io-index"
1883
- checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd"
2249
+ checksum = "9b59f80e1ac4d5ff7a2db8fb6c80badb7f0f3f858211fba08dd9aaec750894f9"
1884
2250
  dependencies = [
1885
2251
  "futures-channel",
1886
2252
  "futures-executor",
1887
2253
  "futures-util",
1888
2254
  "opentelemetry",
1889
2255
  "percent-encoding",
1890
- "rand 0.9.2",
2256
+ "portable-atomic",
2257
+ "rand 0.9.4",
1891
2258
  "thiserror 2.0.18",
1892
2259
  "tokio",
1893
2260
  "tokio-stream",
@@ -1927,7 +2294,7 @@ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1927
2294
  dependencies = [
1928
2295
  "cfg-if",
1929
2296
  "libc",
1930
- "redox_syscall 0.5.18",
2297
+ "redox_syscall",
1931
2298
  "smallvec",
1932
2299
  "windows-link",
1933
2300
  ]
@@ -1960,13 +2327,23 @@ version = "2.3.2"
1960
2327
  source = "registry+https://github.com/rust-lang/crates.io-index"
1961
2328
  checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1962
2329
 
2330
+ [[package]]
2331
+ name = "petgraph"
2332
+ version = "0.6.5"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
2335
+ dependencies = [
2336
+ "fixedbitset 0.4.2",
2337
+ "indexmap",
2338
+ ]
2339
+
1963
2340
  [[package]]
1964
2341
  name = "petgraph"
1965
2342
  version = "0.8.3"
1966
2343
  source = "registry+https://github.com/rust-lang/crates.io-index"
1967
2344
  checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
1968
2345
  dependencies = [
1969
- "fixedbitset",
2346
+ "fixedbitset 0.5.7",
1970
2347
  "hashbrown 0.15.5",
1971
2348
  "indexmap",
1972
2349
  ]
@@ -1982,18 +2359,18 @@ dependencies = [
1982
2359
 
1983
2360
  [[package]]
1984
2361
  name = "pin-project"
1985
- version = "1.1.11"
2362
+ version = "1.1.13"
1986
2363
  source = "registry+https://github.com/rust-lang/crates.io-index"
1987
- checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
2364
+ checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
1988
2365
  dependencies = [
1989
2366
  "pin-project-internal",
1990
2367
  ]
1991
2368
 
1992
2369
  [[package]]
1993
2370
  name = "pin-project-internal"
1994
- version = "1.1.11"
2371
+ version = "1.1.13"
1995
2372
  source = "registry+https://github.com/rust-lang/crates.io-index"
1996
- checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
2373
+ checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
1997
2374
  dependencies = [
1998
2375
  "proc-macro2",
1999
2376
  "quote",
@@ -2006,23 +2383,11 @@ version = "0.2.17"
2006
2383
  source = "registry+https://github.com/rust-lang/crates.io-index"
2007
2384
  checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2008
2385
 
2009
- [[package]]
2010
- name = "pin-utils"
2011
- version = "0.1.0"
2012
- source = "registry+https://github.com/rust-lang/crates.io-index"
2013
- checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2014
-
2015
2386
  [[package]]
2016
2387
  name = "pkg-config"
2017
- version = "0.3.32"
2018
- source = "registry+https://github.com/rust-lang/crates.io-index"
2019
- checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2020
-
2021
- [[package]]
2022
- name = "plain"
2023
- version = "0.2.3"
2388
+ version = "0.3.33"
2024
2389
  source = "registry+https://github.com/rust-lang/crates.io-index"
2025
- checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
2390
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
2026
2391
 
2027
2392
  [[package]]
2028
2393
  name = "plotters"
@@ -2060,18 +2425,30 @@ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2060
2425
 
2061
2426
  [[package]]
2062
2427
  name = "portable-atomic-util"
2063
- version = "0.2.6"
2428
+ version = "0.2.7"
2064
2429
  source = "registry+https://github.com/rust-lang/crates.io-index"
2065
- checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
2430
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
2066
2431
  dependencies = [
2067
2432
  "portable-atomic",
2068
2433
  ]
2069
2434
 
2435
+ [[package]]
2436
+ name = "postcard"
2437
+ version = "1.1.3"
2438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
2440
+ dependencies = [
2441
+ "cobs",
2442
+ "embedded-io 0.4.0",
2443
+ "embedded-io 0.6.1",
2444
+ "serde",
2445
+ ]
2446
+
2070
2447
  [[package]]
2071
2448
  name = "potential_utf"
2072
- version = "0.1.4"
2449
+ version = "0.1.5"
2073
2450
  source = "registry+https://github.com/rust-lang/crates.io-index"
2074
- checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2451
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2075
2452
  dependencies = [
2076
2453
  "zerovec",
2077
2454
  ]
@@ -2155,9 +2532,9 @@ dependencies = [
2155
2532
 
2156
2533
  [[package]]
2157
2534
  name = "prost"
2158
- version = "0.14.3"
2535
+ version = "0.14.4"
2159
2536
  source = "registry+https://github.com/rust-lang/crates.io-index"
2160
- checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
2537
+ checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
2161
2538
  dependencies = [
2162
2539
  "bytes",
2163
2540
  "prost-derive",
@@ -2165,15 +2542,15 @@ dependencies = [
2165
2542
 
2166
2543
  [[package]]
2167
2544
  name = "prost-build"
2168
- version = "0.14.3"
2545
+ version = "0.14.4"
2169
2546
  source = "registry+https://github.com/rust-lang/crates.io-index"
2170
- checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7"
2547
+ checksum = "03da047801ff44bb6a4d407d4860c05fd70bb81714e6b2f3812603d5b145b042"
2171
2548
  dependencies = [
2172
2549
  "heck",
2173
2550
  "itertools 0.14.0",
2174
2551
  "log",
2175
2552
  "multimap",
2176
- "petgraph",
2553
+ "petgraph 0.8.3",
2177
2554
  "prettyplease",
2178
2555
  "prost",
2179
2556
  "prost-types",
@@ -2186,9 +2563,9 @@ dependencies = [
2186
2563
 
2187
2564
  [[package]]
2188
2565
  name = "prost-derive"
2189
- version = "0.14.3"
2566
+ version = "0.14.4"
2190
2567
  source = "registry+https://github.com/rust-lang/crates.io-index"
2191
- checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
2568
+ checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
2192
2569
  dependencies = [
2193
2570
  "anyhow",
2194
2571
  "itertools 0.14.0",
@@ -2199,9 +2576,9 @@ dependencies = [
2199
2576
 
2200
2577
  [[package]]
2201
2578
  name = "prost-types"
2202
- version = "0.14.3"
2579
+ version = "0.14.4"
2203
2580
  source = "registry+https://github.com/rust-lang/crates.io-index"
2204
- checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
2581
+ checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a"
2205
2582
  dependencies = [
2206
2583
  "prost",
2207
2584
  ]
@@ -2254,9 +2631,9 @@ dependencies = [
2254
2631
 
2255
2632
  [[package]]
2256
2633
  name = "pulldown-cmark"
2257
- version = "0.13.1"
2634
+ version = "0.13.4"
2258
2635
  source = "registry+https://github.com/rust-lang/crates.io-index"
2259
- checksum = "83c41efbf8f90ac44de7f3a868f0867851d261b56291732d0cbf7cceaaeb55a6"
2636
+ checksum = "e9f068eba8e7071c5f9511831b44f32c740d5adf574e990f946ddb53db2f314e"
2260
2637
  dependencies = [
2261
2638
  "bitflags",
2262
2639
  "memchr",
@@ -2272,18 +2649,41 @@ dependencies = [
2272
2649
  "pulldown-cmark",
2273
2650
  ]
2274
2651
 
2652
+ [[package]]
2653
+ name = "pulley-interpreter"
2654
+ version = "44.0.3"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "34dff5fd3d9ac4845939fcb4597cd413cb244bc530448ed4766d11b1725e53d0"
2657
+ dependencies = [
2658
+ "cranelift-bitset",
2659
+ "log",
2660
+ "pulley-macros",
2661
+ "wasmtime-internal-core",
2662
+ ]
2663
+
2664
+ [[package]]
2665
+ name = "pulley-macros"
2666
+ version = "44.0.3"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "6c60fb1c885bdb1efd7c50e8e973714de558b75a65f20c3e9a41398c652aa44b"
2669
+ dependencies = [
2670
+ "proc-macro2",
2671
+ "quote",
2672
+ "syn",
2673
+ ]
2674
+
2275
2675
  [[package]]
2276
2676
  name = "quinn"
2277
- version = "0.11.9"
2677
+ version = "0.11.11"
2278
2678
  source = "registry+https://github.com/rust-lang/crates.io-index"
2279
- checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2679
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
2280
2680
  dependencies = [
2281
2681
  "bytes",
2282
2682
  "cfg_aliases",
2283
2683
  "pin-project-lite",
2284
2684
  "quinn-proto",
2285
2685
  "quinn-udp",
2286
- "rustc-hash 2.1.1",
2686
+ "rustc-hash 2.1.3",
2287
2687
  "rustls",
2288
2688
  "socket2",
2289
2689
  "thiserror 2.0.18",
@@ -2294,17 +2694,18 @@ dependencies = [
2294
2694
 
2295
2695
  [[package]]
2296
2696
  name = "quinn-proto"
2297
- version = "0.11.14"
2697
+ version = "0.11.16"
2298
2698
  source = "registry+https://github.com/rust-lang/crates.io-index"
2299
- checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
2699
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
2300
2700
  dependencies = [
2301
2701
  "aws-lc-rs",
2302
2702
  "bytes",
2303
- "getrandom 0.3.4",
2703
+ "getrandom 0.4.3",
2304
2704
  "lru-slab",
2305
- "rand 0.9.2",
2705
+ "rand 0.10.2",
2706
+ "rand_pcg",
2306
2707
  "ring",
2307
- "rustc-hash 2.1.1",
2708
+ "rustc-hash 2.1.3",
2308
2709
  "rustls",
2309
2710
  "rustls-pki-types",
2310
2711
  "slab",
@@ -2316,23 +2717,23 @@ dependencies = [
2316
2717
 
2317
2718
  [[package]]
2318
2719
  name = "quinn-udp"
2319
- version = "0.5.14"
2720
+ version = "0.5.15"
2320
2721
  source = "registry+https://github.com/rust-lang/crates.io-index"
2321
- checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2722
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
2322
2723
  dependencies = [
2323
2724
  "cfg_aliases",
2324
2725
  "libc",
2325
2726
  "once_cell",
2326
2727
  "socket2",
2327
2728
  "tracing",
2328
- "windows-sys 0.60.2",
2729
+ "windows-sys 0.61.2",
2329
2730
  ]
2330
2731
 
2331
2732
  [[package]]
2332
2733
  name = "quote"
2333
- version = "1.0.45"
2734
+ version = "1.0.46"
2334
2735
  source = "registry+https://github.com/rust-lang/crates.io-index"
2335
- checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2736
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
2336
2737
  dependencies = [
2337
2738
  "proc-macro2",
2338
2739
  ]
@@ -2362,9 +2763,9 @@ dependencies = [
2362
2763
 
2363
2764
  [[package]]
2364
2765
  name = "rand"
2365
- version = "0.9.2"
2766
+ version = "0.9.4"
2366
2767
  source = "registry+https://github.com/rust-lang/crates.io-index"
2367
- checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2768
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2368
2769
  dependencies = [
2369
2770
  "rand_chacha 0.9.0",
2370
2771
  "rand_core 0.9.5",
@@ -2372,13 +2773,13 @@ dependencies = [
2372
2773
 
2373
2774
  [[package]]
2374
2775
  name = "rand"
2375
- version = "0.10.0"
2776
+ version = "0.10.2"
2376
2777
  source = "registry+https://github.com/rust-lang/crates.io-index"
2377
- checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
2778
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
2378
2779
  dependencies = [
2379
2780
  "chacha20",
2380
- "getrandom 0.4.2",
2381
- "rand_core 0.10.0",
2781
+ "getrandom 0.4.3",
2782
+ "rand_core 0.10.1",
2382
2783
  ]
2383
2784
 
2384
2785
  [[package]]
@@ -2421,15 +2822,24 @@ dependencies = [
2421
2822
 
2422
2823
  [[package]]
2423
2824
  name = "rand_core"
2424
- version = "0.10.0"
2825
+ version = "0.10.1"
2425
2826
  source = "registry+https://github.com/rust-lang/crates.io-index"
2426
- checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
2827
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2828
+
2829
+ [[package]]
2830
+ name = "rand_pcg"
2831
+ version = "0.10.2"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
2834
+ dependencies = [
2835
+ "rand_core 0.10.1",
2836
+ ]
2427
2837
 
2428
2838
  [[package]]
2429
2839
  name = "rayon"
2430
- version = "1.11.0"
2840
+ version = "1.12.0"
2431
2841
  source = "registry+https://github.com/rust-lang/crates.io-index"
2432
- checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2842
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2433
2843
  dependencies = [
2434
2844
  "either",
2435
2845
  "rayon-core",
@@ -2447,18 +2857,18 @@ dependencies = [
2447
2857
 
2448
2858
  [[package]]
2449
2859
  name = "rb-sys"
2450
- version = "0.9.124"
2860
+ version = "0.9.128"
2451
2861
  source = "registry+https://github.com/rust-lang/crates.io-index"
2452
- checksum = "c85c4188462601e2aa1469def389c17228566f82ea72f137ed096f21591bc489"
2862
+ checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
2453
2863
  dependencies = [
2454
2864
  "rb-sys-build",
2455
2865
  ]
2456
2866
 
2457
2867
  [[package]]
2458
2868
  name = "rb-sys-build"
2459
- version = "0.9.124"
2869
+ version = "0.9.128"
2460
2870
  source = "registry+https://github.com/rust-lang/crates.io-index"
2461
- checksum = "568068db4102230882e6d4ae8de6632e224ca75fe5970f6e026a04e91ed635d3"
2871
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
2462
2872
  dependencies = [
2463
2873
  "bindgen",
2464
2874
  "lazy_static",
@@ -2485,12 +2895,14 @@ dependencies = [
2485
2895
  ]
2486
2896
 
2487
2897
  [[package]]
2488
- name = "redox_syscall"
2489
- version = "0.7.3"
2898
+ name = "redox_users"
2899
+ version = "0.4.6"
2490
2900
  source = "registry+https://github.com/rust-lang/crates.io-index"
2491
- checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16"
2901
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2492
2902
  dependencies = [
2493
- "bitflags",
2903
+ "getrandom 0.2.17",
2904
+ "libredox",
2905
+ "thiserror 1.0.69",
2494
2906
  ]
2495
2907
 
2496
2908
  [[package]]
@@ -2504,11 +2916,25 @@ dependencies = [
2504
2916
  "thiserror 2.0.18",
2505
2917
  ]
2506
2918
 
2919
+ [[package]]
2920
+ name = "regalloc2"
2921
+ version = "0.15.1"
2922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2923
+ checksum = "de2c52737737f8609e94f975dee22854a2d5c125772d4b1cf292120f4d45c186"
2924
+ dependencies = [
2925
+ "allocator-api2",
2926
+ "bumpalo",
2927
+ "hashbrown 0.17.1",
2928
+ "log",
2929
+ "rustc-hash 2.1.3",
2930
+ "smallvec",
2931
+ ]
2932
+
2507
2933
  [[package]]
2508
2934
  name = "regex"
2509
- version = "1.12.3"
2935
+ version = "1.12.4"
2510
2936
  source = "registry+https://github.com/rust-lang/crates.io-index"
2511
- checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2937
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
2512
2938
  dependencies = [
2513
2939
  "aho-corasick",
2514
2940
  "memchr",
@@ -2529,9 +2955,9 @@ dependencies = [
2529
2955
 
2530
2956
  [[package]]
2531
2957
  name = "regex-syntax"
2532
- version = "0.8.10"
2958
+ version = "0.8.11"
2533
2959
  source = "registry+https://github.com/rust-lang/crates.io-index"
2534
- checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2960
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
2535
2961
 
2536
2962
  [[package]]
2537
2963
  name = "relative-path"
@@ -2547,9 +2973,7 @@ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2547
2973
  dependencies = [
2548
2974
  "base64",
2549
2975
  "bytes",
2550
- "futures-channel",
2551
2976
  "futures-core",
2552
- "futures-util",
2553
2977
  "http",
2554
2978
  "http-body",
2555
2979
  "http-body-util",
@@ -2560,7 +2984,6 @@ dependencies = [
2560
2984
  "log",
2561
2985
  "percent-encoding",
2562
2986
  "pin-project-lite",
2563
- "quinn",
2564
2987
  "rustls",
2565
2988
  "rustls-native-certs",
2566
2989
  "rustls-pki-types",
@@ -2581,12 +3004,13 @@ dependencies = [
2581
3004
 
2582
3005
  [[package]]
2583
3006
  name = "reqwest"
2584
- version = "0.13.2"
3007
+ version = "0.13.4"
2585
3008
  source = "registry+https://github.com/rust-lang/crates.io-index"
2586
- checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
3009
+ checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
2587
3010
  dependencies = [
2588
3011
  "base64",
2589
3012
  "bytes",
3013
+ "futures-channel",
2590
3014
  "futures-core",
2591
3015
  "futures-util",
2592
3016
  "http",
@@ -2630,15 +3054,15 @@ dependencies = [
2630
3054
  "cfg-if",
2631
3055
  "getrandom 0.2.17",
2632
3056
  "libc",
2633
- "untrusted",
3057
+ "untrusted 0.9.0",
2634
3058
  "windows-sys 0.52.0",
2635
3059
  ]
2636
3060
 
2637
3061
  [[package]]
2638
3062
  name = "ringbuf"
2639
- version = "0.4.8"
3063
+ version = "0.5.0"
2640
3064
  source = "registry+https://github.com/rust-lang/crates.io-index"
2641
- checksum = "fe47b720588c8702e34b5979cb3271a8b1842c7cb6f57408efa70c779363488c"
3065
+ checksum = "2d3ecbcab081b935fb9c618b07654924f27686b4aac8818e700580a83eedcb7f"
2642
3066
  dependencies = [
2643
3067
  "crossbeam-utils",
2644
3068
  "portable-atomic",
@@ -2676,9 +3100,9 @@ dependencies = [
2676
3100
 
2677
3101
  [[package]]
2678
3102
  name = "rustc-demangle"
2679
- version = "0.1.27"
3103
+ version = "0.1.28"
2680
3104
  source = "registry+https://github.com/rust-lang/crates.io-index"
2681
- checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
3105
+ checksum = "b74b56ffa8bb2830709a538c2cbcae9aa062db0d2a42563bfb09bdaae44020eb"
2682
3106
 
2683
3107
  [[package]]
2684
3108
  name = "rustc-hash"
@@ -2688,9 +3112,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2688
3112
 
2689
3113
  [[package]]
2690
3114
  name = "rustc-hash"
2691
- version = "2.1.1"
3115
+ version = "2.1.3"
2692
3116
  source = "registry+https://github.com/rust-lang/crates.io-index"
2693
- checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
3117
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
2694
3118
 
2695
3119
  [[package]]
2696
3120
  name = "rustc_version"
@@ -2721,14 +3145,14 @@ dependencies = [
2721
3145
  "errno",
2722
3146
  "libc",
2723
3147
  "linux-raw-sys",
2724
- "windows-sys 0.60.2",
3148
+ "windows-sys 0.61.2",
2725
3149
  ]
2726
3150
 
2727
3151
  [[package]]
2728
3152
  name = "rustls"
2729
- version = "0.23.37"
3153
+ version = "0.23.41"
2730
3154
  source = "registry+https://github.com/rust-lang/crates.io-index"
2731
- checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
3155
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
2732
3156
  dependencies = [
2733
3157
  "aws-lc-rs",
2734
3158
  "log",
@@ -2742,9 +3166,9 @@ dependencies = [
2742
3166
 
2743
3167
  [[package]]
2744
3168
  name = "rustls-native-certs"
2745
- version = "0.8.3"
3169
+ version = "0.8.4"
2746
3170
  source = "registry+https://github.com/rust-lang/crates.io-index"
2747
- checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
3171
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
2748
3172
  dependencies = [
2749
3173
  "openssl-probe",
2750
3174
  "rustls-pki-types",
@@ -2754,9 +3178,9 @@ dependencies = [
2754
3178
 
2755
3179
  [[package]]
2756
3180
  name = "rustls-pki-types"
2757
- version = "1.14.0"
3181
+ version = "1.15.0"
2758
3182
  source = "registry+https://github.com/rust-lang/crates.io-index"
2759
- checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
3183
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
2760
3184
  dependencies = [
2761
3185
  "web-time",
2762
3186
  "zeroize",
@@ -2764,9 +3188,9 @@ dependencies = [
2764
3188
 
2765
3189
  [[package]]
2766
3190
  name = "rustls-platform-verifier"
2767
- version = "0.6.2"
3191
+ version = "0.7.0"
2768
3192
  source = "registry+https://github.com/rust-lang/crates.io-index"
2769
- checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
3193
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
2770
3194
  dependencies = [
2771
3195
  "core-foundation",
2772
3196
  "core-foundation-sys",
@@ -2780,7 +3204,7 @@ dependencies = [
2780
3204
  "security-framework",
2781
3205
  "security-framework-sys",
2782
3206
  "webpki-root-certs",
2783
- "windows-sys 0.60.2",
3207
+ "windows-sys 0.61.2",
2784
3208
  ]
2785
3209
 
2786
3210
  [[package]]
@@ -2798,14 +3222,14 @@ dependencies = [
2798
3222
  "aws-lc-rs",
2799
3223
  "ring",
2800
3224
  "rustls-pki-types",
2801
- "untrusted",
3225
+ "untrusted 0.9.0",
2802
3226
  ]
2803
3227
 
2804
3228
  [[package]]
2805
3229
  name = "rustversion"
2806
- version = "1.0.22"
3230
+ version = "1.0.23"
2807
3231
  source = "registry+https://github.com/rust-lang/crates.io-index"
2808
- checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3232
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
2809
3233
 
2810
3234
  [[package]]
2811
3235
  name = "ryu"
@@ -2862,9 +3286,13 @@ dependencies = [
2862
3286
 
2863
3287
  [[package]]
2864
3288
  name = "semver"
2865
- version = "1.0.27"
3289
+ version = "1.0.28"
2866
3290
  source = "registry+https://github.com/rust-lang/crates.io-index"
2867
- checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
3291
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
3292
+ dependencies = [
3293
+ "serde",
3294
+ "serde_core",
3295
+ ]
2868
3296
 
2869
3297
  [[package]]
2870
3298
  name = "seq-macro"
@@ -2904,9 +3332,9 @@ dependencies = [
2904
3332
 
2905
3333
  [[package]]
2906
3334
  name = "serde_json"
2907
- version = "1.0.149"
3335
+ version = "1.0.150"
2908
3336
  source = "registry+https://github.com/rust-lang/crates.io-index"
2909
- checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
3337
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2910
3338
  dependencies = [
2911
3339
  "itoa",
2912
3340
  "memchr",
@@ -2917,9 +3345,9 @@ dependencies = [
2917
3345
 
2918
3346
  [[package]]
2919
3347
  name = "serde_spanned"
2920
- version = "1.0.4"
3348
+ version = "1.1.1"
2921
3349
  source = "registry+https://github.com/rust-lang/crates.io-index"
2922
- checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
3350
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
2923
3351
  dependencies = [
2924
3352
  "serde_core",
2925
3353
  ]
@@ -2936,6 +3364,17 @@ dependencies = [
2936
3364
  "serde",
2937
3365
  ]
2938
3366
 
3367
+ [[package]]
3368
+ name = "sha2"
3369
+ version = "0.10.9"
3370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3371
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3372
+ dependencies = [
3373
+ "cfg-if",
3374
+ "cpufeatures 0.2.17",
3375
+ "digest",
3376
+ ]
3377
+
2939
3378
  [[package]]
2940
3379
  name = "sharded-slab"
2941
3380
  version = "0.1.7"
@@ -2957,6 +3396,12 @@ version = "1.3.0"
2957
3396
  source = "registry+https://github.com/rust-lang/crates.io-index"
2958
3397
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2959
3398
 
3399
+ [[package]]
3400
+ name = "shlex"
3401
+ version = "2.0.1"
3402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3403
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
3404
+
2960
3405
  [[package]]
2961
3406
  name = "signal-hook-registry"
2962
3407
  version = "1.4.8"
@@ -2969,15 +3414,31 @@ dependencies = [
2969
3414
 
2970
3415
  [[package]]
2971
3416
  name = "simd-adler32"
2972
- version = "0.3.8"
3417
+ version = "0.3.9"
3418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3419
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
3420
+
3421
+ [[package]]
3422
+ name = "simd_cesu8"
3423
+ version = "1.1.1"
3424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3425
+ checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
3426
+ dependencies = [
3427
+ "rustc_version",
3428
+ "simdutf8",
3429
+ ]
3430
+
3431
+ [[package]]
3432
+ name = "simdutf8"
3433
+ version = "0.1.5"
2973
3434
  source = "registry+https://github.com/rust-lang/crates.io-index"
2974
- checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
3435
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2975
3436
 
2976
3437
  [[package]]
2977
3438
  name = "siphasher"
2978
- version = "1.0.2"
3439
+ version = "1.0.3"
2979
3440
  source = "registry+https://github.com/rust-lang/crates.io-index"
2980
- checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
3441
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2981
3442
 
2982
3443
  [[package]]
2983
3444
  name = "slab"
@@ -2996,18 +3457,21 @@ dependencies = [
2996
3457
 
2997
3458
  [[package]]
2998
3459
  name = "smallvec"
2999
- version = "1.15.1"
3460
+ version = "1.15.2"
3000
3461
  source = "registry+https://github.com/rust-lang/crates.io-index"
3001
- checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3462
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
3463
+ dependencies = [
3464
+ "serde",
3465
+ ]
3002
3466
 
3003
3467
  [[package]]
3004
3468
  name = "socket2"
3005
- version = "0.6.3"
3469
+ version = "0.6.4"
3006
3470
  source = "registry+https://github.com/rust-lang/crates.io-index"
3007
- checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
3471
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
3008
3472
  dependencies = [
3009
3473
  "libc",
3010
- "windows-sys 0.60.2",
3474
+ "windows-sys 0.61.2",
3011
3475
  ]
3012
3476
 
3013
3477
  [[package]]
@@ -3030,9 +3494,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3030
3494
 
3031
3495
  [[package]]
3032
3496
  name = "syn"
3033
- version = "2.0.117"
3497
+ version = "2.0.118"
3034
3498
  source = "registry+https://github.com/rust-lang/crates.io-index"
3035
- checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3499
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
3036
3500
  dependencies = [
3037
3501
  "proc-macro2",
3038
3502
  "quote",
@@ -3075,15 +3539,21 @@ dependencies = [
3075
3539
 
3076
3540
  [[package]]
3077
3541
  name = "tar"
3078
- version = "0.4.45"
3542
+ version = "0.4.46"
3079
3543
  source = "registry+https://github.com/rust-lang/crates.io-index"
3080
- checksum = "22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973"
3544
+ checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
3081
3545
  dependencies = [
3082
3546
  "filetime",
3083
3547
  "libc",
3084
3548
  "xattr",
3085
3549
  ]
3086
3550
 
3551
+ [[package]]
3552
+ name = "target-lexicon"
3553
+ version = "0.13.5"
3554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3555
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3556
+
3087
3557
  [[package]]
3088
3558
  name = "target-triple"
3089
3559
  version = "1.0.0"
@@ -3097,15 +3567,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3097
3567
  checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3098
3568
  dependencies = [
3099
3569
  "fastrand",
3100
- "getrandom 0.4.2",
3570
+ "getrandom 0.4.3",
3101
3571
  "once_cell",
3102
3572
  "rustix",
3103
- "windows-sys 0.60.2",
3573
+ "windows-sys 0.61.2",
3104
3574
  ]
3105
3575
 
3106
3576
  [[package]]
3107
3577
  name = "temporalio-client"
3108
- version = "0.3.0"
3578
+ version = "0.5.0"
3109
3579
  dependencies = [
3110
3580
  "anyhow",
3111
3581
  "assert_matches",
@@ -3127,12 +3597,13 @@ dependencies = [
3127
3597
  "parking_lot",
3128
3598
  "prost",
3129
3599
  "prost-wkt-types",
3130
- "rand 0.10.0",
3600
+ "rand 0.10.2",
3131
3601
  "rstest",
3132
3602
  "tempfile",
3133
3603
  "temporalio-common",
3134
3604
  "thiserror 2.0.18",
3135
3605
  "tokio",
3606
+ "tokio-rustls",
3136
3607
  "tonic",
3137
3608
  "tower",
3138
3609
  "tracing",
@@ -3142,11 +3613,10 @@ dependencies = [
3142
3613
 
3143
3614
  [[package]]
3144
3615
  name = "temporalio-common"
3145
- version = "0.3.0"
3616
+ version = "0.5.0"
3146
3617
  dependencies = [
3147
3618
  "anyhow",
3148
3619
  "async-trait",
3149
- "base64",
3150
3620
  "bon",
3151
3621
  "crc32fast",
3152
3622
  "derive_more",
@@ -3162,24 +3632,21 @@ dependencies = [
3162
3632
  "opentelemetry-otlp",
3163
3633
  "opentelemetry_sdk",
3164
3634
  "parking_lot",
3165
- "pbjson",
3166
- "pbjson-build",
3167
3635
  "prometheus",
3168
3636
  "prost",
3169
3637
  "prost-types",
3170
- "prost-wkt",
3171
- "prost-wkt-types",
3172
- "rand 0.10.0",
3638
+ "reqwest 0.12.28",
3173
3639
  "ringbuf",
3640
+ "rstest",
3174
3641
  "serde",
3175
3642
  "serde_json",
3176
3643
  "tempfile",
3644
+ "temporalio-common-wasm",
3645
+ "temporalio-protos",
3177
3646
  "thiserror 2.0.18",
3178
3647
  "tokio",
3179
- "toml",
3648
+ "toml 1.1.2+spec-1.1.0",
3180
3649
  "tonic",
3181
- "tonic-prost",
3182
- "tonic-prost-build",
3183
3650
  "tracing",
3184
3651
  "tracing-core",
3185
3652
  "tracing-subscriber",
@@ -3188,47 +3655,100 @@ dependencies = [
3188
3655
  ]
3189
3656
 
3190
3657
  [[package]]
3191
- name = "temporalio-macros"
3192
- version = "0.3.0"
3193
- dependencies = [
3194
- "derive_more",
3195
- "proc-macro2",
3196
- "quote",
3197
- "syn",
3198
- "temporalio-common",
3199
- ]
3200
-
3201
- [[package]]
3202
- name = "temporalio-sdk"
3203
- version = "0.3.0"
3658
+ name = "temporalio-common-wasm"
3659
+ version = "0.5.0"
3204
3660
  dependencies = [
3205
3661
  "anyhow",
3206
3662
  "async-trait",
3207
3663
  "bon",
3664
+ "chrono",
3665
+ "crc32fast",
3208
3666
  "derive_more",
3667
+ "erased-serde",
3209
3668
  "futures",
3210
3669
  "futures-util",
3211
- "gethostname",
3212
3670
  "parking_lot",
3671
+ "prost",
3213
3672
  "prost-wkt-types",
3214
3673
  "rstest",
3215
3674
  "serde",
3216
3675
  "serde_json",
3217
- "temporalio-client",
3218
- "temporalio-common",
3219
- "temporalio-macros",
3220
- "temporalio-sdk-core",
3676
+ "tempfile",
3677
+ "temporalio-protos",
3221
3678
  "thiserror 2.0.18",
3222
3679
  "tokio",
3223
- "tokio-stream",
3680
+ "tracing",
3681
+ "tracing-core",
3682
+ "tracing-subscriber",
3683
+ "url",
3684
+ ]
3685
+
3686
+ [[package]]
3687
+ name = "temporalio-macros"
3688
+ version = "0.5.0"
3689
+ dependencies = [
3690
+ "derive_more",
3691
+ "proc-macro2",
3692
+ "quote",
3693
+ "syn",
3694
+ "temporalio-common",
3695
+ ]
3696
+
3697
+ [[package]]
3698
+ name = "temporalio-protos"
3699
+ version = "0.5.0"
3700
+ dependencies = [
3701
+ "anyhow",
3702
+ "base64",
3703
+ "derive_more",
3704
+ "http",
3705
+ "pbjson",
3706
+ "pbjson-build",
3707
+ "prost",
3708
+ "prost-types",
3709
+ "prost-wkt-types",
3710
+ "serde",
3711
+ "serde_json",
3712
+ "thiserror 2.0.18",
3713
+ "tonic",
3714
+ "tonic-prost",
3715
+ "tonic-prost-build",
3716
+ ]
3717
+
3718
+ [[package]]
3719
+ name = "temporalio-sdk"
3720
+ version = "0.5.0"
3721
+ dependencies = [
3722
+ "anyhow",
3723
+ "async-trait",
3724
+ "bon",
3725
+ "derive_more",
3726
+ "futures",
3727
+ "futures-util",
3728
+ "gethostname",
3729
+ "parking_lot",
3730
+ "prost",
3731
+ "prost-wkt-types",
3732
+ "rstest",
3733
+ "serde",
3734
+ "serde_json",
3735
+ "temporalio-client",
3736
+ "temporalio-common",
3737
+ "temporalio-macros",
3738
+ "temporalio-sdk-core",
3739
+ "temporalio-workflow",
3740
+ "thiserror 2.0.18",
3741
+ "tokio",
3742
+ "tokio-stream",
3224
3743
  "tokio-util",
3225
3744
  "tracing",
3226
3745
  "uuid",
3746
+ "wasmtime",
3227
3747
  ]
3228
3748
 
3229
3749
  [[package]]
3230
3750
  name = "temporalio-sdk-core"
3231
- version = "0.3.0"
3751
+ version = "0.5.0"
3232
3752
  dependencies = [
3233
3753
  "antithesis_sdk",
3234
3754
  "anyhow",
@@ -3264,8 +3784,8 @@ dependencies = [
3264
3784
  "pin-project",
3265
3785
  "prost",
3266
3786
  "prost-wkt-types",
3267
- "rand 0.10.0",
3268
- "reqwest 0.13.2",
3787
+ "rand 0.10.2",
3788
+ "reqwest 0.13.4",
3269
3789
  "rstest",
3270
3790
  "semver",
3271
3791
  "serde",
@@ -3278,6 +3798,7 @@ dependencies = [
3278
3798
  "temporalio-common",
3279
3799
  "temporalio-macros",
3280
3800
  "temporalio-sdk",
3801
+ "temporalio-workflow",
3281
3802
  "thiserror 2.0.18",
3282
3803
  "tokio",
3283
3804
  "tokio-stream",
@@ -3291,11 +3812,30 @@ dependencies = [
3291
3812
  "zip",
3292
3813
  ]
3293
3814
 
3815
+ [[package]]
3816
+ name = "temporalio-workflow"
3817
+ version = "0.5.0"
3818
+ dependencies = [
3819
+ "anyhow",
3820
+ "bon",
3821
+ "derive_more",
3822
+ "futures-channel",
3823
+ "futures-util",
3824
+ "prost",
3825
+ "prost-wkt-types",
3826
+ "serde",
3827
+ "temporalio-common-wasm",
3828
+ "temporalio-macros",
3829
+ "thiserror 2.0.18",
3830
+ "wit-bindgen",
3831
+ ]
3832
+
3294
3833
  [[package]]
3295
3834
  name = "temporalio_bridge"
3296
3835
  version = "0.1.0"
3297
3836
  dependencies = [
3298
3837
  "async-trait",
3838
+ "aws-lc-rs",
3299
3839
  "dhat",
3300
3840
  "futures",
3301
3841
  "log",
@@ -3386,9 +3926,9 @@ dependencies = [
3386
3926
 
3387
3927
  [[package]]
3388
3928
  name = "tinystr"
3389
- version = "0.8.2"
3929
+ version = "0.8.3"
3390
3930
  source = "registry+https://github.com/rust-lang/crates.io-index"
3391
- checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3931
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3392
3932
  dependencies = [
3393
3933
  "displaydoc",
3394
3934
  "zerovec",
@@ -3421,9 +3961,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3421
3961
 
3422
3962
  [[package]]
3423
3963
  name = "tokio"
3424
- version = "1.50.0"
3964
+ version = "1.52.3"
3425
3965
  source = "registry+https://github.com/rust-lang/crates.io-index"
3426
- checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
3966
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
3427
3967
  dependencies = [
3428
3968
  "bytes",
3429
3969
  "libc",
@@ -3438,9 +3978,9 @@ dependencies = [
3438
3978
 
3439
3979
  [[package]]
3440
3980
  name = "tokio-macros"
3441
- version = "2.6.1"
3981
+ version = "2.7.0"
3442
3982
  source = "registry+https://github.com/rust-lang/crates.io-index"
3443
- checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
3983
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
3444
3984
  dependencies = [
3445
3985
  "proc-macro2",
3446
3986
  "quote",
@@ -3483,54 +4023,78 @@ dependencies = [
3483
4023
 
3484
4024
  [[package]]
3485
4025
  name = "toml"
3486
- version = "1.0.7+spec-1.1.0"
4026
+ version = "0.9.12+spec-1.1.0"
4027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4028
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
4029
+ dependencies = [
4030
+ "indexmap",
4031
+ "serde_core",
4032
+ "serde_spanned",
4033
+ "toml_datetime 0.7.5+spec-1.1.0",
4034
+ "toml_parser",
4035
+ "toml_writer",
4036
+ "winnow 0.7.15",
4037
+ ]
4038
+
4039
+ [[package]]
4040
+ name = "toml"
4041
+ version = "1.1.2+spec-1.1.0"
3487
4042
  source = "registry+https://github.com/rust-lang/crates.io-index"
3488
- checksum = "dd28d57d8a6f6e458bc0b8784f8fdcc4b99a437936056fa122cb234f18656a96"
4043
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
3489
4044
  dependencies = [
3490
4045
  "indexmap",
3491
4046
  "serde_core",
3492
4047
  "serde_spanned",
3493
- "toml_datetime",
4048
+ "toml_datetime 1.1.1+spec-1.1.0",
3494
4049
  "toml_parser",
3495
4050
  "toml_writer",
3496
- "winnow",
4051
+ "winnow 1.0.3",
3497
4052
  ]
3498
4053
 
3499
4054
  [[package]]
3500
4055
  name = "toml_datetime"
3501
- version = "1.0.1+spec-1.1.0"
4056
+ version = "0.7.5+spec-1.1.0"
3502
4057
  source = "registry+https://github.com/rust-lang/crates.io-index"
3503
- checksum = "9b320e741db58cac564e26c607d3cc1fdc4a88fd36c879568c07856ed83ff3e9"
4058
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
4059
+ dependencies = [
4060
+ "serde_core",
4061
+ ]
4062
+
4063
+ [[package]]
4064
+ name = "toml_datetime"
4065
+ version = "1.1.1+spec-1.1.0"
4066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4067
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
3504
4068
  dependencies = [
3505
4069
  "serde_core",
3506
4070
  ]
3507
4071
 
3508
4072
  [[package]]
3509
4073
  name = "toml_edit"
3510
- version = "0.25.5+spec-1.1.0"
4074
+ version = "0.25.12+spec-1.1.0"
3511
4075
  source = "registry+https://github.com/rust-lang/crates.io-index"
3512
- checksum = "8ca1a40644a28bce036923f6a431df0b34236949d111cc07cb6dca830c9ef2e1"
4076
+ checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7"
3513
4077
  dependencies = [
3514
4078
  "indexmap",
3515
- "toml_datetime",
4079
+ "toml_datetime 1.1.1+spec-1.1.0",
3516
4080
  "toml_parser",
3517
- "winnow",
4081
+ "winnow 1.0.3",
3518
4082
  ]
3519
4083
 
3520
4084
  [[package]]
3521
4085
  name = "toml_parser"
3522
- version = "1.0.10+spec-1.1.0"
4086
+ version = "1.1.2+spec-1.1.0"
3523
4087
  source = "registry+https://github.com/rust-lang/crates.io-index"
3524
- checksum = "7df25b4befd31c4816df190124375d5a20c6b6921e2cad937316de3fccd63420"
4088
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
3525
4089
  dependencies = [
3526
- "winnow",
4090
+ "winnow 1.0.3",
3527
4091
  ]
3528
4092
 
3529
4093
  [[package]]
3530
4094
  name = "toml_writer"
3531
- version = "1.0.7+spec-1.1.0"
4095
+ version = "1.1.1+spec-1.1.0"
3532
4096
  source = "registry+https://github.com/rust-lang/crates.io-index"
3533
- checksum = "f17aaa1c6e3dc22b1da4b6bba97d066e354c7945cac2f7852d4e4e7ca7a6b56d"
4097
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
3534
4098
 
3535
4099
  [[package]]
3536
4100
  name = "tonic"
@@ -3542,6 +4106,7 @@ dependencies = [
3542
4106
  "axum",
3543
4107
  "base64",
3544
4108
  "bytes",
4109
+ "flate2",
3545
4110
  "h2",
3546
4111
  "http",
3547
4112
  "http-body",
@@ -3565,9 +4130,9 @@ dependencies = [
3565
4130
 
3566
4131
  [[package]]
3567
4132
  name = "tonic-build"
3568
- version = "0.14.5"
4133
+ version = "0.14.6"
3569
4134
  source = "registry+https://github.com/rust-lang/crates.io-index"
3570
- checksum = "1882ac3bf5ef12877d7ed57aad87e75154c11931c2ba7e6cde5e22d63522c734"
4135
+ checksum = "c68f61875ac5293cf72e6c8cf0158086428c82c37229e98c840878f1706b0322"
3571
4136
  dependencies = [
3572
4137
  "prettyplease",
3573
4138
  "proc-macro2",
@@ -3577,9 +4142,9 @@ dependencies = [
3577
4142
 
3578
4143
  [[package]]
3579
4144
  name = "tonic-prost"
3580
- version = "0.14.5"
4145
+ version = "0.14.6"
3581
4146
  source = "registry+https://github.com/rust-lang/crates.io-index"
3582
- checksum = "a55376a0bbaa4975a3f10d009ad763d8f4108f067c7c2e74f3001fb49778d309"
4147
+ checksum = "50849f68853be452acf590cde0b146665b8d507b3b8af17261df47e02c209ea0"
3583
4148
  dependencies = [
3584
4149
  "bytes",
3585
4150
  "prost",
@@ -3588,9 +4153,9 @@ dependencies = [
3588
4153
 
3589
4154
  [[package]]
3590
4155
  name = "tonic-prost-build"
3591
- version = "0.14.5"
4156
+ version = "0.14.6"
3592
4157
  source = "registry+https://github.com/rust-lang/crates.io-index"
3593
- checksum = "f3144df636917574672e93d0f56d7edec49f90305749c668df5101751bb8f95a"
4158
+ checksum = "654e5643eff75d7f8c99197ce1440ed19a3474eada74c12bbac488b2cafdae27"
3594
4159
  dependencies = [
3595
4160
  "prettyplease",
3596
4161
  "proc-macro2",
@@ -3602,6 +4167,17 @@ dependencies = [
3602
4167
  "tonic-build",
3603
4168
  ]
3604
4169
 
4170
+ [[package]]
4171
+ name = "tonic-types"
4172
+ version = "0.14.6"
4173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4174
+ checksum = "73ab1b02061f83d519bba3caa167f88f261ef05720ab8ebc954ade70de3348e8"
4175
+ dependencies = [
4176
+ "prost",
4177
+ "prost-types",
4178
+ "tonic",
4179
+ ]
4180
+
3605
4181
  [[package]]
3606
4182
  name = "tower"
3607
4183
  version = "0.5.3"
@@ -3623,20 +4199,20 @@ dependencies = [
3623
4199
 
3624
4200
  [[package]]
3625
4201
  name = "tower-http"
3626
- version = "0.6.8"
4202
+ version = "0.6.11"
3627
4203
  source = "registry+https://github.com/rust-lang/crates.io-index"
3628
- checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
4204
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
3629
4205
  dependencies = [
3630
4206
  "bitflags",
3631
4207
  "bytes",
3632
4208
  "futures-util",
3633
4209
  "http",
3634
4210
  "http-body",
3635
- "iri-string",
3636
4211
  "pin-project-lite",
3637
4212
  "tower",
3638
4213
  "tower-layer",
3639
4214
  "tower-service",
4215
+ "url",
3640
4216
  ]
3641
4217
 
3642
4218
  [[package]]
@@ -3708,9 +4284,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3708
4284
 
3709
4285
  [[package]]
3710
4286
  name = "trybuild"
3711
- version = "1.0.116"
4287
+ version = "1.0.117"
3712
4288
  source = "registry+https://github.com/rust-lang/crates.io-index"
3713
- checksum = "47c635f0191bd3a2941013e5062667100969f8c4e9cd787c14f977265d73616e"
4289
+ checksum = "0710d4dfbeae4f9c390baa784c49858a7468fa433f3fe5d0ec5ebef651cf59f9"
3714
4290
  dependencies = [
3715
4291
  "dissimilar",
3716
4292
  "glob",
@@ -3719,7 +4295,7 @@ dependencies = [
3719
4295
  "serde_json",
3720
4296
  "target-triple",
3721
4297
  "termcolor",
3722
- "toml",
4298
+ "toml 1.1.2+spec-1.1.0",
3723
4299
  ]
3724
4300
 
3725
4301
  [[package]]
@@ -3734,11 +4310,17 @@ version = "1.0.3"
3734
4310
  source = "registry+https://github.com/rust-lang/crates.io-index"
3735
4311
  checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
3736
4312
 
4313
+ [[package]]
4314
+ name = "typenum"
4315
+ version = "1.20.1"
4316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4317
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
4318
+
3737
4319
  [[package]]
3738
4320
  name = "typetag"
3739
- version = "0.2.21"
4321
+ version = "0.2.22"
3740
4322
  source = "registry+https://github.com/rust-lang/crates.io-index"
3741
- checksum = "be2212c8a9b9bcfca32024de14998494cf9a5dfa59ea1b829de98bac374b86bf"
4323
+ checksum = "c5a897b12c6c1151ad0b138b8db50252dc301f93bc3b027db05eec82aeed298c"
3742
4324
  dependencies = [
3743
4325
  "erased-serde",
3744
4326
  "inventory",
@@ -3749,9 +4331,9 @@ dependencies = [
3749
4331
 
3750
4332
  [[package]]
3751
4333
  name = "typetag-impl"
3752
- version = "0.2.21"
4334
+ version = "0.2.22"
3753
4335
  source = "registry+https://github.com/rust-lang/crates.io-index"
3754
- checksum = "27a7a9b72ba121f6f1f6c3632b85604cac41aedb5ddc70accbebb6cac83de846"
4336
+ checksum = "cf808357c6ed7e13ba0f3277ec8d8f21b2d501274895104263985330c726c1c5"
3755
4337
  dependencies = [
3756
4338
  "proc-macro2",
3757
4339
  "quote",
@@ -3772,9 +4354,15 @@ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3772
4354
 
3773
4355
  [[package]]
3774
4356
  name = "unicode-segmentation"
3775
- version = "1.12.0"
4357
+ version = "1.13.3"
3776
4358
  source = "registry+https://github.com/rust-lang/crates.io-index"
3777
- checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
4359
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
4360
+
4361
+ [[package]]
4362
+ name = "unicode-width"
4363
+ version = "0.2.2"
4364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4365
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3778
4366
 
3779
4367
  [[package]]
3780
4368
  name = "unicode-xid"
@@ -3782,6 +4370,12 @@ version = "0.2.6"
3782
4370
  source = "registry+https://github.com/rust-lang/crates.io-index"
3783
4371
  checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3784
4372
 
4373
+ [[package]]
4374
+ name = "untrusted"
4375
+ version = "0.7.1"
4376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4377
+ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
4378
+
3785
4379
  [[package]]
3786
4380
  name = "untrusted"
3787
4381
  version = "0.9.0"
@@ -3814,11 +4408,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3814
4408
 
3815
4409
  [[package]]
3816
4410
  name = "uuid"
3817
- version = "1.22.0"
4411
+ version = "1.23.4"
3818
4412
  source = "registry+https://github.com/rust-lang/crates.io-index"
3819
- checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
4413
+ checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
3820
4414
  dependencies = [
3821
- "getrandom 0.4.2",
4415
+ "getrandom 0.4.3",
4416
+ "js-sys",
4417
+ "wasm-bindgen",
3822
4418
  ]
3823
4419
 
3824
4420
  [[package]]
@@ -3860,27 +4456,18 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3860
4456
 
3861
4457
  [[package]]
3862
4458
  name = "wasip2"
3863
- version = "1.0.2+wasi-0.2.9"
3864
- source = "registry+https://github.com/rust-lang/crates.io-index"
3865
- checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3866
- dependencies = [
3867
- "wit-bindgen",
3868
- ]
3869
-
3870
- [[package]]
3871
- name = "wasip3"
3872
- version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
4459
+ version = "1.0.4+wasi-0.2.12"
3873
4460
  source = "registry+https://github.com/rust-lang/crates.io-index"
3874
- checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
4461
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
3875
4462
  dependencies = [
3876
4463
  "wit-bindgen",
3877
4464
  ]
3878
4465
 
3879
4466
  [[package]]
3880
4467
  name = "wasm-bindgen"
3881
- version = "0.2.114"
4468
+ version = "0.2.126"
3882
4469
  source = "registry+https://github.com/rust-lang/crates.io-index"
3883
- checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
4470
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
3884
4471
  dependencies = [
3885
4472
  "cfg-if",
3886
4473
  "once_cell",
@@ -3891,23 +4478,19 @@ dependencies = [
3891
4478
 
3892
4479
  [[package]]
3893
4480
  name = "wasm-bindgen-futures"
3894
- version = "0.4.64"
4481
+ version = "0.4.76"
3895
4482
  source = "registry+https://github.com/rust-lang/crates.io-index"
3896
- checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
4483
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
3897
4484
  dependencies = [
3898
- "cfg-if",
3899
- "futures-util",
3900
4485
  "js-sys",
3901
- "once_cell",
3902
4486
  "wasm-bindgen",
3903
- "web-sys",
3904
4487
  ]
3905
4488
 
3906
4489
  [[package]]
3907
4490
  name = "wasm-bindgen-macro"
3908
- version = "0.2.114"
4491
+ version = "0.2.126"
3909
4492
  source = "registry+https://github.com/rust-lang/crates.io-index"
3910
- checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
4493
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
3911
4494
  dependencies = [
3912
4495
  "quote",
3913
4496
  "wasm-bindgen-macro-support",
@@ -3915,9 +4498,9 @@ dependencies = [
3915
4498
 
3916
4499
  [[package]]
3917
4500
  name = "wasm-bindgen-macro-support"
3918
- version = "0.2.114"
4501
+ version = "0.2.126"
3919
4502
  source = "registry+https://github.com/rust-lang/crates.io-index"
3920
- checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
4503
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
3921
4504
  dependencies = [
3922
4505
  "bumpalo",
3923
4506
  "proc-macro2",
@@ -3928,33 +4511,70 @@ dependencies = [
3928
4511
 
3929
4512
  [[package]]
3930
4513
  name = "wasm-bindgen-shared"
3931
- version = "0.2.114"
4514
+ version = "0.2.126"
3932
4515
  source = "registry+https://github.com/rust-lang/crates.io-index"
3933
- checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
4516
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
3934
4517
  dependencies = [
3935
4518
  "unicode-ident",
3936
4519
  ]
3937
4520
 
4521
+ [[package]]
4522
+ name = "wasm-compose"
4523
+ version = "0.246.2"
4524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4525
+ checksum = "f05a2b3bad87cc1ce45b63425ec09a854cc4cb369231c9fed1fee31538103efb"
4526
+ dependencies = [
4527
+ "anyhow",
4528
+ "heck",
4529
+ "indexmap",
4530
+ "log",
4531
+ "petgraph 0.6.5",
4532
+ "smallvec",
4533
+ "wasm-encoder 0.246.2",
4534
+ "wasmparser 0.246.2",
4535
+ "wat",
4536
+ ]
4537
+
3938
4538
  [[package]]
3939
4539
  name = "wasm-encoder"
3940
- version = "0.244.0"
4540
+ version = "0.246.2"
3941
4541
  source = "registry+https://github.com/rust-lang/crates.io-index"
3942
- checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
4542
+ checksum = "61fb705ce81adde29d2a8e99d87995e39a6e927358c91398f374474746070ef7"
3943
4543
  dependencies = [
3944
4544
  "leb128fmt",
3945
- "wasmparser",
4545
+ "wasmparser 0.246.2",
4546
+ ]
4547
+
4548
+ [[package]]
4549
+ name = "wasm-encoder"
4550
+ version = "0.247.0"
4551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4552
+ checksum = "30b6733b8b91d010a6ac5b0fb237dc46a19650bc4c67db66857e2e787d437204"
4553
+ dependencies = [
4554
+ "leb128fmt",
4555
+ "wasmparser 0.247.0",
4556
+ ]
4557
+
4558
+ [[package]]
4559
+ name = "wasm-encoder"
4560
+ version = "0.253.0"
4561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4562
+ checksum = "59972d6cd272259de647b7c1f1912e45e289c75ffd4be04e10695507cd7e1b59"
4563
+ dependencies = [
4564
+ "leb128fmt",
4565
+ "wasmparser 0.253.0",
3946
4566
  ]
3947
4567
 
3948
4568
  [[package]]
3949
4569
  name = "wasm-metadata"
3950
- version = "0.244.0"
4570
+ version = "0.247.0"
3951
4571
  source = "registry+https://github.com/rust-lang/crates.io-index"
3952
- checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
4572
+ checksum = "665fe59e56cc9b419ca6fcca56673e3421d1a5011e3b65caf6b726fd9e041d10"
3953
4573
  dependencies = [
3954
4574
  "anyhow",
3955
4575
  "indexmap",
3956
- "wasm-encoder",
3957
- "wasmparser",
4576
+ "wasm-encoder 0.247.0",
4577
+ "wasmparser 0.247.0",
3958
4578
  ]
3959
4579
 
3960
4580
  [[package]]
@@ -3972,21 +4592,335 @@ dependencies = [
3972
4592
 
3973
4593
  [[package]]
3974
4594
  name = "wasmparser"
3975
- version = "0.244.0"
4595
+ version = "0.246.2"
3976
4596
  source = "registry+https://github.com/rust-lang/crates.io-index"
3977
- checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
4597
+ checksum = "71cde4757396defafd25417cfb36aa3161027d06d865b0c24baaae229aac005d"
3978
4598
  dependencies = [
3979
4599
  "bitflags",
3980
- "hashbrown 0.15.5",
4600
+ "hashbrown 0.16.1",
4601
+ "indexmap",
4602
+ "semver",
4603
+ "serde",
4604
+ ]
4605
+
4606
+ [[package]]
4607
+ name = "wasmparser"
4608
+ version = "0.247.0"
4609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4610
+ checksum = "8e6fb4c2bee46c5ea4d40f8cdb5c131725cd976718ec56f1c8e82fbde5fa2a80"
4611
+ dependencies = [
4612
+ "bitflags",
4613
+ "hashbrown 0.17.1",
4614
+ "indexmap",
4615
+ "semver",
4616
+ ]
4617
+
4618
+ [[package]]
4619
+ name = "wasmparser"
4620
+ version = "0.253.0"
4621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4622
+ checksum = "19db11f87d2486580e1e8b6f494c54df7e0566b87d0b599db843c24019667339"
4623
+ dependencies = [
4624
+ "bitflags",
4625
+ "indexmap",
4626
+ "semver",
4627
+ ]
4628
+
4629
+ [[package]]
4630
+ name = "wasmprinter"
4631
+ version = "0.246.2"
4632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4633
+ checksum = "6e41f7493ba994b8a779430a4c25ff550fd5a40d291693af43a6ef48688f00e3"
4634
+ dependencies = [
4635
+ "anyhow",
4636
+ "termcolor",
4637
+ "wasmparser 0.246.2",
4638
+ ]
4639
+
4640
+ [[package]]
4641
+ name = "wasmtime"
4642
+ version = "44.0.3"
4643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4644
+ checksum = "d807f646bfecc1dbb4990d8c864beebccbdb3f2cd1b39b2b82957b4e294c6058"
4645
+ dependencies = [
4646
+ "addr2line 0.26.1",
4647
+ "async-trait",
4648
+ "bitflags",
4649
+ "bumpalo",
4650
+ "cc",
4651
+ "cfg-if",
4652
+ "encoding_rs",
4653
+ "futures",
4654
+ "fxprof-processed-profile",
4655
+ "gimli 0.33.0",
4656
+ "ittapi",
4657
+ "libc",
4658
+ "log",
4659
+ "mach2",
4660
+ "memfd",
4661
+ "object 0.39.1",
4662
+ "once_cell",
4663
+ "postcard",
4664
+ "pulley-interpreter",
4665
+ "rayon",
4666
+ "rustix",
4667
+ "semver",
4668
+ "serde",
4669
+ "serde_derive",
4670
+ "serde_json",
4671
+ "smallvec",
4672
+ "target-lexicon",
4673
+ "tempfile",
4674
+ "wasm-compose",
4675
+ "wasm-encoder 0.246.2",
4676
+ "wasmparser 0.246.2",
4677
+ "wasmtime-environ",
4678
+ "wasmtime-internal-cache",
4679
+ "wasmtime-internal-component-macro",
4680
+ "wasmtime-internal-component-util",
4681
+ "wasmtime-internal-core",
4682
+ "wasmtime-internal-cranelift",
4683
+ "wasmtime-internal-fiber",
4684
+ "wasmtime-internal-jit-debug",
4685
+ "wasmtime-internal-jit-icache-coherence",
4686
+ "wasmtime-internal-unwinder",
4687
+ "wasmtime-internal-versioned-export-macros",
4688
+ "wasmtime-internal-winch",
4689
+ "wat",
4690
+ "windows-sys 0.61.2",
4691
+ ]
4692
+
4693
+ [[package]]
4694
+ name = "wasmtime-environ"
4695
+ version = "44.0.3"
4696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4697
+ checksum = "48b945309908f22473ebcd585ac2993948044228491cd96941d367aa81a49c3f"
4698
+ dependencies = [
4699
+ "anyhow",
4700
+ "cpp_demangle",
4701
+ "cranelift-bforest",
4702
+ "cranelift-bitset",
4703
+ "cranelift-entity",
4704
+ "gimli 0.33.0",
4705
+ "hashbrown 0.16.1",
3981
4706
  "indexmap",
4707
+ "log",
4708
+ "object 0.39.1",
4709
+ "postcard",
4710
+ "rustc-demangle",
3982
4711
  "semver",
4712
+ "serde",
4713
+ "serde_derive",
4714
+ "sha2",
4715
+ "smallvec",
4716
+ "target-lexicon",
4717
+ "wasm-encoder 0.246.2",
4718
+ "wasmparser 0.246.2",
4719
+ "wasmprinter",
4720
+ "wasmtime-internal-component-util",
4721
+ "wasmtime-internal-core",
4722
+ ]
4723
+
4724
+ [[package]]
4725
+ name = "wasmtime-internal-cache"
4726
+ version = "44.0.3"
4727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4728
+ checksum = "f14b8b93c2137c88ed84114d9a09cb11cb8bf9394aba4856e48f5304a4f99eec"
4729
+ dependencies = [
4730
+ "base64",
4731
+ "directories-next",
4732
+ "log",
4733
+ "postcard",
4734
+ "rustix",
4735
+ "serde",
4736
+ "serde_derive",
4737
+ "sha2",
4738
+ "toml 0.9.12+spec-1.1.0",
4739
+ "wasmtime-environ",
4740
+ "windows-sys 0.61.2",
4741
+ "zstd",
4742
+ ]
4743
+
4744
+ [[package]]
4745
+ name = "wasmtime-internal-component-macro"
4746
+ version = "44.0.3"
4747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4748
+ checksum = "7307dec6251a18ffa9df03120d2945ac2476ce150b5b099f39b199e8f81464dc"
4749
+ dependencies = [
4750
+ "anyhow",
4751
+ "proc-macro2",
4752
+ "quote",
4753
+ "syn",
4754
+ "wasmtime-internal-component-util",
4755
+ "wasmtime-internal-wit-bindgen",
4756
+ "wit-parser 0.246.2",
4757
+ ]
4758
+
4759
+ [[package]]
4760
+ name = "wasmtime-internal-component-util"
4761
+ version = "44.0.3"
4762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4763
+ checksum = "7a3d899b0270bcf04852f141bd9538cb162a436e7f56b2c6e0f4e57ecc70743a"
4764
+
4765
+ [[package]]
4766
+ name = "wasmtime-internal-core"
4767
+ version = "44.0.3"
4768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4769
+ checksum = "aedd3947487d0afdd37accb981466fcd60571e898004c8955111f88686581dfc"
4770
+ dependencies = [
4771
+ "anyhow",
4772
+ "hashbrown 0.16.1",
4773
+ "libm",
4774
+ "serde",
4775
+ ]
4776
+
4777
+ [[package]]
4778
+ name = "wasmtime-internal-cranelift"
4779
+ version = "44.0.3"
4780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4781
+ checksum = "512fd846630c064bfc42909eeba90a7d26703b6ded09ad4778ff6afcbdc868dd"
4782
+ dependencies = [
4783
+ "cfg-if",
4784
+ "cranelift-codegen",
4785
+ "cranelift-control",
4786
+ "cranelift-entity",
4787
+ "cranelift-frontend",
4788
+ "cranelift-native",
4789
+ "gimli 0.33.0",
4790
+ "itertools 0.14.0",
4791
+ "log",
4792
+ "object 0.39.1",
4793
+ "pulley-interpreter",
4794
+ "smallvec",
4795
+ "target-lexicon",
4796
+ "thiserror 2.0.18",
4797
+ "wasmparser 0.246.2",
4798
+ "wasmtime-environ",
4799
+ "wasmtime-internal-core",
4800
+ "wasmtime-internal-unwinder",
4801
+ "wasmtime-internal-versioned-export-macros",
4802
+ ]
4803
+
4804
+ [[package]]
4805
+ name = "wasmtime-internal-fiber"
4806
+ version = "44.0.3"
4807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4808
+ checksum = "15629ea71394be5812a52cb8fbc6cd039484ab1dd48fce5e1ef58ae89606289a"
4809
+ dependencies = [
4810
+ "cc",
4811
+ "cfg-if",
4812
+ "libc",
4813
+ "rustix",
4814
+ "wasmtime-environ",
4815
+ "wasmtime-internal-versioned-export-macros",
4816
+ "windows-sys 0.61.2",
4817
+ ]
4818
+
4819
+ [[package]]
4820
+ name = "wasmtime-internal-jit-debug"
4821
+ version = "44.0.3"
4822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4823
+ checksum = "f5fce5fedc1c952a64cdf3c87e4632af072d2aca0bc2c460d53296fb2654757d"
4824
+ dependencies = [
4825
+ "cc",
4826
+ "object 0.39.1",
4827
+ "rustix",
4828
+ "wasmtime-internal-versioned-export-macros",
4829
+ ]
4830
+
4831
+ [[package]]
4832
+ name = "wasmtime-internal-jit-icache-coherence"
4833
+ version = "44.0.3"
4834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4835
+ checksum = "10005b038e662775ac002f233e429447a58892e89918580fa67ce8cdd9192d0a"
4836
+ dependencies = [
4837
+ "cfg-if",
4838
+ "libc",
4839
+ "wasmtime-internal-core",
4840
+ "windows-sys 0.61.2",
4841
+ ]
4842
+
4843
+ [[package]]
4844
+ name = "wasmtime-internal-unwinder"
4845
+ version = "44.0.3"
4846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4847
+ checksum = "03f3e0f474281b405a3e9d97239f83f643b572324d292e1ef9dc5e3e0ab04c68"
4848
+ dependencies = [
4849
+ "cfg-if",
4850
+ "cranelift-codegen",
4851
+ "log",
4852
+ "object 0.39.1",
4853
+ "wasmtime-environ",
4854
+ ]
4855
+
4856
+ [[package]]
4857
+ name = "wasmtime-internal-versioned-export-macros"
4858
+ version = "44.0.3"
4859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4860
+ checksum = "910e5393af4aca456113581a5913b8d499cd2189013e983f8764d06ebc42b2ed"
4861
+ dependencies = [
4862
+ "proc-macro2",
4863
+ "quote",
4864
+ "syn",
4865
+ ]
4866
+
4867
+ [[package]]
4868
+ name = "wasmtime-internal-winch"
4869
+ version = "44.0.3"
4870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4871
+ checksum = "55481651bea5b8336fb200fa49914ccf802f5e7617ba9ab0b4691f16d4f97ff8"
4872
+ dependencies = [
4873
+ "cranelift-codegen",
4874
+ "gimli 0.33.0",
4875
+ "log",
4876
+ "object 0.39.1",
4877
+ "target-lexicon",
4878
+ "wasmparser 0.246.2",
4879
+ "wasmtime-environ",
4880
+ "wasmtime-internal-cranelift",
4881
+ "winch-codegen",
4882
+ ]
4883
+
4884
+ [[package]]
4885
+ name = "wasmtime-internal-wit-bindgen"
4886
+ version = "44.0.3"
4887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4888
+ checksum = "d890c3804d0e46000fa901c86ac1a9fdedf684e72dfd64e582b56bb4a78a6746"
4889
+ dependencies = [
4890
+ "anyhow",
4891
+ "bitflags",
4892
+ "heck",
4893
+ "indexmap",
4894
+ "wit-parser 0.246.2",
4895
+ ]
4896
+
4897
+ [[package]]
4898
+ name = "wast"
4899
+ version = "253.0.0"
4900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4901
+ checksum = "d3264542f8965c5d84fb1085d924bfba9a6314bb228eff13a2de14d7627664d0"
4902
+ dependencies = [
4903
+ "bumpalo",
4904
+ "leb128fmt",
4905
+ "memchr",
4906
+ "unicode-width",
4907
+ "wasm-encoder 0.253.0",
4908
+ ]
4909
+
4910
+ [[package]]
4911
+ name = "wat"
4912
+ version = "1.253.0"
4913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4914
+ checksum = "4bfc5ce906144200c972ec617470aa35bd847472e170b26dde3e80541c674055"
4915
+ dependencies = [
4916
+ "wast",
3983
4917
  ]
3984
4918
 
3985
4919
  [[package]]
3986
4920
  name = "web-sys"
3987
- version = "0.3.91"
4921
+ version = "0.3.103"
3988
4922
  source = "registry+https://github.com/rust-lang/crates.io-index"
3989
- checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
4923
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
3990
4924
  dependencies = [
3991
4925
  "js-sys",
3992
4926
  "wasm-bindgen",
@@ -4004,9 +4938,9 @@ dependencies = [
4004
4938
 
4005
4939
  [[package]]
4006
4940
  name = "webpki-root-certs"
4007
- version = "1.0.6"
4941
+ version = "1.0.8"
4008
4942
  source = "registry+https://github.com/rust-lang/crates.io-index"
4009
- checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
4943
+ checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267"
4010
4944
  dependencies = [
4011
4945
  "rustls-pki-types",
4012
4946
  ]
@@ -4033,7 +4967,7 @@ version = "0.1.11"
4033
4967
  source = "registry+https://github.com/rust-lang/crates.io-index"
4034
4968
  checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4035
4969
  dependencies = [
4036
- "windows-sys 0.60.2",
4970
+ "windows-sys 0.61.2",
4037
4971
  ]
4038
4972
 
4039
4973
  [[package]]
@@ -4042,6 +4976,25 @@ version = "0.4.0"
4042
4976
  source = "registry+https://github.com/rust-lang/crates.io-index"
4043
4977
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4044
4978
 
4979
+ [[package]]
4980
+ name = "winch-codegen"
4981
+ version = "44.0.3"
4982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4983
+ checksum = "436a7fa4109b13b0e555d01ec615ab8b928b7834639aca7b2fdc1f55d70a1f0c"
4984
+ dependencies = [
4985
+ "cranelift-assembler-x64",
4986
+ "cranelift-codegen",
4987
+ "gimli 0.33.0",
4988
+ "regalloc2",
4989
+ "smallvec",
4990
+ "target-lexicon",
4991
+ "thiserror 2.0.18",
4992
+ "wasmparser 0.246.2",
4993
+ "wasmtime-environ",
4994
+ "wasmtime-internal-core",
4995
+ "wasmtime-internal-cranelift",
4996
+ ]
4997
+
4045
4998
  [[package]]
4046
4999
  name = "windows"
4047
5000
  version = "0.62.2"
@@ -4143,31 +5096,13 @@ dependencies = [
4143
5096
  "windows-link",
4144
5097
  ]
4145
5098
 
4146
- [[package]]
4147
- name = "windows-sys"
4148
- version = "0.45.0"
4149
- source = "registry+https://github.com/rust-lang/crates.io-index"
4150
- checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
4151
- dependencies = [
4152
- "windows-targets 0.42.2",
4153
- ]
4154
-
4155
5099
  [[package]]
4156
5100
  name = "windows-sys"
4157
5101
  version = "0.52.0"
4158
5102
  source = "registry+https://github.com/rust-lang/crates.io-index"
4159
5103
  checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4160
5104
  dependencies = [
4161
- "windows-targets 0.52.6",
4162
- ]
4163
-
4164
- [[package]]
4165
- name = "windows-sys"
4166
- version = "0.60.2"
4167
- source = "registry+https://github.com/rust-lang/crates.io-index"
4168
- checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4169
- dependencies = [
4170
- "windows-targets 0.53.5",
5105
+ "windows-targets",
4171
5106
  ]
4172
5107
 
4173
5108
  [[package]]
@@ -4179,52 +5114,20 @@ dependencies = [
4179
5114
  "windows-link",
4180
5115
  ]
4181
5116
 
4182
- [[package]]
4183
- name = "windows-targets"
4184
- version = "0.42.2"
4185
- source = "registry+https://github.com/rust-lang/crates.io-index"
4186
- checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
4187
- dependencies = [
4188
- "windows_aarch64_gnullvm 0.42.2",
4189
- "windows_aarch64_msvc 0.42.2",
4190
- "windows_i686_gnu 0.42.2",
4191
- "windows_i686_msvc 0.42.2",
4192
- "windows_x86_64_gnu 0.42.2",
4193
- "windows_x86_64_gnullvm 0.42.2",
4194
- "windows_x86_64_msvc 0.42.2",
4195
- ]
4196
-
4197
5117
  [[package]]
4198
5118
  name = "windows-targets"
4199
5119
  version = "0.52.6"
4200
5120
  source = "registry+https://github.com/rust-lang/crates.io-index"
4201
5121
  checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4202
5122
  dependencies = [
4203
- "windows_aarch64_gnullvm 0.52.6",
4204
- "windows_aarch64_msvc 0.52.6",
4205
- "windows_i686_gnu 0.52.6",
4206
- "windows_i686_gnullvm 0.52.6",
4207
- "windows_i686_msvc 0.52.6",
4208
- "windows_x86_64_gnu 0.52.6",
4209
- "windows_x86_64_gnullvm 0.52.6",
4210
- "windows_x86_64_msvc 0.52.6",
4211
- ]
4212
-
4213
- [[package]]
4214
- name = "windows-targets"
4215
- version = "0.53.5"
4216
- source = "registry+https://github.com/rust-lang/crates.io-index"
4217
- checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4218
- dependencies = [
4219
- "windows-link",
4220
- "windows_aarch64_gnullvm 0.53.1",
4221
- "windows_aarch64_msvc 0.53.1",
4222
- "windows_i686_gnu 0.53.1",
4223
- "windows_i686_gnullvm 0.53.1",
4224
- "windows_i686_msvc 0.53.1",
4225
- "windows_x86_64_gnu 0.53.1",
4226
- "windows_x86_64_gnullvm 0.53.1",
4227
- "windows_x86_64_msvc 0.53.1",
5123
+ "windows_aarch64_gnullvm",
5124
+ "windows_aarch64_msvc",
5125
+ "windows_i686_gnu",
5126
+ "windows_i686_gnullvm",
5127
+ "windows_i686_msvc",
5128
+ "windows_x86_64_gnu",
5129
+ "windows_x86_64_gnullvm",
5130
+ "windows_x86_64_msvc",
4228
5131
  ]
4229
5132
 
4230
5133
  [[package]]
@@ -4236,132 +5139,48 @@ dependencies = [
4236
5139
  "windows-link",
4237
5140
  ]
4238
5141
 
4239
- [[package]]
4240
- name = "windows_aarch64_gnullvm"
4241
- version = "0.42.2"
4242
- source = "registry+https://github.com/rust-lang/crates.io-index"
4243
- checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4244
-
4245
5142
  [[package]]
4246
5143
  name = "windows_aarch64_gnullvm"
4247
5144
  version = "0.52.6"
4248
5145
  source = "registry+https://github.com/rust-lang/crates.io-index"
4249
5146
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4250
5147
 
4251
- [[package]]
4252
- name = "windows_aarch64_gnullvm"
4253
- version = "0.53.1"
4254
- source = "registry+https://github.com/rust-lang/crates.io-index"
4255
- checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4256
-
4257
- [[package]]
4258
- name = "windows_aarch64_msvc"
4259
- version = "0.42.2"
4260
- source = "registry+https://github.com/rust-lang/crates.io-index"
4261
- checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4262
-
4263
5148
  [[package]]
4264
5149
  name = "windows_aarch64_msvc"
4265
5150
  version = "0.52.6"
4266
5151
  source = "registry+https://github.com/rust-lang/crates.io-index"
4267
5152
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4268
5153
 
4269
- [[package]]
4270
- name = "windows_aarch64_msvc"
4271
- version = "0.53.1"
4272
- source = "registry+https://github.com/rust-lang/crates.io-index"
4273
- checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4274
-
4275
- [[package]]
4276
- name = "windows_i686_gnu"
4277
- version = "0.42.2"
4278
- source = "registry+https://github.com/rust-lang/crates.io-index"
4279
- checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4280
-
4281
5154
  [[package]]
4282
5155
  name = "windows_i686_gnu"
4283
5156
  version = "0.52.6"
4284
5157
  source = "registry+https://github.com/rust-lang/crates.io-index"
4285
5158
  checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4286
5159
 
4287
- [[package]]
4288
- name = "windows_i686_gnu"
4289
- version = "0.53.1"
4290
- source = "registry+https://github.com/rust-lang/crates.io-index"
4291
- checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4292
-
4293
5160
  [[package]]
4294
5161
  name = "windows_i686_gnullvm"
4295
5162
  version = "0.52.6"
4296
5163
  source = "registry+https://github.com/rust-lang/crates.io-index"
4297
5164
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4298
5165
 
4299
- [[package]]
4300
- name = "windows_i686_gnullvm"
4301
- version = "0.53.1"
4302
- source = "registry+https://github.com/rust-lang/crates.io-index"
4303
- checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4304
-
4305
- [[package]]
4306
- name = "windows_i686_msvc"
4307
- version = "0.42.2"
4308
- source = "registry+https://github.com/rust-lang/crates.io-index"
4309
- checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4310
-
4311
5166
  [[package]]
4312
5167
  name = "windows_i686_msvc"
4313
5168
  version = "0.52.6"
4314
5169
  source = "registry+https://github.com/rust-lang/crates.io-index"
4315
5170
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4316
5171
 
4317
- [[package]]
4318
- name = "windows_i686_msvc"
4319
- version = "0.53.1"
4320
- source = "registry+https://github.com/rust-lang/crates.io-index"
4321
- checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4322
-
4323
- [[package]]
4324
- name = "windows_x86_64_gnu"
4325
- version = "0.42.2"
4326
- source = "registry+https://github.com/rust-lang/crates.io-index"
4327
- checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4328
-
4329
5172
  [[package]]
4330
5173
  name = "windows_x86_64_gnu"
4331
5174
  version = "0.52.6"
4332
5175
  source = "registry+https://github.com/rust-lang/crates.io-index"
4333
5176
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4334
5177
 
4335
- [[package]]
4336
- name = "windows_x86_64_gnu"
4337
- version = "0.53.1"
4338
- source = "registry+https://github.com/rust-lang/crates.io-index"
4339
- checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4340
-
4341
- [[package]]
4342
- name = "windows_x86_64_gnullvm"
4343
- version = "0.42.2"
4344
- source = "registry+https://github.com/rust-lang/crates.io-index"
4345
- checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4346
-
4347
5178
  [[package]]
4348
5179
  name = "windows_x86_64_gnullvm"
4349
5180
  version = "0.52.6"
4350
5181
  source = "registry+https://github.com/rust-lang/crates.io-index"
4351
5182
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4352
5183
 
4353
- [[package]]
4354
- name = "windows_x86_64_gnullvm"
4355
- version = "0.53.1"
4356
- source = "registry+https://github.com/rust-lang/crates.io-index"
4357
- checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4358
-
4359
- [[package]]
4360
- name = "windows_x86_64_msvc"
4361
- version = "0.42.2"
4362
- source = "registry+https://github.com/rust-lang/crates.io-index"
4363
- checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4364
-
4365
5184
  [[package]]
4366
5185
  name = "windows_x86_64_msvc"
4367
5186
  version = "0.52.6"
@@ -4369,45 +5188,46 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4369
5188
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4370
5189
 
4371
5190
  [[package]]
4372
- name = "windows_x86_64_msvc"
4373
- version = "0.53.1"
5191
+ name = "winnow"
5192
+ version = "0.7.15"
4374
5193
  source = "registry+https://github.com/rust-lang/crates.io-index"
4375
- checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
5194
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
4376
5195
 
4377
5196
  [[package]]
4378
5197
  name = "winnow"
4379
- version = "1.0.0"
5198
+ version = "1.0.3"
4380
5199
  source = "registry+https://github.com/rust-lang/crates.io-index"
4381
- checksum = "a90e88e4667264a994d34e6d1ab2d26d398dcdca8b7f52bec8668957517fc7d8"
5200
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
4382
5201
  dependencies = [
4383
5202
  "memchr",
4384
5203
  ]
4385
5204
 
4386
5205
  [[package]]
4387
5206
  name = "wit-bindgen"
4388
- version = "0.51.0"
5207
+ version = "0.57.1"
4389
5208
  source = "registry+https://github.com/rust-lang/crates.io-index"
4390
- checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
5209
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4391
5210
  dependencies = [
5211
+ "bitflags",
4392
5212
  "wit-bindgen-rust-macro",
4393
5213
  ]
4394
5214
 
4395
5215
  [[package]]
4396
5216
  name = "wit-bindgen-core"
4397
- version = "0.51.0"
5217
+ version = "0.57.1"
4398
5218
  source = "registry+https://github.com/rust-lang/crates.io-index"
4399
- checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
5219
+ checksum = "02dee27a2dc20d1008016c742ec9fc6ea498492994ba3750be7454cbc97ff04c"
4400
5220
  dependencies = [
4401
5221
  "anyhow",
4402
5222
  "heck",
4403
- "wit-parser",
5223
+ "wit-parser 0.247.0",
4404
5224
  ]
4405
5225
 
4406
5226
  [[package]]
4407
5227
  name = "wit-bindgen-rust"
4408
- version = "0.51.0"
5228
+ version = "0.57.1"
4409
5229
  source = "registry+https://github.com/rust-lang/crates.io-index"
4410
- checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
5230
+ checksum = "b5007dae772945b7a5003d69d90a3a4a78929d41f19d004e980c4259a6af4484"
4411
5231
  dependencies = [
4412
5232
  "anyhow",
4413
5233
  "heck",
@@ -4421,9 +5241,9 @@ dependencies = [
4421
5241
 
4422
5242
  [[package]]
4423
5243
  name = "wit-bindgen-rust-macro"
4424
- version = "0.51.0"
5244
+ version = "0.57.1"
4425
5245
  source = "registry+https://github.com/rust-lang/crates.io-index"
4426
- checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
5246
+ checksum = "af9237d678e3513ad24e96fe98beacdc0db6405284ba2a2400418cf0d42caa89"
4427
5247
  dependencies = [
4428
5248
  "anyhow",
4429
5249
  "prettyplease",
@@ -4436,9 +5256,9 @@ dependencies = [
4436
5256
 
4437
5257
  [[package]]
4438
5258
  name = "wit-component"
4439
- version = "0.244.0"
5259
+ version = "0.247.0"
4440
5260
  source = "registry+https://github.com/rust-lang/crates.io-index"
4441
- checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
5261
+ checksum = "9d567162a6b9843080e5e0053f696623ff694bae8ae017c9ec536d1873bbe3d8"
4442
5262
  dependencies = [
4443
5263
  "anyhow",
4444
5264
  "bitflags",
@@ -4447,19 +5267,20 @@ dependencies = [
4447
5267
  "serde",
4448
5268
  "serde_derive",
4449
5269
  "serde_json",
4450
- "wasm-encoder",
5270
+ "wasm-encoder 0.247.0",
4451
5271
  "wasm-metadata",
4452
- "wasmparser",
4453
- "wit-parser",
5272
+ "wasmparser 0.247.0",
5273
+ "wit-parser 0.247.0",
4454
5274
  ]
4455
5275
 
4456
5276
  [[package]]
4457
5277
  name = "wit-parser"
4458
- version = "0.244.0"
5278
+ version = "0.246.2"
4459
5279
  source = "registry+https://github.com/rust-lang/crates.io-index"
4460
- checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
5280
+ checksum = "fd979042b5ff288607ccf3b314145435453f20fc67173195f91062d2289b204d"
4461
5281
  dependencies = [
4462
5282
  "anyhow",
5283
+ "hashbrown 0.16.1",
4463
5284
  "id-arena",
4464
5285
  "indexmap",
4465
5286
  "log",
@@ -4468,14 +5289,33 @@ dependencies = [
4468
5289
  "serde_derive",
4469
5290
  "serde_json",
4470
5291
  "unicode-xid",
4471
- "wasmparser",
5292
+ "wasmparser 0.246.2",
5293
+ ]
5294
+
5295
+ [[package]]
5296
+ name = "wit-parser"
5297
+ version = "0.247.0"
5298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5299
+ checksum = "8ffe4064318cdf3c08cb99343b44c039fcefe61ccdf58aa9975285f13d74d1fc"
5300
+ dependencies = [
5301
+ "anyhow",
5302
+ "hashbrown 0.17.1",
5303
+ "id-arena",
5304
+ "indexmap",
5305
+ "log",
5306
+ "semver",
5307
+ "serde",
5308
+ "serde_derive",
5309
+ "serde_json",
5310
+ "unicode-xid",
5311
+ "wasmparser 0.247.0",
4472
5312
  ]
4473
5313
 
4474
5314
  [[package]]
4475
5315
  name = "writeable"
4476
- version = "0.6.2"
5316
+ version = "0.6.3"
4477
5317
  source = "registry+https://github.com/rust-lang/crates.io-index"
4478
- checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
5318
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4479
5319
 
4480
5320
  [[package]]
4481
5321
  name = "xattr"
@@ -4489,9 +5329,9 @@ dependencies = [
4489
5329
 
4490
5330
  [[package]]
4491
5331
  name = "yoke"
4492
- version = "0.8.1"
5332
+ version = "0.8.3"
4493
5333
  source = "registry+https://github.com/rust-lang/crates.io-index"
4494
- checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
5334
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
4495
5335
  dependencies = [
4496
5336
  "stable_deref_trait",
4497
5337
  "yoke-derive",
@@ -4500,9 +5340,9 @@ dependencies = [
4500
5340
 
4501
5341
  [[package]]
4502
5342
  name = "yoke-derive"
4503
- version = "0.8.1"
5343
+ version = "0.8.2"
4504
5344
  source = "registry+https://github.com/rust-lang/crates.io-index"
4505
- checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
5345
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4506
5346
  dependencies = [
4507
5347
  "proc-macro2",
4508
5348
  "quote",
@@ -4512,18 +5352,18 @@ dependencies = [
4512
5352
 
4513
5353
  [[package]]
4514
5354
  name = "zerocopy"
4515
- version = "0.8.47"
5355
+ version = "0.8.54"
4516
5356
  source = "registry+https://github.com/rust-lang/crates.io-index"
4517
- checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
5357
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
4518
5358
  dependencies = [
4519
5359
  "zerocopy-derive",
4520
5360
  ]
4521
5361
 
4522
5362
  [[package]]
4523
5363
  name = "zerocopy-derive"
4524
- version = "0.8.47"
5364
+ version = "0.8.54"
4525
5365
  source = "registry+https://github.com/rust-lang/crates.io-index"
4526
- checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
5366
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
4527
5367
  dependencies = [
4528
5368
  "proc-macro2",
4529
5369
  "quote",
@@ -4532,18 +5372,18 @@ dependencies = [
4532
5372
 
4533
5373
  [[package]]
4534
5374
  name = "zerofrom"
4535
- version = "0.1.6"
5375
+ version = "0.1.8"
4536
5376
  source = "registry+https://github.com/rust-lang/crates.io-index"
4537
- checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
5377
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4538
5378
  dependencies = [
4539
5379
  "zerofrom-derive",
4540
5380
  ]
4541
5381
 
4542
5382
  [[package]]
4543
5383
  name = "zerofrom-derive"
4544
- version = "0.1.6"
5384
+ version = "0.1.7"
4545
5385
  source = "registry+https://github.com/rust-lang/crates.io-index"
4546
- checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
5386
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4547
5387
  dependencies = [
4548
5388
  "proc-macro2",
4549
5389
  "quote",
@@ -4553,15 +5393,15 @@ dependencies = [
4553
5393
 
4554
5394
  [[package]]
4555
5395
  name = "zeroize"
4556
- version = "1.8.2"
5396
+ version = "1.9.0"
4557
5397
  source = "registry+https://github.com/rust-lang/crates.io-index"
4558
- checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
5398
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
4559
5399
 
4560
5400
  [[package]]
4561
5401
  name = "zerotrie"
4562
- version = "0.2.3"
5402
+ version = "0.2.4"
4563
5403
  source = "registry+https://github.com/rust-lang/crates.io-index"
4564
- checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
5404
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4565
5405
  dependencies = [
4566
5406
  "displaydoc",
4567
5407
  "yoke",
@@ -4570,9 +5410,9 @@ dependencies = [
4570
5410
 
4571
5411
  [[package]]
4572
5412
  name = "zerovec"
4573
- version = "0.11.5"
5413
+ version = "0.11.6"
4574
5414
  source = "registry+https://github.com/rust-lang/crates.io-index"
4575
- checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
5415
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4576
5416
  dependencies = [
4577
5417
  "yoke",
4578
5418
  "zerofrom",
@@ -4581,9 +5421,9 @@ dependencies = [
4581
5421
 
4582
5422
  [[package]]
4583
5423
  name = "zerovec-derive"
4584
- version = "0.11.2"
5424
+ version = "0.11.3"
4585
5425
  source = "registry+https://github.com/rust-lang/crates.io-index"
4586
- checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
5426
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4587
5427
  dependencies = [
4588
5428
  "proc-macro2",
4589
5429
  "quote",
@@ -4592,9 +5432,9 @@ dependencies = [
4592
5432
 
4593
5433
  [[package]]
4594
5434
  name = "zip"
4595
- version = "8.5.0"
5435
+ version = "8.6.0"
4596
5436
  source = "registry+https://github.com/rust-lang/crates.io-index"
4597
- checksum = "2726508a48f38dceb22b35ecbbd2430efe34ff05c62bd3285f965d7911b33464"
5437
+ checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
4598
5438
  dependencies = [
4599
5439
  "bzip2",
4600
5440
  "crc32fast",
@@ -4608,9 +5448,9 @@ dependencies = [
4608
5448
 
4609
5449
  [[package]]
4610
5450
  name = "zlib-rs"
4611
- version = "0.6.3"
5451
+ version = "0.6.5"
4612
5452
  source = "registry+https://github.com/rust-lang/crates.io-index"
4613
- checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
5453
+ checksum = "5431d5661c32445236631278f27946e444ddafe4684cac70b185272d4f9c52d5"
4614
5454
 
4615
5455
  [[package]]
4616
5456
  name = "zmij"