temporalio 0.4.0 → 0.5.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 (138) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +1 -1
  3. data/Cargo.lock +679 -437
  4. data/Cargo.toml +5 -5
  5. data/README.md +98 -34
  6. data/ext/Cargo.toml +3 -3
  7. data/lib/temporalio/activity/cancellation_details.rb +58 -0
  8. data/lib/temporalio/activity/context.rb +10 -1
  9. data/lib/temporalio/activity/definition.rb +41 -3
  10. data/lib/temporalio/activity/info.rb +25 -4
  11. data/lib/temporalio/activity.rb +2 -0
  12. data/lib/temporalio/api/activity/v1/message.rb +1 -1
  13. data/lib/temporalio/api/batch/v1/message.rb +4 -2
  14. data/lib/temporalio/api/cloud/account/v1/message.rb +1 -1
  15. data/lib/temporalio/api/cloud/cloudservice/v1/request_response.rb +11 -2
  16. data/lib/temporalio/api/cloud/cloudservice/v1/service.rb +2 -2
  17. data/lib/temporalio/api/cloud/identity/v1/message.rb +7 -2
  18. data/lib/temporalio/api/cloud/namespace/v1/message.rb +6 -2
  19. data/lib/temporalio/api/cloud/nexus/v1/message.rb +3 -2
  20. data/lib/temporalio/api/cloud/operation/v1/message.rb +1 -1
  21. data/lib/temporalio/api/cloud/region/v1/message.rb +1 -1
  22. data/lib/temporalio/api/cloud/resource/v1/message.rb +1 -1
  23. data/lib/temporalio/api/cloud/sink/v1/message.rb +1 -1
  24. data/lib/temporalio/api/cloud/usage/v1/message.rb +1 -1
  25. data/lib/temporalio/api/command/v1/message.rb +2 -2
  26. data/lib/temporalio/api/common/v1/grpc_status.rb +1 -1
  27. data/lib/temporalio/api/common/v1/message.rb +3 -2
  28. data/lib/temporalio/api/deployment/v1/message.rb +3 -2
  29. data/lib/temporalio/api/enums/v1/batch_operation.rb +1 -1
  30. data/lib/temporalio/api/enums/v1/command_type.rb +1 -1
  31. data/lib/temporalio/api/enums/v1/common.rb +5 -2
  32. data/lib/temporalio/api/enums/v1/deployment.rb +3 -2
  33. data/lib/temporalio/api/enums/v1/event_type.rb +2 -2
  34. data/lib/temporalio/api/enums/v1/failed_cause.rb +2 -2
  35. data/lib/temporalio/api/enums/v1/namespace.rb +1 -1
  36. data/lib/temporalio/api/enums/v1/nexus.rb +1 -1
  37. data/lib/temporalio/api/enums/v1/query.rb +1 -1
  38. data/lib/temporalio/api/enums/v1/reset.rb +1 -1
  39. data/lib/temporalio/api/enums/v1/schedule.rb +1 -1
  40. data/lib/temporalio/api/enums/v1/task_queue.rb +1 -1
  41. data/lib/temporalio/api/enums/v1/update.rb +1 -1
  42. data/lib/temporalio/api/enums/v1/workflow.rb +2 -2
  43. data/lib/temporalio/api/errordetails/v1/message.rb +1 -1
  44. data/lib/temporalio/api/export/v1/message.rb +1 -1
  45. data/lib/temporalio/api/failure/v1/message.rb +3 -2
  46. data/lib/temporalio/api/filter/v1/message.rb +1 -1
  47. data/lib/temporalio/api/history/v1/message.rb +4 -2
  48. data/lib/temporalio/api/namespace/v1/message.rb +1 -1
  49. data/lib/temporalio/api/nexus/v1/message.rb +2 -2
  50. data/lib/temporalio/api/operatorservice/v1/request_response.rb +1 -1
  51. data/lib/temporalio/api/operatorservice/v1/service.rb +1 -1
  52. data/lib/temporalio/api/payload_visitor.rb +87 -0
  53. data/lib/temporalio/api/protocol/v1/message.rb +1 -1
  54. data/lib/temporalio/api/query/v1/message.rb +1 -1
  55. data/lib/temporalio/api/replication/v1/message.rb +1 -1
  56. data/lib/temporalio/api/rules/v1/message.rb +27 -0
  57. data/lib/temporalio/api/schedule/v1/message.rb +2 -2
  58. data/lib/temporalio/api/sdk/v1/enhanced_stack_trace.rb +1 -1
  59. data/lib/temporalio/api/sdk/v1/task_complete_metadata.rb +1 -1
  60. data/lib/temporalio/api/sdk/v1/user_metadata.rb +1 -1
  61. data/lib/temporalio/api/sdk/v1/workflow_metadata.rb +1 -1
  62. data/lib/temporalio/api/taskqueue/v1/message.rb +2 -2
  63. data/lib/temporalio/api/testservice/v1/request_response.rb +1 -1
  64. data/lib/temporalio/api/testservice/v1/service.rb +1 -1
  65. data/lib/temporalio/api/update/v1/message.rb +1 -1
  66. data/lib/temporalio/api/version/v1/message.rb +1 -1
  67. data/lib/temporalio/api/worker/v1/message.rb +30 -0
  68. data/lib/temporalio/api/workflow/v1/message.rb +14 -2
  69. data/lib/temporalio/api/workflowservice/v1/request_response.rb +19 -2
  70. data/lib/temporalio/api/workflowservice/v1/service.rb +2 -2
  71. data/lib/temporalio/client/async_activity_handle.rb +12 -4
  72. data/lib/temporalio/client/connection/cloud_service.rb +60 -0
  73. data/lib/temporalio/client/connection/workflow_service.rb +105 -0
  74. data/lib/temporalio/client/interceptor.rb +25 -7
  75. data/lib/temporalio/client/schedule.rb +10 -2
  76. data/lib/temporalio/client/with_start_workflow_operation.rb +9 -1
  77. data/lib/temporalio/client/workflow_handle.rb +50 -10
  78. data/lib/temporalio/client/workflow_update_handle.rb +9 -3
  79. data/lib/temporalio/client.rb +110 -6
  80. data/lib/temporalio/common_enums.rb +14 -0
  81. data/lib/temporalio/contrib/open_telemetry.rb +13 -9
  82. data/lib/temporalio/converters/data_converter.rb +18 -8
  83. data/lib/temporalio/converters/failure_converter.rb +6 -3
  84. data/lib/temporalio/converters/payload_converter/binary_null.rb +2 -2
  85. data/lib/temporalio/converters/payload_converter/binary_plain.rb +2 -2
  86. data/lib/temporalio/converters/payload_converter/binary_protobuf.rb +2 -2
  87. data/lib/temporalio/converters/payload_converter/composite.rb +6 -4
  88. data/lib/temporalio/converters/payload_converter/encoding.rb +4 -2
  89. data/lib/temporalio/converters/payload_converter/json_plain.rb +2 -2
  90. data/lib/temporalio/converters/payload_converter/json_protobuf.rb +2 -2
  91. data/lib/temporalio/converters/payload_converter.rb +16 -6
  92. data/lib/temporalio/error/failure.rb +19 -1
  93. data/lib/temporalio/error.rb +1 -1
  94. data/lib/temporalio/internal/bridge/api/activity_result/activity_result.rb +1 -1
  95. data/lib/temporalio/internal/bridge/api/activity_task/activity_task.rb +3 -2
  96. data/lib/temporalio/internal/bridge/api/child_workflow/child_workflow.rb +1 -1
  97. data/lib/temporalio/internal/bridge/api/common/common.rb +1 -1
  98. data/lib/temporalio/internal/bridge/api/core_interface.rb +1 -1
  99. data/lib/temporalio/internal/bridge/api/external_data/external_data.rb +1 -1
  100. data/lib/temporalio/internal/bridge/api/nexus/nexus.rb +3 -2
  101. data/lib/temporalio/internal/bridge/api/workflow_activation/workflow_activation.rb +2 -2
  102. data/lib/temporalio/internal/bridge/api/workflow_commands/workflow_commands.rb +3 -2
  103. data/lib/temporalio/internal/bridge/api/workflow_completion/workflow_completion.rb +1 -1
  104. data/lib/temporalio/internal/bridge/worker.rb +28 -4
  105. data/lib/temporalio/internal/bridge.rb +1 -1
  106. data/lib/temporalio/internal/client/implementation.rb +60 -52
  107. data/lib/temporalio/internal/proto_utils.rb +4 -4
  108. data/lib/temporalio/internal/worker/activity_worker.rb +93 -20
  109. data/lib/temporalio/internal/worker/workflow_instance/child_workflow_handle.rb +8 -6
  110. data/lib/temporalio/internal/worker/workflow_instance/context.rb +65 -24
  111. data/lib/temporalio/internal/worker/workflow_instance/details.rb +5 -2
  112. data/lib/temporalio/internal/worker/workflow_instance/external_workflow_handle.rb +2 -2
  113. data/lib/temporalio/internal/worker/workflow_instance/illegal_call_tracer.rb +64 -18
  114. data/lib/temporalio/internal/worker/workflow_instance/outbound_implementation.rb +28 -14
  115. data/lib/temporalio/internal/worker/workflow_instance.rb +58 -23
  116. data/lib/temporalio/internal/worker/workflow_worker.rb +16 -6
  117. data/lib/temporalio/priority.rb +59 -0
  118. data/lib/temporalio/testing/activity_environment.rb +17 -2
  119. data/lib/temporalio/testing/workflow_environment.rb +3 -3
  120. data/lib/temporalio/version.rb +1 -1
  121. data/lib/temporalio/versioning_override.rb +56 -0
  122. data/lib/temporalio/worker/deployment_options.rb +45 -0
  123. data/lib/temporalio/worker/illegal_workflow_call_validator.rb +64 -0
  124. data/lib/temporalio/worker/interceptor.rb +13 -1
  125. data/lib/temporalio/worker/poller_behavior.rb +61 -0
  126. data/lib/temporalio/worker/thread_pool.rb +1 -1
  127. data/lib/temporalio/worker/workflow_executor/thread_pool.rb +2 -1
  128. data/lib/temporalio/worker/workflow_replayer.rb +12 -13
  129. data/lib/temporalio/worker.rb +63 -27
  130. data/lib/temporalio/worker_deployment_version.rb +67 -0
  131. data/lib/temporalio/workflow/child_workflow_handle.rb +10 -2
  132. data/lib/temporalio/workflow/definition.rb +183 -33
  133. data/lib/temporalio/workflow/external_workflow_handle.rb +3 -1
  134. data/lib/temporalio/workflow/info.rb +4 -1
  135. data/lib/temporalio/workflow.rb +61 -9
  136. data/lib/temporalio.rb +1 -0
  137. data/temporalio.gemspec +1 -0
  138. metadata +12 -3
data/Cargo.lock CHANGED
@@ -13,9 +13,9 @@ dependencies = [
13
13
 
14
14
  [[package]]
15
15
  name = "adler2"
16
- version = "2.0.0"
16
+ version = "2.0.1"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
19
 
20
20
  [[package]]
21
21
  name = "aes"
@@ -51,9 +51,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
51
51
 
52
52
  [[package]]
53
53
  name = "anstream"
54
- version = "0.6.18"
54
+ version = "0.6.19"
55
55
  source = "registry+https://github.com/rust-lang/crates.io-index"
56
- checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
56
+ checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
57
57
  dependencies = [
58
58
  "anstyle",
59
59
  "anstyle-parse",
@@ -66,36 +66,36 @@ dependencies = [
66
66
 
67
67
  [[package]]
68
68
  name = "anstyle"
69
- version = "1.0.10"
69
+ version = "1.0.11"
70
70
  source = "registry+https://github.com/rust-lang/crates.io-index"
71
- checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
71
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
72
72
 
73
73
  [[package]]
74
74
  name = "anstyle-parse"
75
- version = "0.2.6"
75
+ version = "0.2.7"
76
76
  source = "registry+https://github.com/rust-lang/crates.io-index"
77
- checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
77
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
78
78
  dependencies = [
79
79
  "utf8parse",
80
80
  ]
81
81
 
82
82
  [[package]]
83
83
  name = "anstyle-query"
84
- version = "1.1.2"
84
+ version = "1.1.3"
85
85
  source = "registry+https://github.com/rust-lang/crates.io-index"
86
- checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
86
+ checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
87
87
  dependencies = [
88
88
  "windows-sys 0.59.0",
89
89
  ]
90
90
 
91
91
  [[package]]
92
92
  name = "anstyle-wincon"
93
- version = "3.0.7"
93
+ version = "3.0.9"
94
94
  source = "registry+https://github.com/rust-lang/crates.io-index"
95
- checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
95
+ checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
96
96
  dependencies = [
97
97
  "anstyle",
98
- "once_cell",
98
+ "once_cell_polyfill",
99
99
  "windows-sys 0.59.0",
100
100
  ]
101
101
 
@@ -161,9 +161,9 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
161
161
 
162
162
  [[package]]
163
163
  name = "autocfg"
164
- version = "1.4.0"
164
+ version = "1.5.0"
165
165
  source = "registry+https://github.com/rust-lang/crates.io-index"
166
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
166
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
167
167
 
168
168
  [[package]]
169
169
  name = "axum"
@@ -172,14 +172,40 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
172
172
  checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
173
173
  dependencies = [
174
174
  "async-trait",
175
- "axum-core",
175
+ "axum-core 0.4.5",
176
176
  "bytes",
177
177
  "futures-util",
178
178
  "http",
179
179
  "http-body",
180
180
  "http-body-util",
181
181
  "itoa",
182
- "matchit",
182
+ "matchit 0.7.3",
183
+ "memchr",
184
+ "mime",
185
+ "percent-encoding",
186
+ "pin-project-lite",
187
+ "rustversion",
188
+ "serde",
189
+ "sync_wrapper",
190
+ "tower 0.5.2",
191
+ "tower-layer",
192
+ "tower-service",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "axum"
197
+ version = "0.8.4"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5"
200
+ dependencies = [
201
+ "axum-core 0.5.2",
202
+ "bytes",
203
+ "futures-util",
204
+ "http",
205
+ "http-body",
206
+ "http-body-util",
207
+ "itoa",
208
+ "matchit 0.8.4",
183
209
  "memchr",
184
210
  "mime",
185
211
  "percent-encoding",
@@ -212,22 +238,41 @@ dependencies = [
212
238
  "tower-service",
213
239
  ]
214
240
 
241
+ [[package]]
242
+ name = "axum-core"
243
+ version = "0.5.2"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6"
246
+ dependencies = [
247
+ "bytes",
248
+ "futures-core",
249
+ "http",
250
+ "http-body",
251
+ "http-body-util",
252
+ "mime",
253
+ "pin-project-lite",
254
+ "rustversion",
255
+ "sync_wrapper",
256
+ "tower-layer",
257
+ "tower-service",
258
+ ]
259
+
215
260
  [[package]]
216
261
  name = "backoff"
217
262
  version = "0.4.0"
218
263
  source = "registry+https://github.com/rust-lang/crates.io-index"
219
264
  checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
220
265
  dependencies = [
221
- "getrandom 0.2.15",
266
+ "getrandom 0.2.16",
222
267
  "instant",
223
268
  "rand 0.8.5",
224
269
  ]
225
270
 
226
271
  [[package]]
227
272
  name = "backtrace"
228
- version = "0.3.74"
273
+ version = "0.3.75"
229
274
  source = "registry+https://github.com/rust-lang/crates.io-index"
230
- checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
275
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
231
276
  dependencies = [
232
277
  "addr2line",
233
278
  "cfg-if",
@@ -278,9 +323,9 @@ dependencies = [
278
323
 
279
324
  [[package]]
280
325
  name = "bitflags"
281
- version = "2.9.0"
326
+ version = "2.9.1"
282
327
  source = "registry+https://github.com/rust-lang/crates.io-index"
283
- checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
328
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
284
329
 
285
330
  [[package]]
286
331
  name = "block-buffer"
@@ -293,9 +338,9 @@ dependencies = [
293
338
 
294
339
  [[package]]
295
340
  name = "bumpalo"
296
- version = "3.17.0"
341
+ version = "3.19.0"
297
342
  source = "registry+https://github.com/rust-lang/crates.io-index"
298
- checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
343
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
299
344
 
300
345
  [[package]]
301
346
  name = "byteorder"
@@ -336,9 +381,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
336
381
 
337
382
  [[package]]
338
383
  name = "cc"
339
- version = "1.2.19"
384
+ version = "1.2.30"
340
385
  source = "registry+https://github.com/rust-lang/crates.io-index"
341
- checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
386
+ checksum = "deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7"
342
387
  dependencies = [
343
388
  "jobserver",
344
389
  "libc",
@@ -356,9 +401,9 @@ dependencies = [
356
401
 
357
402
  [[package]]
358
403
  name = "cfg-if"
359
- version = "1.0.0"
404
+ version = "1.0.1"
360
405
  source = "registry+https://github.com/rust-lang/crates.io-index"
361
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
406
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
362
407
 
363
408
  [[package]]
364
409
  name = "cfg_aliases"
@@ -368,9 +413,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
368
413
 
369
414
  [[package]]
370
415
  name = "chrono"
371
- version = "0.4.40"
416
+ version = "0.4.41"
372
417
  source = "registry+https://github.com/rust-lang/crates.io-index"
373
- checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
418
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
374
419
  dependencies = [
375
420
  "num-traits",
376
421
  "serde",
@@ -426,9 +471,9 @@ dependencies = [
426
471
 
427
472
  [[package]]
428
473
  name = "clap"
429
- version = "4.5.36"
474
+ version = "4.5.41"
430
475
  source = "registry+https://github.com/rust-lang/crates.io-index"
431
- checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04"
476
+ checksum = "be92d32e80243a54711e5d7ce823c35c41c9d929dc4ab58e1276f625841aadf9"
432
477
  dependencies = [
433
478
  "clap_builder",
434
479
  "clap_derive",
@@ -436,9 +481,9 @@ dependencies = [
436
481
 
437
482
  [[package]]
438
483
  name = "clap_builder"
439
- version = "4.5.36"
484
+ version = "4.5.41"
440
485
  source = "registry+https://github.com/rust-lang/crates.io-index"
441
- checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5"
486
+ checksum = "707eab41e9622f9139419d573eca0900137718000c517d47da73045f54331c3d"
442
487
  dependencies = [
443
488
  "anstream",
444
489
  "anstyle",
@@ -448,9 +493,9 @@ dependencies = [
448
493
 
449
494
  [[package]]
450
495
  name = "clap_derive"
451
- version = "4.5.32"
496
+ version = "4.5.41"
452
497
  source = "registry+https://github.com/rust-lang/crates.io-index"
453
- checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
498
+ checksum = "ef4f52386a59ca4c860f7393bcf8abd8dfd91ecccc0f774635ff68e92eeef491"
454
499
  dependencies = [
455
500
  "heck",
456
501
  "proc-macro2",
@@ -460,15 +505,15 @@ dependencies = [
460
505
 
461
506
  [[package]]
462
507
  name = "clap_lex"
463
- version = "0.7.4"
508
+ version = "0.7.5"
464
509
  source = "registry+https://github.com/rust-lang/crates.io-index"
465
- checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
510
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
466
511
 
467
512
  [[package]]
468
513
  name = "colorchoice"
469
- version = "1.0.3"
514
+ version = "1.0.4"
470
515
  source = "registry+https://github.com/rust-lang/crates.io-index"
471
- checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
516
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
472
517
 
473
518
  [[package]]
474
519
  name = "console-api"
@@ -479,7 +524,7 @@ dependencies = [
479
524
  "futures-core",
480
525
  "prost",
481
526
  "prost-types",
482
- "tonic",
527
+ "tonic 0.12.3",
483
528
  "tracing-core",
484
529
  ]
485
530
 
@@ -503,7 +548,7 @@ dependencies = [
503
548
  "thread_local",
504
549
  "tokio",
505
550
  "tokio-stream",
506
- "tonic",
551
+ "tonic 0.12.3",
507
552
  "tracing",
508
553
  "tracing-core",
509
554
  "tracing-subscriber",
@@ -517,9 +562,9 @@ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
517
562
 
518
563
  [[package]]
519
564
  name = "core-foundation"
520
- version = "0.10.0"
565
+ version = "0.10.1"
521
566
  source = "registry+https://github.com/rust-lang/crates.io-index"
522
- checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
567
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
523
568
  dependencies = [
524
569
  "core-foundation-sys",
525
570
  "libc",
@@ -542,9 +587,9 @@ dependencies = [
542
587
 
543
588
  [[package]]
544
589
  name = "crc"
545
- version = "3.2.1"
590
+ version = "3.3.0"
546
591
  source = "registry+https://github.com/rust-lang/crates.io-index"
547
- checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
592
+ checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
548
593
  dependencies = [
549
594
  "crc-catalog",
550
595
  ]
@@ -557,36 +602,34 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
557
602
 
558
603
  [[package]]
559
604
  name = "crc32fast"
560
- version = "1.4.2"
605
+ version = "1.5.0"
561
606
  source = "registry+https://github.com/rust-lang/crates.io-index"
562
- checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
607
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
563
608
  dependencies = [
564
609
  "cfg-if",
565
610
  ]
566
611
 
567
612
  [[package]]
568
613
  name = "criterion"
569
- version = "0.5.1"
614
+ version = "0.6.0"
570
615
  source = "registry+https://github.com/rust-lang/crates.io-index"
571
- checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
616
+ checksum = "3bf7af66b0989381bd0be551bd7cc91912a655a58c6918420c9527b1fd8b4679"
572
617
  dependencies = [
573
618
  "anes",
574
619
  "cast",
575
620
  "ciborium",
576
621
  "clap",
577
622
  "criterion-plot",
578
- "is-terminal",
579
- "itertools 0.10.5",
623
+ "itertools 0.13.0",
580
624
  "num-traits",
581
- "once_cell",
582
625
  "oorandom",
583
626
  "plotters",
584
627
  "rayon",
585
628
  "regex",
586
629
  "serde",
587
- "serde_derive",
588
630
  "serde_json",
589
631
  "tinytemplate",
632
+ "tokio",
590
633
  "walkdir",
591
634
  ]
592
635
 
@@ -645,9 +688,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
645
688
 
646
689
  [[package]]
647
690
  name = "crunchy"
648
- version = "0.2.3"
691
+ version = "0.2.4"
649
692
  source = "registry+https://github.com/rust-lang/crates.io-index"
650
- checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
693
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
651
694
 
652
695
  [[package]]
653
696
  name = "crypto-common"
@@ -767,18 +810,18 @@ dependencies = [
767
810
 
768
811
  [[package]]
769
812
  name = "derive_more"
770
- version = "1.0.0"
813
+ version = "2.0.1"
771
814
  source = "registry+https://github.com/rust-lang/crates.io-index"
772
- checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
815
+ checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
773
816
  dependencies = [
774
817
  "derive_more-impl",
775
818
  ]
776
819
 
777
820
  [[package]]
778
821
  name = "derive_more-impl"
779
- version = "1.0.0"
822
+ version = "2.0.1"
780
823
  source = "registry+https://github.com/rust-lang/crates.io-index"
781
- checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
824
+ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
782
825
  dependencies = [
783
826
  "proc-macro2",
784
827
  "quote",
@@ -797,6 +840,27 @@ dependencies = [
797
840
  "subtle",
798
841
  ]
799
842
 
843
+ [[package]]
844
+ name = "dirs"
845
+ version = "5.0.1"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
848
+ dependencies = [
849
+ "dirs-sys",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "dirs-sys"
854
+ version = "0.4.1"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
857
+ dependencies = [
858
+ "libc",
859
+ "option-ext",
860
+ "redox_users",
861
+ "windows-sys 0.48.0",
862
+ ]
863
+
800
864
  [[package]]
801
865
  name = "displaydoc"
802
866
  version = "0.2.5"
@@ -876,12 +940,12 @@ dependencies = [
876
940
 
877
941
  [[package]]
878
942
  name = "errno"
879
- version = "0.3.11"
943
+ version = "0.3.13"
880
944
  source = "registry+https://github.com/rust-lang/crates.io-index"
881
- checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
945
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
882
946
  dependencies = [
883
947
  "libc",
884
- "windows-sys 0.59.0",
948
+ "windows-sys 0.60.2",
885
949
  ]
886
950
 
887
951
  [[package]]
@@ -910,9 +974,9 @@ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
910
974
 
911
975
  [[package]]
912
976
  name = "flate2"
913
- version = "1.1.1"
977
+ version = "1.1.2"
914
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
915
- checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
979
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
916
980
  dependencies = [
917
981
  "crc32fast",
918
982
  "miniz_oxide",
@@ -1061,24 +1125,34 @@ dependencies = [
1061
1125
  "version_check",
1062
1126
  ]
1063
1127
 
1128
+ [[package]]
1129
+ name = "gethostname"
1130
+ version = "1.0.2"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "fc257fdb4038301ce4b9cd1b3b51704509692bb3ff716a410cbd07925d9dae55"
1133
+ dependencies = [
1134
+ "rustix",
1135
+ "windows-targets 0.52.6",
1136
+ ]
1137
+
1064
1138
  [[package]]
1065
1139
  name = "getrandom"
1066
- version = "0.2.15"
1140
+ version = "0.2.16"
1067
1141
  source = "registry+https://github.com/rust-lang/crates.io-index"
1068
- checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
1142
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1069
1143
  dependencies = [
1070
1144
  "cfg-if",
1071
1145
  "js-sys",
1072
1146
  "libc",
1073
- "wasi 0.11.0+wasi-snapshot-preview1",
1147
+ "wasi 0.11.1+wasi-snapshot-preview1",
1074
1148
  "wasm-bindgen",
1075
1149
  ]
1076
1150
 
1077
1151
  [[package]]
1078
1152
  name = "getrandom"
1079
- version = "0.3.2"
1153
+ version = "0.3.3"
1080
1154
  source = "registry+https://github.com/rust-lang/crates.io-index"
1081
- checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
1155
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
1082
1156
  dependencies = [
1083
1157
  "cfg-if",
1084
1158
  "js-sys",
@@ -1111,13 +1185,13 @@ dependencies = [
1111
1185
  "futures-sink",
1112
1186
  "futures-timer",
1113
1187
  "futures-util",
1114
- "getrandom 0.3.2",
1188
+ "getrandom 0.3.3",
1115
1189
  "no-std-compat",
1116
1190
  "nonzero_ext",
1117
1191
  "parking_lot",
1118
1192
  "portable-atomic",
1119
1193
  "quanta",
1120
- "rand 0.9.0",
1194
+ "rand 0.9.2",
1121
1195
  "smallvec",
1122
1196
  "spinning_top",
1123
1197
  "web-time",
@@ -1125,9 +1199,9 @@ dependencies = [
1125
1199
 
1126
1200
  [[package]]
1127
1201
  name = "h2"
1128
- version = "0.4.9"
1202
+ version = "0.4.11"
1129
1203
  source = "registry+https://github.com/rust-lang/crates.io-index"
1130
- checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
1204
+ checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
1131
1205
  dependencies = [
1132
1206
  "atomic-waker",
1133
1207
  "bytes",
@@ -1135,7 +1209,7 @@ dependencies = [
1135
1209
  "futures-core",
1136
1210
  "futures-sink",
1137
1211
  "http",
1138
- "indexmap 2.9.0",
1212
+ "indexmap 2.10.0",
1139
1213
  "slab",
1140
1214
  "tokio",
1141
1215
  "tokio-util",
@@ -1166,9 +1240,9 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1166
1240
 
1167
1241
  [[package]]
1168
1242
  name = "hashbrown"
1169
- version = "0.15.2"
1243
+ version = "0.15.4"
1170
1244
  source = "registry+https://github.com/rust-lang/crates.io-index"
1171
- checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1245
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
1172
1246
  dependencies = [
1173
1247
  "allocator-api2",
1174
1248
  "equivalent",
@@ -1194,12 +1268,6 @@ version = "0.5.0"
1194
1268
  source = "registry+https://github.com/rust-lang/crates.io-index"
1195
1269
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1196
1270
 
1197
- [[package]]
1198
- name = "hermit-abi"
1199
- version = "0.5.0"
1200
- source = "registry+https://github.com/rust-lang/crates.io-index"
1201
- checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e"
1202
-
1203
1271
  [[package]]
1204
1272
  name = "hmac"
1205
1273
  version = "0.12.1"
@@ -1284,11 +1352,10 @@ dependencies = [
1284
1352
 
1285
1353
  [[package]]
1286
1354
  name = "hyper-rustls"
1287
- version = "0.27.5"
1355
+ version = "0.27.7"
1288
1356
  source = "registry+https://github.com/rust-lang/crates.io-index"
1289
- checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1357
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1290
1358
  dependencies = [
1291
- "futures-util",
1292
1359
  "http",
1293
1360
  "hyper",
1294
1361
  "hyper-util",
@@ -1315,19 +1382,23 @@ dependencies = [
1315
1382
 
1316
1383
  [[package]]
1317
1384
  name = "hyper-util"
1318
- version = "0.1.11"
1385
+ version = "0.1.16"
1319
1386
  source = "registry+https://github.com/rust-lang/crates.io-index"
1320
- checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
1387
+ checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
1321
1388
  dependencies = [
1389
+ "base64 0.22.1",
1322
1390
  "bytes",
1323
1391
  "futures-channel",
1392
+ "futures-core",
1324
1393
  "futures-util",
1325
1394
  "http",
1326
1395
  "http-body",
1327
1396
  "hyper",
1397
+ "ipnet",
1328
1398
  "libc",
1399
+ "percent-encoding",
1329
1400
  "pin-project-lite",
1330
- "socket2",
1401
+ "socket2 0.6.0",
1331
1402
  "tokio",
1332
1403
  "tower-service",
1333
1404
  "tracing",
@@ -1335,21 +1406,22 @@ dependencies = [
1335
1406
 
1336
1407
  [[package]]
1337
1408
  name = "icu_collections"
1338
- version = "1.5.0"
1409
+ version = "2.0.0"
1339
1410
  source = "registry+https://github.com/rust-lang/crates.io-index"
1340
- checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1411
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1341
1412
  dependencies = [
1342
1413
  "displaydoc",
1414
+ "potential_utf",
1343
1415
  "yoke",
1344
1416
  "zerofrom",
1345
1417
  "zerovec",
1346
1418
  ]
1347
1419
 
1348
1420
  [[package]]
1349
- name = "icu_locid"
1350
- version = "1.5.0"
1421
+ name = "icu_locale_core"
1422
+ version = "2.0.0"
1351
1423
  source = "registry+https://github.com/rust-lang/crates.io-index"
1352
- checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1424
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1353
1425
  dependencies = [
1354
1426
  "displaydoc",
1355
1427
  "litemap",
@@ -1358,31 +1430,11 @@ dependencies = [
1358
1430
  "zerovec",
1359
1431
  ]
1360
1432
 
1361
- [[package]]
1362
- name = "icu_locid_transform"
1363
- version = "1.5.0"
1364
- source = "registry+https://github.com/rust-lang/crates.io-index"
1365
- checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1366
- dependencies = [
1367
- "displaydoc",
1368
- "icu_locid",
1369
- "icu_locid_transform_data",
1370
- "icu_provider",
1371
- "tinystr",
1372
- "zerovec",
1373
- ]
1374
-
1375
- [[package]]
1376
- name = "icu_locid_transform_data"
1377
- version = "1.5.1"
1378
- source = "registry+https://github.com/rust-lang/crates.io-index"
1379
- checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
1380
-
1381
1433
  [[package]]
1382
1434
  name = "icu_normalizer"
1383
- version = "1.5.0"
1435
+ version = "2.0.0"
1384
1436
  source = "registry+https://github.com/rust-lang/crates.io-index"
1385
- checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1437
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1386
1438
  dependencies = [
1387
1439
  "displaydoc",
1388
1440
  "icu_collections",
@@ -1390,67 +1442,54 @@ dependencies = [
1390
1442
  "icu_properties",
1391
1443
  "icu_provider",
1392
1444
  "smallvec",
1393
- "utf16_iter",
1394
- "utf8_iter",
1395
- "write16",
1396
1445
  "zerovec",
1397
1446
  ]
1398
1447
 
1399
1448
  [[package]]
1400
1449
  name = "icu_normalizer_data"
1401
- version = "1.5.1"
1450
+ version = "2.0.0"
1402
1451
  source = "registry+https://github.com/rust-lang/crates.io-index"
1403
- checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1452
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1404
1453
 
1405
1454
  [[package]]
1406
1455
  name = "icu_properties"
1407
- version = "1.5.1"
1456
+ version = "2.0.1"
1408
1457
  source = "registry+https://github.com/rust-lang/crates.io-index"
1409
- checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1458
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1410
1459
  dependencies = [
1411
1460
  "displaydoc",
1412
1461
  "icu_collections",
1413
- "icu_locid_transform",
1462
+ "icu_locale_core",
1414
1463
  "icu_properties_data",
1415
1464
  "icu_provider",
1416
- "tinystr",
1465
+ "potential_utf",
1466
+ "zerotrie",
1417
1467
  "zerovec",
1418
1468
  ]
1419
1469
 
1420
1470
  [[package]]
1421
1471
  name = "icu_properties_data"
1422
- version = "1.5.1"
1472
+ version = "2.0.1"
1423
1473
  source = "registry+https://github.com/rust-lang/crates.io-index"
1424
- checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1474
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1425
1475
 
1426
1476
  [[package]]
1427
1477
  name = "icu_provider"
1428
- version = "1.5.0"
1478
+ version = "2.0.0"
1429
1479
  source = "registry+https://github.com/rust-lang/crates.io-index"
1430
- checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1480
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1431
1481
  dependencies = [
1432
1482
  "displaydoc",
1433
- "icu_locid",
1434
- "icu_provider_macros",
1483
+ "icu_locale_core",
1435
1484
  "stable_deref_trait",
1436
1485
  "tinystr",
1437
1486
  "writeable",
1438
1487
  "yoke",
1439
1488
  "zerofrom",
1489
+ "zerotrie",
1440
1490
  "zerovec",
1441
1491
  ]
1442
1492
 
1443
- [[package]]
1444
- name = "icu_provider_macros"
1445
- version = "1.5.0"
1446
- source = "registry+https://github.com/rust-lang/crates.io-index"
1447
- checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1448
- dependencies = [
1449
- "proc-macro2",
1450
- "quote",
1451
- "syn",
1452
- ]
1453
-
1454
1493
  [[package]]
1455
1494
  name = "ident_case"
1456
1495
  version = "1.0.1"
@@ -1470,9 +1509,9 @@ dependencies = [
1470
1509
 
1471
1510
  [[package]]
1472
1511
  name = "idna_adapter"
1473
- version = "1.2.0"
1512
+ version = "1.2.1"
1474
1513
  source = "registry+https://github.com/rust-lang/crates.io-index"
1475
- checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1514
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1476
1515
  dependencies = [
1477
1516
  "icu_normalizer",
1478
1517
  "icu_properties",
@@ -1490,12 +1529,12 @@ dependencies = [
1490
1529
 
1491
1530
  [[package]]
1492
1531
  name = "indexmap"
1493
- version = "2.9.0"
1532
+ version = "2.10.0"
1494
1533
  source = "registry+https://github.com/rust-lang/crates.io-index"
1495
- checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1534
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
1496
1535
  dependencies = [
1497
1536
  "equivalent",
1498
- "hashbrown 0.15.2",
1537
+ "hashbrown 0.15.4",
1499
1538
  ]
1500
1539
 
1501
1540
  [[package]]
@@ -1525,6 +1564,17 @@ dependencies = [
1525
1564
  "rustversion",
1526
1565
  ]
1527
1566
 
1567
+ [[package]]
1568
+ name = "io-uring"
1569
+ version = "0.7.9"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
1572
+ dependencies = [
1573
+ "bitflags",
1574
+ "cfg-if",
1575
+ "libc",
1576
+ ]
1577
+
1528
1578
  [[package]]
1529
1579
  name = "ipnet"
1530
1580
  version = "2.11.0"
@@ -1532,14 +1582,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
1582
  checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1533
1583
 
1534
1584
  [[package]]
1535
- name = "is-terminal"
1536
- version = "0.4.16"
1585
+ name = "iri-string"
1586
+ version = "0.7.8"
1537
1587
  source = "registry+https://github.com/rust-lang/crates.io-index"
1538
- checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
1588
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1539
1589
  dependencies = [
1540
- "hermit-abi",
1541
- "libc",
1542
- "windows-sys 0.59.0",
1590
+ "memchr",
1591
+ "serde",
1543
1592
  ]
1544
1593
 
1545
1594
  [[package]]
@@ -1566,6 +1615,15 @@ dependencies = [
1566
1615
  "either",
1567
1616
  ]
1568
1617
 
1618
+ [[package]]
1619
+ name = "itertools"
1620
+ version = "0.13.0"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1623
+ dependencies = [
1624
+ "either",
1625
+ ]
1626
+
1569
1627
  [[package]]
1570
1628
  name = "itertools"
1571
1629
  version = "0.14.0"
@@ -1587,7 +1645,7 @@ version = "0.1.33"
1587
1645
  source = "registry+https://github.com/rust-lang/crates.io-index"
1588
1646
  checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1589
1647
  dependencies = [
1590
- "getrandom 0.3.2",
1648
+ "getrandom 0.3.3",
1591
1649
  "libc",
1592
1650
  ]
1593
1651
 
@@ -1615,25 +1673,25 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1615
1673
 
1616
1674
  [[package]]
1617
1675
  name = "libc"
1618
- version = "0.2.172"
1676
+ version = "0.2.174"
1619
1677
  source = "registry+https://github.com/rust-lang/crates.io-index"
1620
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1678
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
1621
1679
 
1622
1680
  [[package]]
1623
1681
  name = "libloading"
1624
- version = "0.8.6"
1682
+ version = "0.8.8"
1625
1683
  source = "registry+https://github.com/rust-lang/crates.io-index"
1626
- checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1684
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
1627
1685
  dependencies = [
1628
1686
  "cfg-if",
1629
- "windows-targets 0.52.6",
1687
+ "windows-targets 0.53.2",
1630
1688
  ]
1631
1689
 
1632
1690
  [[package]]
1633
1691
  name = "libredox"
1634
- version = "0.1.3"
1692
+ version = "0.1.6"
1635
1693
  source = "registry+https://github.com/rust-lang/crates.io-index"
1636
- checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1694
+ checksum = "4488594b9328dee448adb906d8b126d9b7deb7cf5c22161ee591610bb1be83c0"
1637
1695
  dependencies = [
1638
1696
  "bitflags",
1639
1697
  "libc",
@@ -1648,26 +1706,20 @@ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1648
1706
 
1649
1707
  [[package]]
1650
1708
  name = "litemap"
1651
- version = "0.7.5"
1709
+ version = "0.8.0"
1652
1710
  source = "registry+https://github.com/rust-lang/crates.io-index"
1653
- checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
1711
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1654
1712
 
1655
1713
  [[package]]
1656
1714
  name = "lock_api"
1657
- version = "0.4.12"
1715
+ version = "0.4.13"
1658
1716
  source = "registry+https://github.com/rust-lang/crates.io-index"
1659
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1717
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1660
1718
  dependencies = [
1661
1719
  "autocfg",
1662
1720
  "scopeguard",
1663
1721
  ]
1664
1722
 
1665
- [[package]]
1666
- name = "lockfree-object-pool"
1667
- version = "0.1.6"
1668
- source = "registry+https://github.com/rust-lang/crates.io-index"
1669
- checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
1670
-
1671
1723
  [[package]]
1672
1724
  name = "log"
1673
1725
  version = "0.4.27"
@@ -1680,9 +1732,15 @@ version = "0.13.0"
1680
1732
  source = "registry+https://github.com/rust-lang/crates.io-index"
1681
1733
  checksum = "227748d55f2f0ab4735d87fd623798cb6b664512fe979705f829c9f81c934465"
1682
1734
  dependencies = [
1683
- "hashbrown 0.15.2",
1735
+ "hashbrown 0.15.4",
1684
1736
  ]
1685
1737
 
1738
+ [[package]]
1739
+ name = "lru-slab"
1740
+ version = "0.1.2"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1743
+
1686
1744
  [[package]]
1687
1745
  name = "lzma-rs"
1688
1746
  version = "0.3.0"
@@ -1742,11 +1800,17 @@ version = "0.7.3"
1742
1800
  source = "registry+https://github.com/rust-lang/crates.io-index"
1743
1801
  checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1744
1802
 
1803
+ [[package]]
1804
+ name = "matchit"
1805
+ version = "0.8.4"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1808
+
1745
1809
  [[package]]
1746
1810
  name = "memchr"
1747
- version = "2.7.4"
1811
+ version = "2.7.5"
1748
1812
  source = "registry+https://github.com/rust-lang/crates.io-index"
1749
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1813
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1750
1814
 
1751
1815
  [[package]]
1752
1816
  name = "mime"
@@ -1762,22 +1826,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1762
1826
 
1763
1827
  [[package]]
1764
1828
  name = "miniz_oxide"
1765
- version = "0.8.8"
1829
+ version = "0.8.9"
1766
1830
  source = "registry+https://github.com/rust-lang/crates.io-index"
1767
- checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1831
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1768
1832
  dependencies = [
1769
1833
  "adler2",
1770
1834
  ]
1771
1835
 
1772
1836
  [[package]]
1773
1837
  name = "mio"
1774
- version = "1.0.3"
1838
+ version = "1.0.4"
1775
1839
  source = "registry+https://github.com/rust-lang/crates.io-index"
1776
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1840
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1777
1841
  dependencies = [
1778
1842
  "libc",
1779
- "wasi 0.11.0+wasi-snapshot-preview1",
1780
- "windows-sys 0.52.0",
1843
+ "wasi 0.11.1+wasi-snapshot-preview1",
1844
+ "windows-sys 0.59.0",
1781
1845
  ]
1782
1846
 
1783
1847
  [[package]]
@@ -1808,9 +1872,9 @@ dependencies = [
1808
1872
 
1809
1873
  [[package]]
1810
1874
  name = "multimap"
1811
- version = "0.10.0"
1875
+ version = "0.10.1"
1812
1876
  source = "registry+https://github.com/rust-lang/crates.io-index"
1813
- checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
1877
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
1814
1878
 
1815
1879
  [[package]]
1816
1880
  name = "no-std-compat"
@@ -1883,6 +1947,12 @@ version = "1.21.3"
1883
1947
  source = "registry+https://github.com/rust-lang/crates.io-index"
1884
1948
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1885
1949
 
1950
+ [[package]]
1951
+ name = "once_cell_polyfill"
1952
+ version = "1.70.1"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1955
+
1886
1956
  [[package]]
1887
1957
  name = "oorandom"
1888
1958
  version = "11.1.5"
@@ -1897,23 +1967,23 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1897
1967
 
1898
1968
  [[package]]
1899
1969
  name = "opentelemetry"
1900
- version = "0.26.0"
1970
+ version = "0.30.0"
1901
1971
  source = "registry+https://github.com/rust-lang/crates.io-index"
1902
- checksum = "570074cc999d1a58184080966e5bd3bf3a9a4af650c3b05047c2621e7405cd17"
1972
+ checksum = "aaf416e4cb72756655126f7dd7bb0af49c674f4c1b9903e80c009e0c37e552e6"
1903
1973
  dependencies = [
1904
1974
  "futures-core",
1905
1975
  "futures-sink",
1906
1976
  "js-sys",
1907
- "once_cell",
1908
1977
  "pin-project-lite",
1909
- "thiserror 1.0.69",
1978
+ "thiserror 2.0.12",
1979
+ "tracing",
1910
1980
  ]
1911
1981
 
1912
1982
  [[package]]
1913
1983
  name = "opentelemetry-http"
1914
- version = "0.26.0"
1984
+ version = "0.30.0"
1915
1985
  source = "registry+https://github.com/rust-lang/crates.io-index"
1916
- checksum = "6351496aeaa49d7c267fb480678d85d1cd30c5edb20b497c48c56f62a8c14b99"
1986
+ checksum = "50f6639e842a97dbea8886e3439710ae463120091e2e064518ba8e716e6ac36d"
1917
1987
  dependencies = [
1918
1988
  "async-trait",
1919
1989
  "bytes",
@@ -1924,12 +1994,10 @@ dependencies = [
1924
1994
 
1925
1995
  [[package]]
1926
1996
  name = "opentelemetry-otlp"
1927
- version = "0.26.0"
1997
+ version = "0.30.0"
1928
1998
  source = "registry+https://github.com/rust-lang/crates.io-index"
1929
- checksum = "29e1f9c8b032d4f635c730c0efcf731d5e2530ea13fa8bef7939ddc8420696bd"
1999
+ checksum = "dbee664a43e07615731afc539ca60c6d9f1a9425e25ca09c57bc36c87c55852b"
1930
2000
  dependencies = [
1931
- "async-trait",
1932
- "futures-core",
1933
2001
  "http",
1934
2002
  "opentelemetry",
1935
2003
  "opentelemetry-http",
@@ -1937,56 +2005,48 @@ dependencies = [
1937
2005
  "opentelemetry_sdk",
1938
2006
  "prost",
1939
2007
  "reqwest",
1940
- "thiserror 1.0.69",
2008
+ "thiserror 2.0.12",
1941
2009
  "tokio",
1942
- "tonic",
1943
- ]
1944
-
1945
- [[package]]
1946
- name = "opentelemetry-prometheus"
1947
- version = "0.17.0"
1948
- source = "git+https://github.com/open-telemetry/opentelemetry-rust.git?rev=e911383#e91138351a689cd21923c15eb48f5fbc95ded807"
1949
- dependencies = [
1950
- "once_cell",
1951
- "opentelemetry",
1952
- "opentelemetry_sdk",
1953
- "prometheus",
1954
- "protobuf",
2010
+ "tonic 0.13.1",
2011
+ "tracing",
1955
2012
  ]
1956
2013
 
1957
2014
  [[package]]
1958
2015
  name = "opentelemetry-proto"
1959
- version = "0.26.1"
2016
+ version = "0.30.0"
1960
2017
  source = "registry+https://github.com/rust-lang/crates.io-index"
1961
- checksum = "c9d3968ce3aefdcca5c27e3c4ea4391b37547726a70893aab52d3de95d5f8b34"
2018
+ checksum = "2e046fd7660710fe5a05e8748e70d9058dc15c94ba914e7c4faa7c728f0e8ddc"
1962
2019
  dependencies = [
1963
2020
  "opentelemetry",
1964
2021
  "opentelemetry_sdk",
1965
2022
  "prost",
1966
- "tonic",
2023
+ "tonic 0.13.1",
1967
2024
  ]
1968
2025
 
1969
2026
  [[package]]
1970
2027
  name = "opentelemetry_sdk"
1971
- version = "0.26.0"
2028
+ version = "0.30.0"
1972
2029
  source = "registry+https://github.com/rust-lang/crates.io-index"
1973
- checksum = "d2c627d9f4c9cdc1f21a29ee4bfbd6028fcb8bcf2a857b43f3abdf72c9c862f3"
2030
+ checksum = "11f644aa9e5e31d11896e024305d7e3c98a88884d9f8919dbf37a9991bc47a4b"
1974
2031
  dependencies = [
1975
- "async-trait",
1976
2032
  "futures-channel",
1977
2033
  "futures-executor",
1978
2034
  "futures-util",
1979
- "glob",
1980
- "once_cell",
1981
2035
  "opentelemetry",
1982
2036
  "percent-encoding",
1983
- "rand 0.8.5",
2037
+ "rand 0.9.2",
1984
2038
  "serde_json",
1985
- "thiserror 1.0.69",
2039
+ "thiserror 2.0.12",
1986
2040
  "tokio",
1987
2041
  "tokio-stream",
1988
2042
  ]
1989
2043
 
2044
+ [[package]]
2045
+ name = "option-ext"
2046
+ version = "0.2.0"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2049
+
1990
2050
  [[package]]
1991
2051
  name = "overload"
1992
2052
  version = "0.1.1"
@@ -1995,9 +2055,9 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1995
2055
 
1996
2056
  [[package]]
1997
2057
  name = "parking_lot"
1998
- version = "0.12.3"
2058
+ version = "0.12.4"
1999
2059
  source = "registry+https://github.com/rust-lang/crates.io-index"
2000
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2060
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
2001
2061
  dependencies = [
2002
2062
  "lock_api",
2003
2063
  "parking_lot_core",
@@ -2005,9 +2065,9 @@ dependencies = [
2005
2065
 
2006
2066
  [[package]]
2007
2067
  name = "parking_lot_core"
2008
- version = "0.9.10"
2068
+ version = "0.9.11"
2009
2069
  source = "registry+https://github.com/rust-lang/crates.io-index"
2010
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2070
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
2011
2071
  dependencies = [
2012
2072
  "cfg-if",
2013
2073
  "libc",
@@ -2039,7 +2099,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
2099
  checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
2040
2100
  dependencies = [
2041
2101
  "fixedbitset",
2042
- "indexmap 2.9.0",
2102
+ "indexmap 2.10.0",
2043
2103
  ]
2044
2104
 
2045
2105
  [[package]]
@@ -2119,9 +2179,9 @@ dependencies = [
2119
2179
 
2120
2180
  [[package]]
2121
2181
  name = "portable-atomic"
2122
- version = "1.11.0"
2182
+ version = "1.11.1"
2123
2183
  source = "registry+https://github.com/rust-lang/crates.io-index"
2124
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2184
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2125
2185
 
2126
2186
  [[package]]
2127
2187
  name = "portable-atomic-util"
@@ -2132,6 +2192,15 @@ dependencies = [
2132
2192
  "portable-atomic",
2133
2193
  ]
2134
2194
 
2195
+ [[package]]
2196
+ name = "potential_utf"
2197
+ version = "0.1.2"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
2200
+ dependencies = [
2201
+ "zerovec",
2202
+ ]
2203
+
2135
2204
  [[package]]
2136
2205
  name = "powerfmt"
2137
2206
  version = "0.2.0"
@@ -2175,9 +2244,9 @@ dependencies = [
2175
2244
 
2176
2245
  [[package]]
2177
2246
  name = "prettyplease"
2178
- version = "0.2.32"
2247
+ version = "0.2.36"
2179
2248
  source = "registry+https://github.com/rust-lang/crates.io-index"
2180
- checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
2249
+ checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2"
2181
2250
  dependencies = [
2182
2251
  "proc-macro2",
2183
2252
  "syn",
@@ -2203,9 +2272,9 @@ dependencies = [
2203
2272
 
2204
2273
  [[package]]
2205
2274
  name = "prometheus"
2206
- version = "0.13.4"
2275
+ version = "0.14.0"
2207
2276
  source = "registry+https://github.com/rust-lang/crates.io-index"
2208
- checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
2277
+ checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a"
2209
2278
  dependencies = [
2210
2279
  "cfg-if",
2211
2280
  "fnv",
@@ -2213,7 +2282,7 @@ dependencies = [
2213
2282
  "memchr",
2214
2283
  "parking_lot",
2215
2284
  "protobuf",
2216
- "thiserror 1.0.69",
2285
+ "thiserror 2.0.12",
2217
2286
  ]
2218
2287
 
2219
2288
  [[package]]
@@ -2270,9 +2339,9 @@ dependencies = [
2270
2339
 
2271
2340
  [[package]]
2272
2341
  name = "prost-wkt"
2273
- version = "0.6.0"
2342
+ version = "0.6.1"
2274
2343
  source = "registry+https://github.com/rust-lang/crates.io-index"
2275
- checksum = "a8d84e2bee181b04c2bac339f2bfe818c46a99750488cc6728ce4181d5aa8299"
2344
+ checksum = "497e1e938f0c09ef9cabe1d49437b4016e03e8f82fbbe5d1c62a9b61b9decae1"
2276
2345
  dependencies = [
2277
2346
  "chrono",
2278
2347
  "inventory",
@@ -2285,9 +2354,9 @@ dependencies = [
2285
2354
 
2286
2355
  [[package]]
2287
2356
  name = "prost-wkt-build"
2288
- version = "0.6.0"
2357
+ version = "0.6.1"
2289
2358
  source = "registry+https://github.com/rust-lang/crates.io-index"
2290
- checksum = "8a669d5acbe719010c6f62a64e6d7d88fdedc1fe46e419747949ecb6312e9b14"
2359
+ checksum = "07b8bf115b70a7aa5af1fd5d6e9418492e9ccb6e4785e858c938e28d132a884b"
2291
2360
  dependencies = [
2292
2361
  "heck",
2293
2362
  "prost",
@@ -2298,9 +2367,9 @@ dependencies = [
2298
2367
 
2299
2368
  [[package]]
2300
2369
  name = "prost-wkt-types"
2301
- version = "0.6.0"
2370
+ version = "0.6.1"
2302
2371
  source = "registry+https://github.com/rust-lang/crates.io-index"
2303
- checksum = "01ef068e9b82e654614b22e6b13699bd545b6c0e2e721736008b00b38aeb4f64"
2372
+ checksum = "c8cdde6df0a98311c839392ca2f2f0bcecd545f86a62b4e3c6a49c336e970fe5"
2304
2373
  dependencies = [
2305
2374
  "chrono",
2306
2375
  "prost",
@@ -2316,30 +2385,44 @@ dependencies = [
2316
2385
 
2317
2386
  [[package]]
2318
2387
  name = "protobuf"
2319
- version = "2.28.0"
2388
+ version = "3.7.2"
2320
2389
  source = "registry+https://github.com/rust-lang/crates.io-index"
2321
- checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2390
+ checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
2391
+ dependencies = [
2392
+ "once_cell",
2393
+ "protobuf-support",
2394
+ "thiserror 1.0.69",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "protobuf-support"
2399
+ version = "3.7.2"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
2402
+ dependencies = [
2403
+ "thiserror 1.0.69",
2404
+ ]
2322
2405
 
2323
2406
  [[package]]
2324
2407
  name = "quanta"
2325
- version = "0.12.5"
2408
+ version = "0.12.6"
2326
2409
  source = "registry+https://github.com/rust-lang/crates.io-index"
2327
- checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e"
2410
+ checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7"
2328
2411
  dependencies = [
2329
2412
  "crossbeam-utils",
2330
2413
  "libc",
2331
2414
  "once_cell",
2332
2415
  "raw-cpuid",
2333
- "wasi 0.11.0+wasi-snapshot-preview1",
2416
+ "wasi 0.11.1+wasi-snapshot-preview1",
2334
2417
  "web-sys",
2335
2418
  "winapi",
2336
2419
  ]
2337
2420
 
2338
2421
  [[package]]
2339
2422
  name = "quinn"
2340
- version = "0.11.7"
2423
+ version = "0.11.8"
2341
2424
  source = "registry+https://github.com/rust-lang/crates.io-index"
2342
- checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
2425
+ checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
2343
2426
  dependencies = [
2344
2427
  "bytes",
2345
2428
  "cfg_aliases",
@@ -2348,7 +2431,7 @@ dependencies = [
2348
2431
  "quinn-udp",
2349
2432
  "rustc-hash 2.1.1",
2350
2433
  "rustls",
2351
- "socket2",
2434
+ "socket2 0.5.10",
2352
2435
  "thiserror 2.0.12",
2353
2436
  "tokio",
2354
2437
  "tracing",
@@ -2357,13 +2440,14 @@ dependencies = [
2357
2440
 
2358
2441
  [[package]]
2359
2442
  name = "quinn-proto"
2360
- version = "0.11.10"
2443
+ version = "0.11.12"
2361
2444
  source = "registry+https://github.com/rust-lang/crates.io-index"
2362
- checksum = "b820744eb4dc9b57a3398183639c511b5a26d2ed702cedd3febaa1393caa22cc"
2445
+ checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
2363
2446
  dependencies = [
2364
2447
  "bytes",
2365
- "getrandom 0.3.2",
2366
- "rand 0.9.0",
2448
+ "getrandom 0.3.3",
2449
+ "lru-slab",
2450
+ "rand 0.9.2",
2367
2451
  "ring",
2368
2452
  "rustc-hash 2.1.1",
2369
2453
  "rustls",
@@ -2377,14 +2461,14 @@ dependencies = [
2377
2461
 
2378
2462
  [[package]]
2379
2463
  name = "quinn-udp"
2380
- version = "0.5.11"
2464
+ version = "0.5.13"
2381
2465
  source = "registry+https://github.com/rust-lang/crates.io-index"
2382
- checksum = "541d0f57c6ec747a90738a52741d3221f7960e8ac2f0ff4b1a63680e033b4ab5"
2466
+ checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
2383
2467
  dependencies = [
2384
2468
  "cfg_aliases",
2385
2469
  "libc",
2386
2470
  "once_cell",
2387
- "socket2",
2471
+ "socket2 0.5.10",
2388
2472
  "tracing",
2389
2473
  "windows-sys 0.59.0",
2390
2474
  ]
@@ -2400,9 +2484,9 @@ dependencies = [
2400
2484
 
2401
2485
  [[package]]
2402
2486
  name = "r-efi"
2403
- version = "5.2.0"
2487
+ version = "5.3.0"
2404
2488
  source = "registry+https://github.com/rust-lang/crates.io-index"
2405
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2489
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2406
2490
 
2407
2491
  [[package]]
2408
2492
  name = "rand"
@@ -2417,13 +2501,12 @@ dependencies = [
2417
2501
 
2418
2502
  [[package]]
2419
2503
  name = "rand"
2420
- version = "0.9.0"
2504
+ version = "0.9.2"
2421
2505
  source = "registry+https://github.com/rust-lang/crates.io-index"
2422
- checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
2506
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2423
2507
  dependencies = [
2424
2508
  "rand_chacha 0.9.0",
2425
2509
  "rand_core 0.9.3",
2426
- "zerocopy",
2427
2510
  ]
2428
2511
 
2429
2512
  [[package]]
@@ -2452,7 +2535,7 @@ version = "0.6.4"
2452
2535
  source = "registry+https://github.com/rust-lang/crates.io-index"
2453
2536
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2454
2537
  dependencies = [
2455
- "getrandom 0.2.15",
2538
+ "getrandom 0.2.16",
2456
2539
  ]
2457
2540
 
2458
2541
  [[package]]
@@ -2461,7 +2544,7 @@ version = "0.9.3"
2461
2544
  source = "registry+https://github.com/rust-lang/crates.io-index"
2462
2545
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2463
2546
  dependencies = [
2464
- "getrandom 0.3.2",
2547
+ "getrandom 0.3.3",
2465
2548
  ]
2466
2549
 
2467
2550
  [[package]]
@@ -2495,18 +2578,18 @@ dependencies = [
2495
2578
 
2496
2579
  [[package]]
2497
2580
  name = "rb-sys"
2498
- version = "0.9.111"
2581
+ version = "0.9.116"
2499
2582
  source = "registry+https://github.com/rust-lang/crates.io-index"
2500
- checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
2583
+ checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad"
2501
2584
  dependencies = [
2502
2585
  "rb-sys-build",
2503
2586
  ]
2504
2587
 
2505
2588
  [[package]]
2506
2589
  name = "rb-sys-build"
2507
- version = "0.9.111"
2590
+ version = "0.9.116"
2508
2591
  source = "registry+https://github.com/rust-lang/crates.io-index"
2509
- checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
2592
+ checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0"
2510
2593
  dependencies = [
2511
2594
  "bindgen",
2512
2595
  "lazy_static",
@@ -2525,13 +2608,24 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
2525
2608
 
2526
2609
  [[package]]
2527
2610
  name = "redox_syscall"
2528
- version = "0.5.11"
2611
+ version = "0.5.15"
2529
2612
  source = "registry+https://github.com/rust-lang/crates.io-index"
2530
- checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2613
+ checksum = "7e8af0dde094006011e6a740d4879319439489813bd0bcdc7d821beaeeff48ec"
2531
2614
  dependencies = [
2532
2615
  "bitflags",
2533
2616
  ]
2534
2617
 
2618
+ [[package]]
2619
+ name = "redox_users"
2620
+ version = "0.4.6"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2623
+ dependencies = [
2624
+ "getrandom 0.2.16",
2625
+ "libredox",
2626
+ "thiserror 1.0.69",
2627
+ ]
2628
+
2535
2629
  [[package]]
2536
2630
  name = "regex"
2537
2631
  version = "1.11.1"
@@ -2584,9 +2678,9 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2584
2678
 
2585
2679
  [[package]]
2586
2680
  name = "reqwest"
2587
- version = "0.12.15"
2681
+ version = "0.12.22"
2588
2682
  source = "registry+https://github.com/rust-lang/crates.io-index"
2589
- checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2683
+ checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
2590
2684
  dependencies = [
2591
2685
  "base64 0.22.1",
2592
2686
  "bytes",
@@ -2599,17 +2693,13 @@ dependencies = [
2599
2693
  "hyper",
2600
2694
  "hyper-rustls",
2601
2695
  "hyper-util",
2602
- "ipnet",
2603
2696
  "js-sys",
2604
2697
  "log",
2605
- "mime",
2606
- "once_cell",
2607
2698
  "percent-encoding",
2608
2699
  "pin-project-lite",
2609
2700
  "quinn",
2610
2701
  "rustls",
2611
2702
  "rustls-native-certs",
2612
- "rustls-pemfile",
2613
2703
  "rustls-pki-types",
2614
2704
  "serde",
2615
2705
  "serde_json",
@@ -2619,13 +2709,13 @@ dependencies = [
2619
2709
  "tokio-rustls",
2620
2710
  "tokio-util",
2621
2711
  "tower 0.5.2",
2712
+ "tower-http",
2622
2713
  "tower-service",
2623
2714
  "url",
2624
2715
  "wasm-bindgen",
2625
2716
  "wasm-bindgen-futures",
2626
2717
  "wasm-streams",
2627
2718
  "web-sys",
2628
- "windows-registry",
2629
2719
  ]
2630
2720
 
2631
2721
  [[package]]
@@ -2636,7 +2726,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2636
2726
  dependencies = [
2637
2727
  "cc",
2638
2728
  "cfg-if",
2639
- "getrandom 0.2.15",
2729
+ "getrandom 0.2.16",
2640
2730
  "libc",
2641
2731
  "untrusted",
2642
2732
  "windows-sys 0.52.0",
@@ -2655,9 +2745,9 @@ dependencies = [
2655
2745
 
2656
2746
  [[package]]
2657
2747
  name = "rstest"
2658
- version = "0.24.0"
2748
+ version = "0.25.0"
2659
2749
  source = "registry+https://github.com/rust-lang/crates.io-index"
2660
- checksum = "03e905296805ab93e13c1ec3a03f4b6c4f35e9498a3d5fa96dc626d22c03cd89"
2750
+ checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d"
2661
2751
  dependencies = [
2662
2752
  "futures-timer",
2663
2753
  "futures-util",
@@ -2667,9 +2757,9 @@ dependencies = [
2667
2757
 
2668
2758
  [[package]]
2669
2759
  name = "rstest_macros"
2670
- version = "0.24.0"
2760
+ version = "0.25.0"
2671
2761
  source = "registry+https://github.com/rust-lang/crates.io-index"
2672
- checksum = "ef0053bbffce09062bee4bcc499b0fbe7a57b879f1efe088d6d8d4c7adcdef9b"
2762
+ checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746"
2673
2763
  dependencies = [
2674
2764
  "cfg-if",
2675
2765
  "glob",
@@ -2685,9 +2775,9 @@ dependencies = [
2685
2775
 
2686
2776
  [[package]]
2687
2777
  name = "rustc-demangle"
2688
- version = "0.1.24"
2778
+ version = "0.1.25"
2689
2779
  source = "registry+https://github.com/rust-lang/crates.io-index"
2690
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2780
+ checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
2691
2781
 
2692
2782
  [[package]]
2693
2783
  name = "rustc-hash"
@@ -2736,22 +2826,22 @@ version = "0.1.0"
2736
2826
 
2737
2827
  [[package]]
2738
2828
  name = "rustix"
2739
- version = "1.0.5"
2829
+ version = "1.0.8"
2740
2830
  source = "registry+https://github.com/rust-lang/crates.io-index"
2741
- checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
2831
+ checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
2742
2832
  dependencies = [
2743
2833
  "bitflags",
2744
2834
  "errno",
2745
2835
  "libc",
2746
2836
  "linux-raw-sys",
2747
- "windows-sys 0.59.0",
2837
+ "windows-sys 0.60.2",
2748
2838
  ]
2749
2839
 
2750
2840
  [[package]]
2751
2841
  name = "rustls"
2752
- version = "0.23.26"
2842
+ version = "0.23.29"
2753
2843
  source = "registry+https://github.com/rust-lang/crates.io-index"
2754
- checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
2844
+ checksum = "2491382039b29b9b11ff08b76ff6c97cf287671dbb74f0be44bda389fffe9bd1"
2755
2845
  dependencies = [
2756
2846
  "log",
2757
2847
  "once_cell",
@@ -2774,29 +2864,21 @@ dependencies = [
2774
2864
  "security-framework",
2775
2865
  ]
2776
2866
 
2777
- [[package]]
2778
- name = "rustls-pemfile"
2779
- version = "2.2.0"
2780
- source = "registry+https://github.com/rust-lang/crates.io-index"
2781
- checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2782
- dependencies = [
2783
- "rustls-pki-types",
2784
- ]
2785
-
2786
2867
  [[package]]
2787
2868
  name = "rustls-pki-types"
2788
- version = "1.11.0"
2869
+ version = "1.12.0"
2789
2870
  source = "registry+https://github.com/rust-lang/crates.io-index"
2790
- checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
2871
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2791
2872
  dependencies = [
2792
2873
  "web-time",
2874
+ "zeroize",
2793
2875
  ]
2794
2876
 
2795
2877
  [[package]]
2796
2878
  name = "rustls-webpki"
2797
- version = "0.103.1"
2879
+ version = "0.103.4"
2798
2880
  source = "registry+https://github.com/rust-lang/crates.io-index"
2799
- checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
2881
+ checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
2800
2882
  dependencies = [
2801
2883
  "ring",
2802
2884
  "rustls-pki-types",
@@ -2805,9 +2887,9 @@ dependencies = [
2805
2887
 
2806
2888
  [[package]]
2807
2889
  name = "rustversion"
2808
- version = "1.0.20"
2890
+ version = "1.0.21"
2809
2891
  source = "registry+https://github.com/rust-lang/crates.io-index"
2810
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
2892
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
2811
2893
 
2812
2894
  [[package]]
2813
2895
  name = "ryu"
@@ -2896,9 +2978,9 @@ dependencies = [
2896
2978
 
2897
2979
  [[package]]
2898
2980
  name = "serde_json"
2899
- version = "1.0.140"
2981
+ version = "1.0.141"
2900
2982
  source = "registry+https://github.com/rust-lang/crates.io-index"
2901
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
2983
+ checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3"
2902
2984
  dependencies = [
2903
2985
  "itoa",
2904
2986
  "memchr",
@@ -2908,9 +2990,18 @@ dependencies = [
2908
2990
 
2909
2991
  [[package]]
2910
2992
  name = "serde_spanned"
2911
- version = "0.6.8"
2993
+ version = "0.6.9"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2996
+ dependencies = [
2997
+ "serde",
2998
+ ]
2999
+
3000
+ [[package]]
3001
+ name = "serde_spanned"
3002
+ version = "1.0.0"
2912
3003
  source = "registry+https://github.com/rust-lang/crates.io-index"
2913
- checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
3004
+ checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83"
2914
3005
  dependencies = [
2915
3006
  "serde",
2916
3007
  ]
@@ -2961,9 +3052,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2961
3052
 
2962
3053
  [[package]]
2963
3054
  name = "signal-hook-registry"
2964
- version = "1.4.2"
3055
+ version = "1.4.5"
2965
3056
  source = "registry+https://github.com/rust-lang/crates.io-index"
2966
- checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
3057
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
2967
3058
  dependencies = [
2968
3059
  "libc",
2969
3060
  ]
@@ -2982,12 +3073,9 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2982
3073
 
2983
3074
  [[package]]
2984
3075
  name = "slab"
2985
- version = "0.4.9"
3076
+ version = "0.4.10"
2986
3077
  source = "registry+https://github.com/rust-lang/crates.io-index"
2987
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2988
- dependencies = [
2989
- "autocfg",
2990
- ]
3078
+ checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
2991
3079
 
2992
3080
  [[package]]
2993
3081
  name = "slotmap"
@@ -3000,20 +3088,30 @@ dependencies = [
3000
3088
 
3001
3089
  [[package]]
3002
3090
  name = "smallvec"
3003
- version = "1.15.0"
3091
+ version = "1.15.1"
3004
3092
  source = "registry+https://github.com/rust-lang/crates.io-index"
3005
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
3093
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3006
3094
 
3007
3095
  [[package]]
3008
3096
  name = "socket2"
3009
- version = "0.5.9"
3097
+ version = "0.5.10"
3010
3098
  source = "registry+https://github.com/rust-lang/crates.io-index"
3011
- checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
3099
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3012
3100
  dependencies = [
3013
3101
  "libc",
3014
3102
  "windows-sys 0.52.0",
3015
3103
  ]
3016
3104
 
3105
+ [[package]]
3106
+ name = "socket2"
3107
+ version = "0.6.0"
3108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3109
+ checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
3110
+ dependencies = [
3111
+ "libc",
3112
+ "windows-sys 0.59.0",
3113
+ ]
3114
+
3017
3115
  [[package]]
3018
3116
  name = "spinning_top"
3019
3117
  version = "0.3.0"
@@ -3043,9 +3141,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3043
3141
 
3044
3142
  [[package]]
3045
3143
  name = "syn"
3046
- version = "2.0.100"
3144
+ version = "2.0.104"
3047
3145
  source = "registry+https://github.com/rust-lang/crates.io-index"
3048
- checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
3146
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
3049
3147
  dependencies = [
3050
3148
  "proc-macro2",
3051
3149
  "quote",
@@ -3063,9 +3161,9 @@ dependencies = [
3063
3161
 
3064
3162
  [[package]]
3065
3163
  name = "synstructure"
3066
- version = "0.13.1"
3164
+ version = "0.13.2"
3067
3165
  source = "registry+https://github.com/rust-lang/crates.io-index"
3068
- checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3166
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3069
3167
  dependencies = [
3070
3168
  "proc-macro2",
3071
3169
  "quote",
@@ -3104,12 +3202,12 @@ checksum = "1ac9aa371f599d22256307c24a9d748c041e548cbf599f35d890f9d365361790"
3104
3202
 
3105
3203
  [[package]]
3106
3204
  name = "tempfile"
3107
- version = "3.19.1"
3205
+ version = "3.20.0"
3108
3206
  source = "registry+https://github.com/rust-lang/crates.io-index"
3109
- checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
3207
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
3110
3208
  dependencies = [
3111
3209
  "fastrand",
3112
- "getrandom 0.3.2",
3210
+ "getrandom 0.3.3",
3113
3211
  "once_cell",
3114
3212
  "rustix",
3115
3213
  "windows-sys 0.59.0",
@@ -3124,6 +3222,7 @@ dependencies = [
3124
3222
  "async-trait",
3125
3223
  "backoff",
3126
3224
  "base64 0.22.1",
3225
+ "bytes",
3127
3226
  "derive_builder",
3128
3227
  "derive_more",
3129
3228
  "futures-retry",
@@ -3141,7 +3240,7 @@ dependencies = [
3141
3240
  "temporal-sdk-core-protos",
3142
3241
  "thiserror 2.0.12",
3143
3242
  "tokio",
3144
- "tonic",
3243
+ "tonic 0.13.1",
3145
3244
  "tower 0.5.2",
3146
3245
  "tracing",
3147
3246
  "url",
@@ -3191,6 +3290,7 @@ dependencies = [
3191
3290
  "flate2",
3192
3291
  "futures-channel",
3193
3292
  "futures-util",
3293
+ "gethostname",
3194
3294
  "governor",
3195
3295
  "http-body-util",
3196
3296
  "hyper",
@@ -3200,7 +3300,6 @@ dependencies = [
3200
3300
  "mockall",
3201
3301
  "opentelemetry",
3202
3302
  "opentelemetry-otlp",
3203
- "opentelemetry-prometheus",
3204
3303
  "opentelemetry_sdk",
3205
3304
  "parking_lot",
3206
3305
  "pid",
@@ -3208,7 +3307,7 @@ dependencies = [
3208
3307
  "prometheus",
3209
3308
  "prost",
3210
3309
  "prost-wkt-types",
3211
- "rand 0.9.0",
3310
+ "rand 0.9.2",
3212
3311
  "reqwest",
3213
3312
  "ringbuf",
3214
3313
  "rstest",
@@ -3228,7 +3327,7 @@ dependencies = [
3228
3327
  "tokio",
3229
3328
  "tokio-stream",
3230
3329
  "tokio-util",
3231
- "tonic",
3330
+ "tonic 0.13.1",
3232
3331
  "tracing",
3233
3332
  "tracing-subscriber",
3234
3333
  "url",
@@ -3243,12 +3342,17 @@ dependencies = [
3243
3342
  "async-trait",
3244
3343
  "derive_builder",
3245
3344
  "derive_more",
3345
+ "dirs",
3246
3346
  "opentelemetry",
3247
3347
  "prost",
3348
+ "serde",
3248
3349
  "serde_json",
3350
+ "tempfile",
3249
3351
  "temporal-sdk-core-protos",
3250
3352
  "thiserror 2.0.12",
3251
- "tonic",
3353
+ "toml 0.8.23",
3354
+ "tonic 0.13.1",
3355
+ "tracing",
3252
3356
  "tracing-core",
3253
3357
  "url",
3254
3358
  ]
@@ -3265,11 +3369,11 @@ dependencies = [
3265
3369
  "prost-wkt",
3266
3370
  "prost-wkt-build",
3267
3371
  "prost-wkt-types",
3268
- "rand 0.9.0",
3372
+ "rand 0.9.2",
3269
3373
  "serde",
3270
3374
  "serde_json",
3271
3375
  "thiserror 2.0.12",
3272
- "tonic",
3376
+ "tonic 0.13.1",
3273
3377
  "tonic-build",
3274
3378
  "uuid",
3275
3379
  ]
@@ -3284,7 +3388,7 @@ dependencies = [
3284
3388
  "futures-util",
3285
3389
  "parking_lot",
3286
3390
  "prost",
3287
- "rand 0.9.0",
3391
+ "rand 0.9.2",
3288
3392
  "temporal-client",
3289
3393
  "temporal-sdk",
3290
3394
  "temporal-sdk-core",
@@ -3311,7 +3415,7 @@ dependencies = [
3311
3415
  "tokio",
3312
3416
  "tokio-stream",
3313
3417
  "tokio-util",
3314
- "tonic",
3418
+ "tonic 0.13.1",
3315
3419
  "tracing",
3316
3420
  "url",
3317
3421
  ]
@@ -3373,12 +3477,11 @@ dependencies = [
3373
3477
 
3374
3478
  [[package]]
3375
3479
  name = "thread_local"
3376
- version = "1.1.8"
3480
+ version = "1.1.9"
3377
3481
  source = "registry+https://github.com/rust-lang/crates.io-index"
3378
- checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
3482
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3379
3483
  dependencies = [
3380
3484
  "cfg-if",
3381
- "once_cell",
3382
3485
  ]
3383
3486
 
3384
3487
  [[package]]
@@ -3402,9 +3505,9 @@ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
3402
3505
 
3403
3506
  [[package]]
3404
3507
  name = "tinystr"
3405
- version = "0.7.6"
3508
+ version = "0.8.1"
3406
3509
  source = "registry+https://github.com/rust-lang/crates.io-index"
3407
- checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3510
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
3408
3511
  dependencies = [
3409
3512
  "displaydoc",
3410
3513
  "zerovec",
@@ -3437,18 +3540,20 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3437
3540
 
3438
3541
  [[package]]
3439
3542
  name = "tokio"
3440
- version = "1.44.2"
3543
+ version = "1.46.1"
3441
3544
  source = "registry+https://github.com/rust-lang/crates.io-index"
3442
- checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
3545
+ checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
3443
3546
  dependencies = [
3444
3547
  "backtrace",
3445
3548
  "bytes",
3549
+ "io-uring",
3446
3550
  "libc",
3447
3551
  "mio",
3448
3552
  "parking_lot",
3449
3553
  "pin-project-lite",
3450
3554
  "signal-hook-registry",
3451
- "socket2",
3555
+ "slab",
3556
+ "socket2 0.5.10",
3452
3557
  "tokio-macros",
3453
3558
  "tracing",
3454
3559
  "windows-sys 0.52.0",
@@ -3488,9 +3593,9 @@ dependencies = [
3488
3593
 
3489
3594
  [[package]]
3490
3595
  name = "tokio-util"
3491
- version = "0.7.14"
3596
+ version = "0.7.15"
3492
3597
  source = "registry+https://github.com/rust-lang/crates.io-index"
3493
- checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
3598
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
3494
3599
  dependencies = [
3495
3600
  "bytes",
3496
3601
  "futures-core",
@@ -3501,38 +3606,84 @@ dependencies = [
3501
3606
 
3502
3607
  [[package]]
3503
3608
  name = "toml"
3504
- version = "0.8.20"
3609
+ version = "0.8.23"
3505
3610
  source = "registry+https://github.com/rust-lang/crates.io-index"
3506
- checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148"
3611
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
3507
3612
  dependencies = [
3508
3613
  "serde",
3509
- "serde_spanned",
3510
- "toml_datetime",
3614
+ "serde_spanned 0.6.9",
3615
+ "toml_datetime 0.6.11",
3511
3616
  "toml_edit",
3512
3617
  ]
3513
3618
 
3619
+ [[package]]
3620
+ name = "toml"
3621
+ version = "0.9.2"
3622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3623
+ checksum = "ed0aee96c12fa71097902e0bb061a5e1ebd766a6636bb605ba401c45c1650eac"
3624
+ dependencies = [
3625
+ "indexmap 2.10.0",
3626
+ "serde",
3627
+ "serde_spanned 1.0.0",
3628
+ "toml_datetime 0.7.0",
3629
+ "toml_parser",
3630
+ "toml_writer",
3631
+ "winnow",
3632
+ ]
3633
+
3514
3634
  [[package]]
3515
3635
  name = "toml_datetime"
3516
- version = "0.6.8"
3636
+ version = "0.6.11"
3517
3637
  source = "registry+https://github.com/rust-lang/crates.io-index"
3518
- checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
3638
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
3639
+ dependencies = [
3640
+ "serde",
3641
+ ]
3642
+
3643
+ [[package]]
3644
+ name = "toml_datetime"
3645
+ version = "0.7.0"
3646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3647
+ checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3"
3519
3648
  dependencies = [
3520
3649
  "serde",
3521
3650
  ]
3522
3651
 
3523
3652
  [[package]]
3524
3653
  name = "toml_edit"
3525
- version = "0.22.24"
3654
+ version = "0.22.27"
3526
3655
  source = "registry+https://github.com/rust-lang/crates.io-index"
3527
- checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
3656
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
3528
3657
  dependencies = [
3529
- "indexmap 2.9.0",
3658
+ "indexmap 2.10.0",
3530
3659
  "serde",
3531
- "serde_spanned",
3532
- "toml_datetime",
3660
+ "serde_spanned 0.6.9",
3661
+ "toml_datetime 0.6.11",
3662
+ "toml_write",
3533
3663
  "winnow",
3534
3664
  ]
3535
3665
 
3666
+ [[package]]
3667
+ name = "toml_parser"
3668
+ version = "1.0.1"
3669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3670
+ checksum = "97200572db069e74c512a14117b296ba0a80a30123fbbb5aa1f4a348f639ca30"
3671
+ dependencies = [
3672
+ "winnow",
3673
+ ]
3674
+
3675
+ [[package]]
3676
+ name = "toml_write"
3677
+ version = "0.1.2"
3678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3679
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
3680
+
3681
+ [[package]]
3682
+ name = "toml_writer"
3683
+ version = "1.0.2"
3684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3685
+ checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64"
3686
+
3536
3687
  [[package]]
3537
3688
  name = "tonic"
3538
3689
  version = "0.12.3"
@@ -3541,7 +3692,36 @@ checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
3541
3692
  dependencies = [
3542
3693
  "async-stream",
3543
3694
  "async-trait",
3544
- "axum",
3695
+ "axum 0.7.9",
3696
+ "base64 0.22.1",
3697
+ "bytes",
3698
+ "h2",
3699
+ "http",
3700
+ "http-body",
3701
+ "http-body-util",
3702
+ "hyper",
3703
+ "hyper-timeout",
3704
+ "hyper-util",
3705
+ "percent-encoding",
3706
+ "pin-project",
3707
+ "prost",
3708
+ "socket2 0.5.10",
3709
+ "tokio",
3710
+ "tokio-stream",
3711
+ "tower 0.4.13",
3712
+ "tower-layer",
3713
+ "tower-service",
3714
+ "tracing",
3715
+ ]
3716
+
3717
+ [[package]]
3718
+ name = "tonic"
3719
+ version = "0.13.1"
3720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3721
+ checksum = "7e581ba15a835f4d9ea06c55ab1bd4dce26fc53752c69a04aac00703bfb49ba9"
3722
+ dependencies = [
3723
+ "async-trait",
3724
+ "axum 0.8.4",
3545
3725
  "base64 0.22.1",
3546
3726
  "bytes",
3547
3727
  "h2",
@@ -3555,12 +3735,11 @@ dependencies = [
3555
3735
  "pin-project",
3556
3736
  "prost",
3557
3737
  "rustls-native-certs",
3558
- "rustls-pemfile",
3559
- "socket2",
3738
+ "socket2 0.5.10",
3560
3739
  "tokio",
3561
3740
  "tokio-rustls",
3562
3741
  "tokio-stream",
3563
- "tower 0.4.13",
3742
+ "tower 0.5.2",
3564
3743
  "tower-layer",
3565
3744
  "tower-service",
3566
3745
  "tracing",
@@ -3568,9 +3747,9 @@ dependencies = [
3568
3747
 
3569
3748
  [[package]]
3570
3749
  name = "tonic-build"
3571
- version = "0.12.3"
3750
+ version = "0.13.1"
3572
3751
  source = "registry+https://github.com/rust-lang/crates.io-index"
3573
- checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11"
3752
+ checksum = "eac6f67be712d12f0b41328db3137e0d0757645d8904b4cb7d51cd9c2279e847"
3574
3753
  dependencies = [
3575
3754
  "prettyplease",
3576
3755
  "proc-macro2",
@@ -3608,9 +3787,31 @@ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3608
3787
  dependencies = [
3609
3788
  "futures-core",
3610
3789
  "futures-util",
3790
+ "indexmap 2.10.0",
3611
3791
  "pin-project-lite",
3792
+ "slab",
3612
3793
  "sync_wrapper",
3613
3794
  "tokio",
3795
+ "tokio-util",
3796
+ "tower-layer",
3797
+ "tower-service",
3798
+ "tracing",
3799
+ ]
3800
+
3801
+ [[package]]
3802
+ name = "tower-http"
3803
+ version = "0.6.6"
3804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3805
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
3806
+ dependencies = [
3807
+ "bitflags",
3808
+ "bytes",
3809
+ "futures-util",
3810
+ "http",
3811
+ "http-body",
3812
+ "iri-string",
3813
+ "pin-project-lite",
3814
+ "tower 0.5.2",
3614
3815
  "tower-layer",
3615
3816
  "tower-service",
3616
3817
  ]
@@ -3640,9 +3841,9 @@ dependencies = [
3640
3841
 
3641
3842
  [[package]]
3642
3843
  name = "tracing-attributes"
3643
- version = "0.1.28"
3844
+ version = "0.1.30"
3644
3845
  source = "registry+https://github.com/rust-lang/crates.io-index"
3645
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3846
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3646
3847
  dependencies = [
3647
3848
  "proc-macro2",
3648
3849
  "quote",
@@ -3651,9 +3852,9 @@ dependencies = [
3651
3852
 
3652
3853
  [[package]]
3653
3854
  name = "tracing-core"
3654
- version = "0.1.33"
3855
+ version = "0.1.34"
3655
3856
  source = "registry+https://github.com/rust-lang/crates.io-index"
3656
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3857
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3657
3858
  dependencies = [
3658
3859
  "once_cell",
3659
3860
  "valuable",
@@ -3684,9 +3885,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3684
3885
 
3685
3886
  [[package]]
3686
3887
  name = "trybuild"
3687
- version = "1.0.104"
3888
+ version = "1.0.106"
3688
3889
  source = "registry+https://github.com/rust-lang/crates.io-index"
3689
- checksum = "6ae08be68c056db96f0e6c6dd820727cca756ced9e1f4cc7fdd20e2a55e23898"
3890
+ checksum = "65af40ad689f2527aebbd37a0a816aea88ff5f774ceabe99de5be02f2f91dae2"
3690
3891
  dependencies = [
3691
3892
  "dissimilar",
3692
3893
  "glob",
@@ -3695,7 +3896,7 @@ dependencies = [
3695
3896
  "serde_json",
3696
3897
  "target-triple",
3697
3898
  "termcolor",
3698
- "toml",
3899
+ "toml 0.9.2",
3699
3900
  ]
3700
3901
 
3701
3902
  [[package]]
@@ -3763,12 +3964,6 @@ dependencies = [
3763
3964
  "percent-encoding",
3764
3965
  ]
3765
3966
 
3766
- [[package]]
3767
- name = "utf16_iter"
3768
- version = "1.0.5"
3769
- source = "registry+https://github.com/rust-lang/crates.io-index"
3770
- checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3771
-
3772
3967
  [[package]]
3773
3968
  name = "utf8_iter"
3774
3969
  version = "1.0.4"
@@ -3783,11 +3978,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3783
3978
 
3784
3979
  [[package]]
3785
3980
  name = "uuid"
3786
- version = "1.16.0"
3981
+ version = "1.17.0"
3787
3982
  source = "registry+https://github.com/rust-lang/crates.io-index"
3788
- checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3983
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
3789
3984
  dependencies = [
3790
- "getrandom 0.3.2",
3985
+ "getrandom 0.3.3",
3986
+ "js-sys",
3987
+ "wasm-bindgen",
3791
3988
  ]
3792
3989
 
3793
3990
  [[package]]
@@ -3823,9 +4020,9 @@ dependencies = [
3823
4020
 
3824
4021
  [[package]]
3825
4022
  name = "wasi"
3826
- version = "0.11.0+wasi-snapshot-preview1"
4023
+ version = "0.11.1+wasi-snapshot-preview1"
3827
4024
  source = "registry+https://github.com/rust-lang/crates.io-index"
3828
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
4025
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3829
4026
 
3830
4027
  [[package]]
3831
4028
  name = "wasi"
@@ -3989,7 +4186,7 @@ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
3989
4186
  dependencies = [
3990
4187
  "windows-implement",
3991
4188
  "windows-interface",
3992
- "windows-result 0.1.2",
4189
+ "windows-result",
3993
4190
  "windows-targets 0.52.6",
3994
4191
  ]
3995
4192
 
@@ -4015,23 +4212,6 @@ dependencies = [
4015
4212
  "syn",
4016
4213
  ]
4017
4214
 
4018
- [[package]]
4019
- name = "windows-link"
4020
- version = "0.1.1"
4021
- source = "registry+https://github.com/rust-lang/crates.io-index"
4022
- checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
4023
-
4024
- [[package]]
4025
- name = "windows-registry"
4026
- version = "0.4.0"
4027
- source = "registry+https://github.com/rust-lang/crates.io-index"
4028
- checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
4029
- dependencies = [
4030
- "windows-result 0.3.2",
4031
- "windows-strings",
4032
- "windows-targets 0.53.0",
4033
- ]
4034
-
4035
4215
  [[package]]
4036
4216
  name = "windows-result"
4037
4217
  version = "0.1.2"
@@ -4042,21 +4222,12 @@ dependencies = [
4042
4222
  ]
4043
4223
 
4044
4224
  [[package]]
4045
- name = "windows-result"
4046
- version = "0.3.2"
4047
- source = "registry+https://github.com/rust-lang/crates.io-index"
4048
- checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
4049
- dependencies = [
4050
- "windows-link",
4051
- ]
4052
-
4053
- [[package]]
4054
- name = "windows-strings"
4055
- version = "0.3.1"
4225
+ name = "windows-sys"
4226
+ version = "0.48.0"
4056
4227
  source = "registry+https://github.com/rust-lang/crates.io-index"
4057
- checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
4228
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4058
4229
  dependencies = [
4059
- "windows-link",
4230
+ "windows-targets 0.48.5",
4060
4231
  ]
4061
4232
 
4062
4233
  [[package]]
@@ -4077,6 +4248,30 @@ dependencies = [
4077
4248
  "windows-targets 0.52.6",
4078
4249
  ]
4079
4250
 
4251
+ [[package]]
4252
+ name = "windows-sys"
4253
+ version = "0.60.2"
4254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4255
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4256
+ dependencies = [
4257
+ "windows-targets 0.53.2",
4258
+ ]
4259
+
4260
+ [[package]]
4261
+ name = "windows-targets"
4262
+ version = "0.48.5"
4263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4264
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4265
+ dependencies = [
4266
+ "windows_aarch64_gnullvm 0.48.5",
4267
+ "windows_aarch64_msvc 0.48.5",
4268
+ "windows_i686_gnu 0.48.5",
4269
+ "windows_i686_msvc 0.48.5",
4270
+ "windows_x86_64_gnu 0.48.5",
4271
+ "windows_x86_64_gnullvm 0.48.5",
4272
+ "windows_x86_64_msvc 0.48.5",
4273
+ ]
4274
+
4080
4275
  [[package]]
4081
4276
  name = "windows-targets"
4082
4277
  version = "0.52.6"
@@ -4095,9 +4290,9 @@ dependencies = [
4095
4290
 
4096
4291
  [[package]]
4097
4292
  name = "windows-targets"
4098
- version = "0.53.0"
4293
+ version = "0.53.2"
4099
4294
  source = "registry+https://github.com/rust-lang/crates.io-index"
4100
- checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
4295
+ checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
4101
4296
  dependencies = [
4102
4297
  "windows_aarch64_gnullvm 0.53.0",
4103
4298
  "windows_aarch64_msvc 0.53.0",
@@ -4109,6 +4304,12 @@ dependencies = [
4109
4304
  "windows_x86_64_msvc 0.53.0",
4110
4305
  ]
4111
4306
 
4307
+ [[package]]
4308
+ name = "windows_aarch64_gnullvm"
4309
+ version = "0.48.5"
4310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4311
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4312
+
4112
4313
  [[package]]
4113
4314
  name = "windows_aarch64_gnullvm"
4114
4315
  version = "0.52.6"
@@ -4121,6 +4322,12 @@ version = "0.53.0"
4121
4322
  source = "registry+https://github.com/rust-lang/crates.io-index"
4122
4323
  checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
4123
4324
 
4325
+ [[package]]
4326
+ name = "windows_aarch64_msvc"
4327
+ version = "0.48.5"
4328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4329
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4330
+
4124
4331
  [[package]]
4125
4332
  name = "windows_aarch64_msvc"
4126
4333
  version = "0.52.6"
@@ -4133,6 +4340,12 @@ version = "0.53.0"
4133
4340
  source = "registry+https://github.com/rust-lang/crates.io-index"
4134
4341
  checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
4135
4342
 
4343
+ [[package]]
4344
+ name = "windows_i686_gnu"
4345
+ version = "0.48.5"
4346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4347
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4348
+
4136
4349
  [[package]]
4137
4350
  name = "windows_i686_gnu"
4138
4351
  version = "0.52.6"
@@ -4157,6 +4370,12 @@ version = "0.53.0"
4157
4370
  source = "registry+https://github.com/rust-lang/crates.io-index"
4158
4371
  checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
4159
4372
 
4373
+ [[package]]
4374
+ name = "windows_i686_msvc"
4375
+ version = "0.48.5"
4376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4377
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4378
+
4160
4379
  [[package]]
4161
4380
  name = "windows_i686_msvc"
4162
4381
  version = "0.52.6"
@@ -4169,6 +4388,12 @@ version = "0.53.0"
4169
4388
  source = "registry+https://github.com/rust-lang/crates.io-index"
4170
4389
  checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
4171
4390
 
4391
+ [[package]]
4392
+ name = "windows_x86_64_gnu"
4393
+ version = "0.48.5"
4394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4395
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4396
+
4172
4397
  [[package]]
4173
4398
  name = "windows_x86_64_gnu"
4174
4399
  version = "0.52.6"
@@ -4181,6 +4406,12 @@ version = "0.53.0"
4181
4406
  source = "registry+https://github.com/rust-lang/crates.io-index"
4182
4407
  checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
4183
4408
 
4409
+ [[package]]
4410
+ name = "windows_x86_64_gnullvm"
4411
+ version = "0.48.5"
4412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4413
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4414
+
4184
4415
  [[package]]
4185
4416
  name = "windows_x86_64_gnullvm"
4186
4417
  version = "0.52.6"
@@ -4193,6 +4424,12 @@ version = "0.53.0"
4193
4424
  source = "registry+https://github.com/rust-lang/crates.io-index"
4194
4425
  checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
4195
4426
 
4427
+ [[package]]
4428
+ name = "windows_x86_64_msvc"
4429
+ version = "0.48.5"
4430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4431
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4432
+
4196
4433
  [[package]]
4197
4434
  name = "windows_x86_64_msvc"
4198
4435
  version = "0.52.6"
@@ -4207,9 +4444,9 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
4207
4444
 
4208
4445
  [[package]]
4209
4446
  name = "winnow"
4210
- version = "0.7.6"
4447
+ version = "0.7.12"
4211
4448
  source = "registry+https://github.com/rust-lang/crates.io-index"
4212
- checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10"
4449
+ checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
4213
4450
  dependencies = [
4214
4451
  "memchr",
4215
4452
  ]
@@ -4223,23 +4460,17 @@ dependencies = [
4223
4460
  "bitflags",
4224
4461
  ]
4225
4462
 
4226
- [[package]]
4227
- name = "write16"
4228
- version = "1.0.0"
4229
- source = "registry+https://github.com/rust-lang/crates.io-index"
4230
- checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4231
-
4232
4463
  [[package]]
4233
4464
  name = "writeable"
4234
- version = "0.5.5"
4465
+ version = "0.6.1"
4235
4466
  source = "registry+https://github.com/rust-lang/crates.io-index"
4236
- checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4467
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
4237
4468
 
4238
4469
  [[package]]
4239
4470
  name = "xattr"
4240
- version = "1.5.0"
4471
+ version = "1.5.1"
4241
4472
  source = "registry+https://github.com/rust-lang/crates.io-index"
4242
- checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
4473
+ checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909"
4243
4474
  dependencies = [
4244
4475
  "libc",
4245
4476
  "rustix",
@@ -4256,9 +4487,9 @@ dependencies = [
4256
4487
 
4257
4488
  [[package]]
4258
4489
  name = "yoke"
4259
- version = "0.7.5"
4490
+ version = "0.8.0"
4260
4491
  source = "registry+https://github.com/rust-lang/crates.io-index"
4261
- checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4492
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
4262
4493
  dependencies = [
4263
4494
  "serde",
4264
4495
  "stable_deref_trait",
@@ -4268,9 +4499,9 @@ dependencies = [
4268
4499
 
4269
4500
  [[package]]
4270
4501
  name = "yoke-derive"
4271
- version = "0.7.5"
4502
+ version = "0.8.0"
4272
4503
  source = "registry+https://github.com/rust-lang/crates.io-index"
4273
- checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4504
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
4274
4505
  dependencies = [
4275
4506
  "proc-macro2",
4276
4507
  "quote",
@@ -4280,18 +4511,18 @@ dependencies = [
4280
4511
 
4281
4512
  [[package]]
4282
4513
  name = "zerocopy"
4283
- version = "0.8.24"
4514
+ version = "0.8.26"
4284
4515
  source = "registry+https://github.com/rust-lang/crates.io-index"
4285
- checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
4516
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
4286
4517
  dependencies = [
4287
4518
  "zerocopy-derive",
4288
4519
  ]
4289
4520
 
4290
4521
  [[package]]
4291
4522
  name = "zerocopy-derive"
4292
- version = "0.8.24"
4523
+ version = "0.8.26"
4293
4524
  source = "registry+https://github.com/rust-lang/crates.io-index"
4294
- checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
4525
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
4295
4526
  dependencies = [
4296
4527
  "proc-macro2",
4297
4528
  "quote",
@@ -4339,11 +4570,22 @@ dependencies = [
4339
4570
  "syn",
4340
4571
  ]
4341
4572
 
4573
+ [[package]]
4574
+ name = "zerotrie"
4575
+ version = "0.2.2"
4576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4577
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
4578
+ dependencies = [
4579
+ "displaydoc",
4580
+ "yoke",
4581
+ "zerofrom",
4582
+ ]
4583
+
4342
4584
  [[package]]
4343
4585
  name = "zerovec"
4344
- version = "0.10.4"
4586
+ version = "0.11.2"
4345
4587
  source = "registry+https://github.com/rust-lang/crates.io-index"
4346
- checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4588
+ checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
4347
4589
  dependencies = [
4348
4590
  "yoke",
4349
4591
  "zerofrom",
@@ -4352,9 +4594,9 @@ dependencies = [
4352
4594
 
4353
4595
  [[package]]
4354
4596
  name = "zerovec-derive"
4355
- version = "0.10.3"
4597
+ version = "0.11.1"
4356
4598
  source = "registry+https://github.com/rust-lang/crates.io-index"
4357
- checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4599
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
4358
4600
  dependencies = [
4359
4601
  "proc-macro2",
4360
4602
  "quote",
@@ -4363,9 +4605,9 @@ dependencies = [
4363
4605
 
4364
4606
  [[package]]
4365
4607
  name = "zip"
4366
- version = "2.6.1"
4608
+ version = "2.4.2"
4367
4609
  source = "registry+https://github.com/rust-lang/crates.io-index"
4368
- checksum = "1dcb24d0152526ae49b9b96c1dcf71850ca1e0b882e4e28ed898a93c41334744"
4610
+ checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
4369
4611
  dependencies = [
4370
4612
  "aes",
4371
4613
  "arbitrary",
@@ -4374,14 +4616,16 @@ dependencies = [
4374
4616
  "crc32fast",
4375
4617
  "crossbeam-utils",
4376
4618
  "deflate64",
4619
+ "displaydoc",
4377
4620
  "flate2",
4378
- "getrandom 0.3.2",
4621
+ "getrandom 0.3.3",
4379
4622
  "hmac",
4380
- "indexmap 2.9.0",
4623
+ "indexmap 2.10.0",
4381
4624
  "lzma-rs",
4382
4625
  "memchr",
4383
4626
  "pbkdf2",
4384
4627
  "sha1",
4628
+ "thiserror 2.0.12",
4385
4629
  "time",
4386
4630
  "xz2",
4387
4631
  "zeroize",
@@ -4391,15 +4635,13 @@ dependencies = [
4391
4635
 
4392
4636
  [[package]]
4393
4637
  name = "zopfli"
4394
- version = "0.8.1"
4638
+ version = "0.8.2"
4395
4639
  source = "registry+https://github.com/rust-lang/crates.io-index"
4396
- checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946"
4640
+ checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7"
4397
4641
  dependencies = [
4398
4642
  "bumpalo",
4399
4643
  "crc32fast",
4400
- "lockfree-object-pool",
4401
4644
  "log",
4402
- "once_cell",
4403
4645
  "simd-adler32",
4404
4646
  ]
4405
4647