temporalio 0.4.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (146) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +1 -1
  3. data/Cargo.lock +735 -479
  4. data/Cargo.toml +5 -5
  5. data/README.md +188 -39
  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 +7 -2
  14. data/lib/temporalio/api/cloud/account/v1/message.rb +1 -1
  15. data/lib/temporalio/api/cloud/cloudservice/v1/request_response.rb +22 -2
  16. data/lib/temporalio/api/cloud/cloudservice/v1/service.rb +2 -2
  17. data/lib/temporalio/api/cloud/connectivityrule/v1/message.rb +29 -0
  18. data/lib/temporalio/api/cloud/identity/v1/message.rb +7 -2
  19. data/lib/temporalio/api/cloud/namespace/v1/message.rb +7 -2
  20. data/lib/temporalio/api/cloud/nexus/v1/message.rb +3 -2
  21. data/lib/temporalio/api/cloud/operation/v1/message.rb +2 -2
  22. data/lib/temporalio/api/cloud/region/v1/message.rb +1 -1
  23. data/lib/temporalio/api/cloud/resource/v1/message.rb +1 -1
  24. data/lib/temporalio/api/cloud/sink/v1/message.rb +1 -1
  25. data/lib/temporalio/api/cloud/usage/v1/message.rb +1 -1
  26. data/lib/temporalio/api/command/v1/message.rb +2 -2
  27. data/lib/temporalio/api/common/v1/grpc_status.rb +1 -1
  28. data/lib/temporalio/api/common/v1/message.rb +4 -2
  29. data/lib/temporalio/api/deployment/v1/message.rb +3 -2
  30. data/lib/temporalio/api/enums/v1/batch_operation.rb +2 -2
  31. data/lib/temporalio/api/enums/v1/command_type.rb +1 -1
  32. data/lib/temporalio/api/enums/v1/common.rb +5 -2
  33. data/lib/temporalio/api/enums/v1/deployment.rb +3 -2
  34. data/lib/temporalio/api/enums/v1/event_type.rb +2 -2
  35. data/lib/temporalio/api/enums/v1/failed_cause.rb +2 -2
  36. data/lib/temporalio/api/enums/v1/namespace.rb +1 -1
  37. data/lib/temporalio/api/enums/v1/nexus.rb +1 -1
  38. data/lib/temporalio/api/enums/v1/query.rb +1 -1
  39. data/lib/temporalio/api/enums/v1/reset.rb +1 -1
  40. data/lib/temporalio/api/enums/v1/schedule.rb +1 -1
  41. data/lib/temporalio/api/enums/v1/task_queue.rb +3 -2
  42. data/lib/temporalio/api/enums/v1/update.rb +1 -1
  43. data/lib/temporalio/api/enums/v1/workflow.rb +2 -2
  44. data/lib/temporalio/api/errordetails/v1/message.rb +1 -1
  45. data/lib/temporalio/api/export/v1/message.rb +1 -1
  46. data/lib/temporalio/api/failure/v1/message.rb +3 -2
  47. data/lib/temporalio/api/filter/v1/message.rb +1 -1
  48. data/lib/temporalio/api/history/v1/message.rb +4 -2
  49. data/lib/temporalio/api/namespace/v1/message.rb +1 -1
  50. data/lib/temporalio/api/nexus/v1/message.rb +2 -2
  51. data/lib/temporalio/api/operatorservice/v1/request_response.rb +1 -1
  52. data/lib/temporalio/api/operatorservice/v1/service.rb +1 -1
  53. data/lib/temporalio/api/payload_visitor.rb +106 -1
  54. data/lib/temporalio/api/protocol/v1/message.rb +1 -1
  55. data/lib/temporalio/api/query/v1/message.rb +1 -1
  56. data/lib/temporalio/api/replication/v1/message.rb +1 -1
  57. data/lib/temporalio/api/rules/v1/message.rb +27 -0
  58. data/lib/temporalio/api/schedule/v1/message.rb +2 -2
  59. data/lib/temporalio/api/sdk/v1/enhanced_stack_trace.rb +1 -1
  60. data/lib/temporalio/api/sdk/v1/task_complete_metadata.rb +1 -1
  61. data/lib/temporalio/api/sdk/v1/user_metadata.rb +1 -1
  62. data/lib/temporalio/api/sdk/v1/worker_config.rb +23 -0
  63. data/lib/temporalio/api/sdk/v1/workflow_metadata.rb +1 -1
  64. data/lib/temporalio/api/taskqueue/v1/message.rb +6 -2
  65. data/lib/temporalio/api/testservice/v1/request_response.rb +1 -1
  66. data/lib/temporalio/api/testservice/v1/service.rb +1 -1
  67. data/lib/temporalio/api/update/v1/message.rb +1 -1
  68. data/lib/temporalio/api/version/v1/message.rb +1 -1
  69. data/lib/temporalio/api/worker/v1/message.rb +31 -0
  70. data/lib/temporalio/api/workflow/v1/message.rb +14 -2
  71. data/lib/temporalio/api/workflowservice/v1/request_response.rb +28 -2
  72. data/lib/temporalio/api/workflowservice/v1/service.rb +2 -2
  73. data/lib/temporalio/cancellation.rb +16 -12
  74. data/lib/temporalio/client/async_activity_handle.rb +12 -4
  75. data/lib/temporalio/client/connection/cloud_service.rb +135 -0
  76. data/lib/temporalio/client/connection/workflow_service.rb +150 -0
  77. data/lib/temporalio/client/connection.rb +2 -1
  78. data/lib/temporalio/client/interceptor.rb +25 -7
  79. data/lib/temporalio/client/schedule.rb +10 -2
  80. data/lib/temporalio/client/with_start_workflow_operation.rb +9 -1
  81. data/lib/temporalio/client/workflow_handle.rb +50 -10
  82. data/lib/temporalio/client/workflow_update_handle.rb +9 -3
  83. data/lib/temporalio/client.rb +110 -6
  84. data/lib/temporalio/common_enums.rb +14 -0
  85. data/lib/temporalio/contrib/open_telemetry.rb +7 -7
  86. data/lib/temporalio/converters/data_converter.rb +18 -8
  87. data/lib/temporalio/converters/failure_converter.rb +6 -3
  88. data/lib/temporalio/converters/payload_converter/binary_null.rb +2 -2
  89. data/lib/temporalio/converters/payload_converter/binary_plain.rb +2 -2
  90. data/lib/temporalio/converters/payload_converter/binary_protobuf.rb +2 -2
  91. data/lib/temporalio/converters/payload_converter/composite.rb +6 -4
  92. data/lib/temporalio/converters/payload_converter/encoding.rb +4 -2
  93. data/lib/temporalio/converters/payload_converter/json_plain.rb +24 -7
  94. data/lib/temporalio/converters/payload_converter/json_protobuf.rb +2 -2
  95. data/lib/temporalio/converters/payload_converter.rb +16 -6
  96. data/lib/temporalio/error/failure.rb +19 -1
  97. data/lib/temporalio/error.rb +1 -1
  98. data/lib/temporalio/internal/bridge/api/activity_result/activity_result.rb +1 -1
  99. data/lib/temporalio/internal/bridge/api/activity_task/activity_task.rb +3 -2
  100. data/lib/temporalio/internal/bridge/api/child_workflow/child_workflow.rb +1 -1
  101. data/lib/temporalio/internal/bridge/api/common/common.rb +1 -1
  102. data/lib/temporalio/internal/bridge/api/core_interface.rb +1 -1
  103. data/lib/temporalio/internal/bridge/api/external_data/external_data.rb +1 -1
  104. data/lib/temporalio/internal/bridge/api/nexus/nexus.rb +3 -2
  105. data/lib/temporalio/internal/bridge/api/workflow_activation/workflow_activation.rb +2 -2
  106. data/lib/temporalio/internal/bridge/api/workflow_commands/workflow_commands.rb +3 -2
  107. data/lib/temporalio/internal/bridge/api/workflow_completion/workflow_completion.rb +1 -1
  108. data/lib/temporalio/internal/bridge/worker.rb +28 -4
  109. data/lib/temporalio/internal/bridge.rb +1 -1
  110. data/lib/temporalio/internal/client/implementation.rb +60 -52
  111. data/lib/temporalio/internal/proto_utils.rb +4 -4
  112. data/lib/temporalio/internal/worker/activity_worker.rb +93 -20
  113. data/lib/temporalio/internal/worker/workflow_instance/child_workflow_handle.rb +8 -6
  114. data/lib/temporalio/internal/worker/workflow_instance/context.rb +66 -24
  115. data/lib/temporalio/internal/worker/workflow_instance/details.rb +5 -2
  116. data/lib/temporalio/internal/worker/workflow_instance/external_workflow_handle.rb +2 -2
  117. data/lib/temporalio/internal/worker/workflow_instance/externally_immutable_hash.rb +2 -0
  118. data/lib/temporalio/internal/worker/workflow_instance/illegal_call_tracer.rb +64 -18
  119. data/lib/temporalio/internal/worker/workflow_instance/outbound_implementation.rb +28 -14
  120. data/lib/temporalio/internal/worker/workflow_instance/replay_safe_logger.rb +5 -2
  121. data/lib/temporalio/internal/worker/workflow_instance/scheduler.rb +10 -4
  122. data/lib/temporalio/internal/worker/workflow_instance.rb +58 -23
  123. data/lib/temporalio/internal/worker/workflow_worker.rb +16 -6
  124. data/lib/temporalio/priority.rb +100 -0
  125. data/lib/temporalio/scoped_logger.rb +1 -1
  126. data/lib/temporalio/testing/activity_environment.rb +17 -2
  127. data/lib/temporalio/testing/workflow_environment.rb +3 -3
  128. data/lib/temporalio/version.rb +1 -1
  129. data/lib/temporalio/versioning_override.rb +56 -0
  130. data/lib/temporalio/worker/deployment_options.rb +45 -0
  131. data/lib/temporalio/worker/illegal_workflow_call_validator.rb +73 -0
  132. data/lib/temporalio/worker/interceptor.rb +13 -1
  133. data/lib/temporalio/worker/poller_behavior.rb +61 -0
  134. data/lib/temporalio/worker/thread_pool.rb +1 -1
  135. data/lib/temporalio/worker/workflow_executor/thread_pool.rb +2 -1
  136. data/lib/temporalio/worker/workflow_replayer.rb +12 -13
  137. data/lib/temporalio/worker.rb +73 -28
  138. data/lib/temporalio/worker_deployment_version.rb +67 -0
  139. data/lib/temporalio/workflow/child_workflow_handle.rb +10 -2
  140. data/lib/temporalio/workflow/definition.rb +187 -39
  141. data/lib/temporalio/workflow/external_workflow_handle.rb +3 -1
  142. data/lib/temporalio/workflow/info.rb +4 -1
  143. data/lib/temporalio/workflow.rb +134 -11
  144. data/lib/temporalio.rb +1 -0
  145. data/temporalio.gemspec +1 -0
  146. metadata +14 -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.20"
55
55
  source = "registry+https://github.com/rust-lang/crates.io-index"
56
- checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
56
+ checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
57
57
  dependencies = [
58
58
  "anstyle",
59
59
  "anstyle-parse",
@@ -66,50 +66,50 @@ 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.4"
85
85
  source = "registry+https://github.com/rust-lang/crates.io-index"
86
- checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
86
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
87
87
  dependencies = [
88
- "windows-sys 0.59.0",
88
+ "windows-sys 0.60.2",
89
89
  ]
90
90
 
91
91
  [[package]]
92
92
  name = "anstyle-wincon"
93
- version = "3.0.7"
93
+ version = "3.0.10"
94
94
  source = "registry+https://github.com/rust-lang/crates.io-index"
95
- checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
95
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
96
96
  dependencies = [
97
97
  "anstyle",
98
- "once_cell",
99
- "windows-sys 0.59.0",
98
+ "once_cell_polyfill",
99
+ "windows-sys 0.60.2",
100
100
  ]
101
101
 
102
102
  [[package]]
103
103
  name = "anyhow"
104
- version = "1.0.98"
104
+ version = "1.0.99"
105
105
  source = "registry+https://github.com/rust-lang/crates.io-index"
106
- checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
106
+ checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
107
107
 
108
108
  [[package]]
109
109
  name = "arbitrary"
110
- version = "1.4.1"
110
+ version = "1.4.2"
111
111
  source = "registry+https://github.com/rust-lang/crates.io-index"
112
- checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
112
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
113
113
  dependencies = [
114
114
  "derive_arbitrary",
115
115
  ]
@@ -144,9 +144,9 @@ dependencies = [
144
144
 
145
145
  [[package]]
146
146
  name = "async-trait"
147
- version = "0.1.88"
147
+ version = "0.1.89"
148
148
  source = "registry+https://github.com/rust-lang/crates.io-index"
149
- checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
149
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
150
150
  dependencies = [
151
151
  "proc-macro2",
152
152
  "quote",
@@ -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
+ "bytes",
177
+ "futures-util",
178
+ "http",
179
+ "http-body",
180
+ "http-body-util",
181
+ "itoa",
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",
176
202
  "bytes",
177
203
  "futures-util",
178
204
  "http",
179
205
  "http-body",
180
206
  "http-body-util",
181
207
  "itoa",
182
- "matchit",
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.2"
282
327
  source = "registry+https://github.com/rust-lang/crates.io-index"
283
- checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
328
+ checksum = "6a65b545ab31d687cff52899d4890855fec459eb6afe0da6417b8a18da87aa29"
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.33"
340
385
  source = "registry+https://github.com/rust-lang/crates.io-index"
341
- checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
386
+ checksum = "3ee0f8803222ba5a7e2777dd72ca451868909b1ac410621b676adf07280e9b5f"
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.3"
360
405
  source = "registry+https://github.com/rust-lang/crates.io-index"
361
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
406
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
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.45"
430
475
  source = "registry+https://github.com/rust-lang/crates.io-index"
431
- checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04"
476
+ checksum = "1fc0e74a703892159f5ae7d3aac52c8e6c392f5ae5f359c70b5881d60aaac318"
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.44"
440
485
  source = "registry+https://github.com/rust-lang/crates.io-index"
441
- checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5"
486
+ checksum = "b3e7f4214277f3c7aa526a59dd3fbe306a370daee1f8b7b8c987069cd8e888a8"
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.45"
452
497
  source = "registry+https://github.com/rust-lang/crates.io-index"
453
- checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
498
+ checksum = "14cb31bb0a7d536caef2639baa7fad459e15c3144efefa6dbd1c84562c4739f6"
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"
@@ -725,9 +768,9 @@ dependencies = [
725
768
 
726
769
  [[package]]
727
770
  name = "derive_arbitrary"
728
- version = "1.4.1"
771
+ version = "1.4.2"
729
772
  source = "registry+https://github.com/rust-lang/crates.io-index"
730
- checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
773
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
731
774
  dependencies = [
732
775
  "proc-macro2",
733
776
  "quote",
@@ -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]]
@@ -892,14 +956,14 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
892
956
 
893
957
  [[package]]
894
958
  name = "filetime"
895
- version = "0.2.25"
959
+ version = "0.2.26"
896
960
  source = "registry+https://github.com/rust-lang/crates.io-index"
897
- checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
961
+ checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
898
962
  dependencies = [
899
963
  "cfg-if",
900
964
  "libc",
901
965
  "libredox",
902
- "windows-sys 0.59.0",
966
+ "windows-sys 0.60.2",
903
967
  ]
904
968
 
905
969
  [[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",
@@ -1096,9 +1170,9 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1096
1170
 
1097
1171
  [[package]]
1098
1172
  name = "glob"
1099
- version = "0.3.2"
1173
+ version = "0.3.3"
1100
1174
  source = "registry+https://github.com/rust-lang/crates.io-index"
1101
- checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1175
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1102
1176
 
1103
1177
  [[package]]
1104
1178
  name = "governor"
@@ -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.12"
1129
1203
  source = "registry+https://github.com/rust-lang/crates.io-index"
1130
- checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
1204
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
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.5"
1170
1244
  source = "registry+https://github.com/rust-lang/crates.io-index"
1171
- checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1245
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
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"
@@ -1263,13 +1331,14 @@ checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
1263
1331
 
1264
1332
  [[package]]
1265
1333
  name = "hyper"
1266
- version = "1.6.0"
1334
+ version = "1.7.0"
1267
1335
  source = "registry+https://github.com/rust-lang/crates.io-index"
1268
- checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1336
+ checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1269
1337
  dependencies = [
1338
+ "atomic-waker",
1270
1339
  "bytes",
1271
1340
  "futures-channel",
1272
- "futures-util",
1341
+ "futures-core",
1273
1342
  "h2",
1274
1343
  "http",
1275
1344
  "http-body",
@@ -1277,6 +1346,7 @@ dependencies = [
1277
1346
  "httpdate",
1278
1347
  "itoa",
1279
1348
  "pin-project-lite",
1349
+ "pin-utils",
1280
1350
  "smallvec",
1281
1351
  "tokio",
1282
1352
  "want",
@@ -1284,11 +1354,10 @@ dependencies = [
1284
1354
 
1285
1355
  [[package]]
1286
1356
  name = "hyper-rustls"
1287
- version = "0.27.5"
1357
+ version = "0.27.7"
1288
1358
  source = "registry+https://github.com/rust-lang/crates.io-index"
1289
- checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1359
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1290
1360
  dependencies = [
1291
- "futures-util",
1292
1361
  "http",
1293
1362
  "hyper",
1294
1363
  "hyper-util",
@@ -1315,19 +1384,23 @@ dependencies = [
1315
1384
 
1316
1385
  [[package]]
1317
1386
  name = "hyper-util"
1318
- version = "0.1.11"
1387
+ version = "0.1.16"
1319
1388
  source = "registry+https://github.com/rust-lang/crates.io-index"
1320
- checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
1389
+ checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
1321
1390
  dependencies = [
1391
+ "base64 0.22.1",
1322
1392
  "bytes",
1323
1393
  "futures-channel",
1394
+ "futures-core",
1324
1395
  "futures-util",
1325
1396
  "http",
1326
1397
  "http-body",
1327
1398
  "hyper",
1399
+ "ipnet",
1328
1400
  "libc",
1401
+ "percent-encoding",
1329
1402
  "pin-project-lite",
1330
- "socket2",
1403
+ "socket2 0.6.0",
1331
1404
  "tokio",
1332
1405
  "tower-service",
1333
1406
  "tracing",
@@ -1335,21 +1408,22 @@ dependencies = [
1335
1408
 
1336
1409
  [[package]]
1337
1410
  name = "icu_collections"
1338
- version = "1.5.0"
1411
+ version = "2.0.0"
1339
1412
  source = "registry+https://github.com/rust-lang/crates.io-index"
1340
- checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1413
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1341
1414
  dependencies = [
1342
1415
  "displaydoc",
1416
+ "potential_utf",
1343
1417
  "yoke",
1344
1418
  "zerofrom",
1345
1419
  "zerovec",
1346
1420
  ]
1347
1421
 
1348
1422
  [[package]]
1349
- name = "icu_locid"
1350
- version = "1.5.0"
1423
+ name = "icu_locale_core"
1424
+ version = "2.0.0"
1351
1425
  source = "registry+https://github.com/rust-lang/crates.io-index"
1352
- checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1426
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1353
1427
  dependencies = [
1354
1428
  "displaydoc",
1355
1429
  "litemap",
@@ -1358,31 +1432,11 @@ dependencies = [
1358
1432
  "zerovec",
1359
1433
  ]
1360
1434
 
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
1435
  [[package]]
1382
1436
  name = "icu_normalizer"
1383
- version = "1.5.0"
1437
+ version = "2.0.0"
1384
1438
  source = "registry+https://github.com/rust-lang/crates.io-index"
1385
- checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1439
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1386
1440
  dependencies = [
1387
1441
  "displaydoc",
1388
1442
  "icu_collections",
@@ -1390,67 +1444,54 @@ dependencies = [
1390
1444
  "icu_properties",
1391
1445
  "icu_provider",
1392
1446
  "smallvec",
1393
- "utf16_iter",
1394
- "utf8_iter",
1395
- "write16",
1396
1447
  "zerovec",
1397
1448
  ]
1398
1449
 
1399
1450
  [[package]]
1400
1451
  name = "icu_normalizer_data"
1401
- version = "1.5.1"
1452
+ version = "2.0.0"
1402
1453
  source = "registry+https://github.com/rust-lang/crates.io-index"
1403
- checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1454
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1404
1455
 
1405
1456
  [[package]]
1406
1457
  name = "icu_properties"
1407
- version = "1.5.1"
1458
+ version = "2.0.1"
1408
1459
  source = "registry+https://github.com/rust-lang/crates.io-index"
1409
- checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1460
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1410
1461
  dependencies = [
1411
1462
  "displaydoc",
1412
1463
  "icu_collections",
1413
- "icu_locid_transform",
1464
+ "icu_locale_core",
1414
1465
  "icu_properties_data",
1415
1466
  "icu_provider",
1416
- "tinystr",
1467
+ "potential_utf",
1468
+ "zerotrie",
1417
1469
  "zerovec",
1418
1470
  ]
1419
1471
 
1420
1472
  [[package]]
1421
1473
  name = "icu_properties_data"
1422
- version = "1.5.1"
1474
+ version = "2.0.1"
1423
1475
  source = "registry+https://github.com/rust-lang/crates.io-index"
1424
- checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1476
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1425
1477
 
1426
1478
  [[package]]
1427
1479
  name = "icu_provider"
1428
- version = "1.5.0"
1480
+ version = "2.0.0"
1429
1481
  source = "registry+https://github.com/rust-lang/crates.io-index"
1430
- checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1482
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1431
1483
  dependencies = [
1432
1484
  "displaydoc",
1433
- "icu_locid",
1434
- "icu_provider_macros",
1485
+ "icu_locale_core",
1435
1486
  "stable_deref_trait",
1436
1487
  "tinystr",
1437
1488
  "writeable",
1438
1489
  "yoke",
1439
1490
  "zerofrom",
1491
+ "zerotrie",
1440
1492
  "zerovec",
1441
1493
  ]
1442
1494
 
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
1495
  [[package]]
1455
1496
  name = "ident_case"
1456
1497
  version = "1.0.1"
@@ -1470,9 +1511,9 @@ dependencies = [
1470
1511
 
1471
1512
  [[package]]
1472
1513
  name = "idna_adapter"
1473
- version = "1.2.0"
1514
+ version = "1.2.1"
1474
1515
  source = "registry+https://github.com/rust-lang/crates.io-index"
1475
- checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1516
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1476
1517
  dependencies = [
1477
1518
  "icu_normalizer",
1478
1519
  "icu_properties",
@@ -1490,12 +1531,12 @@ dependencies = [
1490
1531
 
1491
1532
  [[package]]
1492
1533
  name = "indexmap"
1493
- version = "2.9.0"
1534
+ version = "2.10.0"
1494
1535
  source = "registry+https://github.com/rust-lang/crates.io-index"
1495
- checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1536
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
1496
1537
  dependencies = [
1497
1538
  "equivalent",
1498
- "hashbrown 0.15.2",
1539
+ "hashbrown 0.15.5",
1499
1540
  ]
1500
1541
 
1501
1542
  [[package]]
@@ -1518,13 +1559,24 @@ dependencies = [
1518
1559
 
1519
1560
  [[package]]
1520
1561
  name = "inventory"
1521
- version = "0.3.20"
1562
+ version = "0.3.21"
1522
1563
  source = "registry+https://github.com/rust-lang/crates.io-index"
1523
- checksum = "ab08d7cd2c5897f2c949e5383ea7c7db03fb19130ffcfbf7eda795137ae3cb83"
1564
+ checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
1524
1565
  dependencies = [
1525
1566
  "rustversion",
1526
1567
  ]
1527
1568
 
1569
+ [[package]]
1570
+ name = "io-uring"
1571
+ version = "0.7.9"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
1574
+ dependencies = [
1575
+ "bitflags",
1576
+ "cfg-if",
1577
+ "libc",
1578
+ ]
1579
+
1528
1580
  [[package]]
1529
1581
  name = "ipnet"
1530
1582
  version = "2.11.0"
@@ -1532,14 +1584,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
1584
  checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1533
1585
 
1534
1586
  [[package]]
1535
- name = "is-terminal"
1536
- version = "0.4.16"
1587
+ name = "iri-string"
1588
+ version = "0.7.8"
1537
1589
  source = "registry+https://github.com/rust-lang/crates.io-index"
1538
- checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
1590
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1539
1591
  dependencies = [
1540
- "hermit-abi",
1541
- "libc",
1542
- "windows-sys 0.59.0",
1592
+ "memchr",
1593
+ "serde",
1543
1594
  ]
1544
1595
 
1545
1596
  [[package]]
@@ -1566,6 +1617,15 @@ dependencies = [
1566
1617
  "either",
1567
1618
  ]
1568
1619
 
1620
+ [[package]]
1621
+ name = "itertools"
1622
+ version = "0.13.0"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1625
+ dependencies = [
1626
+ "either",
1627
+ ]
1628
+
1569
1629
  [[package]]
1570
1630
  name = "itertools"
1571
1631
  version = "0.14.0"
@@ -1587,7 +1647,7 @@ version = "0.1.33"
1587
1647
  source = "registry+https://github.com/rust-lang/crates.io-index"
1588
1648
  checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1589
1649
  dependencies = [
1590
- "getrandom 0.3.2",
1650
+ "getrandom 0.3.3",
1591
1651
  "libc",
1592
1652
  ]
1593
1653
 
@@ -1615,25 +1675,25 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1615
1675
 
1616
1676
  [[package]]
1617
1677
  name = "libc"
1618
- version = "0.2.172"
1678
+ version = "0.2.175"
1619
1679
  source = "registry+https://github.com/rust-lang/crates.io-index"
1620
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1680
+ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
1621
1681
 
1622
1682
  [[package]]
1623
1683
  name = "libloading"
1624
- version = "0.8.6"
1684
+ version = "0.8.8"
1625
1685
  source = "registry+https://github.com/rust-lang/crates.io-index"
1626
- checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1686
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
1627
1687
  dependencies = [
1628
1688
  "cfg-if",
1629
- "windows-targets 0.52.6",
1689
+ "windows-targets 0.53.3",
1630
1690
  ]
1631
1691
 
1632
1692
  [[package]]
1633
1693
  name = "libredox"
1634
- version = "0.1.3"
1694
+ version = "0.1.9"
1635
1695
  source = "registry+https://github.com/rust-lang/crates.io-index"
1636
- checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1696
+ checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3"
1637
1697
  dependencies = [
1638
1698
  "bitflags",
1639
1699
  "libc",
@@ -1648,26 +1708,20 @@ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1648
1708
 
1649
1709
  [[package]]
1650
1710
  name = "litemap"
1651
- version = "0.7.5"
1711
+ version = "0.8.0"
1652
1712
  source = "registry+https://github.com/rust-lang/crates.io-index"
1653
- checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
1713
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1654
1714
 
1655
1715
  [[package]]
1656
1716
  name = "lock_api"
1657
- version = "0.4.12"
1717
+ version = "0.4.13"
1658
1718
  source = "registry+https://github.com/rust-lang/crates.io-index"
1659
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1719
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1660
1720
  dependencies = [
1661
1721
  "autocfg",
1662
1722
  "scopeguard",
1663
1723
  ]
1664
1724
 
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
1725
  [[package]]
1672
1726
  name = "log"
1673
1727
  version = "0.4.27"
@@ -1680,9 +1734,15 @@ version = "0.13.0"
1680
1734
  source = "registry+https://github.com/rust-lang/crates.io-index"
1681
1735
  checksum = "227748d55f2f0ab4735d87fd623798cb6b664512fe979705f829c9f81c934465"
1682
1736
  dependencies = [
1683
- "hashbrown 0.15.2",
1737
+ "hashbrown 0.15.5",
1684
1738
  ]
1685
1739
 
1740
+ [[package]]
1741
+ name = "lru-slab"
1742
+ version = "0.1.2"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1745
+
1686
1746
  [[package]]
1687
1747
  name = "lzma-rs"
1688
1748
  version = "0.3.0"
@@ -1742,11 +1802,17 @@ version = "0.7.3"
1742
1802
  source = "registry+https://github.com/rust-lang/crates.io-index"
1743
1803
  checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1744
1804
 
1805
+ [[package]]
1806
+ name = "matchit"
1807
+ version = "0.8.4"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1810
+
1745
1811
  [[package]]
1746
1812
  name = "memchr"
1747
- version = "2.7.4"
1813
+ version = "2.7.5"
1748
1814
  source = "registry+https://github.com/rust-lang/crates.io-index"
1749
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1815
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1750
1816
 
1751
1817
  [[package]]
1752
1818
  name = "mime"
@@ -1762,22 +1828,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1762
1828
 
1763
1829
  [[package]]
1764
1830
  name = "miniz_oxide"
1765
- version = "0.8.8"
1831
+ version = "0.8.9"
1766
1832
  source = "registry+https://github.com/rust-lang/crates.io-index"
1767
- checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1833
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1768
1834
  dependencies = [
1769
1835
  "adler2",
1770
1836
  ]
1771
1837
 
1772
1838
  [[package]]
1773
1839
  name = "mio"
1774
- version = "1.0.3"
1840
+ version = "1.0.4"
1775
1841
  source = "registry+https://github.com/rust-lang/crates.io-index"
1776
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1842
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1777
1843
  dependencies = [
1778
1844
  "libc",
1779
- "wasi 0.11.0+wasi-snapshot-preview1",
1780
- "windows-sys 0.52.0",
1845
+ "wasi 0.11.1+wasi-snapshot-preview1",
1846
+ "windows-sys 0.59.0",
1781
1847
  ]
1782
1848
 
1783
1849
  [[package]]
@@ -1808,9 +1874,9 @@ dependencies = [
1808
1874
 
1809
1875
  [[package]]
1810
1876
  name = "multimap"
1811
- version = "0.10.0"
1877
+ version = "0.10.1"
1812
1878
  source = "registry+https://github.com/rust-lang/crates.io-index"
1813
- checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
1879
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
1814
1880
 
1815
1881
  [[package]]
1816
1882
  name = "no-std-compat"
@@ -1883,6 +1949,12 @@ version = "1.21.3"
1883
1949
  source = "registry+https://github.com/rust-lang/crates.io-index"
1884
1950
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1885
1951
 
1952
+ [[package]]
1953
+ name = "once_cell_polyfill"
1954
+ version = "1.70.1"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1957
+
1886
1958
  [[package]]
1887
1959
  name = "oorandom"
1888
1960
  version = "11.1.5"
@@ -1897,23 +1969,23 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1897
1969
 
1898
1970
  [[package]]
1899
1971
  name = "opentelemetry"
1900
- version = "0.26.0"
1972
+ version = "0.30.0"
1901
1973
  source = "registry+https://github.com/rust-lang/crates.io-index"
1902
- checksum = "570074cc999d1a58184080966e5bd3bf3a9a4af650c3b05047c2621e7405cd17"
1974
+ checksum = "aaf416e4cb72756655126f7dd7bb0af49c674f4c1b9903e80c009e0c37e552e6"
1903
1975
  dependencies = [
1904
1976
  "futures-core",
1905
1977
  "futures-sink",
1906
1978
  "js-sys",
1907
- "once_cell",
1908
1979
  "pin-project-lite",
1909
- "thiserror 1.0.69",
1980
+ "thiserror 2.0.16",
1981
+ "tracing",
1910
1982
  ]
1911
1983
 
1912
1984
  [[package]]
1913
1985
  name = "opentelemetry-http"
1914
- version = "0.26.0"
1986
+ version = "0.30.0"
1915
1987
  source = "registry+https://github.com/rust-lang/crates.io-index"
1916
- checksum = "6351496aeaa49d7c267fb480678d85d1cd30c5edb20b497c48c56f62a8c14b99"
1988
+ checksum = "50f6639e842a97dbea8886e3439710ae463120091e2e064518ba8e716e6ac36d"
1917
1989
  dependencies = [
1918
1990
  "async-trait",
1919
1991
  "bytes",
@@ -1924,12 +1996,10 @@ dependencies = [
1924
1996
 
1925
1997
  [[package]]
1926
1998
  name = "opentelemetry-otlp"
1927
- version = "0.26.0"
1999
+ version = "0.30.0"
1928
2000
  source = "registry+https://github.com/rust-lang/crates.io-index"
1929
- checksum = "29e1f9c8b032d4f635c730c0efcf731d5e2530ea13fa8bef7939ddc8420696bd"
2001
+ checksum = "dbee664a43e07615731afc539ca60c6d9f1a9425e25ca09c57bc36c87c55852b"
1930
2002
  dependencies = [
1931
- "async-trait",
1932
- "futures-core",
1933
2003
  "http",
1934
2004
  "opentelemetry",
1935
2005
  "opentelemetry-http",
@@ -1937,56 +2007,48 @@ dependencies = [
1937
2007
  "opentelemetry_sdk",
1938
2008
  "prost",
1939
2009
  "reqwest",
1940
- "thiserror 1.0.69",
2010
+ "thiserror 2.0.16",
1941
2011
  "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",
2012
+ "tonic 0.13.1",
2013
+ "tracing",
1955
2014
  ]
1956
2015
 
1957
2016
  [[package]]
1958
2017
  name = "opentelemetry-proto"
1959
- version = "0.26.1"
2018
+ version = "0.30.0"
1960
2019
  source = "registry+https://github.com/rust-lang/crates.io-index"
1961
- checksum = "c9d3968ce3aefdcca5c27e3c4ea4391b37547726a70893aab52d3de95d5f8b34"
2020
+ checksum = "2e046fd7660710fe5a05e8748e70d9058dc15c94ba914e7c4faa7c728f0e8ddc"
1962
2021
  dependencies = [
1963
2022
  "opentelemetry",
1964
2023
  "opentelemetry_sdk",
1965
2024
  "prost",
1966
- "tonic",
2025
+ "tonic 0.13.1",
1967
2026
  ]
1968
2027
 
1969
2028
  [[package]]
1970
2029
  name = "opentelemetry_sdk"
1971
- version = "0.26.0"
2030
+ version = "0.30.0"
1972
2031
  source = "registry+https://github.com/rust-lang/crates.io-index"
1973
- checksum = "d2c627d9f4c9cdc1f21a29ee4bfbd6028fcb8bcf2a857b43f3abdf72c9c862f3"
2032
+ checksum = "11f644aa9e5e31d11896e024305d7e3c98a88884d9f8919dbf37a9991bc47a4b"
1974
2033
  dependencies = [
1975
- "async-trait",
1976
2034
  "futures-channel",
1977
2035
  "futures-executor",
1978
2036
  "futures-util",
1979
- "glob",
1980
- "once_cell",
1981
2037
  "opentelemetry",
1982
2038
  "percent-encoding",
1983
- "rand 0.8.5",
2039
+ "rand 0.9.2",
1984
2040
  "serde_json",
1985
- "thiserror 1.0.69",
2041
+ "thiserror 2.0.16",
1986
2042
  "tokio",
1987
2043
  "tokio-stream",
1988
2044
  ]
1989
2045
 
2046
+ [[package]]
2047
+ name = "option-ext"
2048
+ version = "0.2.0"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2051
+
1990
2052
  [[package]]
1991
2053
  name = "overload"
1992
2054
  version = "0.1.1"
@@ -1995,9 +2057,9 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1995
2057
 
1996
2058
  [[package]]
1997
2059
  name = "parking_lot"
1998
- version = "0.12.3"
2060
+ version = "0.12.4"
1999
2061
  source = "registry+https://github.com/rust-lang/crates.io-index"
2000
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2062
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
2001
2063
  dependencies = [
2002
2064
  "lock_api",
2003
2065
  "parking_lot_core",
@@ -2005,9 +2067,9 @@ dependencies = [
2005
2067
 
2006
2068
  [[package]]
2007
2069
  name = "parking_lot_core"
2008
- version = "0.9.10"
2070
+ version = "0.9.11"
2009
2071
  source = "registry+https://github.com/rust-lang/crates.io-index"
2010
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2072
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
2011
2073
  dependencies = [
2012
2074
  "cfg-if",
2013
2075
  "libc",
@@ -2039,7 +2101,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
2101
  checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
2040
2102
  dependencies = [
2041
2103
  "fixedbitset",
2042
- "indexmap 2.9.0",
2104
+ "indexmap 2.10.0",
2043
2105
  ]
2044
2106
 
2045
2107
  [[package]]
@@ -2119,9 +2181,9 @@ dependencies = [
2119
2181
 
2120
2182
  [[package]]
2121
2183
  name = "portable-atomic"
2122
- version = "1.11.0"
2184
+ version = "1.11.1"
2123
2185
  source = "registry+https://github.com/rust-lang/crates.io-index"
2124
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2186
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2125
2187
 
2126
2188
  [[package]]
2127
2189
  name = "portable-atomic-util"
@@ -2132,6 +2194,15 @@ dependencies = [
2132
2194
  "portable-atomic",
2133
2195
  ]
2134
2196
 
2197
+ [[package]]
2198
+ name = "potential_utf"
2199
+ version = "0.1.2"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
2202
+ dependencies = [
2203
+ "zerovec",
2204
+ ]
2205
+
2135
2206
  [[package]]
2136
2207
  name = "powerfmt"
2137
2208
  version = "0.2.0"
@@ -2175,9 +2246,9 @@ dependencies = [
2175
2246
 
2176
2247
  [[package]]
2177
2248
  name = "prettyplease"
2178
- version = "0.2.32"
2249
+ version = "0.2.37"
2179
2250
  source = "registry+https://github.com/rust-lang/crates.io-index"
2180
- checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
2251
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2181
2252
  dependencies = [
2182
2253
  "proc-macro2",
2183
2254
  "syn",
@@ -2194,18 +2265,18 @@ dependencies = [
2194
2265
 
2195
2266
  [[package]]
2196
2267
  name = "proc-macro2"
2197
- version = "1.0.95"
2268
+ version = "1.0.101"
2198
2269
  source = "registry+https://github.com/rust-lang/crates.io-index"
2199
- checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2270
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
2200
2271
  dependencies = [
2201
2272
  "unicode-ident",
2202
2273
  ]
2203
2274
 
2204
2275
  [[package]]
2205
2276
  name = "prometheus"
2206
- version = "0.13.4"
2277
+ version = "0.14.0"
2207
2278
  source = "registry+https://github.com/rust-lang/crates.io-index"
2208
- checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
2279
+ checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a"
2209
2280
  dependencies = [
2210
2281
  "cfg-if",
2211
2282
  "fnv",
@@ -2213,7 +2284,7 @@ dependencies = [
2213
2284
  "memchr",
2214
2285
  "parking_lot",
2215
2286
  "protobuf",
2216
- "thiserror 1.0.69",
2287
+ "thiserror 2.0.16",
2217
2288
  ]
2218
2289
 
2219
2290
  [[package]]
@@ -2270,9 +2341,9 @@ dependencies = [
2270
2341
 
2271
2342
  [[package]]
2272
2343
  name = "prost-wkt"
2273
- version = "0.6.0"
2344
+ version = "0.6.1"
2274
2345
  source = "registry+https://github.com/rust-lang/crates.io-index"
2275
- checksum = "a8d84e2bee181b04c2bac339f2bfe818c46a99750488cc6728ce4181d5aa8299"
2346
+ checksum = "497e1e938f0c09ef9cabe1d49437b4016e03e8f82fbbe5d1c62a9b61b9decae1"
2276
2347
  dependencies = [
2277
2348
  "chrono",
2278
2349
  "inventory",
@@ -2285,9 +2356,9 @@ dependencies = [
2285
2356
 
2286
2357
  [[package]]
2287
2358
  name = "prost-wkt-build"
2288
- version = "0.6.0"
2359
+ version = "0.6.1"
2289
2360
  source = "registry+https://github.com/rust-lang/crates.io-index"
2290
- checksum = "8a669d5acbe719010c6f62a64e6d7d88fdedc1fe46e419747949ecb6312e9b14"
2361
+ checksum = "07b8bf115b70a7aa5af1fd5d6e9418492e9ccb6e4785e858c938e28d132a884b"
2291
2362
  dependencies = [
2292
2363
  "heck",
2293
2364
  "prost",
@@ -2298,9 +2369,9 @@ dependencies = [
2298
2369
 
2299
2370
  [[package]]
2300
2371
  name = "prost-wkt-types"
2301
- version = "0.6.0"
2372
+ version = "0.6.1"
2302
2373
  source = "registry+https://github.com/rust-lang/crates.io-index"
2303
- checksum = "01ef068e9b82e654614b22e6b13699bd545b6c0e2e721736008b00b38aeb4f64"
2374
+ checksum = "c8cdde6df0a98311c839392ca2f2f0bcecd545f86a62b4e3c6a49c336e970fe5"
2304
2375
  dependencies = [
2305
2376
  "chrono",
2306
2377
  "prost",
@@ -2316,30 +2387,44 @@ dependencies = [
2316
2387
 
2317
2388
  [[package]]
2318
2389
  name = "protobuf"
2319
- version = "2.28.0"
2390
+ version = "3.7.2"
2320
2391
  source = "registry+https://github.com/rust-lang/crates.io-index"
2321
- checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2392
+ checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
2393
+ dependencies = [
2394
+ "once_cell",
2395
+ "protobuf-support",
2396
+ "thiserror 1.0.69",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "protobuf-support"
2401
+ version = "3.7.2"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
2404
+ dependencies = [
2405
+ "thiserror 1.0.69",
2406
+ ]
2322
2407
 
2323
2408
  [[package]]
2324
2409
  name = "quanta"
2325
- version = "0.12.5"
2410
+ version = "0.12.6"
2326
2411
  source = "registry+https://github.com/rust-lang/crates.io-index"
2327
- checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e"
2412
+ checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7"
2328
2413
  dependencies = [
2329
2414
  "crossbeam-utils",
2330
2415
  "libc",
2331
2416
  "once_cell",
2332
2417
  "raw-cpuid",
2333
- "wasi 0.11.0+wasi-snapshot-preview1",
2418
+ "wasi 0.11.1+wasi-snapshot-preview1",
2334
2419
  "web-sys",
2335
2420
  "winapi",
2336
2421
  ]
2337
2422
 
2338
2423
  [[package]]
2339
2424
  name = "quinn"
2340
- version = "0.11.7"
2425
+ version = "0.11.8"
2341
2426
  source = "registry+https://github.com/rust-lang/crates.io-index"
2342
- checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
2427
+ checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
2343
2428
  dependencies = [
2344
2429
  "bytes",
2345
2430
  "cfg_aliases",
@@ -2348,8 +2433,8 @@ dependencies = [
2348
2433
  "quinn-udp",
2349
2434
  "rustc-hash 2.1.1",
2350
2435
  "rustls",
2351
- "socket2",
2352
- "thiserror 2.0.12",
2436
+ "socket2 0.5.10",
2437
+ "thiserror 2.0.16",
2353
2438
  "tokio",
2354
2439
  "tracing",
2355
2440
  "web-time",
@@ -2357,19 +2442,20 @@ dependencies = [
2357
2442
 
2358
2443
  [[package]]
2359
2444
  name = "quinn-proto"
2360
- version = "0.11.10"
2445
+ version = "0.11.12"
2361
2446
  source = "registry+https://github.com/rust-lang/crates.io-index"
2362
- checksum = "b820744eb4dc9b57a3398183639c511b5a26d2ed702cedd3febaa1393caa22cc"
2447
+ checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
2363
2448
  dependencies = [
2364
2449
  "bytes",
2365
- "getrandom 0.3.2",
2366
- "rand 0.9.0",
2450
+ "getrandom 0.3.3",
2451
+ "lru-slab",
2452
+ "rand 0.9.2",
2367
2453
  "ring",
2368
2454
  "rustc-hash 2.1.1",
2369
2455
  "rustls",
2370
2456
  "rustls-pki-types",
2371
2457
  "slab",
2372
- "thiserror 2.0.12",
2458
+ "thiserror 2.0.16",
2373
2459
  "tinyvec",
2374
2460
  "tracing",
2375
2461
  "web-time",
@@ -2377,14 +2463,14 @@ dependencies = [
2377
2463
 
2378
2464
  [[package]]
2379
2465
  name = "quinn-udp"
2380
- version = "0.5.11"
2466
+ version = "0.5.13"
2381
2467
  source = "registry+https://github.com/rust-lang/crates.io-index"
2382
- checksum = "541d0f57c6ec747a90738a52741d3221f7960e8ac2f0ff4b1a63680e033b4ab5"
2468
+ checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
2383
2469
  dependencies = [
2384
2470
  "cfg_aliases",
2385
2471
  "libc",
2386
2472
  "once_cell",
2387
- "socket2",
2473
+ "socket2 0.5.10",
2388
2474
  "tracing",
2389
2475
  "windows-sys 0.59.0",
2390
2476
  ]
@@ -2400,9 +2486,9 @@ dependencies = [
2400
2486
 
2401
2487
  [[package]]
2402
2488
  name = "r-efi"
2403
- version = "5.2.0"
2489
+ version = "5.3.0"
2404
2490
  source = "registry+https://github.com/rust-lang/crates.io-index"
2405
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2491
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2406
2492
 
2407
2493
  [[package]]
2408
2494
  name = "rand"
@@ -2417,13 +2503,12 @@ dependencies = [
2417
2503
 
2418
2504
  [[package]]
2419
2505
  name = "rand"
2420
- version = "0.9.0"
2506
+ version = "0.9.2"
2421
2507
  source = "registry+https://github.com/rust-lang/crates.io-index"
2422
- checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
2508
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2423
2509
  dependencies = [
2424
2510
  "rand_chacha 0.9.0",
2425
2511
  "rand_core 0.9.3",
2426
- "zerocopy",
2427
2512
  ]
2428
2513
 
2429
2514
  [[package]]
@@ -2452,7 +2537,7 @@ version = "0.6.4"
2452
2537
  source = "registry+https://github.com/rust-lang/crates.io-index"
2453
2538
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2454
2539
  dependencies = [
2455
- "getrandom 0.2.15",
2540
+ "getrandom 0.2.16",
2456
2541
  ]
2457
2542
 
2458
2543
  [[package]]
@@ -2461,7 +2546,7 @@ version = "0.9.3"
2461
2546
  source = "registry+https://github.com/rust-lang/crates.io-index"
2462
2547
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2463
2548
  dependencies = [
2464
- "getrandom 0.3.2",
2549
+ "getrandom 0.3.3",
2465
2550
  ]
2466
2551
 
2467
2552
  [[package]]
@@ -2475,9 +2560,9 @@ dependencies = [
2475
2560
 
2476
2561
  [[package]]
2477
2562
  name = "rayon"
2478
- version = "1.10.0"
2563
+ version = "1.11.0"
2479
2564
  source = "registry+https://github.com/rust-lang/crates.io-index"
2480
- checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2565
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2481
2566
  dependencies = [
2482
2567
  "either",
2483
2568
  "rayon-core",
@@ -2485,9 +2570,9 @@ dependencies = [
2485
2570
 
2486
2571
  [[package]]
2487
2572
  name = "rayon-core"
2488
- version = "1.12.1"
2573
+ version = "1.13.0"
2489
2574
  source = "registry+https://github.com/rust-lang/crates.io-index"
2490
- checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2575
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2491
2576
  dependencies = [
2492
2577
  "crossbeam-deque",
2493
2578
  "crossbeam-utils",
@@ -2495,18 +2580,18 @@ dependencies = [
2495
2580
 
2496
2581
  [[package]]
2497
2582
  name = "rb-sys"
2498
- version = "0.9.111"
2583
+ version = "0.9.117"
2499
2584
  source = "registry+https://github.com/rust-lang/crates.io-index"
2500
- checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
2585
+ checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
2501
2586
  dependencies = [
2502
2587
  "rb-sys-build",
2503
2588
  ]
2504
2589
 
2505
2590
  [[package]]
2506
2591
  name = "rb-sys-build"
2507
- version = "0.9.111"
2592
+ version = "0.9.117"
2508
2593
  source = "registry+https://github.com/rust-lang/crates.io-index"
2509
- checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
2594
+ checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
2510
2595
  dependencies = [
2511
2596
  "bindgen",
2512
2597
  "lazy_static",
@@ -2525,13 +2610,24 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
2525
2610
 
2526
2611
  [[package]]
2527
2612
  name = "redox_syscall"
2528
- version = "0.5.11"
2613
+ version = "0.5.17"
2529
2614
  source = "registry+https://github.com/rust-lang/crates.io-index"
2530
- checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2615
+ checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
2531
2616
  dependencies = [
2532
2617
  "bitflags",
2533
2618
  ]
2534
2619
 
2620
+ [[package]]
2621
+ name = "redox_users"
2622
+ version = "0.4.6"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2625
+ dependencies = [
2626
+ "getrandom 0.2.16",
2627
+ "libredox",
2628
+ "thiserror 1.0.69",
2629
+ ]
2630
+
2535
2631
  [[package]]
2536
2632
  name = "regex"
2537
2633
  version = "1.11.1"
@@ -2584,9 +2680,9 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2584
2680
 
2585
2681
  [[package]]
2586
2682
  name = "reqwest"
2587
- version = "0.12.15"
2683
+ version = "0.12.23"
2588
2684
  source = "registry+https://github.com/rust-lang/crates.io-index"
2589
- checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2685
+ checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb"
2590
2686
  dependencies = [
2591
2687
  "base64 0.22.1",
2592
2688
  "bytes",
@@ -2599,17 +2695,13 @@ dependencies = [
2599
2695
  "hyper",
2600
2696
  "hyper-rustls",
2601
2697
  "hyper-util",
2602
- "ipnet",
2603
2698
  "js-sys",
2604
2699
  "log",
2605
- "mime",
2606
- "once_cell",
2607
2700
  "percent-encoding",
2608
2701
  "pin-project-lite",
2609
2702
  "quinn",
2610
2703
  "rustls",
2611
2704
  "rustls-native-certs",
2612
- "rustls-pemfile",
2613
2705
  "rustls-pki-types",
2614
2706
  "serde",
2615
2707
  "serde_json",
@@ -2619,13 +2711,13 @@ dependencies = [
2619
2711
  "tokio-rustls",
2620
2712
  "tokio-util",
2621
2713
  "tower 0.5.2",
2714
+ "tower-http",
2622
2715
  "tower-service",
2623
2716
  "url",
2624
2717
  "wasm-bindgen",
2625
2718
  "wasm-bindgen-futures",
2626
2719
  "wasm-streams",
2627
2720
  "web-sys",
2628
- "windows-registry",
2629
2721
  ]
2630
2722
 
2631
2723
  [[package]]
@@ -2636,7 +2728,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2636
2728
  dependencies = [
2637
2729
  "cc",
2638
2730
  "cfg-if",
2639
- "getrandom 0.2.15",
2731
+ "getrandom 0.2.16",
2640
2732
  "libc",
2641
2733
  "untrusted",
2642
2734
  "windows-sys 0.52.0",
@@ -2655,9 +2747,9 @@ dependencies = [
2655
2747
 
2656
2748
  [[package]]
2657
2749
  name = "rstest"
2658
- version = "0.24.0"
2750
+ version = "0.25.0"
2659
2751
  source = "registry+https://github.com/rust-lang/crates.io-index"
2660
- checksum = "03e905296805ab93e13c1ec3a03f4b6c4f35e9498a3d5fa96dc626d22c03cd89"
2752
+ checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d"
2661
2753
  dependencies = [
2662
2754
  "futures-timer",
2663
2755
  "futures-util",
@@ -2667,9 +2759,9 @@ dependencies = [
2667
2759
 
2668
2760
  [[package]]
2669
2761
  name = "rstest_macros"
2670
- version = "0.24.0"
2762
+ version = "0.25.0"
2671
2763
  source = "registry+https://github.com/rust-lang/crates.io-index"
2672
- checksum = "ef0053bbffce09062bee4bcc499b0fbe7a57b879f1efe088d6d8d4c7adcdef9b"
2764
+ checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746"
2673
2765
  dependencies = [
2674
2766
  "cfg-if",
2675
2767
  "glob",
@@ -2685,9 +2777,9 @@ dependencies = [
2685
2777
 
2686
2778
  [[package]]
2687
2779
  name = "rustc-demangle"
2688
- version = "0.1.24"
2780
+ version = "0.1.26"
2689
2781
  source = "registry+https://github.com/rust-lang/crates.io-index"
2690
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2782
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
2691
2783
 
2692
2784
  [[package]]
2693
2785
  name = "rustc-hash"
@@ -2736,22 +2828,22 @@ version = "0.1.0"
2736
2828
 
2737
2829
  [[package]]
2738
2830
  name = "rustix"
2739
- version = "1.0.5"
2831
+ version = "1.0.8"
2740
2832
  source = "registry+https://github.com/rust-lang/crates.io-index"
2741
- checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
2833
+ checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
2742
2834
  dependencies = [
2743
2835
  "bitflags",
2744
2836
  "errno",
2745
2837
  "libc",
2746
2838
  "linux-raw-sys",
2747
- "windows-sys 0.59.0",
2839
+ "windows-sys 0.60.2",
2748
2840
  ]
2749
2841
 
2750
2842
  [[package]]
2751
2843
  name = "rustls"
2752
- version = "0.23.26"
2844
+ version = "0.23.31"
2753
2845
  source = "registry+https://github.com/rust-lang/crates.io-index"
2754
- checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
2846
+ checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
2755
2847
  dependencies = [
2756
2848
  "log",
2757
2849
  "once_cell",
@@ -2774,29 +2866,21 @@ dependencies = [
2774
2866
  "security-framework",
2775
2867
  ]
2776
2868
 
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
2869
  [[package]]
2787
2870
  name = "rustls-pki-types"
2788
- version = "1.11.0"
2871
+ version = "1.12.0"
2789
2872
  source = "registry+https://github.com/rust-lang/crates.io-index"
2790
- checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
2873
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2791
2874
  dependencies = [
2792
2875
  "web-time",
2876
+ "zeroize",
2793
2877
  ]
2794
2878
 
2795
2879
  [[package]]
2796
2880
  name = "rustls-webpki"
2797
- version = "0.103.1"
2881
+ version = "0.103.4"
2798
2882
  source = "registry+https://github.com/rust-lang/crates.io-index"
2799
- checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
2883
+ checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
2800
2884
  dependencies = [
2801
2885
  "ring",
2802
2886
  "rustls-pki-types",
@@ -2805,9 +2889,9 @@ dependencies = [
2805
2889
 
2806
2890
  [[package]]
2807
2891
  name = "rustversion"
2808
- version = "1.0.20"
2892
+ version = "1.0.22"
2809
2893
  source = "registry+https://github.com/rust-lang/crates.io-index"
2810
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
2894
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2811
2895
 
2812
2896
  [[package]]
2813
2897
  name = "ryu"
@@ -2841,9 +2925,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2841
2925
 
2842
2926
  [[package]]
2843
2927
  name = "security-framework"
2844
- version = "3.2.0"
2928
+ version = "3.3.0"
2845
2929
  source = "registry+https://github.com/rust-lang/crates.io-index"
2846
- checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
2930
+ checksum = "80fb1d92c5028aa318b4b8bd7302a5bfcf48be96a37fc6fc790f806b0004ee0c"
2847
2931
  dependencies = [
2848
2932
  "bitflags",
2849
2933
  "core-foundation",
@@ -2896,9 +2980,9 @@ dependencies = [
2896
2980
 
2897
2981
  [[package]]
2898
2982
  name = "serde_json"
2899
- version = "1.0.140"
2983
+ version = "1.0.143"
2900
2984
  source = "registry+https://github.com/rust-lang/crates.io-index"
2901
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
2985
+ checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
2902
2986
  dependencies = [
2903
2987
  "itoa",
2904
2988
  "memchr",
@@ -2908,9 +2992,18 @@ dependencies = [
2908
2992
 
2909
2993
  [[package]]
2910
2994
  name = "serde_spanned"
2911
- version = "0.6.8"
2995
+ version = "0.6.9"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2998
+ dependencies = [
2999
+ "serde",
3000
+ ]
3001
+
3002
+ [[package]]
3003
+ name = "serde_spanned"
3004
+ version = "1.0.0"
2912
3005
  source = "registry+https://github.com/rust-lang/crates.io-index"
2913
- checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
3006
+ checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83"
2914
3007
  dependencies = [
2915
3008
  "serde",
2916
3009
  ]
@@ -2961,9 +3054,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2961
3054
 
2962
3055
  [[package]]
2963
3056
  name = "signal-hook-registry"
2964
- version = "1.4.2"
3057
+ version = "1.4.6"
2965
3058
  source = "registry+https://github.com/rust-lang/crates.io-index"
2966
- checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
3059
+ checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
2967
3060
  dependencies = [
2968
3061
  "libc",
2969
3062
  ]
@@ -2982,12 +3075,9 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2982
3075
 
2983
3076
  [[package]]
2984
3077
  name = "slab"
2985
- version = "0.4.9"
3078
+ version = "0.4.11"
2986
3079
  source = "registry+https://github.com/rust-lang/crates.io-index"
2987
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2988
- dependencies = [
2989
- "autocfg",
2990
- ]
3080
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2991
3081
 
2992
3082
  [[package]]
2993
3083
  name = "slotmap"
@@ -3000,20 +3090,30 @@ dependencies = [
3000
3090
 
3001
3091
  [[package]]
3002
3092
  name = "smallvec"
3003
- version = "1.15.0"
3093
+ version = "1.15.1"
3004
3094
  source = "registry+https://github.com/rust-lang/crates.io-index"
3005
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
3095
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3006
3096
 
3007
3097
  [[package]]
3008
3098
  name = "socket2"
3009
- version = "0.5.9"
3099
+ version = "0.5.10"
3010
3100
  source = "registry+https://github.com/rust-lang/crates.io-index"
3011
- checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
3101
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3012
3102
  dependencies = [
3013
3103
  "libc",
3014
3104
  "windows-sys 0.52.0",
3015
3105
  ]
3016
3106
 
3107
+ [[package]]
3108
+ name = "socket2"
3109
+ version = "0.6.0"
3110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3111
+ checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
3112
+ dependencies = [
3113
+ "libc",
3114
+ "windows-sys 0.59.0",
3115
+ ]
3116
+
3017
3117
  [[package]]
3018
3118
  name = "spinning_top"
3019
3119
  version = "0.3.0"
@@ -3043,9 +3143,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3043
3143
 
3044
3144
  [[package]]
3045
3145
  name = "syn"
3046
- version = "2.0.100"
3146
+ version = "2.0.106"
3047
3147
  source = "registry+https://github.com/rust-lang/crates.io-index"
3048
- checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
3148
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
3049
3149
  dependencies = [
3050
3150
  "proc-macro2",
3051
3151
  "quote",
@@ -3063,9 +3163,9 @@ dependencies = [
3063
3163
 
3064
3164
  [[package]]
3065
3165
  name = "synstructure"
3066
- version = "0.13.1"
3166
+ version = "0.13.2"
3067
3167
  source = "registry+https://github.com/rust-lang/crates.io-index"
3068
- checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3168
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3069
3169
  dependencies = [
3070
3170
  "proc-macro2",
3071
3171
  "quote",
@@ -3104,15 +3204,15 @@ checksum = "1ac9aa371f599d22256307c24a9d748c041e548cbf599f35d890f9d365361790"
3104
3204
 
3105
3205
  [[package]]
3106
3206
  name = "tempfile"
3107
- version = "3.19.1"
3207
+ version = "3.21.0"
3108
3208
  source = "registry+https://github.com/rust-lang/crates.io-index"
3109
- checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
3209
+ checksum = "15b61f8f20e3a6f7e0649d825294eaf317edce30f82cf6026e7e4cb9222a7d1e"
3110
3210
  dependencies = [
3111
3211
  "fastrand",
3112
- "getrandom 0.3.2",
3212
+ "getrandom 0.3.3",
3113
3213
  "once_cell",
3114
3214
  "rustix",
3115
- "windows-sys 0.59.0",
3215
+ "windows-sys 0.60.2",
3116
3216
  ]
3117
3217
 
3118
3218
  [[package]]
@@ -3124,6 +3224,7 @@ dependencies = [
3124
3224
  "async-trait",
3125
3225
  "backoff",
3126
3226
  "base64 0.22.1",
3227
+ "bytes",
3127
3228
  "derive_builder",
3128
3229
  "derive_more",
3129
3230
  "futures-retry",
@@ -3139,9 +3240,9 @@ dependencies = [
3139
3240
  "slotmap",
3140
3241
  "temporal-sdk-core-api",
3141
3242
  "temporal-sdk-core-protos",
3142
- "thiserror 2.0.12",
3243
+ "thiserror 2.0.16",
3143
3244
  "tokio",
3144
- "tonic",
3245
+ "tonic 0.13.1",
3145
3246
  "tower 0.5.2",
3146
3247
  "tracing",
3147
3248
  "url",
@@ -3191,6 +3292,7 @@ dependencies = [
3191
3292
  "flate2",
3192
3293
  "futures-channel",
3193
3294
  "futures-util",
3295
+ "gethostname",
3194
3296
  "governor",
3195
3297
  "http-body-util",
3196
3298
  "hyper",
@@ -3200,7 +3302,6 @@ dependencies = [
3200
3302
  "mockall",
3201
3303
  "opentelemetry",
3202
3304
  "opentelemetry-otlp",
3203
- "opentelemetry-prometheus",
3204
3305
  "opentelemetry_sdk",
3205
3306
  "parking_lot",
3206
3307
  "pid",
@@ -3208,7 +3309,7 @@ dependencies = [
3208
3309
  "prometheus",
3209
3310
  "prost",
3210
3311
  "prost-wkt-types",
3211
- "rand 0.9.0",
3312
+ "rand 0.9.2",
3212
3313
  "reqwest",
3213
3314
  "ringbuf",
3214
3315
  "rstest",
@@ -3224,11 +3325,11 @@ dependencies = [
3224
3325
  "temporal-sdk-core-api",
3225
3326
  "temporal-sdk-core-protos",
3226
3327
  "temporal-sdk-core-test-utils",
3227
- "thiserror 2.0.12",
3328
+ "thiserror 2.0.16",
3228
3329
  "tokio",
3229
3330
  "tokio-stream",
3230
3331
  "tokio-util",
3231
- "tonic",
3332
+ "tonic 0.13.1",
3232
3333
  "tracing",
3233
3334
  "tracing-subscriber",
3234
3335
  "url",
@@ -3243,12 +3344,17 @@ dependencies = [
3243
3344
  "async-trait",
3244
3345
  "derive_builder",
3245
3346
  "derive_more",
3347
+ "dirs",
3246
3348
  "opentelemetry",
3247
3349
  "prost",
3350
+ "serde",
3248
3351
  "serde_json",
3352
+ "tempfile",
3249
3353
  "temporal-sdk-core-protos",
3250
- "thiserror 2.0.12",
3251
- "tonic",
3354
+ "thiserror 2.0.16",
3355
+ "toml 0.8.23",
3356
+ "tonic 0.13.1",
3357
+ "tracing",
3252
3358
  "tracing-core",
3253
3359
  "url",
3254
3360
  ]
@@ -3265,11 +3371,11 @@ dependencies = [
3265
3371
  "prost-wkt",
3266
3372
  "prost-wkt-build",
3267
3373
  "prost-wkt-types",
3268
- "rand 0.9.0",
3374
+ "rand 0.9.2",
3269
3375
  "serde",
3270
3376
  "serde_json",
3271
- "thiserror 2.0.12",
3272
- "tonic",
3377
+ "thiserror 2.0.16",
3378
+ "tonic 0.13.1",
3273
3379
  "tonic-build",
3274
3380
  "uuid",
3275
3381
  ]
@@ -3281,10 +3387,15 @@ dependencies = [
3281
3387
  "anyhow",
3282
3388
  "assert_matches",
3283
3389
  "async-trait",
3390
+ "bytes",
3284
3391
  "futures-util",
3392
+ "http-body-util",
3393
+ "hyper",
3394
+ "hyper-util",
3285
3395
  "parking_lot",
3286
3396
  "prost",
3287
- "rand 0.9.0",
3397
+ "rand 0.9.2",
3398
+ "semver",
3288
3399
  "temporal-client",
3289
3400
  "temporal-sdk",
3290
3401
  "temporal-sdk-core",
@@ -3311,7 +3422,7 @@ dependencies = [
3311
3422
  "tokio",
3312
3423
  "tokio-stream",
3313
3424
  "tokio-util",
3314
- "tonic",
3425
+ "tonic 0.13.1",
3315
3426
  "tracing",
3316
3427
  "url",
3317
3428
  ]
@@ -3342,11 +3453,11 @@ dependencies = [
3342
3453
 
3343
3454
  [[package]]
3344
3455
  name = "thiserror"
3345
- version = "2.0.12"
3456
+ version = "2.0.16"
3346
3457
  source = "registry+https://github.com/rust-lang/crates.io-index"
3347
- checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3458
+ checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
3348
3459
  dependencies = [
3349
- "thiserror-impl 2.0.12",
3460
+ "thiserror-impl 2.0.16",
3350
3461
  ]
3351
3462
 
3352
3463
  [[package]]
@@ -3362,9 +3473,9 @@ dependencies = [
3362
3473
 
3363
3474
  [[package]]
3364
3475
  name = "thiserror-impl"
3365
- version = "2.0.12"
3476
+ version = "2.0.16"
3366
3477
  source = "registry+https://github.com/rust-lang/crates.io-index"
3367
- checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
3478
+ checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
3368
3479
  dependencies = [
3369
3480
  "proc-macro2",
3370
3481
  "quote",
@@ -3373,12 +3484,11 @@ dependencies = [
3373
3484
 
3374
3485
  [[package]]
3375
3486
  name = "thread_local"
3376
- version = "1.1.8"
3487
+ version = "1.1.9"
3377
3488
  source = "registry+https://github.com/rust-lang/crates.io-index"
3378
- checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
3489
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3379
3490
  dependencies = [
3380
3491
  "cfg-if",
3381
- "once_cell",
3382
3492
  ]
3383
3493
 
3384
3494
  [[package]]
@@ -3402,9 +3512,9 @@ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
3402
3512
 
3403
3513
  [[package]]
3404
3514
  name = "tinystr"
3405
- version = "0.7.6"
3515
+ version = "0.8.1"
3406
3516
  source = "registry+https://github.com/rust-lang/crates.io-index"
3407
- checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3517
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
3408
3518
  dependencies = [
3409
3519
  "displaydoc",
3410
3520
  "zerovec",
@@ -3422,9 +3532,9 @@ dependencies = [
3422
3532
 
3423
3533
  [[package]]
3424
3534
  name = "tinyvec"
3425
- version = "1.9.0"
3535
+ version = "1.10.0"
3426
3536
  source = "registry+https://github.com/rust-lang/crates.io-index"
3427
- checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
3537
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3428
3538
  dependencies = [
3429
3539
  "tinyvec_macros",
3430
3540
  ]
@@ -3437,21 +3547,23 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3437
3547
 
3438
3548
  [[package]]
3439
3549
  name = "tokio"
3440
- version = "1.44.2"
3550
+ version = "1.47.1"
3441
3551
  source = "registry+https://github.com/rust-lang/crates.io-index"
3442
- checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
3552
+ checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
3443
3553
  dependencies = [
3444
3554
  "backtrace",
3445
3555
  "bytes",
3556
+ "io-uring",
3446
3557
  "libc",
3447
3558
  "mio",
3448
3559
  "parking_lot",
3449
3560
  "pin-project-lite",
3450
3561
  "signal-hook-registry",
3451
- "socket2",
3562
+ "slab",
3563
+ "socket2 0.6.0",
3452
3564
  "tokio-macros",
3453
3565
  "tracing",
3454
- "windows-sys 0.52.0",
3566
+ "windows-sys 0.59.0",
3455
3567
  ]
3456
3568
 
3457
3569
  [[package]]
@@ -3488,9 +3600,9 @@ dependencies = [
3488
3600
 
3489
3601
  [[package]]
3490
3602
  name = "tokio-util"
3491
- version = "0.7.14"
3603
+ version = "0.7.16"
3492
3604
  source = "registry+https://github.com/rust-lang/crates.io-index"
3493
- checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
3605
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
3494
3606
  dependencies = [
3495
3607
  "bytes",
3496
3608
  "futures-core",
@@ -3501,38 +3613,84 @@ dependencies = [
3501
3613
 
3502
3614
  [[package]]
3503
3615
  name = "toml"
3504
- version = "0.8.20"
3616
+ version = "0.8.23"
3505
3617
  source = "registry+https://github.com/rust-lang/crates.io-index"
3506
- checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148"
3618
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
3507
3619
  dependencies = [
3508
3620
  "serde",
3509
- "serde_spanned",
3510
- "toml_datetime",
3621
+ "serde_spanned 0.6.9",
3622
+ "toml_datetime 0.6.11",
3511
3623
  "toml_edit",
3512
3624
  ]
3513
3625
 
3626
+ [[package]]
3627
+ name = "toml"
3628
+ version = "0.9.5"
3629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3630
+ checksum = "75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8"
3631
+ dependencies = [
3632
+ "indexmap 2.10.0",
3633
+ "serde",
3634
+ "serde_spanned 1.0.0",
3635
+ "toml_datetime 0.7.0",
3636
+ "toml_parser",
3637
+ "toml_writer",
3638
+ "winnow",
3639
+ ]
3640
+
3641
+ [[package]]
3642
+ name = "toml_datetime"
3643
+ version = "0.6.11"
3644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3645
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
3646
+ dependencies = [
3647
+ "serde",
3648
+ ]
3649
+
3514
3650
  [[package]]
3515
3651
  name = "toml_datetime"
3516
- version = "0.6.8"
3652
+ version = "0.7.0"
3517
3653
  source = "registry+https://github.com/rust-lang/crates.io-index"
3518
- checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
3654
+ checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3"
3519
3655
  dependencies = [
3520
3656
  "serde",
3521
3657
  ]
3522
3658
 
3523
3659
  [[package]]
3524
3660
  name = "toml_edit"
3525
- version = "0.22.24"
3661
+ version = "0.22.27"
3526
3662
  source = "registry+https://github.com/rust-lang/crates.io-index"
3527
- checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
3663
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
3528
3664
  dependencies = [
3529
- "indexmap 2.9.0",
3665
+ "indexmap 2.10.0",
3530
3666
  "serde",
3531
- "serde_spanned",
3532
- "toml_datetime",
3667
+ "serde_spanned 0.6.9",
3668
+ "toml_datetime 0.6.11",
3669
+ "toml_write",
3533
3670
  "winnow",
3534
3671
  ]
3535
3672
 
3673
+ [[package]]
3674
+ name = "toml_parser"
3675
+ version = "1.0.2"
3676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3677
+ checksum = "b551886f449aa90d4fe2bdaa9f4a2577ad2dde302c61ecf262d80b116db95c10"
3678
+ dependencies = [
3679
+ "winnow",
3680
+ ]
3681
+
3682
+ [[package]]
3683
+ name = "toml_write"
3684
+ version = "0.1.2"
3685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3686
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
3687
+
3688
+ [[package]]
3689
+ name = "toml_writer"
3690
+ version = "1.0.2"
3691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3692
+ checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64"
3693
+
3536
3694
  [[package]]
3537
3695
  name = "tonic"
3538
3696
  version = "0.12.3"
@@ -3541,7 +3699,36 @@ checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
3541
3699
  dependencies = [
3542
3700
  "async-stream",
3543
3701
  "async-trait",
3544
- "axum",
3702
+ "axum 0.7.9",
3703
+ "base64 0.22.1",
3704
+ "bytes",
3705
+ "h2",
3706
+ "http",
3707
+ "http-body",
3708
+ "http-body-util",
3709
+ "hyper",
3710
+ "hyper-timeout",
3711
+ "hyper-util",
3712
+ "percent-encoding",
3713
+ "pin-project",
3714
+ "prost",
3715
+ "socket2 0.5.10",
3716
+ "tokio",
3717
+ "tokio-stream",
3718
+ "tower 0.4.13",
3719
+ "tower-layer",
3720
+ "tower-service",
3721
+ "tracing",
3722
+ ]
3723
+
3724
+ [[package]]
3725
+ name = "tonic"
3726
+ version = "0.13.1"
3727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3728
+ checksum = "7e581ba15a835f4d9ea06c55ab1bd4dce26fc53752c69a04aac00703bfb49ba9"
3729
+ dependencies = [
3730
+ "async-trait",
3731
+ "axum 0.8.4",
3545
3732
  "base64 0.22.1",
3546
3733
  "bytes",
3547
3734
  "h2",
@@ -3555,12 +3742,11 @@ dependencies = [
3555
3742
  "pin-project",
3556
3743
  "prost",
3557
3744
  "rustls-native-certs",
3558
- "rustls-pemfile",
3559
- "socket2",
3745
+ "socket2 0.5.10",
3560
3746
  "tokio",
3561
3747
  "tokio-rustls",
3562
3748
  "tokio-stream",
3563
- "tower 0.4.13",
3749
+ "tower 0.5.2",
3564
3750
  "tower-layer",
3565
3751
  "tower-service",
3566
3752
  "tracing",
@@ -3568,9 +3754,9 @@ dependencies = [
3568
3754
 
3569
3755
  [[package]]
3570
3756
  name = "tonic-build"
3571
- version = "0.12.3"
3757
+ version = "0.13.1"
3572
3758
  source = "registry+https://github.com/rust-lang/crates.io-index"
3573
- checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11"
3759
+ checksum = "eac6f67be712d12f0b41328db3137e0d0757645d8904b4cb7d51cd9c2279e847"
3574
3760
  dependencies = [
3575
3761
  "prettyplease",
3576
3762
  "proc-macro2",
@@ -3608,9 +3794,31 @@ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3608
3794
  dependencies = [
3609
3795
  "futures-core",
3610
3796
  "futures-util",
3797
+ "indexmap 2.10.0",
3611
3798
  "pin-project-lite",
3799
+ "slab",
3612
3800
  "sync_wrapper",
3613
3801
  "tokio",
3802
+ "tokio-util",
3803
+ "tower-layer",
3804
+ "tower-service",
3805
+ "tracing",
3806
+ ]
3807
+
3808
+ [[package]]
3809
+ name = "tower-http"
3810
+ version = "0.6.6"
3811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3812
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
3813
+ dependencies = [
3814
+ "bitflags",
3815
+ "bytes",
3816
+ "futures-util",
3817
+ "http",
3818
+ "http-body",
3819
+ "iri-string",
3820
+ "pin-project-lite",
3821
+ "tower 0.5.2",
3614
3822
  "tower-layer",
3615
3823
  "tower-service",
3616
3824
  ]
@@ -3640,9 +3848,9 @@ dependencies = [
3640
3848
 
3641
3849
  [[package]]
3642
3850
  name = "tracing-attributes"
3643
- version = "0.1.28"
3851
+ version = "0.1.30"
3644
3852
  source = "registry+https://github.com/rust-lang/crates.io-index"
3645
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3853
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3646
3854
  dependencies = [
3647
3855
  "proc-macro2",
3648
3856
  "quote",
@@ -3651,9 +3859,9 @@ dependencies = [
3651
3859
 
3652
3860
  [[package]]
3653
3861
  name = "tracing-core"
3654
- version = "0.1.33"
3862
+ version = "0.1.34"
3655
3863
  source = "registry+https://github.com/rust-lang/crates.io-index"
3656
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3864
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3657
3865
  dependencies = [
3658
3866
  "once_cell",
3659
3867
  "valuable",
@@ -3684,9 +3892,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3684
3892
 
3685
3893
  [[package]]
3686
3894
  name = "trybuild"
3687
- version = "1.0.104"
3895
+ version = "1.0.110"
3688
3896
  source = "registry+https://github.com/rust-lang/crates.io-index"
3689
- checksum = "6ae08be68c056db96f0e6c6dd820727cca756ced9e1f4cc7fdd20e2a55e23898"
3897
+ checksum = "32e257d7246e7a9fd015fb0b28b330a8d4142151a33f03e6a497754f4b1f6a8e"
3690
3898
  dependencies = [
3691
3899
  "dissimilar",
3692
3900
  "glob",
@@ -3695,7 +3903,7 @@ dependencies = [
3695
3903
  "serde_json",
3696
3904
  "target-triple",
3697
3905
  "termcolor",
3698
- "toml",
3906
+ "toml 0.9.5",
3699
3907
  ]
3700
3908
 
3701
3909
  [[package]]
@@ -3763,12 +3971,6 @@ dependencies = [
3763
3971
  "percent-encoding",
3764
3972
  ]
3765
3973
 
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
3974
  [[package]]
3773
3975
  name = "utf8_iter"
3774
3976
  version = "1.0.4"
@@ -3783,11 +3985,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3783
3985
 
3784
3986
  [[package]]
3785
3987
  name = "uuid"
3786
- version = "1.16.0"
3988
+ version = "1.18.0"
3787
3989
  source = "registry+https://github.com/rust-lang/crates.io-index"
3788
- checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3990
+ checksum = "f33196643e165781c20a5ead5582283a7dacbb87855d867fbc2df3f81eddc1be"
3789
3991
  dependencies = [
3790
- "getrandom 0.3.2",
3992
+ "getrandom 0.3.3",
3993
+ "js-sys",
3994
+ "wasm-bindgen",
3791
3995
  ]
3792
3996
 
3793
3997
  [[package]]
@@ -3823,9 +4027,9 @@ dependencies = [
3823
4027
 
3824
4028
  [[package]]
3825
4029
  name = "wasi"
3826
- version = "0.11.0+wasi-snapshot-preview1"
4030
+ version = "0.11.1+wasi-snapshot-preview1"
3827
4031
  source = "registry+https://github.com/rust-lang/crates.io-index"
3828
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
4032
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3829
4033
 
3830
4034
  [[package]]
3831
4035
  name = "wasi"
@@ -3958,11 +4162,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3958
4162
 
3959
4163
  [[package]]
3960
4164
  name = "winapi-util"
3961
- version = "0.1.9"
4165
+ version = "0.1.10"
3962
4166
  source = "registry+https://github.com/rust-lang/crates.io-index"
3963
- checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
4167
+ checksum = "0978bf7171b3d90bac376700cb56d606feb40f251a475a5d6634613564460b22"
3964
4168
  dependencies = [
3965
- "windows-sys 0.59.0",
4169
+ "windows-sys 0.60.2",
3966
4170
  ]
3967
4171
 
3968
4172
  [[package]]
@@ -3989,7 +4193,7 @@ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
3989
4193
  dependencies = [
3990
4194
  "windows-implement",
3991
4195
  "windows-interface",
3992
- "windows-result 0.1.2",
4196
+ "windows-result",
3993
4197
  "windows-targets 0.52.6",
3994
4198
  ]
3995
4199
 
@@ -4017,20 +4221,9 @@ dependencies = [
4017
4221
 
4018
4222
  [[package]]
4019
4223
  name = "windows-link"
4020
- version = "0.1.1"
4224
+ version = "0.1.3"
4021
4225
  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
- ]
4226
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
4034
4227
 
4035
4228
  [[package]]
4036
4229
  name = "windows-result"
@@ -4042,21 +4235,12 @@ dependencies = [
4042
4235
  ]
4043
4236
 
4044
4237
  [[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"
4238
+ name = "windows-sys"
4239
+ version = "0.48.0"
4056
4240
  source = "registry+https://github.com/rust-lang/crates.io-index"
4057
- checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
4241
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4058
4242
  dependencies = [
4059
- "windows-link",
4243
+ "windows-targets 0.48.5",
4060
4244
  ]
4061
4245
 
4062
4246
  [[package]]
@@ -4077,6 +4261,30 @@ dependencies = [
4077
4261
  "windows-targets 0.52.6",
4078
4262
  ]
4079
4263
 
4264
+ [[package]]
4265
+ name = "windows-sys"
4266
+ version = "0.60.2"
4267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4268
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4269
+ dependencies = [
4270
+ "windows-targets 0.53.3",
4271
+ ]
4272
+
4273
+ [[package]]
4274
+ name = "windows-targets"
4275
+ version = "0.48.5"
4276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4277
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4278
+ dependencies = [
4279
+ "windows_aarch64_gnullvm 0.48.5",
4280
+ "windows_aarch64_msvc 0.48.5",
4281
+ "windows_i686_gnu 0.48.5",
4282
+ "windows_i686_msvc 0.48.5",
4283
+ "windows_x86_64_gnu 0.48.5",
4284
+ "windows_x86_64_gnullvm 0.48.5",
4285
+ "windows_x86_64_msvc 0.48.5",
4286
+ ]
4287
+
4080
4288
  [[package]]
4081
4289
  name = "windows-targets"
4082
4290
  version = "0.52.6"
@@ -4095,10 +4303,11 @@ dependencies = [
4095
4303
 
4096
4304
  [[package]]
4097
4305
  name = "windows-targets"
4098
- version = "0.53.0"
4306
+ version = "0.53.3"
4099
4307
  source = "registry+https://github.com/rust-lang/crates.io-index"
4100
- checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
4308
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
4101
4309
  dependencies = [
4310
+ "windows-link",
4102
4311
  "windows_aarch64_gnullvm 0.53.0",
4103
4312
  "windows_aarch64_msvc 0.53.0",
4104
4313
  "windows_i686_gnu 0.53.0",
@@ -4109,6 +4318,12 @@ dependencies = [
4109
4318
  "windows_x86_64_msvc 0.53.0",
4110
4319
  ]
4111
4320
 
4321
+ [[package]]
4322
+ name = "windows_aarch64_gnullvm"
4323
+ version = "0.48.5"
4324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4325
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4326
+
4112
4327
  [[package]]
4113
4328
  name = "windows_aarch64_gnullvm"
4114
4329
  version = "0.52.6"
@@ -4121,6 +4336,12 @@ version = "0.53.0"
4121
4336
  source = "registry+https://github.com/rust-lang/crates.io-index"
4122
4337
  checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
4123
4338
 
4339
+ [[package]]
4340
+ name = "windows_aarch64_msvc"
4341
+ version = "0.48.5"
4342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4343
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4344
+
4124
4345
  [[package]]
4125
4346
  name = "windows_aarch64_msvc"
4126
4347
  version = "0.52.6"
@@ -4133,6 +4354,12 @@ version = "0.53.0"
4133
4354
  source = "registry+https://github.com/rust-lang/crates.io-index"
4134
4355
  checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
4135
4356
 
4357
+ [[package]]
4358
+ name = "windows_i686_gnu"
4359
+ version = "0.48.5"
4360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4361
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4362
+
4136
4363
  [[package]]
4137
4364
  name = "windows_i686_gnu"
4138
4365
  version = "0.52.6"
@@ -4157,6 +4384,12 @@ version = "0.53.0"
4157
4384
  source = "registry+https://github.com/rust-lang/crates.io-index"
4158
4385
  checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
4159
4386
 
4387
+ [[package]]
4388
+ name = "windows_i686_msvc"
4389
+ version = "0.48.5"
4390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4391
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4392
+
4160
4393
  [[package]]
4161
4394
  name = "windows_i686_msvc"
4162
4395
  version = "0.52.6"
@@ -4169,6 +4402,12 @@ version = "0.53.0"
4169
4402
  source = "registry+https://github.com/rust-lang/crates.io-index"
4170
4403
  checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
4171
4404
 
4405
+ [[package]]
4406
+ name = "windows_x86_64_gnu"
4407
+ version = "0.48.5"
4408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4409
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4410
+
4172
4411
  [[package]]
4173
4412
  name = "windows_x86_64_gnu"
4174
4413
  version = "0.52.6"
@@ -4181,6 +4420,12 @@ version = "0.53.0"
4181
4420
  source = "registry+https://github.com/rust-lang/crates.io-index"
4182
4421
  checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
4183
4422
 
4423
+ [[package]]
4424
+ name = "windows_x86_64_gnullvm"
4425
+ version = "0.48.5"
4426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4427
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4428
+
4184
4429
  [[package]]
4185
4430
  name = "windows_x86_64_gnullvm"
4186
4431
  version = "0.52.6"
@@ -4193,6 +4438,12 @@ version = "0.53.0"
4193
4438
  source = "registry+https://github.com/rust-lang/crates.io-index"
4194
4439
  checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
4195
4440
 
4441
+ [[package]]
4442
+ name = "windows_x86_64_msvc"
4443
+ version = "0.48.5"
4444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4445
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4446
+
4196
4447
  [[package]]
4197
4448
  name = "windows_x86_64_msvc"
4198
4449
  version = "0.52.6"
@@ -4207,9 +4458,9 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
4207
4458
 
4208
4459
  [[package]]
4209
4460
  name = "winnow"
4210
- version = "0.7.6"
4461
+ version = "0.7.12"
4211
4462
  source = "registry+https://github.com/rust-lang/crates.io-index"
4212
- checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10"
4463
+ checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
4213
4464
  dependencies = [
4214
4465
  "memchr",
4215
4466
  ]
@@ -4223,23 +4474,17 @@ dependencies = [
4223
4474
  "bitflags",
4224
4475
  ]
4225
4476
 
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
4477
  [[package]]
4233
4478
  name = "writeable"
4234
- version = "0.5.5"
4479
+ version = "0.6.1"
4235
4480
  source = "registry+https://github.com/rust-lang/crates.io-index"
4236
- checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4481
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
4237
4482
 
4238
4483
  [[package]]
4239
4484
  name = "xattr"
4240
- version = "1.5.0"
4485
+ version = "1.5.1"
4241
4486
  source = "registry+https://github.com/rust-lang/crates.io-index"
4242
- checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
4487
+ checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909"
4243
4488
  dependencies = [
4244
4489
  "libc",
4245
4490
  "rustix",
@@ -4256,9 +4501,9 @@ dependencies = [
4256
4501
 
4257
4502
  [[package]]
4258
4503
  name = "yoke"
4259
- version = "0.7.5"
4504
+ version = "0.8.0"
4260
4505
  source = "registry+https://github.com/rust-lang/crates.io-index"
4261
- checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4506
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
4262
4507
  dependencies = [
4263
4508
  "serde",
4264
4509
  "stable_deref_trait",
@@ -4268,9 +4513,9 @@ dependencies = [
4268
4513
 
4269
4514
  [[package]]
4270
4515
  name = "yoke-derive"
4271
- version = "0.7.5"
4516
+ version = "0.8.0"
4272
4517
  source = "registry+https://github.com/rust-lang/crates.io-index"
4273
- checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4518
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
4274
4519
  dependencies = [
4275
4520
  "proc-macro2",
4276
4521
  "quote",
@@ -4280,18 +4525,18 @@ dependencies = [
4280
4525
 
4281
4526
  [[package]]
4282
4527
  name = "zerocopy"
4283
- version = "0.8.24"
4528
+ version = "0.8.26"
4284
4529
  source = "registry+https://github.com/rust-lang/crates.io-index"
4285
- checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
4530
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
4286
4531
  dependencies = [
4287
4532
  "zerocopy-derive",
4288
4533
  ]
4289
4534
 
4290
4535
  [[package]]
4291
4536
  name = "zerocopy-derive"
4292
- version = "0.8.24"
4537
+ version = "0.8.26"
4293
4538
  source = "registry+https://github.com/rust-lang/crates.io-index"
4294
- checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
4539
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
4295
4540
  dependencies = [
4296
4541
  "proc-macro2",
4297
4542
  "quote",
@@ -4339,11 +4584,22 @@ dependencies = [
4339
4584
  "syn",
4340
4585
  ]
4341
4586
 
4587
+ [[package]]
4588
+ name = "zerotrie"
4589
+ version = "0.2.2"
4590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4591
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
4592
+ dependencies = [
4593
+ "displaydoc",
4594
+ "yoke",
4595
+ "zerofrom",
4596
+ ]
4597
+
4342
4598
  [[package]]
4343
4599
  name = "zerovec"
4344
- version = "0.10.4"
4600
+ version = "0.11.4"
4345
4601
  source = "registry+https://github.com/rust-lang/crates.io-index"
4346
- checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4602
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
4347
4603
  dependencies = [
4348
4604
  "yoke",
4349
4605
  "zerofrom",
@@ -4352,9 +4608,9 @@ dependencies = [
4352
4608
 
4353
4609
  [[package]]
4354
4610
  name = "zerovec-derive"
4355
- version = "0.10.3"
4611
+ version = "0.11.1"
4356
4612
  source = "registry+https://github.com/rust-lang/crates.io-index"
4357
- checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4613
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
4358
4614
  dependencies = [
4359
4615
  "proc-macro2",
4360
4616
  "quote",
@@ -4363,9 +4619,9 @@ dependencies = [
4363
4619
 
4364
4620
  [[package]]
4365
4621
  name = "zip"
4366
- version = "2.6.1"
4622
+ version = "2.4.2"
4367
4623
  source = "registry+https://github.com/rust-lang/crates.io-index"
4368
- checksum = "1dcb24d0152526ae49b9b96c1dcf71850ca1e0b882e4e28ed898a93c41334744"
4624
+ checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
4369
4625
  dependencies = [
4370
4626
  "aes",
4371
4627
  "arbitrary",
@@ -4374,14 +4630,16 @@ dependencies = [
4374
4630
  "crc32fast",
4375
4631
  "crossbeam-utils",
4376
4632
  "deflate64",
4633
+ "displaydoc",
4377
4634
  "flate2",
4378
- "getrandom 0.3.2",
4635
+ "getrandom 0.3.3",
4379
4636
  "hmac",
4380
- "indexmap 2.9.0",
4637
+ "indexmap 2.10.0",
4381
4638
  "lzma-rs",
4382
4639
  "memchr",
4383
4640
  "pbkdf2",
4384
4641
  "sha1",
4642
+ "thiserror 2.0.16",
4385
4643
  "time",
4386
4644
  "xz2",
4387
4645
  "zeroize",
@@ -4391,15 +4649,13 @@ dependencies = [
4391
4649
 
4392
4650
  [[package]]
4393
4651
  name = "zopfli"
4394
- version = "0.8.1"
4652
+ version = "0.8.2"
4395
4653
  source = "registry+https://github.com/rust-lang/crates.io-index"
4396
- checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946"
4654
+ checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7"
4397
4655
  dependencies = [
4398
4656
  "bumpalo",
4399
4657
  "crc32fast",
4400
- "lockfree-object-pool",
4401
4658
  "log",
4402
- "once_cell",
4403
4659
  "simd-adler32",
4404
4660
  ]
4405
4661