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