temporalio 0.3.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (153) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +1 -1
  3. data/Cargo.lock +1019 -669
  4. data/Cargo.toml +5 -5
  5. data/Gemfile +4 -0
  6. data/README.md +281 -44
  7. data/Rakefile +1 -1
  8. data/ext/Cargo.toml +4 -3
  9. data/lib/temporalio/activity/cancellation_details.rb +58 -0
  10. data/lib/temporalio/activity/context.rb +23 -1
  11. data/lib/temporalio/activity/definition.rb +63 -8
  12. data/lib/temporalio/activity/info.rb +28 -4
  13. data/lib/temporalio/activity.rb +2 -0
  14. data/lib/temporalio/api/activity/v1/message.rb +1 -1
  15. data/lib/temporalio/api/batch/v1/message.rb +9 -2
  16. data/lib/temporalio/api/cloud/account/v1/message.rb +1 -1
  17. data/lib/temporalio/api/cloud/cloudservice/v1/request_response.rb +11 -2
  18. data/lib/temporalio/api/cloud/cloudservice/v1/service.rb +2 -2
  19. data/lib/temporalio/api/cloud/identity/v1/message.rb +7 -2
  20. data/lib/temporalio/api/cloud/namespace/v1/message.rb +6 -2
  21. data/lib/temporalio/api/cloud/nexus/v1/message.rb +3 -2
  22. data/lib/temporalio/api/cloud/operation/v1/message.rb +1 -1
  23. data/lib/temporalio/api/cloud/region/v1/message.rb +1 -1
  24. data/lib/temporalio/api/cloud/resource/v1/message.rb +1 -1
  25. data/lib/temporalio/api/cloud/sink/v1/message.rb +1 -1
  26. data/lib/temporalio/api/cloud/usage/v1/message.rb +1 -1
  27. data/lib/temporalio/api/command/v1/message.rb +2 -2
  28. data/lib/temporalio/api/common/v1/grpc_status.rb +1 -1
  29. data/lib/temporalio/api/common/v1/message.rb +4 -2
  30. data/lib/temporalio/api/deployment/v1/message.rb +39 -0
  31. data/lib/temporalio/api/enums/v1/batch_operation.rb +2 -2
  32. data/lib/temporalio/api/enums/v1/command_type.rb +1 -1
  33. data/lib/temporalio/api/enums/v1/common.rb +5 -2
  34. data/lib/temporalio/api/enums/v1/deployment.rb +24 -0
  35. data/lib/temporalio/api/enums/v1/event_type.rb +2 -2
  36. data/lib/temporalio/api/enums/v1/failed_cause.rb +2 -2
  37. data/lib/temporalio/api/enums/v1/namespace.rb +1 -1
  38. data/lib/temporalio/api/enums/v1/nexus.rb +21 -0
  39. data/lib/temporalio/api/enums/v1/query.rb +1 -1
  40. data/lib/temporalio/api/enums/v1/reset.rb +2 -2
  41. data/lib/temporalio/api/enums/v1/schedule.rb +1 -1
  42. data/lib/temporalio/api/enums/v1/task_queue.rb +1 -1
  43. data/lib/temporalio/api/enums/v1/update.rb +1 -1
  44. data/lib/temporalio/api/enums/v1/workflow.rb +3 -2
  45. data/lib/temporalio/api/errordetails/v1/message.rb +4 -2
  46. data/lib/temporalio/api/export/v1/message.rb +1 -1
  47. data/lib/temporalio/api/failure/v1/message.rb +5 -2
  48. data/lib/temporalio/api/filter/v1/message.rb +1 -1
  49. data/lib/temporalio/api/history/v1/message.rb +6 -2
  50. data/lib/temporalio/api/namespace/v1/message.rb +1 -1
  51. data/lib/temporalio/api/nexus/v1/message.rb +3 -2
  52. data/lib/temporalio/api/operatorservice/v1/request_response.rb +1 -1
  53. data/lib/temporalio/api/operatorservice/v1/service.rb +1 -1
  54. data/lib/temporalio/api/payload_visitor.rb +162 -7
  55. data/lib/temporalio/api/protocol/v1/message.rb +1 -1
  56. data/lib/temporalio/api/query/v1/message.rb +3 -2
  57. data/lib/temporalio/api/replication/v1/message.rb +1 -1
  58. data/lib/temporalio/api/rules/v1/message.rb +27 -0
  59. data/lib/temporalio/api/schedule/v1/message.rb +2 -2
  60. data/lib/temporalio/api/sdk/v1/enhanced_stack_trace.rb +1 -1
  61. data/lib/temporalio/api/sdk/v1/task_complete_metadata.rb +1 -1
  62. data/lib/temporalio/api/sdk/v1/user_metadata.rb +1 -1
  63. data/lib/temporalio/api/sdk/v1/workflow_metadata.rb +1 -1
  64. data/lib/temporalio/api/taskqueue/v1/message.rb +5 -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 +30 -0
  70. data/lib/temporalio/api/workflow/v1/message.rb +22 -2
  71. data/lib/temporalio/api/workflowservice/v1/request_response.rb +58 -12
  72. data/lib/temporalio/api/workflowservice/v1/service.rb +2 -2
  73. data/lib/temporalio/api.rb +1 -0
  74. data/lib/temporalio/client/async_activity_handle.rb +12 -4
  75. data/lib/temporalio/client/connection/cloud_service.rb +60 -0
  76. data/lib/temporalio/client/connection/workflow_service.rb +343 -28
  77. data/lib/temporalio/client/interceptor.rb +64 -7
  78. data/lib/temporalio/client/schedule.rb +35 -3
  79. data/lib/temporalio/client/with_start_workflow_operation.rb +123 -0
  80. data/lib/temporalio/client/workflow_execution.rb +19 -0
  81. data/lib/temporalio/client/workflow_handle.rb +47 -7
  82. data/lib/temporalio/client/workflow_update_handle.rb +9 -3
  83. data/lib/temporalio/client.rb +231 -4
  84. data/lib/temporalio/common_enums.rb +14 -0
  85. data/lib/temporalio/contrib/open_telemetry.rb +474 -0
  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 +2 -2
  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 +2 -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 +3 -2
  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 +3 -2
  108. data/lib/temporalio/internal/bridge/runtime.rb +3 -0
  109. data/lib/temporalio/internal/bridge/testing.rb +3 -0
  110. data/lib/temporalio/internal/bridge/worker.rb +28 -4
  111. data/lib/temporalio/internal/bridge.rb +1 -1
  112. data/lib/temporalio/internal/client/implementation.rb +281 -51
  113. data/lib/temporalio/internal/proto_utils.rb +38 -6
  114. data/lib/temporalio/internal/worker/activity_worker.rb +112 -27
  115. data/lib/temporalio/internal/worker/multi_runner.rb +2 -2
  116. data/lib/temporalio/internal/worker/workflow_instance/child_workflow_handle.rb +8 -6
  117. data/lib/temporalio/internal/worker/workflow_instance/context.rb +100 -5
  118. data/lib/temporalio/internal/worker/workflow_instance/details.rb +7 -2
  119. data/lib/temporalio/internal/worker/workflow_instance/external_workflow_handle.rb +2 -2
  120. data/lib/temporalio/internal/worker/workflow_instance/illegal_call_tracer.rb +64 -18
  121. data/lib/temporalio/internal/worker/workflow_instance/outbound_implementation.rb +39 -40
  122. data/lib/temporalio/internal/worker/workflow_instance/scheduler.rb +22 -2
  123. data/lib/temporalio/internal/worker/workflow_instance.rb +134 -55
  124. data/lib/temporalio/internal/worker/workflow_worker.rb +74 -21
  125. data/lib/temporalio/priority.rb +59 -0
  126. data/lib/temporalio/runtime/metric_buffer.rb +94 -0
  127. data/lib/temporalio/runtime.rb +48 -10
  128. data/lib/temporalio/search_attributes.rb +13 -0
  129. data/lib/temporalio/testing/activity_environment.rb +59 -16
  130. data/lib/temporalio/testing/workflow_environment.rb +29 -6
  131. data/lib/temporalio/version.rb +1 -1
  132. data/lib/temporalio/versioning_override.rb +56 -0
  133. data/lib/temporalio/worker/deployment_options.rb +45 -0
  134. data/lib/temporalio/worker/illegal_workflow_call_validator.rb +64 -0
  135. data/lib/temporalio/worker/interceptor.rb +16 -1
  136. data/lib/temporalio/worker/poller_behavior.rb +61 -0
  137. data/lib/temporalio/worker/thread_pool.rb +6 -6
  138. data/lib/temporalio/worker/tuner.rb +38 -0
  139. data/lib/temporalio/worker/workflow_executor/thread_pool.rb +14 -8
  140. data/lib/temporalio/worker/workflow_executor.rb +1 -1
  141. data/lib/temporalio/worker/workflow_replayer.rb +349 -0
  142. data/lib/temporalio/worker.rb +117 -75
  143. data/lib/temporalio/worker_deployment_version.rb +67 -0
  144. data/lib/temporalio/workflow/child_workflow_handle.rb +10 -2
  145. data/lib/temporalio/workflow/definition.rb +217 -35
  146. data/lib/temporalio/workflow/external_workflow_handle.rb +3 -1
  147. data/lib/temporalio/workflow/future.rb +2 -2
  148. data/lib/temporalio/workflow/info.rb +26 -1
  149. data/lib/temporalio/workflow.rb +119 -15
  150. data/lib/temporalio/workflow_history.rb +26 -1
  151. data/lib/temporalio.rb +1 -0
  152. data/temporalio.gemspec +3 -1
  153. metadata +36 -6
data/Cargo.lock CHANGED
@@ -13,9 +13,9 @@ dependencies = [
13
13
 
14
14
  [[package]]
15
15
  name = "adler2"
16
- version = "2.0.0"
16
+ version = "2.0.1"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
19
 
20
20
  [[package]]
21
21
  name = "aes"
@@ -51,9 +51,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
51
51
 
52
52
  [[package]]
53
53
  name = "anstream"
54
- version = "0.6.18"
54
+ version = "0.6.19"
55
55
  source = "registry+https://github.com/rust-lang/crates.io-index"
56
- checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
56
+ checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
57
57
  dependencies = [
58
58
  "anstyle",
59
59
  "anstyle-parse",
@@ -66,44 +66,44 @@ dependencies = [
66
66
 
67
67
  [[package]]
68
68
  name = "anstyle"
69
- version = "1.0.10"
69
+ version = "1.0.11"
70
70
  source = "registry+https://github.com/rust-lang/crates.io-index"
71
- checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
71
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
72
72
 
73
73
  [[package]]
74
74
  name = "anstyle-parse"
75
- version = "0.2.6"
75
+ version = "0.2.7"
76
76
  source = "registry+https://github.com/rust-lang/crates.io-index"
77
- checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
77
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
78
78
  dependencies = [
79
79
  "utf8parse",
80
80
  ]
81
81
 
82
82
  [[package]]
83
83
  name = "anstyle-query"
84
- version = "1.1.2"
84
+ version = "1.1.3"
85
85
  source = "registry+https://github.com/rust-lang/crates.io-index"
86
- checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
86
+ checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
87
87
  dependencies = [
88
88
  "windows-sys 0.59.0",
89
89
  ]
90
90
 
91
91
  [[package]]
92
92
  name = "anstyle-wincon"
93
- version = "3.0.7"
93
+ version = "3.0.9"
94
94
  source = "registry+https://github.com/rust-lang/crates.io-index"
95
- checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
95
+ checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
96
96
  dependencies = [
97
97
  "anstyle",
98
- "once_cell",
98
+ "once_cell_polyfill",
99
99
  "windows-sys 0.59.0",
100
100
  ]
101
101
 
102
102
  [[package]]
103
103
  name = "anyhow"
104
- version = "1.0.95"
104
+ version = "1.0.98"
105
105
  source = "registry+https://github.com/rust-lang/crates.io-index"
106
- checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
106
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
107
107
 
108
108
  [[package]]
109
109
  name = "arbitrary"
@@ -144,9 +144,9 @@ dependencies = [
144
144
 
145
145
  [[package]]
146
146
  name = "async-trait"
147
- version = "0.1.85"
147
+ version = "0.1.88"
148
148
  source = "registry+https://github.com/rust-lang/crates.io-index"
149
- checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056"
149
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
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",
266
+ "getrandom 0.2.16",
222
267
  "instant",
223
- "rand",
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",
@@ -235,7 +280,7 @@ dependencies = [
235
280
  "miniz_oxide",
236
281
  "object",
237
282
  "rustc-demangle",
238
- "windows-targets",
283
+ "windows-targets 0.52.6",
239
284
  ]
240
285
 
241
286
  [[package]]
@@ -278,9 +323,9 @@ dependencies = [
278
323
 
279
324
  [[package]]
280
325
  name = "bitflags"
281
- version = "2.8.0"
326
+ version = "2.9.1"
282
327
  source = "registry+https://github.com/rust-lang/crates.io-index"
283
- checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
328
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
284
329
 
285
330
  [[package]]
286
331
  name = "block-buffer"
@@ -293,9 +338,9 @@ dependencies = [
293
338
 
294
339
  [[package]]
295
340
  name = "bumpalo"
296
- version = "3.16.0"
341
+ version = "3.19.0"
297
342
  source = "registry+https://github.com/rust-lang/crates.io-index"
298
- checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
343
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
299
344
 
300
345
  [[package]]
301
346
  name = "byteorder"
@@ -305,28 +350,26 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
305
350
 
306
351
  [[package]]
307
352
  name = "bytes"
308
- version = "1.9.0"
353
+ version = "1.10.1"
309
354
  source = "registry+https://github.com/rust-lang/crates.io-index"
310
- checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
355
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
311
356
 
312
357
  [[package]]
313
358
  name = "bzip2"
314
- version = "0.4.4"
359
+ version = "0.5.2"
315
360
  source = "registry+https://github.com/rust-lang/crates.io-index"
316
- checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
361
+ checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
317
362
  dependencies = [
318
363
  "bzip2-sys",
319
- "libc",
320
364
  ]
321
365
 
322
366
  [[package]]
323
367
  name = "bzip2-sys"
324
- version = "0.1.11+1.0.8"
368
+ version = "0.1.13+1.0.8"
325
369
  source = "registry+https://github.com/rust-lang/crates.io-index"
326
- checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
370
+ checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
327
371
  dependencies = [
328
372
  "cc",
329
- "libc",
330
373
  "pkg-config",
331
374
  ]
332
375
 
@@ -338,9 +381,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
338
381
 
339
382
  [[package]]
340
383
  name = "cc"
341
- version = "1.2.10"
384
+ version = "1.2.30"
342
385
  source = "registry+https://github.com/rust-lang/crates.io-index"
343
- checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
386
+ checksum = "deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7"
344
387
  dependencies = [
345
388
  "jobserver",
346
389
  "libc",
@@ -358,9 +401,9 @@ dependencies = [
358
401
 
359
402
  [[package]]
360
403
  name = "cfg-if"
361
- version = "1.0.0"
404
+ version = "1.0.1"
362
405
  source = "registry+https://github.com/rust-lang/crates.io-index"
363
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
406
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
364
407
 
365
408
  [[package]]
366
409
  name = "cfg_aliases"
@@ -370,9 +413,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
370
413
 
371
414
  [[package]]
372
415
  name = "chrono"
373
- version = "0.4.39"
416
+ version = "0.4.41"
374
417
  source = "registry+https://github.com/rust-lang/crates.io-index"
375
- checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
418
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
376
419
  dependencies = [
377
420
  "num-traits",
378
421
  "serde",
@@ -428,9 +471,9 @@ dependencies = [
428
471
 
429
472
  [[package]]
430
473
  name = "clap"
431
- version = "4.5.26"
474
+ version = "4.5.41"
432
475
  source = "registry+https://github.com/rust-lang/crates.io-index"
433
- checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783"
476
+ checksum = "be92d32e80243a54711e5d7ce823c35c41c9d929dc4ab58e1276f625841aadf9"
434
477
  dependencies = [
435
478
  "clap_builder",
436
479
  "clap_derive",
@@ -438,9 +481,9 @@ dependencies = [
438
481
 
439
482
  [[package]]
440
483
  name = "clap_builder"
441
- version = "4.5.26"
484
+ version = "4.5.41"
442
485
  source = "registry+https://github.com/rust-lang/crates.io-index"
443
- checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121"
486
+ checksum = "707eab41e9622f9139419d573eca0900137718000c517d47da73045f54331c3d"
444
487
  dependencies = [
445
488
  "anstream",
446
489
  "anstyle",
@@ -450,9 +493,9 @@ dependencies = [
450
493
 
451
494
  [[package]]
452
495
  name = "clap_derive"
453
- version = "4.5.24"
496
+ version = "4.5.41"
454
497
  source = "registry+https://github.com/rust-lang/crates.io-index"
455
- checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
498
+ checksum = "ef4f52386a59ca4c860f7393bcf8abd8dfd91ecccc0f774635ff68e92eeef491"
456
499
  dependencies = [
457
500
  "heck",
458
501
  "proc-macro2",
@@ -462,15 +505,15 @@ dependencies = [
462
505
 
463
506
  [[package]]
464
507
  name = "clap_lex"
465
- version = "0.7.4"
508
+ version = "0.7.5"
466
509
  source = "registry+https://github.com/rust-lang/crates.io-index"
467
- checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
510
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
468
511
 
469
512
  [[package]]
470
513
  name = "colorchoice"
471
- version = "1.0.3"
514
+ version = "1.0.4"
472
515
  source = "registry+https://github.com/rust-lang/crates.io-index"
473
- checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
516
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
474
517
 
475
518
  [[package]]
476
519
  name = "console-api"
@@ -481,7 +524,7 @@ dependencies = [
481
524
  "futures-core",
482
525
  "prost",
483
526
  "prost-types",
484
- "tonic",
527
+ "tonic 0.12.3",
485
528
  "tracing-core",
486
529
  ]
487
530
 
@@ -505,7 +548,7 @@ dependencies = [
505
548
  "thread_local",
506
549
  "tokio",
507
550
  "tokio-stream",
508
- "tonic",
551
+ "tonic 0.12.3",
509
552
  "tracing",
510
553
  "tracing-core",
511
554
  "tracing-subscriber",
@@ -519,9 +562,9 @@ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
519
562
 
520
563
  [[package]]
521
564
  name = "core-foundation"
522
- version = "0.10.0"
565
+ version = "0.10.1"
523
566
  source = "registry+https://github.com/rust-lang/crates.io-index"
524
- checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
567
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
525
568
  dependencies = [
526
569
  "core-foundation-sys",
527
570
  "libc",
@@ -535,18 +578,18 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
535
578
 
536
579
  [[package]]
537
580
  name = "cpufeatures"
538
- version = "0.2.16"
581
+ version = "0.2.17"
539
582
  source = "registry+https://github.com/rust-lang/crates.io-index"
540
- checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
583
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
541
584
  dependencies = [
542
585
  "libc",
543
586
  ]
544
587
 
545
588
  [[package]]
546
589
  name = "crc"
547
- version = "3.2.1"
590
+ version = "3.3.0"
548
591
  source = "registry+https://github.com/rust-lang/crates.io-index"
549
- checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
592
+ checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
550
593
  dependencies = [
551
594
  "crc-catalog",
552
595
  ]
@@ -559,36 +602,34 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
559
602
 
560
603
  [[package]]
561
604
  name = "crc32fast"
562
- version = "1.4.2"
605
+ version = "1.5.0"
563
606
  source = "registry+https://github.com/rust-lang/crates.io-index"
564
- checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
607
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
565
608
  dependencies = [
566
609
  "cfg-if",
567
610
  ]
568
611
 
569
612
  [[package]]
570
613
  name = "criterion"
571
- version = "0.5.1"
614
+ version = "0.6.0"
572
615
  source = "registry+https://github.com/rust-lang/crates.io-index"
573
- checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
616
+ checksum = "3bf7af66b0989381bd0be551bd7cc91912a655a58c6918420c9527b1fd8b4679"
574
617
  dependencies = [
575
618
  "anes",
576
619
  "cast",
577
620
  "ciborium",
578
621
  "clap",
579
622
  "criterion-plot",
580
- "is-terminal",
581
- "itertools 0.10.5",
623
+ "itertools 0.13.0",
582
624
  "num-traits",
583
- "once_cell",
584
625
  "oorandom",
585
626
  "plotters",
586
627
  "rayon",
587
628
  "regex",
588
629
  "serde",
589
- "serde_derive",
590
630
  "serde_json",
591
631
  "tinytemplate",
632
+ "tokio",
592
633
  "walkdir",
593
634
  ]
594
635
 
@@ -604,9 +645,9 @@ dependencies = [
604
645
 
605
646
  [[package]]
606
647
  name = "crossbeam-channel"
607
- version = "0.5.14"
648
+ version = "0.5.15"
608
649
  source = "registry+https://github.com/rust-lang/crates.io-index"
609
- checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
650
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
610
651
  dependencies = [
611
652
  "crossbeam-utils",
612
653
  ]
@@ -647,9 +688,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
647
688
 
648
689
  [[package]]
649
690
  name = "crunchy"
650
- version = "0.2.2"
691
+ version = "0.2.4"
651
692
  source = "registry+https://github.com/rust-lang/crates.io-index"
652
- checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
693
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
653
694
 
654
695
  [[package]]
655
696
  name = "crypto-common"
@@ -663,9 +704,9 @@ dependencies = [
663
704
 
664
705
  [[package]]
665
706
  name = "darling"
666
- version = "0.20.10"
707
+ version = "0.20.11"
667
708
  source = "registry+https://github.com/rust-lang/crates.io-index"
668
- checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
709
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
669
710
  dependencies = [
670
711
  "darling_core",
671
712
  "darling_macro",
@@ -673,9 +714,9 @@ dependencies = [
673
714
 
674
715
  [[package]]
675
716
  name = "darling_core"
676
- version = "0.20.10"
717
+ version = "0.20.11"
677
718
  source = "registry+https://github.com/rust-lang/crates.io-index"
678
- checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
719
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
679
720
  dependencies = [
680
721
  "fnv",
681
722
  "ident_case",
@@ -687,9 +728,9 @@ dependencies = [
687
728
 
688
729
  [[package]]
689
730
  name = "darling_macro"
690
- version = "0.20.10"
731
+ version = "0.20.11"
691
732
  source = "registry+https://github.com/rust-lang/crates.io-index"
692
- checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
733
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
693
734
  dependencies = [
694
735
  "darling_core",
695
736
  "quote",
@@ -718,9 +759,9 @@ checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
718
759
 
719
760
  [[package]]
720
761
  name = "deranged"
721
- version = "0.3.11"
762
+ version = "0.4.0"
722
763
  source = "registry+https://github.com/rust-lang/crates.io-index"
723
- checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
764
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
724
765
  dependencies = [
725
766
  "powerfmt",
726
767
  ]
@@ -769,18 +810,18 @@ dependencies = [
769
810
 
770
811
  [[package]]
771
812
  name = "derive_more"
772
- version = "1.0.0"
813
+ version = "2.0.1"
773
814
  source = "registry+https://github.com/rust-lang/crates.io-index"
774
- checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
815
+ checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
775
816
  dependencies = [
776
817
  "derive_more-impl",
777
818
  ]
778
819
 
779
820
  [[package]]
780
821
  name = "derive_more-impl"
781
- version = "1.0.0"
822
+ version = "2.0.1"
782
823
  source = "registry+https://github.com/rust-lang/crates.io-index"
783
- checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
824
+ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
784
825
  dependencies = [
785
826
  "proc-macro2",
786
827
  "quote",
@@ -799,6 +840,27 @@ dependencies = [
799
840
  "subtle",
800
841
  ]
801
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
+
802
864
  [[package]]
803
865
  name = "displaydoc"
804
866
  version = "0.2.5"
@@ -812,9 +874,9 @@ dependencies = [
812
874
 
813
875
  [[package]]
814
876
  name = "dissimilar"
815
- version = "1.0.9"
877
+ version = "1.0.10"
816
878
  source = "registry+https://github.com/rust-lang/crates.io-index"
817
- checksum = "59f8e79d1fbf76bdfbde321e902714bf6c49df88a7dda6fc682fc2979226962d"
879
+ checksum = "8975ffdaa0ef3661bfe02dbdcc06c9f829dfafe6a3c474de366a8d5e44276921"
818
880
 
819
881
  [[package]]
820
882
  name = "downcast"
@@ -824,9 +886,9 @@ checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
824
886
 
825
887
  [[package]]
826
888
  name = "either"
827
- version = "1.13.0"
889
+ version = "1.15.0"
828
890
  source = "registry+https://github.com/rust-lang/crates.io-index"
829
- checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
891
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
830
892
 
831
893
  [[package]]
832
894
  name = "enum-iterator"
@@ -862,15 +924,15 @@ dependencies = [
862
924
 
863
925
  [[package]]
864
926
  name = "equivalent"
865
- version = "1.0.1"
927
+ version = "1.0.2"
866
928
  source = "registry+https://github.com/rust-lang/crates.io-index"
867
- checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
929
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
868
930
 
869
931
  [[package]]
870
932
  name = "erased-serde"
871
- version = "0.4.5"
933
+ version = "0.4.6"
872
934
  source = "registry+https://github.com/rust-lang/crates.io-index"
873
- checksum = "24e2389d65ab4fab27dc2a5de7b191e1f6617d1f1c8855c0dc569c94a4cbb18d"
935
+ checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7"
874
936
  dependencies = [
875
937
  "serde",
876
938
  "typeid",
@@ -878,12 +940,12 @@ dependencies = [
878
940
 
879
941
  [[package]]
880
942
  name = "errno"
881
- version = "0.3.10"
943
+ version = "0.3.13"
882
944
  source = "registry+https://github.com/rust-lang/crates.io-index"
883
- checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
945
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
884
946
  dependencies = [
885
947
  "libc",
886
- "windows-sys 0.59.0",
948
+ "windows-sys 0.60.2",
887
949
  ]
888
950
 
889
951
  [[package]]
@@ -906,15 +968,15 @@ dependencies = [
906
968
 
907
969
  [[package]]
908
970
  name = "fixedbitset"
909
- version = "0.4.2"
971
+ version = "0.5.7"
910
972
  source = "registry+https://github.com/rust-lang/crates.io-index"
911
- checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
973
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
912
974
 
913
975
  [[package]]
914
976
  name = "flate2"
915
- version = "1.0.35"
977
+ version = "1.1.2"
916
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
917
- checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
979
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
918
980
  dependencies = [
919
981
  "crc32fast",
920
982
  "miniz_oxide",
@@ -928,9 +990,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
928
990
 
929
991
  [[package]]
930
992
  name = "foldhash"
931
- version = "0.1.4"
993
+ version = "0.1.5"
932
994
  source = "registry+https://github.com/rust-lang/crates.io-index"
933
- checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
995
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
934
996
 
935
997
  [[package]]
936
998
  name = "form_urlencoded"
@@ -943,9 +1005,9 @@ dependencies = [
943
1005
 
944
1006
  [[package]]
945
1007
  name = "fragile"
946
- version = "2.0.0"
1008
+ version = "2.0.1"
947
1009
  source = "registry+https://github.com/rust-lang/crates.io-index"
948
- checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
1010
+ checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619"
949
1011
 
950
1012
  [[package]]
951
1013
  name = "futures"
@@ -1063,16 +1125,40 @@ dependencies = [
1063
1125
  "version_check",
1064
1126
  ]
1065
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
+
1138
+ [[package]]
1139
+ name = "getrandom"
1140
+ version = "0.2.16"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1143
+ dependencies = [
1144
+ "cfg-if",
1145
+ "js-sys",
1146
+ "libc",
1147
+ "wasi 0.11.1+wasi-snapshot-preview1",
1148
+ "wasm-bindgen",
1149
+ ]
1150
+
1066
1151
  [[package]]
1067
1152
  name = "getrandom"
1068
- version = "0.2.15"
1153
+ version = "0.3.3"
1069
1154
  source = "registry+https://github.com/rust-lang/crates.io-index"
1070
- checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
1155
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
1071
1156
  dependencies = [
1072
1157
  "cfg-if",
1073
1158
  "js-sys",
1074
1159
  "libc",
1075
- "wasi",
1160
+ "r-efi",
1161
+ "wasi 0.14.2+wasi-0.2.4",
1076
1162
  "wasm-bindgen",
1077
1163
  ]
1078
1164
 
@@ -1090,30 +1176,32 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1090
1176
 
1091
1177
  [[package]]
1092
1178
  name = "governor"
1093
- version = "0.7.0"
1179
+ version = "0.8.1"
1094
1180
  source = "registry+https://github.com/rust-lang/crates.io-index"
1095
- checksum = "0746aa765db78b521451ef74221663b57ba595bf83f75d0ce23cc09447c8139f"
1181
+ checksum = "be93b4ec2e4710b04d9264c0c7350cdd62a8c20e5e4ac732552ebb8f0debe8eb"
1096
1182
  dependencies = [
1097
1183
  "cfg-if",
1098
1184
  "dashmap",
1099
1185
  "futures-sink",
1100
1186
  "futures-timer",
1101
1187
  "futures-util",
1188
+ "getrandom 0.3.3",
1102
1189
  "no-std-compat",
1103
1190
  "nonzero_ext",
1104
1191
  "parking_lot",
1105
1192
  "portable-atomic",
1106
1193
  "quanta",
1107
- "rand",
1194
+ "rand 0.9.2",
1108
1195
  "smallvec",
1109
1196
  "spinning_top",
1197
+ "web-time",
1110
1198
  ]
1111
1199
 
1112
1200
  [[package]]
1113
1201
  name = "h2"
1114
- version = "0.4.7"
1202
+ version = "0.4.11"
1115
1203
  source = "registry+https://github.com/rust-lang/crates.io-index"
1116
- checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
1204
+ checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
1117
1205
  dependencies = [
1118
1206
  "atomic-waker",
1119
1207
  "bytes",
@@ -1121,7 +1209,7 @@ dependencies = [
1121
1209
  "futures-core",
1122
1210
  "futures-sink",
1123
1211
  "http",
1124
- "indexmap 2.7.0",
1212
+ "indexmap 2.10.0",
1125
1213
  "slab",
1126
1214
  "tokio",
1127
1215
  "tokio-util",
@@ -1130,9 +1218,9 @@ dependencies = [
1130
1218
 
1131
1219
  [[package]]
1132
1220
  name = "half"
1133
- version = "2.4.1"
1221
+ version = "2.6.0"
1134
1222
  source = "registry+https://github.com/rust-lang/crates.io-index"
1135
- checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
1223
+ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
1136
1224
  dependencies = [
1137
1225
  "cfg-if",
1138
1226
  "crunchy",
@@ -1152,9 +1240,9 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1152
1240
 
1153
1241
  [[package]]
1154
1242
  name = "hashbrown"
1155
- version = "0.15.2"
1243
+ version = "0.15.4"
1156
1244
  source = "registry+https://github.com/rust-lang/crates.io-index"
1157
- checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1245
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
1158
1246
  dependencies = [
1159
1247
  "allocator-api2",
1160
1248
  "equivalent",
@@ -1180,12 +1268,6 @@ version = "0.5.0"
1180
1268
  source = "registry+https://github.com/rust-lang/crates.io-index"
1181
1269
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1182
1270
 
1183
- [[package]]
1184
- name = "hermit-abi"
1185
- version = "0.4.0"
1186
- source = "registry+https://github.com/rust-lang/crates.io-index"
1187
- checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
1188
-
1189
1271
  [[package]]
1190
1272
  name = "hmac"
1191
1273
  version = "0.12.1"
@@ -1197,9 +1279,9 @@ dependencies = [
1197
1279
 
1198
1280
  [[package]]
1199
1281
  name = "http"
1200
- version = "1.2.0"
1282
+ version = "1.3.1"
1201
1283
  source = "registry+https://github.com/rust-lang/crates.io-index"
1202
- checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
1284
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1203
1285
  dependencies = [
1204
1286
  "bytes",
1205
1287
  "fnv",
@@ -1218,12 +1300,12 @@ dependencies = [
1218
1300
 
1219
1301
  [[package]]
1220
1302
  name = "http-body-util"
1221
- version = "0.1.2"
1303
+ version = "0.1.3"
1222
1304
  source = "registry+https://github.com/rust-lang/crates.io-index"
1223
- checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
1305
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1224
1306
  dependencies = [
1225
1307
  "bytes",
1226
- "futures-util",
1308
+ "futures-core",
1227
1309
  "http",
1228
1310
  "http-body",
1229
1311
  "pin-project-lite",
@@ -1231,9 +1313,9 @@ dependencies = [
1231
1313
 
1232
1314
  [[package]]
1233
1315
  name = "httparse"
1234
- version = "1.9.5"
1316
+ version = "1.10.1"
1235
1317
  source = "registry+https://github.com/rust-lang/crates.io-index"
1236
- checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
1318
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1237
1319
 
1238
1320
  [[package]]
1239
1321
  name = "httpdate"
@@ -1243,15 +1325,15 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1243
1325
 
1244
1326
  [[package]]
1245
1327
  name = "humantime"
1246
- version = "2.1.0"
1328
+ version = "2.2.0"
1247
1329
  source = "registry+https://github.com/rust-lang/crates.io-index"
1248
- checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
1330
+ checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
1249
1331
 
1250
1332
  [[package]]
1251
1333
  name = "hyper"
1252
- version = "1.5.2"
1334
+ version = "1.6.0"
1253
1335
  source = "registry+https://github.com/rust-lang/crates.io-index"
1254
- checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0"
1336
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1255
1337
  dependencies = [
1256
1338
  "bytes",
1257
1339
  "futures-channel",
@@ -1270,11 +1352,10 @@ dependencies = [
1270
1352
 
1271
1353
  [[package]]
1272
1354
  name = "hyper-rustls"
1273
- version = "0.27.5"
1355
+ version = "0.27.7"
1274
1356
  source = "registry+https://github.com/rust-lang/crates.io-index"
1275
- checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1357
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1276
1358
  dependencies = [
1277
- "futures-util",
1278
1359
  "http",
1279
1360
  "hyper",
1280
1361
  "hyper-util",
@@ -1301,18 +1382,23 @@ dependencies = [
1301
1382
 
1302
1383
  [[package]]
1303
1384
  name = "hyper-util"
1304
- version = "0.1.10"
1385
+ version = "0.1.16"
1305
1386
  source = "registry+https://github.com/rust-lang/crates.io-index"
1306
- checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
1387
+ checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
1307
1388
  dependencies = [
1389
+ "base64 0.22.1",
1308
1390
  "bytes",
1309
1391
  "futures-channel",
1392
+ "futures-core",
1310
1393
  "futures-util",
1311
1394
  "http",
1312
1395
  "http-body",
1313
1396
  "hyper",
1397
+ "ipnet",
1398
+ "libc",
1399
+ "percent-encoding",
1314
1400
  "pin-project-lite",
1315
- "socket2",
1401
+ "socket2 0.6.0",
1316
1402
  "tokio",
1317
1403
  "tower-service",
1318
1404
  "tracing",
@@ -1320,21 +1406,22 @@ dependencies = [
1320
1406
 
1321
1407
  [[package]]
1322
1408
  name = "icu_collections"
1323
- version = "1.5.0"
1409
+ version = "2.0.0"
1324
1410
  source = "registry+https://github.com/rust-lang/crates.io-index"
1325
- checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1411
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1326
1412
  dependencies = [
1327
1413
  "displaydoc",
1414
+ "potential_utf",
1328
1415
  "yoke",
1329
1416
  "zerofrom",
1330
1417
  "zerovec",
1331
1418
  ]
1332
1419
 
1333
1420
  [[package]]
1334
- name = "icu_locid"
1335
- version = "1.5.0"
1421
+ name = "icu_locale_core"
1422
+ version = "2.0.0"
1336
1423
  source = "registry+https://github.com/rust-lang/crates.io-index"
1337
- checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1424
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1338
1425
  dependencies = [
1339
1426
  "displaydoc",
1340
1427
  "litemap",
@@ -1343,31 +1430,11 @@ dependencies = [
1343
1430
  "zerovec",
1344
1431
  ]
1345
1432
 
1346
- [[package]]
1347
- name = "icu_locid_transform"
1348
- version = "1.5.0"
1349
- source = "registry+https://github.com/rust-lang/crates.io-index"
1350
- checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1351
- dependencies = [
1352
- "displaydoc",
1353
- "icu_locid",
1354
- "icu_locid_transform_data",
1355
- "icu_provider",
1356
- "tinystr",
1357
- "zerovec",
1358
- ]
1359
-
1360
- [[package]]
1361
- name = "icu_locid_transform_data"
1362
- version = "1.5.0"
1363
- source = "registry+https://github.com/rust-lang/crates.io-index"
1364
- checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1365
-
1366
1433
  [[package]]
1367
1434
  name = "icu_normalizer"
1368
- version = "1.5.0"
1435
+ version = "2.0.0"
1369
1436
  source = "registry+https://github.com/rust-lang/crates.io-index"
1370
- checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1437
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1371
1438
  dependencies = [
1372
1439
  "displaydoc",
1373
1440
  "icu_collections",
@@ -1375,67 +1442,54 @@ dependencies = [
1375
1442
  "icu_properties",
1376
1443
  "icu_provider",
1377
1444
  "smallvec",
1378
- "utf16_iter",
1379
- "utf8_iter",
1380
- "write16",
1381
1445
  "zerovec",
1382
1446
  ]
1383
1447
 
1384
1448
  [[package]]
1385
1449
  name = "icu_normalizer_data"
1386
- version = "1.5.0"
1450
+ version = "2.0.0"
1387
1451
  source = "registry+https://github.com/rust-lang/crates.io-index"
1388
- checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1452
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1389
1453
 
1390
1454
  [[package]]
1391
1455
  name = "icu_properties"
1392
- version = "1.5.1"
1456
+ version = "2.0.1"
1393
1457
  source = "registry+https://github.com/rust-lang/crates.io-index"
1394
- checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1458
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1395
1459
  dependencies = [
1396
1460
  "displaydoc",
1397
1461
  "icu_collections",
1398
- "icu_locid_transform",
1462
+ "icu_locale_core",
1399
1463
  "icu_properties_data",
1400
1464
  "icu_provider",
1401
- "tinystr",
1465
+ "potential_utf",
1466
+ "zerotrie",
1402
1467
  "zerovec",
1403
1468
  ]
1404
1469
 
1405
1470
  [[package]]
1406
1471
  name = "icu_properties_data"
1407
- version = "1.5.0"
1472
+ version = "2.0.1"
1408
1473
  source = "registry+https://github.com/rust-lang/crates.io-index"
1409
- checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1474
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1410
1475
 
1411
1476
  [[package]]
1412
1477
  name = "icu_provider"
1413
- version = "1.5.0"
1478
+ version = "2.0.0"
1414
1479
  source = "registry+https://github.com/rust-lang/crates.io-index"
1415
- checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1480
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1416
1481
  dependencies = [
1417
1482
  "displaydoc",
1418
- "icu_locid",
1419
- "icu_provider_macros",
1483
+ "icu_locale_core",
1420
1484
  "stable_deref_trait",
1421
1485
  "tinystr",
1422
1486
  "writeable",
1423
1487
  "yoke",
1424
1488
  "zerofrom",
1489
+ "zerotrie",
1425
1490
  "zerovec",
1426
1491
  ]
1427
1492
 
1428
- [[package]]
1429
- name = "icu_provider_macros"
1430
- version = "1.5.0"
1431
- source = "registry+https://github.com/rust-lang/crates.io-index"
1432
- checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1433
- dependencies = [
1434
- "proc-macro2",
1435
- "quote",
1436
- "syn",
1437
- ]
1438
-
1439
1493
  [[package]]
1440
1494
  name = "ident_case"
1441
1495
  version = "1.0.1"
@@ -1455,9 +1509,9 @@ dependencies = [
1455
1509
 
1456
1510
  [[package]]
1457
1511
  name = "idna_adapter"
1458
- version = "1.2.0"
1512
+ version = "1.2.1"
1459
1513
  source = "registry+https://github.com/rust-lang/crates.io-index"
1460
- checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1514
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1461
1515
  dependencies = [
1462
1516
  "icu_normalizer",
1463
1517
  "icu_properties",
@@ -1475,19 +1529,19 @@ dependencies = [
1475
1529
 
1476
1530
  [[package]]
1477
1531
  name = "indexmap"
1478
- version = "2.7.0"
1532
+ version = "2.10.0"
1479
1533
  source = "registry+https://github.com/rust-lang/crates.io-index"
1480
- checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
1534
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
1481
1535
  dependencies = [
1482
1536
  "equivalent",
1483
- "hashbrown 0.15.2",
1537
+ "hashbrown 0.15.4",
1484
1538
  ]
1485
1539
 
1486
1540
  [[package]]
1487
1541
  name = "inout"
1488
- version = "0.1.3"
1542
+ version = "0.1.4"
1489
1543
  source = "registry+https://github.com/rust-lang/crates.io-index"
1490
- checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
1544
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1491
1545
  dependencies = [
1492
1546
  "generic-array",
1493
1547
  ]
@@ -1503,28 +1557,38 @@ dependencies = [
1503
1557
 
1504
1558
  [[package]]
1505
1559
  name = "inventory"
1506
- version = "0.3.17"
1560
+ version = "0.3.20"
1507
1561
  source = "registry+https://github.com/rust-lang/crates.io-index"
1508
- checksum = "3b31349d02fe60f80bbbab1a9402364cad7460626d6030494b08ac4a2075bf81"
1562
+ checksum = "ab08d7cd2c5897f2c949e5383ea7c7db03fb19130ffcfbf7eda795137ae3cb83"
1509
1563
  dependencies = [
1510
1564
  "rustversion",
1511
1565
  ]
1512
1566
 
1567
+ [[package]]
1568
+ name = "io-uring"
1569
+ version = "0.7.9"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
1572
+ dependencies = [
1573
+ "bitflags",
1574
+ "cfg-if",
1575
+ "libc",
1576
+ ]
1577
+
1513
1578
  [[package]]
1514
1579
  name = "ipnet"
1515
- version = "2.10.1"
1580
+ version = "2.11.0"
1516
1581
  source = "registry+https://github.com/rust-lang/crates.io-index"
1517
- checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
1582
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1518
1583
 
1519
1584
  [[package]]
1520
- name = "is-terminal"
1521
- version = "0.4.13"
1585
+ name = "iri-string"
1586
+ version = "0.7.8"
1522
1587
  source = "registry+https://github.com/rust-lang/crates.io-index"
1523
- checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
1588
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1524
1589
  dependencies = [
1525
- "hermit-abi",
1526
- "libc",
1527
- "windows-sys 0.52.0",
1590
+ "memchr",
1591
+ "serde",
1528
1592
  ]
1529
1593
 
1530
1594
  [[package]]
@@ -1560,18 +1624,28 @@ dependencies = [
1560
1624
  "either",
1561
1625
  ]
1562
1626
 
1627
+ [[package]]
1628
+ name = "itertools"
1629
+ version = "0.14.0"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1632
+ dependencies = [
1633
+ "either",
1634
+ ]
1635
+
1563
1636
  [[package]]
1564
1637
  name = "itoa"
1565
- version = "1.0.14"
1638
+ version = "1.0.15"
1566
1639
  source = "registry+https://github.com/rust-lang/crates.io-index"
1567
- checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1640
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1568
1641
 
1569
1642
  [[package]]
1570
1643
  name = "jobserver"
1571
- version = "0.1.32"
1644
+ version = "0.1.33"
1572
1645
  source = "registry+https://github.com/rust-lang/crates.io-index"
1573
- checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1646
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1574
1647
  dependencies = [
1648
+ "getrandom 0.3.3",
1575
1649
  "libc",
1576
1650
  ]
1577
1651
 
@@ -1599,25 +1673,25 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1599
1673
 
1600
1674
  [[package]]
1601
1675
  name = "libc"
1602
- version = "0.2.169"
1676
+ version = "0.2.174"
1603
1677
  source = "registry+https://github.com/rust-lang/crates.io-index"
1604
- checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
1678
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
1605
1679
 
1606
1680
  [[package]]
1607
1681
  name = "libloading"
1608
- version = "0.8.6"
1682
+ version = "0.8.8"
1609
1683
  source = "registry+https://github.com/rust-lang/crates.io-index"
1610
- checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1684
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
1611
1685
  dependencies = [
1612
1686
  "cfg-if",
1613
- "windows-targets",
1687
+ "windows-targets 0.53.2",
1614
1688
  ]
1615
1689
 
1616
1690
  [[package]]
1617
1691
  name = "libredox"
1618
- version = "0.1.3"
1692
+ version = "0.1.6"
1619
1693
  source = "registry+https://github.com/rust-lang/crates.io-index"
1620
- checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1694
+ checksum = "4488594b9328dee448adb906d8b126d9b7deb7cf5c22161ee591610bb1be83c0"
1621
1695
  dependencies = [
1622
1696
  "bitflags",
1623
1697
  "libc",
@@ -1626,47 +1700,47 @@ dependencies = [
1626
1700
 
1627
1701
  [[package]]
1628
1702
  name = "linux-raw-sys"
1629
- version = "0.4.15"
1703
+ version = "0.9.4"
1630
1704
  source = "registry+https://github.com/rust-lang/crates.io-index"
1631
- checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1705
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1632
1706
 
1633
1707
  [[package]]
1634
1708
  name = "litemap"
1635
- version = "0.7.4"
1709
+ version = "0.8.0"
1636
1710
  source = "registry+https://github.com/rust-lang/crates.io-index"
1637
- checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
1711
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1638
1712
 
1639
1713
  [[package]]
1640
1714
  name = "lock_api"
1641
- version = "0.4.12"
1715
+ version = "0.4.13"
1642
1716
  source = "registry+https://github.com/rust-lang/crates.io-index"
1643
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1717
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1644
1718
  dependencies = [
1645
1719
  "autocfg",
1646
1720
  "scopeguard",
1647
1721
  ]
1648
1722
 
1649
- [[package]]
1650
- name = "lockfree-object-pool"
1651
- version = "0.1.6"
1652
- source = "registry+https://github.com/rust-lang/crates.io-index"
1653
- checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
1654
-
1655
1723
  [[package]]
1656
1724
  name = "log"
1657
- version = "0.4.25"
1725
+ version = "0.4.27"
1658
1726
  source = "registry+https://github.com/rust-lang/crates.io-index"
1659
- checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
1727
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1660
1728
 
1661
1729
  [[package]]
1662
1730
  name = "lru"
1663
- version = "0.12.5"
1731
+ version = "0.13.0"
1664
1732
  source = "registry+https://github.com/rust-lang/crates.io-index"
1665
- checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
1733
+ checksum = "227748d55f2f0ab4735d87fd623798cb6b664512fe979705f829c9f81c934465"
1666
1734
  dependencies = [
1667
- "hashbrown 0.15.2",
1735
+ "hashbrown 0.15.4",
1668
1736
  ]
1669
1737
 
1738
+ [[package]]
1739
+ name = "lru-slab"
1740
+ version = "0.1.2"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1743
+
1670
1744
  [[package]]
1671
1745
  name = "lzma-rs"
1672
1746
  version = "0.3.0"
@@ -1677,6 +1751,17 @@ dependencies = [
1677
1751
  "crc",
1678
1752
  ]
1679
1753
 
1754
+ [[package]]
1755
+ name = "lzma-sys"
1756
+ version = "0.1.20"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
1759
+ dependencies = [
1760
+ "cc",
1761
+ "libc",
1762
+ "pkg-config",
1763
+ ]
1764
+
1680
1765
  [[package]]
1681
1766
  name = "magnus"
1682
1767
  version = "0.7.1"
@@ -1715,11 +1800,17 @@ version = "0.7.3"
1715
1800
  source = "registry+https://github.com/rust-lang/crates.io-index"
1716
1801
  checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1717
1802
 
1803
+ [[package]]
1804
+ name = "matchit"
1805
+ version = "0.8.4"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1808
+
1718
1809
  [[package]]
1719
1810
  name = "memchr"
1720
- version = "2.7.4"
1811
+ version = "2.7.5"
1721
1812
  source = "registry+https://github.com/rust-lang/crates.io-index"
1722
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1813
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1723
1814
 
1724
1815
  [[package]]
1725
1816
  name = "mime"
@@ -1735,22 +1826,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1735
1826
 
1736
1827
  [[package]]
1737
1828
  name = "miniz_oxide"
1738
- version = "0.8.3"
1829
+ version = "0.8.9"
1739
1830
  source = "registry+https://github.com/rust-lang/crates.io-index"
1740
- checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
1831
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1741
1832
  dependencies = [
1742
1833
  "adler2",
1743
1834
  ]
1744
1835
 
1745
1836
  [[package]]
1746
1837
  name = "mio"
1747
- version = "1.0.3"
1838
+ version = "1.0.4"
1748
1839
  source = "registry+https://github.com/rust-lang/crates.io-index"
1749
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1840
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1750
1841
  dependencies = [
1751
1842
  "libc",
1752
- "wasi",
1753
- "windows-sys 0.52.0",
1843
+ "wasi 0.11.1+wasi-snapshot-preview1",
1844
+ "windows-sys 0.59.0",
1754
1845
  ]
1755
1846
 
1756
1847
  [[package]]
@@ -1781,9 +1872,9 @@ dependencies = [
1781
1872
 
1782
1873
  [[package]]
1783
1874
  name = "multimap"
1784
- version = "0.10.0"
1875
+ version = "0.10.1"
1785
1876
  source = "registry+https://github.com/rust-lang/crates.io-index"
1786
- checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
1877
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
1787
1878
 
1788
1879
  [[package]]
1789
1880
  name = "no-std-compat"
@@ -1852,41 +1943,47 @@ dependencies = [
1852
1943
 
1853
1944
  [[package]]
1854
1945
  name = "once_cell"
1855
- version = "1.20.2"
1946
+ version = "1.21.3"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1949
+
1950
+ [[package]]
1951
+ name = "once_cell_polyfill"
1952
+ version = "1.70.1"
1856
1953
  source = "registry+https://github.com/rust-lang/crates.io-index"
1857
- checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
1954
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1858
1955
 
1859
1956
  [[package]]
1860
1957
  name = "oorandom"
1861
- version = "11.1.4"
1958
+ version = "11.1.5"
1862
1959
  source = "registry+https://github.com/rust-lang/crates.io-index"
1863
- checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
1960
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1864
1961
 
1865
1962
  [[package]]
1866
1963
  name = "openssl-probe"
1867
- version = "0.1.5"
1964
+ version = "0.1.6"
1868
1965
  source = "registry+https://github.com/rust-lang/crates.io-index"
1869
- checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1966
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1870
1967
 
1871
1968
  [[package]]
1872
1969
  name = "opentelemetry"
1873
- version = "0.26.0"
1970
+ version = "0.30.0"
1874
1971
  source = "registry+https://github.com/rust-lang/crates.io-index"
1875
- checksum = "570074cc999d1a58184080966e5bd3bf3a9a4af650c3b05047c2621e7405cd17"
1972
+ checksum = "aaf416e4cb72756655126f7dd7bb0af49c674f4c1b9903e80c009e0c37e552e6"
1876
1973
  dependencies = [
1877
1974
  "futures-core",
1878
1975
  "futures-sink",
1879
1976
  "js-sys",
1880
- "once_cell",
1881
1977
  "pin-project-lite",
1882
- "thiserror 1.0.69",
1978
+ "thiserror 2.0.12",
1979
+ "tracing",
1883
1980
  ]
1884
1981
 
1885
1982
  [[package]]
1886
1983
  name = "opentelemetry-http"
1887
- version = "0.26.0"
1984
+ version = "0.30.0"
1888
1985
  source = "registry+https://github.com/rust-lang/crates.io-index"
1889
- checksum = "6351496aeaa49d7c267fb480678d85d1cd30c5edb20b497c48c56f62a8c14b99"
1986
+ checksum = "50f6639e842a97dbea8886e3439710ae463120091e2e064518ba8e716e6ac36d"
1890
1987
  dependencies = [
1891
1988
  "async-trait",
1892
1989
  "bytes",
@@ -1897,12 +1994,10 @@ dependencies = [
1897
1994
 
1898
1995
  [[package]]
1899
1996
  name = "opentelemetry-otlp"
1900
- version = "0.26.0"
1997
+ version = "0.30.0"
1901
1998
  source = "registry+https://github.com/rust-lang/crates.io-index"
1902
- checksum = "29e1f9c8b032d4f635c730c0efcf731d5e2530ea13fa8bef7939ddc8420696bd"
1999
+ checksum = "dbee664a43e07615731afc539ca60c6d9f1a9425e25ca09c57bc36c87c55852b"
1903
2000
  dependencies = [
1904
- "async-trait",
1905
- "futures-core",
1906
2001
  "http",
1907
2002
  "opentelemetry",
1908
2003
  "opentelemetry-http",
@@ -1910,56 +2005,48 @@ dependencies = [
1910
2005
  "opentelemetry_sdk",
1911
2006
  "prost",
1912
2007
  "reqwest",
1913
- "thiserror 1.0.69",
2008
+ "thiserror 2.0.12",
1914
2009
  "tokio",
1915
- "tonic",
2010
+ "tonic 0.13.1",
2011
+ "tracing",
1916
2012
  ]
1917
2013
 
1918
2014
  [[package]]
1919
- name = "opentelemetry-prometheus"
1920
- version = "0.17.0"
1921
- source = "git+https://github.com/open-telemetry/opentelemetry-rust.git?rev=e911383#e91138351a689cd21923c15eb48f5fbc95ded807"
2015
+ name = "opentelemetry-proto"
2016
+ version = "0.30.0"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "2e046fd7660710fe5a05e8748e70d9058dc15c94ba914e7c4faa7c728f0e8ddc"
1922
2019
  dependencies = [
1923
- "once_cell",
1924
2020
  "opentelemetry",
1925
2021
  "opentelemetry_sdk",
1926
- "prometheus",
1927
- "protobuf",
2022
+ "prost",
2023
+ "tonic 0.13.1",
1928
2024
  ]
1929
2025
 
1930
2026
  [[package]]
1931
- name = "opentelemetry-proto"
1932
- version = "0.26.1"
2027
+ name = "opentelemetry_sdk"
2028
+ version = "0.30.0"
1933
2029
  source = "registry+https://github.com/rust-lang/crates.io-index"
1934
- checksum = "c9d3968ce3aefdcca5c27e3c4ea4391b37547726a70893aab52d3de95d5f8b34"
2030
+ checksum = "11f644aa9e5e31d11896e024305d7e3c98a88884d9f8919dbf37a9991bc47a4b"
1935
2031
  dependencies = [
1936
- "opentelemetry",
1937
- "opentelemetry_sdk",
1938
- "prost",
1939
- "tonic",
1940
- ]
1941
-
1942
- [[package]]
1943
- name = "opentelemetry_sdk"
1944
- version = "0.26.0"
1945
- source = "registry+https://github.com/rust-lang/crates.io-index"
1946
- checksum = "d2c627d9f4c9cdc1f21a29ee4bfbd6028fcb8bcf2a857b43f3abdf72c9c862f3"
1947
- dependencies = [
1948
- "async-trait",
1949
2032
  "futures-channel",
1950
2033
  "futures-executor",
1951
2034
  "futures-util",
1952
- "glob",
1953
- "once_cell",
1954
2035
  "opentelemetry",
1955
2036
  "percent-encoding",
1956
- "rand",
2037
+ "rand 0.9.2",
1957
2038
  "serde_json",
1958
- "thiserror 1.0.69",
2039
+ "thiserror 2.0.12",
1959
2040
  "tokio",
1960
2041
  "tokio-stream",
1961
2042
  ]
1962
2043
 
2044
+ [[package]]
2045
+ name = "option-ext"
2046
+ version = "0.2.0"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2049
+
1963
2050
  [[package]]
1964
2051
  name = "overload"
1965
2052
  version = "0.1.1"
@@ -1968,9 +2055,9 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1968
2055
 
1969
2056
  [[package]]
1970
2057
  name = "parking_lot"
1971
- version = "0.12.3"
2058
+ version = "0.12.4"
1972
2059
  source = "registry+https://github.com/rust-lang/crates.io-index"
1973
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2060
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1974
2061
  dependencies = [
1975
2062
  "lock_api",
1976
2063
  "parking_lot_core",
@@ -1978,23 +2065,17 @@ dependencies = [
1978
2065
 
1979
2066
  [[package]]
1980
2067
  name = "parking_lot_core"
1981
- version = "0.9.10"
2068
+ version = "0.9.11"
1982
2069
  source = "registry+https://github.com/rust-lang/crates.io-index"
1983
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2070
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1984
2071
  dependencies = [
1985
2072
  "cfg-if",
1986
2073
  "libc",
1987
2074
  "redox_syscall",
1988
2075
  "smallvec",
1989
- "windows-targets",
2076
+ "windows-targets 0.52.6",
1990
2077
  ]
1991
2078
 
1992
- [[package]]
1993
- name = "paste"
1994
- version = "1.0.15"
1995
- source = "registry+https://github.com/rust-lang/crates.io-index"
1996
- checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1997
-
1998
2079
  [[package]]
1999
2080
  name = "pbkdf2"
2000
2081
  version = "0.12.2"
@@ -2013,12 +2094,12 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2013
2094
 
2014
2095
  [[package]]
2015
2096
  name = "petgraph"
2016
- version = "0.6.5"
2097
+ version = "0.7.1"
2017
2098
  source = "registry+https://github.com/rust-lang/crates.io-index"
2018
- checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
2099
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
2019
2100
  dependencies = [
2020
2101
  "fixedbitset",
2021
- "indexmap 2.7.0",
2102
+ "indexmap 2.10.0",
2022
2103
  ]
2023
2104
 
2024
2105
  [[package]]
@@ -2032,18 +2113,18 @@ dependencies = [
2032
2113
 
2033
2114
  [[package]]
2034
2115
  name = "pin-project"
2035
- version = "1.1.8"
2116
+ version = "1.1.10"
2036
2117
  source = "registry+https://github.com/rust-lang/crates.io-index"
2037
- checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916"
2118
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
2038
2119
  dependencies = [
2039
2120
  "pin-project-internal",
2040
2121
  ]
2041
2122
 
2042
2123
  [[package]]
2043
2124
  name = "pin-project-internal"
2044
- version = "1.1.8"
2125
+ version = "1.1.10"
2045
2126
  source = "registry+https://github.com/rust-lang/crates.io-index"
2046
- checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb"
2127
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
2047
2128
  dependencies = [
2048
2129
  "proc-macro2",
2049
2130
  "quote",
@@ -2064,9 +2145,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2064
2145
 
2065
2146
  [[package]]
2066
2147
  name = "pkg-config"
2067
- version = "0.3.31"
2148
+ version = "0.3.32"
2068
2149
  source = "registry+https://github.com/rust-lang/crates.io-index"
2069
- checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
2150
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2070
2151
 
2071
2152
  [[package]]
2072
2153
  name = "plotters"
@@ -2098,9 +2179,27 @@ dependencies = [
2098
2179
 
2099
2180
  [[package]]
2100
2181
  name = "portable-atomic"
2101
- version = "1.10.0"
2182
+ version = "1.11.1"
2102
2183
  source = "registry+https://github.com/rust-lang/crates.io-index"
2103
- checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
2184
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2185
+
2186
+ [[package]]
2187
+ name = "portable-atomic-util"
2188
+ version = "0.2.4"
2189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2190
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2191
+ dependencies = [
2192
+ "portable-atomic",
2193
+ ]
2194
+
2195
+ [[package]]
2196
+ name = "potential_utf"
2197
+ version = "0.1.2"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
2200
+ dependencies = [
2201
+ "zerovec",
2202
+ ]
2104
2203
 
2105
2204
  [[package]]
2106
2205
  name = "powerfmt"
@@ -2110,9 +2209,9 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2110
2209
 
2111
2210
  [[package]]
2112
2211
  name = "ppv-lite86"
2113
- version = "0.2.20"
2212
+ version = "0.2.21"
2114
2213
  source = "registry+https://github.com/rust-lang/crates.io-index"
2115
- checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
2214
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2116
2215
  dependencies = [
2117
2216
  "zerocopy",
2118
2217
  ]
@@ -2145,9 +2244,9 @@ dependencies = [
2145
2244
 
2146
2245
  [[package]]
2147
2246
  name = "prettyplease"
2148
- version = "0.2.29"
2247
+ version = "0.2.36"
2149
2248
  source = "registry+https://github.com/rust-lang/crates.io-index"
2150
- checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
2249
+ checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2"
2151
2250
  dependencies = [
2152
2251
  "proc-macro2",
2153
2252
  "syn",
@@ -2155,27 +2254,27 @@ dependencies = [
2155
2254
 
2156
2255
  [[package]]
2157
2256
  name = "proc-macro-crate"
2158
- version = "3.2.0"
2257
+ version = "3.3.0"
2159
2258
  source = "registry+https://github.com/rust-lang/crates.io-index"
2160
- checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b"
2259
+ checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
2161
2260
  dependencies = [
2162
2261
  "toml_edit",
2163
2262
  ]
2164
2263
 
2165
2264
  [[package]]
2166
2265
  name = "proc-macro2"
2167
- version = "1.0.93"
2266
+ version = "1.0.95"
2168
2267
  source = "registry+https://github.com/rust-lang/crates.io-index"
2169
- checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
2268
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2170
2269
  dependencies = [
2171
2270
  "unicode-ident",
2172
2271
  ]
2173
2272
 
2174
2273
  [[package]]
2175
2274
  name = "prometheus"
2176
- version = "0.13.4"
2275
+ version = "0.14.0"
2177
2276
  source = "registry+https://github.com/rust-lang/crates.io-index"
2178
- checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
2277
+ checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a"
2179
2278
  dependencies = [
2180
2279
  "cfg-if",
2181
2280
  "fnv",
@@ -2183,14 +2282,14 @@ dependencies = [
2183
2282
  "memchr",
2184
2283
  "parking_lot",
2185
2284
  "protobuf",
2186
- "thiserror 1.0.69",
2285
+ "thiserror 2.0.12",
2187
2286
  ]
2188
2287
 
2189
2288
  [[package]]
2190
2289
  name = "prost"
2191
- version = "0.13.4"
2290
+ version = "0.13.5"
2192
2291
  source = "registry+https://github.com/rust-lang/crates.io-index"
2193
- checksum = "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec"
2292
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
2194
2293
  dependencies = [
2195
2294
  "bytes",
2196
2295
  "prost-derive",
@@ -2198,12 +2297,12 @@ dependencies = [
2198
2297
 
2199
2298
  [[package]]
2200
2299
  name = "prost-build"
2201
- version = "0.13.4"
2300
+ version = "0.13.5"
2202
2301
  source = "registry+https://github.com/rust-lang/crates.io-index"
2203
- checksum = "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b"
2302
+ checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
2204
2303
  dependencies = [
2205
2304
  "heck",
2206
- "itertools 0.13.0",
2305
+ "itertools 0.14.0",
2207
2306
  "log",
2208
2307
  "multimap",
2209
2308
  "once_cell",
@@ -2218,12 +2317,12 @@ dependencies = [
2218
2317
 
2219
2318
  [[package]]
2220
2319
  name = "prost-derive"
2221
- version = "0.13.4"
2320
+ version = "0.13.5"
2222
2321
  source = "registry+https://github.com/rust-lang/crates.io-index"
2223
- checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3"
2322
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
2224
2323
  dependencies = [
2225
2324
  "anyhow",
2226
- "itertools 0.13.0",
2325
+ "itertools 0.14.0",
2227
2326
  "proc-macro2",
2228
2327
  "quote",
2229
2328
  "syn",
@@ -2231,18 +2330,18 @@ dependencies = [
2231
2330
 
2232
2331
  [[package]]
2233
2332
  name = "prost-types"
2234
- version = "0.13.4"
2333
+ version = "0.13.5"
2235
2334
  source = "registry+https://github.com/rust-lang/crates.io-index"
2236
- checksum = "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc"
2335
+ checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
2237
2336
  dependencies = [
2238
2337
  "prost",
2239
2338
  ]
2240
2339
 
2241
2340
  [[package]]
2242
2341
  name = "prost-wkt"
2243
- version = "0.6.0"
2342
+ version = "0.6.1"
2244
2343
  source = "registry+https://github.com/rust-lang/crates.io-index"
2245
- checksum = "a8d84e2bee181b04c2bac339f2bfe818c46a99750488cc6728ce4181d5aa8299"
2344
+ checksum = "497e1e938f0c09ef9cabe1d49437b4016e03e8f82fbbe5d1c62a9b61b9decae1"
2246
2345
  dependencies = [
2247
2346
  "chrono",
2248
2347
  "inventory",
@@ -2255,9 +2354,9 @@ dependencies = [
2255
2354
 
2256
2355
  [[package]]
2257
2356
  name = "prost-wkt-build"
2258
- version = "0.6.0"
2357
+ version = "0.6.1"
2259
2358
  source = "registry+https://github.com/rust-lang/crates.io-index"
2260
- checksum = "8a669d5acbe719010c6f62a64e6d7d88fdedc1fe46e419747949ecb6312e9b14"
2359
+ checksum = "07b8bf115b70a7aa5af1fd5d6e9418492e9ccb6e4785e858c938e28d132a884b"
2261
2360
  dependencies = [
2262
2361
  "heck",
2263
2362
  "prost",
@@ -2268,9 +2367,9 @@ dependencies = [
2268
2367
 
2269
2368
  [[package]]
2270
2369
  name = "prost-wkt-types"
2271
- version = "0.6.0"
2370
+ version = "0.6.1"
2272
2371
  source = "registry+https://github.com/rust-lang/crates.io-index"
2273
- checksum = "01ef068e9b82e654614b22e6b13699bd545b6c0e2e721736008b00b38aeb4f64"
2372
+ checksum = "c8cdde6df0a98311c839392ca2f2f0bcecd545f86a62b4e3c6a49c336e970fe5"
2274
2373
  dependencies = [
2275
2374
  "chrono",
2276
2375
  "prost",
@@ -2286,58 +2385,75 @@ dependencies = [
2286
2385
 
2287
2386
  [[package]]
2288
2387
  name = "protobuf"
2289
- version = "2.28.0"
2388
+ version = "3.7.2"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
2391
+ dependencies = [
2392
+ "once_cell",
2393
+ "protobuf-support",
2394
+ "thiserror 1.0.69",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "protobuf-support"
2399
+ version = "3.7.2"
2290
2400
  source = "registry+https://github.com/rust-lang/crates.io-index"
2291
- checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2401
+ checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
2402
+ dependencies = [
2403
+ "thiserror 1.0.69",
2404
+ ]
2292
2405
 
2293
2406
  [[package]]
2294
2407
  name = "quanta"
2295
- version = "0.12.5"
2408
+ version = "0.12.6"
2296
2409
  source = "registry+https://github.com/rust-lang/crates.io-index"
2297
- checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e"
2410
+ checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7"
2298
2411
  dependencies = [
2299
2412
  "crossbeam-utils",
2300
2413
  "libc",
2301
2414
  "once_cell",
2302
2415
  "raw-cpuid",
2303
- "wasi",
2416
+ "wasi 0.11.1+wasi-snapshot-preview1",
2304
2417
  "web-sys",
2305
2418
  "winapi",
2306
2419
  ]
2307
2420
 
2308
2421
  [[package]]
2309
2422
  name = "quinn"
2310
- version = "0.11.6"
2423
+ version = "0.11.8"
2311
2424
  source = "registry+https://github.com/rust-lang/crates.io-index"
2312
- checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
2425
+ checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
2313
2426
  dependencies = [
2314
2427
  "bytes",
2428
+ "cfg_aliases",
2315
2429
  "pin-project-lite",
2316
2430
  "quinn-proto",
2317
2431
  "quinn-udp",
2318
- "rustc-hash 2.1.0",
2432
+ "rustc-hash 2.1.1",
2319
2433
  "rustls",
2320
- "socket2",
2321
- "thiserror 2.0.11",
2434
+ "socket2 0.5.10",
2435
+ "thiserror 2.0.12",
2322
2436
  "tokio",
2323
2437
  "tracing",
2438
+ "web-time",
2324
2439
  ]
2325
2440
 
2326
2441
  [[package]]
2327
2442
  name = "quinn-proto"
2328
- version = "0.11.9"
2443
+ version = "0.11.12"
2329
2444
  source = "registry+https://github.com/rust-lang/crates.io-index"
2330
- checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
2445
+ checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
2331
2446
  dependencies = [
2332
2447
  "bytes",
2333
- "getrandom",
2334
- "rand",
2448
+ "getrandom 0.3.3",
2449
+ "lru-slab",
2450
+ "rand 0.9.2",
2335
2451
  "ring",
2336
- "rustc-hash 2.1.0",
2452
+ "rustc-hash 2.1.1",
2337
2453
  "rustls",
2338
2454
  "rustls-pki-types",
2339
2455
  "slab",
2340
- "thiserror 2.0.11",
2456
+ "thiserror 2.0.12",
2341
2457
  "tinyvec",
2342
2458
  "tracing",
2343
2459
  "web-time",
@@ -2345,27 +2461,33 @@ dependencies = [
2345
2461
 
2346
2462
  [[package]]
2347
2463
  name = "quinn-udp"
2348
- version = "0.5.9"
2464
+ version = "0.5.13"
2349
2465
  source = "registry+https://github.com/rust-lang/crates.io-index"
2350
- checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904"
2466
+ checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
2351
2467
  dependencies = [
2352
2468
  "cfg_aliases",
2353
2469
  "libc",
2354
2470
  "once_cell",
2355
- "socket2",
2471
+ "socket2 0.5.10",
2356
2472
  "tracing",
2357
2473
  "windows-sys 0.59.0",
2358
2474
  ]
2359
2475
 
2360
2476
  [[package]]
2361
2477
  name = "quote"
2362
- version = "1.0.38"
2478
+ version = "1.0.40"
2363
2479
  source = "registry+https://github.com/rust-lang/crates.io-index"
2364
- checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
2480
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2365
2481
  dependencies = [
2366
2482
  "proc-macro2",
2367
2483
  ]
2368
2484
 
2485
+ [[package]]
2486
+ name = "r-efi"
2487
+ version = "5.3.0"
2488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2489
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2490
+
2369
2491
  [[package]]
2370
2492
  name = "rand"
2371
2493
  version = "0.8.5"
@@ -2373,8 +2495,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
2495
  checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2374
2496
  dependencies = [
2375
2497
  "libc",
2376
- "rand_chacha",
2377
- "rand_core",
2498
+ "rand_chacha 0.3.1",
2499
+ "rand_core 0.6.4",
2500
+ ]
2501
+
2502
+ [[package]]
2503
+ name = "rand"
2504
+ version = "0.9.2"
2505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2506
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2507
+ dependencies = [
2508
+ "rand_chacha 0.9.0",
2509
+ "rand_core 0.9.3",
2378
2510
  ]
2379
2511
 
2380
2512
  [[package]]
@@ -2384,7 +2516,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
2516
  checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2385
2517
  dependencies = [
2386
2518
  "ppv-lite86",
2387
- "rand_core",
2519
+ "rand_core 0.6.4",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "rand_chacha"
2524
+ version = "0.9.0"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2527
+ dependencies = [
2528
+ "ppv-lite86",
2529
+ "rand_core 0.9.3",
2388
2530
  ]
2389
2531
 
2390
2532
  [[package]]
@@ -2393,14 +2535,23 @@ version = "0.6.4"
2393
2535
  source = "registry+https://github.com/rust-lang/crates.io-index"
2394
2536
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2395
2537
  dependencies = [
2396
- "getrandom",
2538
+ "getrandom 0.2.16",
2539
+ ]
2540
+
2541
+ [[package]]
2542
+ name = "rand_core"
2543
+ version = "0.9.3"
2544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2545
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2546
+ dependencies = [
2547
+ "getrandom 0.3.3",
2397
2548
  ]
2398
2549
 
2399
2550
  [[package]]
2400
2551
  name = "raw-cpuid"
2401
- version = "11.3.0"
2552
+ version = "11.5.0"
2402
2553
  source = "registry+https://github.com/rust-lang/crates.io-index"
2403
- checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e"
2554
+ checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
2404
2555
  dependencies = [
2405
2556
  "bitflags",
2406
2557
  ]
@@ -2427,18 +2578,18 @@ dependencies = [
2427
2578
 
2428
2579
  [[package]]
2429
2580
  name = "rb-sys"
2430
- version = "0.9.108"
2581
+ version = "0.9.116"
2431
2582
  source = "registry+https://github.com/rust-lang/crates.io-index"
2432
- checksum = "1e955384e1a4dc64b71d1e4b39ed0edbd77c7bde4a10dfd5ad208e1160fddfa7"
2583
+ checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad"
2433
2584
  dependencies = [
2434
2585
  "rb-sys-build",
2435
2586
  ]
2436
2587
 
2437
2588
  [[package]]
2438
2589
  name = "rb-sys-build"
2439
- version = "0.9.108"
2590
+ version = "0.9.116"
2440
2591
  source = "registry+https://github.com/rust-lang/crates.io-index"
2441
- checksum = "c167c6571889b2550d6fcb315e8aa60bdb95e47e4b64793e3f65a30dc25afc85"
2592
+ checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0"
2442
2593
  dependencies = [
2443
2594
  "bindgen",
2444
2595
  "lazy_static",
@@ -2457,13 +2608,24 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
2457
2608
 
2458
2609
  [[package]]
2459
2610
  name = "redox_syscall"
2460
- version = "0.5.8"
2611
+ version = "0.5.15"
2461
2612
  source = "registry+https://github.com/rust-lang/crates.io-index"
2462
- checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
2613
+ checksum = "7e8af0dde094006011e6a740d4879319439489813bd0bcdc7d821beaeeff48ec"
2463
2614
  dependencies = [
2464
2615
  "bitflags",
2465
2616
  ]
2466
2617
 
2618
+ [[package]]
2619
+ name = "redox_users"
2620
+ version = "0.4.6"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2623
+ dependencies = [
2624
+ "getrandom 0.2.16",
2625
+ "libredox",
2626
+ "thiserror 1.0.69",
2627
+ ]
2628
+
2467
2629
  [[package]]
2468
2630
  name = "regex"
2469
2631
  version = "1.11.1"
@@ -2516,9 +2678,9 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2516
2678
 
2517
2679
  [[package]]
2518
2680
  name = "reqwest"
2519
- version = "0.12.12"
2681
+ version = "0.12.22"
2520
2682
  source = "registry+https://github.com/rust-lang/crates.io-index"
2521
- checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da"
2683
+ checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
2522
2684
  dependencies = [
2523
2685
  "base64 0.22.1",
2524
2686
  "bytes",
@@ -2531,17 +2693,13 @@ dependencies = [
2531
2693
  "hyper",
2532
2694
  "hyper-rustls",
2533
2695
  "hyper-util",
2534
- "ipnet",
2535
2696
  "js-sys",
2536
2697
  "log",
2537
- "mime",
2538
- "once_cell",
2539
2698
  "percent-encoding",
2540
2699
  "pin-project-lite",
2541
2700
  "quinn",
2542
2701
  "rustls",
2543
2702
  "rustls-native-certs",
2544
- "rustls-pemfile",
2545
2703
  "rustls-pki-types",
2546
2704
  "serde",
2547
2705
  "serde_json",
@@ -2551,79 +2709,57 @@ dependencies = [
2551
2709
  "tokio-rustls",
2552
2710
  "tokio-util",
2553
2711
  "tower 0.5.2",
2712
+ "tower-http",
2554
2713
  "tower-service",
2555
2714
  "url",
2556
2715
  "wasm-bindgen",
2557
2716
  "wasm-bindgen-futures",
2558
2717
  "wasm-streams",
2559
2718
  "web-sys",
2560
- "windows-registry",
2561
2719
  ]
2562
2720
 
2563
2721
  [[package]]
2564
2722
  name = "ring"
2565
- version = "0.17.8"
2723
+ version = "0.17.14"
2566
2724
  source = "registry+https://github.com/rust-lang/crates.io-index"
2567
- checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2725
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2568
2726
  dependencies = [
2569
2727
  "cc",
2570
2728
  "cfg-if",
2571
- "getrandom",
2729
+ "getrandom 0.2.16",
2572
2730
  "libc",
2573
- "spin",
2574
2731
  "untrusted",
2575
2732
  "windows-sys 0.52.0",
2576
2733
  ]
2577
2734
 
2578
2735
  [[package]]
2579
2736
  name = "ringbuf"
2580
- version = "0.4.7"
2737
+ version = "0.4.8"
2581
2738
  source = "registry+https://github.com/rust-lang/crates.io-index"
2582
- checksum = "726bb493fe9cac765e8f96a144c3a8396bdf766dedad22e504b70b908dcbceb4"
2739
+ checksum = "fe47b720588c8702e34b5979cb3271a8b1842c7cb6f57408efa70c779363488c"
2583
2740
  dependencies = [
2584
2741
  "crossbeam-utils",
2585
2742
  "portable-atomic",
2586
- ]
2587
-
2588
- [[package]]
2589
- name = "rmp"
2590
- version = "0.8.14"
2591
- source = "registry+https://github.com/rust-lang/crates.io-index"
2592
- checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
2593
- dependencies = [
2594
- "byteorder",
2595
- "num-traits",
2596
- "paste",
2597
- ]
2598
-
2599
- [[package]]
2600
- name = "rmp-serde"
2601
- version = "1.3.0"
2602
- source = "registry+https://github.com/rust-lang/crates.io-index"
2603
- checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
2604
- dependencies = [
2605
- "byteorder",
2606
- "rmp",
2607
- "serde",
2743
+ "portable-atomic-util",
2608
2744
  ]
2609
2745
 
2610
2746
  [[package]]
2611
2747
  name = "rstest"
2612
- version = "0.23.0"
2748
+ version = "0.25.0"
2613
2749
  source = "registry+https://github.com/rust-lang/crates.io-index"
2614
- checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035"
2750
+ checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d"
2615
2751
  dependencies = [
2616
- "futures",
2617
2752
  "futures-timer",
2753
+ "futures-util",
2618
2754
  "rstest_macros",
2619
2755
  "rustc_version",
2620
2756
  ]
2621
2757
 
2622
2758
  [[package]]
2623
2759
  name = "rstest_macros"
2624
- version = "0.23.0"
2760
+ version = "0.25.0"
2625
2761
  source = "registry+https://github.com/rust-lang/crates.io-index"
2626
- checksum = "825ea780781b15345a146be27eaefb05085e337e869bff01b4306a4fd4a9ad5a"
2762
+ checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746"
2627
2763
  dependencies = [
2628
2764
  "cfg-if",
2629
2765
  "glob",
@@ -2639,9 +2775,9 @@ dependencies = [
2639
2775
 
2640
2776
  [[package]]
2641
2777
  name = "rustc-demangle"
2642
- version = "0.1.24"
2778
+ version = "0.1.25"
2643
2779
  source = "registry+https://github.com/rust-lang/crates.io-index"
2644
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2780
+ checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
2645
2781
 
2646
2782
  [[package]]
2647
2783
  name = "rustc-hash"
@@ -2651,9 +2787,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2651
2787
 
2652
2788
  [[package]]
2653
2789
  name = "rustc-hash"
2654
- version = "2.1.0"
2790
+ version = "2.1.1"
2655
2791
  source = "registry+https://github.com/rust-lang/crates.io-index"
2656
- checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
2792
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2657
2793
 
2658
2794
  [[package]]
2659
2795
  name = "rustc_version"
@@ -2690,22 +2826,22 @@ version = "0.1.0"
2690
2826
 
2691
2827
  [[package]]
2692
2828
  name = "rustix"
2693
- version = "0.38.43"
2829
+ version = "1.0.8"
2694
2830
  source = "registry+https://github.com/rust-lang/crates.io-index"
2695
- checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6"
2831
+ checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
2696
2832
  dependencies = [
2697
2833
  "bitflags",
2698
2834
  "errno",
2699
2835
  "libc",
2700
2836
  "linux-raw-sys",
2701
- "windows-sys 0.59.0",
2837
+ "windows-sys 0.60.2",
2702
2838
  ]
2703
2839
 
2704
2840
  [[package]]
2705
2841
  name = "rustls"
2706
- version = "0.23.21"
2842
+ version = "0.23.29"
2707
2843
  source = "registry+https://github.com/rust-lang/crates.io-index"
2708
- checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8"
2844
+ checksum = "2491382039b29b9b11ff08b76ff6c97cf287671dbb74f0be44bda389fffe9bd1"
2709
2845
  dependencies = [
2710
2846
  "log",
2711
2847
  "once_cell",
@@ -2728,29 +2864,21 @@ dependencies = [
2728
2864
  "security-framework",
2729
2865
  ]
2730
2866
 
2731
- [[package]]
2732
- name = "rustls-pemfile"
2733
- version = "2.2.0"
2734
- source = "registry+https://github.com/rust-lang/crates.io-index"
2735
- checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2736
- dependencies = [
2737
- "rustls-pki-types",
2738
- ]
2739
-
2740
2867
  [[package]]
2741
2868
  name = "rustls-pki-types"
2742
- version = "1.10.1"
2869
+ version = "1.12.0"
2743
2870
  source = "registry+https://github.com/rust-lang/crates.io-index"
2744
- checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37"
2871
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2745
2872
  dependencies = [
2746
2873
  "web-time",
2874
+ "zeroize",
2747
2875
  ]
2748
2876
 
2749
2877
  [[package]]
2750
2878
  name = "rustls-webpki"
2751
- version = "0.102.8"
2879
+ version = "0.103.4"
2752
2880
  source = "registry+https://github.com/rust-lang/crates.io-index"
2753
- checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2881
+ checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
2754
2882
  dependencies = [
2755
2883
  "ring",
2756
2884
  "rustls-pki-types",
@@ -2759,15 +2887,15 @@ dependencies = [
2759
2887
 
2760
2888
  [[package]]
2761
2889
  name = "rustversion"
2762
- version = "1.0.19"
2890
+ version = "1.0.21"
2763
2891
  source = "registry+https://github.com/rust-lang/crates.io-index"
2764
- checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
2892
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
2765
2893
 
2766
2894
  [[package]]
2767
2895
  name = "ryu"
2768
- version = "1.0.18"
2896
+ version = "1.0.20"
2769
2897
  source = "registry+https://github.com/rust-lang/crates.io-index"
2770
- checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2898
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2771
2899
 
2772
2900
  [[package]]
2773
2901
  name = "same-file"
@@ -2818,30 +2946,30 @@ dependencies = [
2818
2946
 
2819
2947
  [[package]]
2820
2948
  name = "semver"
2821
- version = "1.0.24"
2949
+ version = "1.0.26"
2822
2950
  source = "registry+https://github.com/rust-lang/crates.io-index"
2823
- checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
2951
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
2824
2952
 
2825
2953
  [[package]]
2826
2954
  name = "seq-macro"
2827
- version = "0.3.5"
2955
+ version = "0.3.6"
2828
2956
  source = "registry+https://github.com/rust-lang/crates.io-index"
2829
- checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
2957
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2830
2958
 
2831
2959
  [[package]]
2832
2960
  name = "serde"
2833
- version = "1.0.217"
2961
+ version = "1.0.219"
2834
2962
  source = "registry+https://github.com/rust-lang/crates.io-index"
2835
- checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
2963
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2836
2964
  dependencies = [
2837
2965
  "serde_derive",
2838
2966
  ]
2839
2967
 
2840
2968
  [[package]]
2841
2969
  name = "serde_derive"
2842
- version = "1.0.217"
2970
+ version = "1.0.219"
2843
2971
  source = "registry+https://github.com/rust-lang/crates.io-index"
2844
- checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
2972
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2845
2973
  dependencies = [
2846
2974
  "proc-macro2",
2847
2975
  "quote",
@@ -2850,9 +2978,9 @@ dependencies = [
2850
2978
 
2851
2979
  [[package]]
2852
2980
  name = "serde_json"
2853
- version = "1.0.135"
2981
+ version = "1.0.141"
2854
2982
  source = "registry+https://github.com/rust-lang/crates.io-index"
2855
- checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9"
2983
+ checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3"
2856
2984
  dependencies = [
2857
2985
  "itoa",
2858
2986
  "memchr",
@@ -2862,9 +2990,18 @@ dependencies = [
2862
2990
 
2863
2991
  [[package]]
2864
2992
  name = "serde_spanned"
2865
- version = "0.6.8"
2993
+ version = "0.6.9"
2866
2994
  source = "registry+https://github.com/rust-lang/crates.io-index"
2867
- checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
2995
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2996
+ dependencies = [
2997
+ "serde",
2998
+ ]
2999
+
3000
+ [[package]]
3001
+ name = "serde_spanned"
3002
+ version = "1.0.0"
3003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3004
+ checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83"
2868
3005
  dependencies = [
2869
3006
  "serde",
2870
3007
  ]
@@ -2915,9 +3052,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2915
3052
 
2916
3053
  [[package]]
2917
3054
  name = "signal-hook-registry"
2918
- version = "1.4.2"
3055
+ version = "1.4.5"
2919
3056
  source = "registry+https://github.com/rust-lang/crates.io-index"
2920
- checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
3057
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
2921
3058
  dependencies = [
2922
3059
  "libc",
2923
3060
  ]
@@ -2936,12 +3073,9 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2936
3073
 
2937
3074
  [[package]]
2938
3075
  name = "slab"
2939
- version = "0.4.9"
3076
+ version = "0.4.10"
2940
3077
  source = "registry+https://github.com/rust-lang/crates.io-index"
2941
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2942
- dependencies = [
2943
- "autocfg",
2944
- ]
3078
+ checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
2945
3079
 
2946
3080
  [[package]]
2947
3081
  name = "slotmap"
@@ -2954,25 +3088,29 @@ dependencies = [
2954
3088
 
2955
3089
  [[package]]
2956
3090
  name = "smallvec"
2957
- version = "1.13.2"
3091
+ version = "1.15.1"
2958
3092
  source = "registry+https://github.com/rust-lang/crates.io-index"
2959
- checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
3093
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2960
3094
 
2961
3095
  [[package]]
2962
3096
  name = "socket2"
2963
- version = "0.5.8"
3097
+ version = "0.5.10"
2964
3098
  source = "registry+https://github.com/rust-lang/crates.io-index"
2965
- checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
3099
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2966
3100
  dependencies = [
2967
3101
  "libc",
2968
3102
  "windows-sys 0.52.0",
2969
3103
  ]
2970
3104
 
2971
3105
  [[package]]
2972
- name = "spin"
2973
- version = "0.9.8"
3106
+ name = "socket2"
3107
+ version = "0.6.0"
2974
3108
  source = "registry+https://github.com/rust-lang/crates.io-index"
2975
- checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3109
+ checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
3110
+ dependencies = [
3111
+ "libc",
3112
+ "windows-sys 0.59.0",
3113
+ ]
2976
3114
 
2977
3115
  [[package]]
2978
3116
  name = "spinning_top"
@@ -3003,9 +3141,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3003
3141
 
3004
3142
  [[package]]
3005
3143
  name = "syn"
3006
- version = "2.0.96"
3144
+ version = "2.0.104"
3007
3145
  source = "registry+https://github.com/rust-lang/crates.io-index"
3008
- checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
3146
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
3009
3147
  dependencies = [
3010
3148
  "proc-macro2",
3011
3149
  "quote",
@@ -3023,9 +3161,9 @@ dependencies = [
3023
3161
 
3024
3162
  [[package]]
3025
3163
  name = "synstructure"
3026
- version = "0.13.1"
3164
+ version = "0.13.2"
3027
3165
  source = "registry+https://github.com/rust-lang/crates.io-index"
3028
- checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3166
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3029
3167
  dependencies = [
3030
3168
  "proc-macro2",
3031
3169
  "quote",
@@ -3034,9 +3172,9 @@ dependencies = [
3034
3172
 
3035
3173
  [[package]]
3036
3174
  name = "sysinfo"
3037
- version = "0.32.1"
3175
+ version = "0.33.1"
3038
3176
  source = "registry+https://github.com/rust-lang/crates.io-index"
3039
- checksum = "4c33cd241af0f2e9e3b5c32163b873b29956890b5342e6745b917ce9d490f4af"
3177
+ checksum = "4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01"
3040
3178
  dependencies = [
3041
3179
  "core-foundation-sys",
3042
3180
  "libc",
@@ -3047,9 +3185,9 @@ dependencies = [
3047
3185
 
3048
3186
  [[package]]
3049
3187
  name = "tar"
3050
- version = "0.4.43"
3188
+ version = "0.4.44"
3051
3189
  source = "registry+https://github.com/rust-lang/crates.io-index"
3052
- checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6"
3190
+ checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
3053
3191
  dependencies = [
3054
3192
  "filetime",
3055
3193
  "libc",
@@ -3058,19 +3196,18 @@ dependencies = [
3058
3196
 
3059
3197
  [[package]]
3060
3198
  name = "target-triple"
3061
- version = "0.1.3"
3199
+ version = "0.1.4"
3062
3200
  source = "registry+https://github.com/rust-lang/crates.io-index"
3063
- checksum = "42a4d50cdb458045afc8131fd91b64904da29548bcb63c7236e0844936c13078"
3201
+ checksum = "1ac9aa371f599d22256307c24a9d748c041e548cbf599f35d890f9d365361790"
3064
3202
 
3065
3203
  [[package]]
3066
3204
  name = "tempfile"
3067
- version = "3.15.0"
3205
+ version = "3.20.0"
3068
3206
  source = "registry+https://github.com/rust-lang/crates.io-index"
3069
- checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
3207
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
3070
3208
  dependencies = [
3071
- "cfg-if",
3072
3209
  "fastrand",
3073
- "getrandom",
3210
+ "getrandom 0.3.3",
3074
3211
  "once_cell",
3075
3212
  "rustix",
3076
3213
  "windows-sys 0.59.0",
@@ -3085,6 +3222,7 @@ dependencies = [
3085
3222
  "async-trait",
3086
3223
  "backoff",
3087
3224
  "base64 0.22.1",
3225
+ "bytes",
3088
3226
  "derive_builder",
3089
3227
  "derive_more",
3090
3228
  "futures-retry",
@@ -3096,13 +3234,13 @@ dependencies = [
3096
3234
  "mockall",
3097
3235
  "opentelemetry",
3098
3236
  "parking_lot",
3099
- "prost-types",
3237
+ "rstest",
3100
3238
  "slotmap",
3101
3239
  "temporal-sdk-core-api",
3102
3240
  "temporal-sdk-core-protos",
3103
- "thiserror 2.0.11",
3241
+ "thiserror 2.0.12",
3104
3242
  "tokio",
3105
- "tonic",
3243
+ "tonic 0.13.1",
3106
3244
  "tower 0.5.2",
3107
3245
  "tracing",
3108
3246
  "url",
@@ -3124,7 +3262,6 @@ dependencies = [
3124
3262
  "temporal-sdk-core",
3125
3263
  "temporal-sdk-core-api",
3126
3264
  "temporal-sdk-core-protos",
3127
- "thiserror 2.0.11",
3128
3265
  "tokio",
3129
3266
  "tokio-stream",
3130
3267
  "tokio-util",
@@ -3153,16 +3290,16 @@ dependencies = [
3153
3290
  "flate2",
3154
3291
  "futures-channel",
3155
3292
  "futures-util",
3293
+ "gethostname",
3156
3294
  "governor",
3157
3295
  "http-body-util",
3158
3296
  "hyper",
3159
3297
  "hyper-util",
3160
- "itertools 0.13.0",
3298
+ "itertools 0.14.0",
3161
3299
  "lru",
3162
3300
  "mockall",
3163
3301
  "opentelemetry",
3164
3302
  "opentelemetry-otlp",
3165
- "opentelemetry-prometheus",
3166
3303
  "opentelemetry_sdk",
3167
3304
  "parking_lot",
3168
3305
  "pid",
@@ -3170,7 +3307,7 @@ dependencies = [
3170
3307
  "prometheus",
3171
3308
  "prost",
3172
3309
  "prost-wkt-types",
3173
- "rand",
3310
+ "rand 0.9.2",
3174
3311
  "reqwest",
3175
3312
  "ringbuf",
3176
3313
  "rstest",
@@ -3186,11 +3323,11 @@ dependencies = [
3186
3323
  "temporal-sdk-core-api",
3187
3324
  "temporal-sdk-core-protos",
3188
3325
  "temporal-sdk-core-test-utils",
3189
- "thiserror 2.0.11",
3326
+ "thiserror 2.0.12",
3190
3327
  "tokio",
3191
3328
  "tokio-stream",
3192
3329
  "tokio-util",
3193
- "tonic",
3330
+ "tonic 0.13.1",
3194
3331
  "tracing",
3195
3332
  "tracing-subscriber",
3196
3333
  "url",
@@ -3205,13 +3342,17 @@ dependencies = [
3205
3342
  "async-trait",
3206
3343
  "derive_builder",
3207
3344
  "derive_more",
3345
+ "dirs",
3208
3346
  "opentelemetry",
3209
3347
  "prost",
3210
- "prost-types",
3348
+ "serde",
3211
3349
  "serde_json",
3350
+ "tempfile",
3212
3351
  "temporal-sdk-core-protos",
3213
- "thiserror 2.0.11",
3214
- "tonic",
3352
+ "thiserror 2.0.12",
3353
+ "toml 0.8.23",
3354
+ "tonic 0.13.1",
3355
+ "tracing",
3215
3356
  "tracing-core",
3216
3357
  "url",
3217
3358
  ]
@@ -3225,15 +3366,14 @@ dependencies = [
3225
3366
  "derive_more",
3226
3367
  "prost",
3227
3368
  "prost-build",
3228
- "prost-types",
3229
3369
  "prost-wkt",
3230
3370
  "prost-wkt-build",
3231
3371
  "prost-wkt-types",
3232
- "rand",
3372
+ "rand 0.9.2",
3233
3373
  "serde",
3234
3374
  "serde_json",
3235
- "thiserror 2.0.11",
3236
- "tonic",
3375
+ "thiserror 2.0.12",
3376
+ "tonic 0.13.1",
3237
3377
  "tonic-build",
3238
3378
  "uuid",
3239
3379
  ]
@@ -3245,27 +3385,18 @@ dependencies = [
3245
3385
  "anyhow",
3246
3386
  "assert_matches",
3247
3387
  "async-trait",
3248
- "base64 0.22.1",
3249
- "bytes",
3250
3388
  "futures-util",
3251
- "log",
3252
3389
  "parking_lot",
3253
3390
  "prost",
3254
- "prost-types",
3255
- "rand",
3256
- "rmp-serde",
3257
- "serde_json",
3391
+ "rand 0.9.2",
3258
3392
  "temporal-client",
3259
3393
  "temporal-sdk",
3260
3394
  "temporal-sdk-core",
3261
3395
  "temporal-sdk-core-api",
3262
3396
  "temporal-sdk-core-protos",
3263
- "thiserror 2.0.11",
3264
3397
  "tokio",
3265
- "tokio-util",
3266
3398
  "tracing",
3267
3399
  "url",
3268
- "uuid",
3269
3400
  ]
3270
3401
 
3271
3402
  [[package]]
@@ -3282,8 +3413,9 @@ dependencies = [
3282
3413
  "temporal-sdk-core-api",
3283
3414
  "temporal-sdk-core-protos",
3284
3415
  "tokio",
3416
+ "tokio-stream",
3285
3417
  "tokio-util",
3286
- "tonic",
3418
+ "tonic 0.13.1",
3287
3419
  "tracing",
3288
3420
  "url",
3289
3421
  ]
@@ -3314,11 +3446,11 @@ dependencies = [
3314
3446
 
3315
3447
  [[package]]
3316
3448
  name = "thiserror"
3317
- version = "2.0.11"
3449
+ version = "2.0.12"
3318
3450
  source = "registry+https://github.com/rust-lang/crates.io-index"
3319
- checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
3451
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3320
3452
  dependencies = [
3321
- "thiserror-impl 2.0.11",
3453
+ "thiserror-impl 2.0.12",
3322
3454
  ]
3323
3455
 
3324
3456
  [[package]]
@@ -3334,9 +3466,9 @@ dependencies = [
3334
3466
 
3335
3467
  [[package]]
3336
3468
  name = "thiserror-impl"
3337
- version = "2.0.11"
3469
+ version = "2.0.12"
3338
3470
  source = "registry+https://github.com/rust-lang/crates.io-index"
3339
- checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
3471
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
3340
3472
  dependencies = [
3341
3473
  "proc-macro2",
3342
3474
  "quote",
@@ -3345,19 +3477,18 @@ dependencies = [
3345
3477
 
3346
3478
  [[package]]
3347
3479
  name = "thread_local"
3348
- version = "1.1.8"
3480
+ version = "1.1.9"
3349
3481
  source = "registry+https://github.com/rust-lang/crates.io-index"
3350
- checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
3482
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3351
3483
  dependencies = [
3352
3484
  "cfg-if",
3353
- "once_cell",
3354
3485
  ]
3355
3486
 
3356
3487
  [[package]]
3357
3488
  name = "time"
3358
- version = "0.3.37"
3489
+ version = "0.3.41"
3359
3490
  source = "registry+https://github.com/rust-lang/crates.io-index"
3360
- checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
3491
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
3361
3492
  dependencies = [
3362
3493
  "deranged",
3363
3494
  "num-conv",
@@ -3368,15 +3499,15 @@ dependencies = [
3368
3499
 
3369
3500
  [[package]]
3370
3501
  name = "time-core"
3371
- version = "0.1.2"
3502
+ version = "0.1.4"
3372
3503
  source = "registry+https://github.com/rust-lang/crates.io-index"
3373
- checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3504
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
3374
3505
 
3375
3506
  [[package]]
3376
3507
  name = "tinystr"
3377
- version = "0.7.6"
3508
+ version = "0.8.1"
3378
3509
  source = "registry+https://github.com/rust-lang/crates.io-index"
3379
- checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3510
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
3380
3511
  dependencies = [
3381
3512
  "displaydoc",
3382
3513
  "zerovec",
@@ -3394,9 +3525,9 @@ dependencies = [
3394
3525
 
3395
3526
  [[package]]
3396
3527
  name = "tinyvec"
3397
- version = "1.8.1"
3528
+ version = "1.9.0"
3398
3529
  source = "registry+https://github.com/rust-lang/crates.io-index"
3399
- checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
3530
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
3400
3531
  dependencies = [
3401
3532
  "tinyvec_macros",
3402
3533
  ]
@@ -3409,18 +3540,20 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3409
3540
 
3410
3541
  [[package]]
3411
3542
  name = "tokio"
3412
- version = "1.43.0"
3543
+ version = "1.46.1"
3413
3544
  source = "registry+https://github.com/rust-lang/crates.io-index"
3414
- checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
3545
+ checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
3415
3546
  dependencies = [
3416
3547
  "backtrace",
3417
3548
  "bytes",
3549
+ "io-uring",
3418
3550
  "libc",
3419
3551
  "mio",
3420
3552
  "parking_lot",
3421
3553
  "pin-project-lite",
3422
3554
  "signal-hook-registry",
3423
- "socket2",
3555
+ "slab",
3556
+ "socket2 0.5.10",
3424
3557
  "tokio-macros",
3425
3558
  "tracing",
3426
3559
  "windows-sys 0.52.0",
@@ -3439,9 +3572,9 @@ dependencies = [
3439
3572
 
3440
3573
  [[package]]
3441
3574
  name = "tokio-rustls"
3442
- version = "0.26.1"
3575
+ version = "0.26.2"
3443
3576
  source = "registry+https://github.com/rust-lang/crates.io-index"
3444
- checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
3577
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
3445
3578
  dependencies = [
3446
3579
  "rustls",
3447
3580
  "tokio",
@@ -3460,9 +3593,9 @@ dependencies = [
3460
3593
 
3461
3594
  [[package]]
3462
3595
  name = "tokio-util"
3463
- version = "0.7.13"
3596
+ version = "0.7.15"
3464
3597
  source = "registry+https://github.com/rust-lang/crates.io-index"
3465
- checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
3598
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
3466
3599
  dependencies = [
3467
3600
  "bytes",
3468
3601
  "futures-core",
@@ -3473,38 +3606,84 @@ dependencies = [
3473
3606
 
3474
3607
  [[package]]
3475
3608
  name = "toml"
3476
- version = "0.8.19"
3609
+ version = "0.8.23"
3477
3610
  source = "registry+https://github.com/rust-lang/crates.io-index"
3478
- checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
3611
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
3479
3612
  dependencies = [
3480
3613
  "serde",
3481
- "serde_spanned",
3482
- "toml_datetime",
3614
+ "serde_spanned 0.6.9",
3615
+ "toml_datetime 0.6.11",
3483
3616
  "toml_edit",
3484
3617
  ]
3485
3618
 
3619
+ [[package]]
3620
+ name = "toml"
3621
+ version = "0.9.2"
3622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3623
+ checksum = "ed0aee96c12fa71097902e0bb061a5e1ebd766a6636bb605ba401c45c1650eac"
3624
+ dependencies = [
3625
+ "indexmap 2.10.0",
3626
+ "serde",
3627
+ "serde_spanned 1.0.0",
3628
+ "toml_datetime 0.7.0",
3629
+ "toml_parser",
3630
+ "toml_writer",
3631
+ "winnow",
3632
+ ]
3633
+
3486
3634
  [[package]]
3487
3635
  name = "toml_datetime"
3488
- version = "0.6.8"
3636
+ version = "0.6.11"
3489
3637
  source = "registry+https://github.com/rust-lang/crates.io-index"
3490
- checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
3638
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
3639
+ dependencies = [
3640
+ "serde",
3641
+ ]
3642
+
3643
+ [[package]]
3644
+ name = "toml_datetime"
3645
+ version = "0.7.0"
3646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3647
+ checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3"
3491
3648
  dependencies = [
3492
3649
  "serde",
3493
3650
  ]
3494
3651
 
3495
3652
  [[package]]
3496
3653
  name = "toml_edit"
3497
- version = "0.22.22"
3654
+ version = "0.22.27"
3498
3655
  source = "registry+https://github.com/rust-lang/crates.io-index"
3499
- checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
3656
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
3500
3657
  dependencies = [
3501
- "indexmap 2.7.0",
3658
+ "indexmap 2.10.0",
3502
3659
  "serde",
3503
- "serde_spanned",
3504
- "toml_datetime",
3660
+ "serde_spanned 0.6.9",
3661
+ "toml_datetime 0.6.11",
3662
+ "toml_write",
3505
3663
  "winnow",
3506
3664
  ]
3507
3665
 
3666
+ [[package]]
3667
+ name = "toml_parser"
3668
+ version = "1.0.1"
3669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3670
+ checksum = "97200572db069e74c512a14117b296ba0a80a30123fbbb5aa1f4a348f639ca30"
3671
+ dependencies = [
3672
+ "winnow",
3673
+ ]
3674
+
3675
+ [[package]]
3676
+ name = "toml_write"
3677
+ version = "0.1.2"
3678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3679
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
3680
+
3681
+ [[package]]
3682
+ name = "toml_writer"
3683
+ version = "1.0.2"
3684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3685
+ checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64"
3686
+
3508
3687
  [[package]]
3509
3688
  name = "tonic"
3510
3689
  version = "0.12.3"
@@ -3513,7 +3692,36 @@ checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
3513
3692
  dependencies = [
3514
3693
  "async-stream",
3515
3694
  "async-trait",
3516
- "axum",
3695
+ "axum 0.7.9",
3696
+ "base64 0.22.1",
3697
+ "bytes",
3698
+ "h2",
3699
+ "http",
3700
+ "http-body",
3701
+ "http-body-util",
3702
+ "hyper",
3703
+ "hyper-timeout",
3704
+ "hyper-util",
3705
+ "percent-encoding",
3706
+ "pin-project",
3707
+ "prost",
3708
+ "socket2 0.5.10",
3709
+ "tokio",
3710
+ "tokio-stream",
3711
+ "tower 0.4.13",
3712
+ "tower-layer",
3713
+ "tower-service",
3714
+ "tracing",
3715
+ ]
3716
+
3717
+ [[package]]
3718
+ name = "tonic"
3719
+ version = "0.13.1"
3720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3721
+ checksum = "7e581ba15a835f4d9ea06c55ab1bd4dce26fc53752c69a04aac00703bfb49ba9"
3722
+ dependencies = [
3723
+ "async-trait",
3724
+ "axum 0.8.4",
3517
3725
  "base64 0.22.1",
3518
3726
  "bytes",
3519
3727
  "h2",
@@ -3527,12 +3735,11 @@ dependencies = [
3527
3735
  "pin-project",
3528
3736
  "prost",
3529
3737
  "rustls-native-certs",
3530
- "rustls-pemfile",
3531
- "socket2",
3738
+ "socket2 0.5.10",
3532
3739
  "tokio",
3533
3740
  "tokio-rustls",
3534
3741
  "tokio-stream",
3535
- "tower 0.4.13",
3742
+ "tower 0.5.2",
3536
3743
  "tower-layer",
3537
3744
  "tower-service",
3538
3745
  "tracing",
@@ -3540,9 +3747,9 @@ dependencies = [
3540
3747
 
3541
3748
  [[package]]
3542
3749
  name = "tonic-build"
3543
- version = "0.12.3"
3750
+ version = "0.13.1"
3544
3751
  source = "registry+https://github.com/rust-lang/crates.io-index"
3545
- checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11"
3752
+ checksum = "eac6f67be712d12f0b41328db3137e0d0757645d8904b4cb7d51cd9c2279e847"
3546
3753
  dependencies = [
3547
3754
  "prettyplease",
3548
3755
  "proc-macro2",
@@ -3563,7 +3770,7 @@ dependencies = [
3563
3770
  "indexmap 1.9.3",
3564
3771
  "pin-project",
3565
3772
  "pin-project-lite",
3566
- "rand",
3773
+ "rand 0.8.5",
3567
3774
  "slab",
3568
3775
  "tokio",
3569
3776
  "tokio-util",
@@ -3580,9 +3787,31 @@ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3580
3787
  dependencies = [
3581
3788
  "futures-core",
3582
3789
  "futures-util",
3790
+ "indexmap 2.10.0",
3583
3791
  "pin-project-lite",
3792
+ "slab",
3584
3793
  "sync_wrapper",
3585
3794
  "tokio",
3795
+ "tokio-util",
3796
+ "tower-layer",
3797
+ "tower-service",
3798
+ "tracing",
3799
+ ]
3800
+
3801
+ [[package]]
3802
+ name = "tower-http"
3803
+ version = "0.6.6"
3804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3805
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
3806
+ dependencies = [
3807
+ "bitflags",
3808
+ "bytes",
3809
+ "futures-util",
3810
+ "http",
3811
+ "http-body",
3812
+ "iri-string",
3813
+ "pin-project-lite",
3814
+ "tower 0.5.2",
3586
3815
  "tower-layer",
3587
3816
  "tower-service",
3588
3817
  ]
@@ -3612,9 +3841,9 @@ dependencies = [
3612
3841
 
3613
3842
  [[package]]
3614
3843
  name = "tracing-attributes"
3615
- version = "0.1.28"
3844
+ version = "0.1.30"
3616
3845
  source = "registry+https://github.com/rust-lang/crates.io-index"
3617
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3846
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3618
3847
  dependencies = [
3619
3848
  "proc-macro2",
3620
3849
  "quote",
@@ -3623,25 +3852,14 @@ dependencies = [
3623
3852
 
3624
3853
  [[package]]
3625
3854
  name = "tracing-core"
3626
- version = "0.1.33"
3855
+ version = "0.1.34"
3627
3856
  source = "registry+https://github.com/rust-lang/crates.io-index"
3628
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3857
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3629
3858
  dependencies = [
3630
3859
  "once_cell",
3631
3860
  "valuable",
3632
3861
  ]
3633
3862
 
3634
- [[package]]
3635
- name = "tracing-log"
3636
- version = "0.2.0"
3637
- source = "registry+https://github.com/rust-lang/crates.io-index"
3638
- checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3639
- dependencies = [
3640
- "log",
3641
- "once_cell",
3642
- "tracing-core",
3643
- ]
3644
-
3645
3863
  [[package]]
3646
3864
  name = "tracing-subscriber"
3647
3865
  version = "0.3.19"
@@ -3654,11 +3872,9 @@ dependencies = [
3654
3872
  "parking_lot",
3655
3873
  "regex",
3656
3874
  "sharded-slab",
3657
- "smallvec",
3658
3875
  "thread_local",
3659
3876
  "tracing",
3660
3877
  "tracing-core",
3661
- "tracing-log",
3662
3878
  ]
3663
3879
 
3664
3880
  [[package]]
@@ -3669,9 +3885,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3669
3885
 
3670
3886
  [[package]]
3671
3887
  name = "trybuild"
3672
- version = "1.0.101"
3888
+ version = "1.0.106"
3673
3889
  source = "registry+https://github.com/rust-lang/crates.io-index"
3674
- checksum = "8dcd332a5496c026f1e14b7f3d2b7bd98e509660c04239c58b0ba38a12daded4"
3890
+ checksum = "65af40ad689f2527aebbd37a0a816aea88ff5f774ceabe99de5be02f2f91dae2"
3675
3891
  dependencies = [
3676
3892
  "dissimilar",
3677
3893
  "glob",
@@ -3680,26 +3896,26 @@ dependencies = [
3680
3896
  "serde_json",
3681
3897
  "target-triple",
3682
3898
  "termcolor",
3683
- "toml",
3899
+ "toml 0.9.2",
3684
3900
  ]
3685
3901
 
3686
3902
  [[package]]
3687
3903
  name = "typeid"
3688
- version = "1.0.2"
3904
+ version = "1.0.3"
3689
3905
  source = "registry+https://github.com/rust-lang/crates.io-index"
3690
- checksum = "0e13db2e0ccd5e14a544e8a246ba2312cd25223f616442d7f2cb0e3db614236e"
3906
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
3691
3907
 
3692
3908
  [[package]]
3693
3909
  name = "typenum"
3694
- version = "1.17.0"
3910
+ version = "1.18.0"
3695
3911
  source = "registry+https://github.com/rust-lang/crates.io-index"
3696
- checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
3912
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
3697
3913
 
3698
3914
  [[package]]
3699
3915
  name = "typetag"
3700
- version = "0.2.19"
3916
+ version = "0.2.20"
3701
3917
  source = "registry+https://github.com/rust-lang/crates.io-index"
3702
- checksum = "044fc3365ddd307c297fe0fe7b2e70588cdab4d0f62dc52055ca0d11b174cf0e"
3918
+ checksum = "73f22b40dd7bfe8c14230cf9702081366421890435b2d625fa92b4acc4c3de6f"
3703
3919
  dependencies = [
3704
3920
  "erased-serde",
3705
3921
  "inventory",
@@ -3710,9 +3926,9 @@ dependencies = [
3710
3926
 
3711
3927
  [[package]]
3712
3928
  name = "typetag-impl"
3713
- version = "0.2.19"
3929
+ version = "0.2.20"
3714
3930
  source = "registry+https://github.com/rust-lang/crates.io-index"
3715
- checksum = "d9d30226ac9cbd2d1ff775f74e8febdab985dab14fb14aa2582c29a92d5555dc"
3931
+ checksum = "35f5380909ffc31b4de4f4bdf96b877175a016aa2ca98cee39fcfd8c4d53d952"
3716
3932
  dependencies = [
3717
3933
  "proc-macro2",
3718
3934
  "quote",
@@ -3721,9 +3937,9 @@ dependencies = [
3721
3937
 
3722
3938
  [[package]]
3723
3939
  name = "unicode-ident"
3724
- version = "1.0.14"
3940
+ version = "1.0.18"
3725
3941
  source = "registry+https://github.com/rust-lang/crates.io-index"
3726
- checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
3942
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3727
3943
 
3728
3944
  [[package]]
3729
3945
  name = "unicode-xid"
@@ -3748,12 +3964,6 @@ dependencies = [
3748
3964
  "percent-encoding",
3749
3965
  ]
3750
3966
 
3751
- [[package]]
3752
- name = "utf16_iter"
3753
- version = "1.0.5"
3754
- source = "registry+https://github.com/rust-lang/crates.io-index"
3755
- checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3756
-
3757
3967
  [[package]]
3758
3968
  name = "utf8_iter"
3759
3969
  version = "1.0.4"
@@ -3768,11 +3978,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3768
3978
 
3769
3979
  [[package]]
3770
3980
  name = "uuid"
3771
- version = "1.12.0"
3981
+ version = "1.17.0"
3772
3982
  source = "registry+https://github.com/rust-lang/crates.io-index"
3773
- checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4"
3983
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
3774
3984
  dependencies = [
3775
- "getrandom",
3985
+ "getrandom 0.3.3",
3986
+ "js-sys",
3987
+ "wasm-bindgen",
3776
3988
  ]
3777
3989
 
3778
3990
  [[package]]
@@ -3808,9 +4020,18 @@ dependencies = [
3808
4020
 
3809
4021
  [[package]]
3810
4022
  name = "wasi"
3811
- version = "0.11.0+wasi-snapshot-preview1"
4023
+ version = "0.11.1+wasi-snapshot-preview1"
3812
4024
  source = "registry+https://github.com/rust-lang/crates.io-index"
3813
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
4025
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4026
+
4027
+ [[package]]
4028
+ name = "wasi"
4029
+ version = "0.14.2+wasi-0.2.4"
4030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4031
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
4032
+ dependencies = [
4033
+ "wit-bindgen-rt",
4034
+ ]
3814
4035
 
3815
4036
  [[package]]
3816
4037
  name = "wasm-bindgen"
@@ -3954,7 +4175,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3954
4175
  checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
3955
4176
  dependencies = [
3956
4177
  "windows-core",
3957
- "windows-targets",
4178
+ "windows-targets 0.52.6",
3958
4179
  ]
3959
4180
 
3960
4181
  [[package]]
@@ -3965,8 +4186,8 @@ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
3965
4186
  dependencies = [
3966
4187
  "windows-implement",
3967
4188
  "windows-interface",
3968
- "windows-result 0.1.2",
3969
- "windows-targets",
4189
+ "windows-result",
4190
+ "windows-targets 0.52.6",
3970
4191
  ]
3971
4192
 
3972
4193
  [[package]]
@@ -3992,60 +4213,63 @@ dependencies = [
3992
4213
  ]
3993
4214
 
3994
4215
  [[package]]
3995
- name = "windows-registry"
3996
- version = "0.2.0"
4216
+ name = "windows-result"
4217
+ version = "0.1.2"
3997
4218
  source = "registry+https://github.com/rust-lang/crates.io-index"
3998
- checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
4219
+ checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
3999
4220
  dependencies = [
4000
- "windows-result 0.2.0",
4001
- "windows-strings",
4002
- "windows-targets",
4221
+ "windows-targets 0.52.6",
4003
4222
  ]
4004
4223
 
4005
4224
  [[package]]
4006
- name = "windows-result"
4007
- version = "0.1.2"
4225
+ name = "windows-sys"
4226
+ version = "0.48.0"
4008
4227
  source = "registry+https://github.com/rust-lang/crates.io-index"
4009
- checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
4228
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4010
4229
  dependencies = [
4011
- "windows-targets",
4230
+ "windows-targets 0.48.5",
4012
4231
  ]
4013
4232
 
4014
4233
  [[package]]
4015
- name = "windows-result"
4016
- version = "0.2.0"
4234
+ name = "windows-sys"
4235
+ version = "0.52.0"
4017
4236
  source = "registry+https://github.com/rust-lang/crates.io-index"
4018
- checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
4237
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4019
4238
  dependencies = [
4020
- "windows-targets",
4239
+ "windows-targets 0.52.6",
4021
4240
  ]
4022
4241
 
4023
4242
  [[package]]
4024
- name = "windows-strings"
4025
- version = "0.1.0"
4243
+ name = "windows-sys"
4244
+ version = "0.59.0"
4026
4245
  source = "registry+https://github.com/rust-lang/crates.io-index"
4027
- checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
4246
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4028
4247
  dependencies = [
4029
- "windows-result 0.2.0",
4030
- "windows-targets",
4248
+ "windows-targets 0.52.6",
4031
4249
  ]
4032
4250
 
4033
4251
  [[package]]
4034
4252
  name = "windows-sys"
4035
- version = "0.52.0"
4253
+ version = "0.60.2"
4036
4254
  source = "registry+https://github.com/rust-lang/crates.io-index"
4037
- checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4255
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4038
4256
  dependencies = [
4039
- "windows-targets",
4257
+ "windows-targets 0.53.2",
4040
4258
  ]
4041
4259
 
4042
4260
  [[package]]
4043
- name = "windows-sys"
4044
- version = "0.59.0"
4261
+ name = "windows-targets"
4262
+ version = "0.48.5"
4045
4263
  source = "registry+https://github.com/rust-lang/crates.io-index"
4046
- checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4264
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4047
4265
  dependencies = [
4048
- "windows-targets",
4266
+ "windows_aarch64_gnullvm 0.48.5",
4267
+ "windows_aarch64_msvc 0.48.5",
4268
+ "windows_i686_gnu 0.48.5",
4269
+ "windows_i686_msvc 0.48.5",
4270
+ "windows_x86_64_gnu 0.48.5",
4271
+ "windows_x86_64_gnullvm 0.48.5",
4272
+ "windows_x86_64_msvc 0.48.5",
4049
4273
  ]
4050
4274
 
4051
4275
  [[package]]
@@ -4054,101 +4278,218 @@ version = "0.52.6"
4054
4278
  source = "registry+https://github.com/rust-lang/crates.io-index"
4055
4279
  checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4056
4280
  dependencies = [
4057
- "windows_aarch64_gnullvm",
4058
- "windows_aarch64_msvc",
4059
- "windows_i686_gnu",
4060
- "windows_i686_gnullvm",
4061
- "windows_i686_msvc",
4062
- "windows_x86_64_gnu",
4063
- "windows_x86_64_gnullvm",
4064
- "windows_x86_64_msvc",
4281
+ "windows_aarch64_gnullvm 0.52.6",
4282
+ "windows_aarch64_msvc 0.52.6",
4283
+ "windows_i686_gnu 0.52.6",
4284
+ "windows_i686_gnullvm 0.52.6",
4285
+ "windows_i686_msvc 0.52.6",
4286
+ "windows_x86_64_gnu 0.52.6",
4287
+ "windows_x86_64_gnullvm 0.52.6",
4288
+ "windows_x86_64_msvc 0.52.6",
4289
+ ]
4290
+
4291
+ [[package]]
4292
+ name = "windows-targets"
4293
+ version = "0.53.2"
4294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4295
+ checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
4296
+ dependencies = [
4297
+ "windows_aarch64_gnullvm 0.53.0",
4298
+ "windows_aarch64_msvc 0.53.0",
4299
+ "windows_i686_gnu 0.53.0",
4300
+ "windows_i686_gnullvm 0.53.0",
4301
+ "windows_i686_msvc 0.53.0",
4302
+ "windows_x86_64_gnu 0.53.0",
4303
+ "windows_x86_64_gnullvm 0.53.0",
4304
+ "windows_x86_64_msvc 0.53.0",
4065
4305
  ]
4066
4306
 
4307
+ [[package]]
4308
+ name = "windows_aarch64_gnullvm"
4309
+ version = "0.48.5"
4310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4311
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4312
+
4067
4313
  [[package]]
4068
4314
  name = "windows_aarch64_gnullvm"
4069
4315
  version = "0.52.6"
4070
4316
  source = "registry+https://github.com/rust-lang/crates.io-index"
4071
4317
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4072
4318
 
4319
+ [[package]]
4320
+ name = "windows_aarch64_gnullvm"
4321
+ version = "0.53.0"
4322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4323
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
4324
+
4325
+ [[package]]
4326
+ name = "windows_aarch64_msvc"
4327
+ version = "0.48.5"
4328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4329
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4330
+
4073
4331
  [[package]]
4074
4332
  name = "windows_aarch64_msvc"
4075
4333
  version = "0.52.6"
4076
4334
  source = "registry+https://github.com/rust-lang/crates.io-index"
4077
4335
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4078
4336
 
4337
+ [[package]]
4338
+ name = "windows_aarch64_msvc"
4339
+ version = "0.53.0"
4340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4341
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
4342
+
4343
+ [[package]]
4344
+ name = "windows_i686_gnu"
4345
+ version = "0.48.5"
4346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4347
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4348
+
4079
4349
  [[package]]
4080
4350
  name = "windows_i686_gnu"
4081
4351
  version = "0.52.6"
4082
4352
  source = "registry+https://github.com/rust-lang/crates.io-index"
4083
4353
  checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4084
4354
 
4355
+ [[package]]
4356
+ name = "windows_i686_gnu"
4357
+ version = "0.53.0"
4358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4359
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
4360
+
4085
4361
  [[package]]
4086
4362
  name = "windows_i686_gnullvm"
4087
4363
  version = "0.52.6"
4088
4364
  source = "registry+https://github.com/rust-lang/crates.io-index"
4089
4365
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4090
4366
 
4367
+ [[package]]
4368
+ name = "windows_i686_gnullvm"
4369
+ version = "0.53.0"
4370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4371
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
4372
+
4373
+ [[package]]
4374
+ name = "windows_i686_msvc"
4375
+ version = "0.48.5"
4376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4377
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4378
+
4091
4379
  [[package]]
4092
4380
  name = "windows_i686_msvc"
4093
4381
  version = "0.52.6"
4094
4382
  source = "registry+https://github.com/rust-lang/crates.io-index"
4095
4383
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4096
4384
 
4385
+ [[package]]
4386
+ name = "windows_i686_msvc"
4387
+ version = "0.53.0"
4388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4389
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
4390
+
4391
+ [[package]]
4392
+ name = "windows_x86_64_gnu"
4393
+ version = "0.48.5"
4394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4395
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4396
+
4097
4397
  [[package]]
4098
4398
  name = "windows_x86_64_gnu"
4099
4399
  version = "0.52.6"
4100
4400
  source = "registry+https://github.com/rust-lang/crates.io-index"
4101
4401
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4102
4402
 
4403
+ [[package]]
4404
+ name = "windows_x86_64_gnu"
4405
+ version = "0.53.0"
4406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4407
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
4408
+
4409
+ [[package]]
4410
+ name = "windows_x86_64_gnullvm"
4411
+ version = "0.48.5"
4412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4413
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4414
+
4103
4415
  [[package]]
4104
4416
  name = "windows_x86_64_gnullvm"
4105
4417
  version = "0.52.6"
4106
4418
  source = "registry+https://github.com/rust-lang/crates.io-index"
4107
4419
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4108
4420
 
4421
+ [[package]]
4422
+ name = "windows_x86_64_gnullvm"
4423
+ version = "0.53.0"
4424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4425
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
4426
+
4427
+ [[package]]
4428
+ name = "windows_x86_64_msvc"
4429
+ version = "0.48.5"
4430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4431
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4432
+
4109
4433
  [[package]]
4110
4434
  name = "windows_x86_64_msvc"
4111
4435
  version = "0.52.6"
4112
4436
  source = "registry+https://github.com/rust-lang/crates.io-index"
4113
4437
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4114
4438
 
4439
+ [[package]]
4440
+ name = "windows_x86_64_msvc"
4441
+ version = "0.53.0"
4442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4443
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
4444
+
4115
4445
  [[package]]
4116
4446
  name = "winnow"
4117
- version = "0.6.24"
4447
+ version = "0.7.12"
4118
4448
  source = "registry+https://github.com/rust-lang/crates.io-index"
4119
- checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a"
4449
+ checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
4120
4450
  dependencies = [
4121
4451
  "memchr",
4122
4452
  ]
4123
4453
 
4124
4454
  [[package]]
4125
- name = "write16"
4126
- version = "1.0.0"
4455
+ name = "wit-bindgen-rt"
4456
+ version = "0.39.0"
4127
4457
  source = "registry+https://github.com/rust-lang/crates.io-index"
4128
- checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4458
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
4459
+ dependencies = [
4460
+ "bitflags",
4461
+ ]
4129
4462
 
4130
4463
  [[package]]
4131
4464
  name = "writeable"
4132
- version = "0.5.5"
4465
+ version = "0.6.1"
4133
4466
  source = "registry+https://github.com/rust-lang/crates.io-index"
4134
- checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4467
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
4135
4468
 
4136
4469
  [[package]]
4137
4470
  name = "xattr"
4138
- version = "1.4.0"
4471
+ version = "1.5.1"
4139
4472
  source = "registry+https://github.com/rust-lang/crates.io-index"
4140
- checksum = "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909"
4473
+ checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909"
4141
4474
  dependencies = [
4142
4475
  "libc",
4143
- "linux-raw-sys",
4144
4476
  "rustix",
4145
4477
  ]
4146
4478
 
4479
+ [[package]]
4480
+ name = "xz2"
4481
+ version = "0.1.7"
4482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4483
+ checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
4484
+ dependencies = [
4485
+ "lzma-sys",
4486
+ ]
4487
+
4147
4488
  [[package]]
4148
4489
  name = "yoke"
4149
- version = "0.7.5"
4490
+ version = "0.8.0"
4150
4491
  source = "registry+https://github.com/rust-lang/crates.io-index"
4151
- checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4492
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
4152
4493
  dependencies = [
4153
4494
  "serde",
4154
4495
  "stable_deref_trait",
@@ -4158,9 +4499,9 @@ dependencies = [
4158
4499
 
4159
4500
  [[package]]
4160
4501
  name = "yoke-derive"
4161
- version = "0.7.5"
4502
+ version = "0.8.0"
4162
4503
  source = "registry+https://github.com/rust-lang/crates.io-index"
4163
- checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4504
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
4164
4505
  dependencies = [
4165
4506
  "proc-macro2",
4166
4507
  "quote",
@@ -4170,19 +4511,18 @@ dependencies = [
4170
4511
 
4171
4512
  [[package]]
4172
4513
  name = "zerocopy"
4173
- version = "0.7.35"
4514
+ version = "0.8.26"
4174
4515
  source = "registry+https://github.com/rust-lang/crates.io-index"
4175
- checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4516
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
4176
4517
  dependencies = [
4177
- "byteorder",
4178
4518
  "zerocopy-derive",
4179
4519
  ]
4180
4520
 
4181
4521
  [[package]]
4182
4522
  name = "zerocopy-derive"
4183
- version = "0.7.35"
4523
+ version = "0.8.26"
4184
4524
  source = "registry+https://github.com/rust-lang/crates.io-index"
4185
- checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4525
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
4186
4526
  dependencies = [
4187
4527
  "proc-macro2",
4188
4528
  "quote",
@@ -4191,18 +4531,18 @@ dependencies = [
4191
4531
 
4192
4532
  [[package]]
4193
4533
  name = "zerofrom"
4194
- version = "0.1.5"
4534
+ version = "0.1.6"
4195
4535
  source = "registry+https://github.com/rust-lang/crates.io-index"
4196
- checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
4536
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4197
4537
  dependencies = [
4198
4538
  "zerofrom-derive",
4199
4539
  ]
4200
4540
 
4201
4541
  [[package]]
4202
4542
  name = "zerofrom-derive"
4203
- version = "0.1.5"
4543
+ version = "0.1.6"
4204
4544
  source = "registry+https://github.com/rust-lang/crates.io-index"
4205
- checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
4545
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4206
4546
  dependencies = [
4207
4547
  "proc-macro2",
4208
4548
  "quote",
@@ -4230,11 +4570,22 @@ dependencies = [
4230
4570
  "syn",
4231
4571
  ]
4232
4572
 
4573
+ [[package]]
4574
+ name = "zerotrie"
4575
+ version = "0.2.2"
4576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4577
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
4578
+ dependencies = [
4579
+ "displaydoc",
4580
+ "yoke",
4581
+ "zerofrom",
4582
+ ]
4583
+
4233
4584
  [[package]]
4234
4585
  name = "zerovec"
4235
- version = "0.10.4"
4586
+ version = "0.11.2"
4236
4587
  source = "registry+https://github.com/rust-lang/crates.io-index"
4237
- checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4588
+ checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
4238
4589
  dependencies = [
4239
4590
  "yoke",
4240
4591
  "zerofrom",
@@ -4243,9 +4594,9 @@ dependencies = [
4243
4594
 
4244
4595
  [[package]]
4245
4596
  name = "zerovec-derive"
4246
- version = "0.10.3"
4597
+ version = "0.11.1"
4247
4598
  source = "registry+https://github.com/rust-lang/crates.io-index"
4248
- checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4599
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
4249
4600
  dependencies = [
4250
4601
  "proc-macro2",
4251
4602
  "quote",
@@ -4254,9 +4605,9 @@ dependencies = [
4254
4605
 
4255
4606
  [[package]]
4256
4607
  name = "zip"
4257
- version = "2.2.2"
4608
+ version = "2.4.2"
4258
4609
  source = "registry+https://github.com/rust-lang/crates.io-index"
4259
- checksum = "ae9c1ea7b3a5e1f4b922ff856a129881167511563dc219869afe3787fc0c1a45"
4610
+ checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
4260
4611
  dependencies = [
4261
4612
  "aes",
4262
4613
  "arbitrary",
@@ -4267,15 +4618,16 @@ dependencies = [
4267
4618
  "deflate64",
4268
4619
  "displaydoc",
4269
4620
  "flate2",
4621
+ "getrandom 0.3.3",
4270
4622
  "hmac",
4271
- "indexmap 2.7.0",
4623
+ "indexmap 2.10.0",
4272
4624
  "lzma-rs",
4273
4625
  "memchr",
4274
4626
  "pbkdf2",
4275
- "rand",
4276
4627
  "sha1",
4277
- "thiserror 2.0.11",
4628
+ "thiserror 2.0.12",
4278
4629
  "time",
4630
+ "xz2",
4279
4631
  "zeroize",
4280
4632
  "zopfli",
4281
4633
  "zstd",
@@ -4283,41 +4635,39 @@ dependencies = [
4283
4635
 
4284
4636
  [[package]]
4285
4637
  name = "zopfli"
4286
- version = "0.8.1"
4638
+ version = "0.8.2"
4287
4639
  source = "registry+https://github.com/rust-lang/crates.io-index"
4288
- checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946"
4640
+ checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7"
4289
4641
  dependencies = [
4290
4642
  "bumpalo",
4291
4643
  "crc32fast",
4292
- "lockfree-object-pool",
4293
4644
  "log",
4294
- "once_cell",
4295
4645
  "simd-adler32",
4296
4646
  ]
4297
4647
 
4298
4648
  [[package]]
4299
4649
  name = "zstd"
4300
- version = "0.13.2"
4650
+ version = "0.13.3"
4301
4651
  source = "registry+https://github.com/rust-lang/crates.io-index"
4302
- checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
4652
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4303
4653
  dependencies = [
4304
4654
  "zstd-safe",
4305
4655
  ]
4306
4656
 
4307
4657
  [[package]]
4308
4658
  name = "zstd-safe"
4309
- version = "7.2.1"
4659
+ version = "7.2.4"
4310
4660
  source = "registry+https://github.com/rust-lang/crates.io-index"
4311
- checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
4661
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4312
4662
  dependencies = [
4313
4663
  "zstd-sys",
4314
4664
  ]
4315
4665
 
4316
4666
  [[package]]
4317
4667
  name = "zstd-sys"
4318
- version = "2.0.13+zstd.1.5.6"
4668
+ version = "2.0.15+zstd.1.5.7"
4319
4669
  source = "registry+https://github.com/rust-lang/crates.io-index"
4320
- checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
4670
+ checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
4321
4671
  dependencies = [
4322
4672
  "cc",
4323
4673
  "pkg-config",