temporalio 0.2.0 → 0.4.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 (141) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +2 -0
  3. data/Cargo.lock +980 -583
  4. data/Cargo.toml +2 -2
  5. data/Gemfile +7 -3
  6. data/README.md +769 -54
  7. data/Rakefile +10 -296
  8. data/ext/Cargo.toml +2 -0
  9. data/lib/temporalio/activity/complete_async_error.rb +1 -1
  10. data/lib/temporalio/activity/context.rb +18 -2
  11. data/lib/temporalio/activity/definition.rb +180 -65
  12. data/lib/temporalio/activity/info.rb +25 -21
  13. data/lib/temporalio/activity.rb +2 -59
  14. data/lib/temporalio/api/activity/v1/message.rb +25 -0
  15. data/lib/temporalio/api/batch/v1/message.rb +6 -1
  16. data/lib/temporalio/api/cloud/account/v1/message.rb +28 -0
  17. data/lib/temporalio/api/cloud/cloudservice/v1/request_response.rb +34 -1
  18. data/lib/temporalio/api/cloud/cloudservice/v1/service.rb +1 -1
  19. data/lib/temporalio/api/cloud/identity/v1/message.rb +6 -1
  20. data/lib/temporalio/api/cloud/namespace/v1/message.rb +8 -1
  21. data/lib/temporalio/api/cloud/nexus/v1/message.rb +31 -0
  22. data/lib/temporalio/api/cloud/operation/v1/message.rb +2 -1
  23. data/lib/temporalio/api/cloud/region/v1/message.rb +2 -1
  24. data/lib/temporalio/api/cloud/resource/v1/message.rb +23 -0
  25. data/lib/temporalio/api/cloud/sink/v1/message.rb +24 -0
  26. data/lib/temporalio/api/cloud/usage/v1/message.rb +31 -0
  27. data/lib/temporalio/api/command/v1/message.rb +1 -1
  28. data/lib/temporalio/api/common/v1/message.rb +8 -1
  29. data/lib/temporalio/api/deployment/v1/message.rb +38 -0
  30. data/lib/temporalio/api/enums/v1/batch_operation.rb +1 -1
  31. data/lib/temporalio/api/enums/v1/common.rb +1 -1
  32. data/lib/temporalio/api/enums/v1/deployment.rb +23 -0
  33. data/lib/temporalio/api/enums/v1/event_type.rb +1 -1
  34. data/lib/temporalio/api/enums/v1/failed_cause.rb +1 -1
  35. data/lib/temporalio/api/enums/v1/nexus.rb +21 -0
  36. data/lib/temporalio/api/enums/v1/reset.rb +1 -1
  37. data/lib/temporalio/api/enums/v1/workflow.rb +2 -1
  38. data/lib/temporalio/api/errordetails/v1/message.rb +3 -1
  39. data/lib/temporalio/api/failure/v1/message.rb +3 -1
  40. data/lib/temporalio/api/history/v1/message.rb +3 -1
  41. data/lib/temporalio/api/nexus/v1/message.rb +3 -2
  42. data/lib/temporalio/api/operatorservice/v1/service.rb +1 -1
  43. data/lib/temporalio/api/payload_visitor.rb +1581 -0
  44. data/lib/temporalio/api/query/v1/message.rb +2 -1
  45. data/lib/temporalio/api/schedule/v1/message.rb +2 -1
  46. data/lib/temporalio/api/taskqueue/v1/message.rb +4 -1
  47. data/lib/temporalio/api/testservice/v1/request_response.rb +31 -0
  48. data/lib/temporalio/api/testservice/v1/service.rb +23 -0
  49. data/lib/temporalio/api/workflow/v1/message.rb +9 -1
  50. data/lib/temporalio/api/workflowservice/v1/request_response.rb +46 -2
  51. data/lib/temporalio/api/workflowservice/v1/service.rb +1 -1
  52. data/lib/temporalio/api.rb +2 -0
  53. data/lib/temporalio/cancellation.rb +34 -14
  54. data/lib/temporalio/client/async_activity_handle.rb +12 -37
  55. data/lib/temporalio/client/connection/cloud_service.rb +309 -231
  56. data/lib/temporalio/client/connection/operator_service.rb +36 -84
  57. data/lib/temporalio/client/connection/service.rb +6 -5
  58. data/lib/temporalio/client/connection/test_service.rb +111 -0
  59. data/lib/temporalio/client/connection/workflow_service.rb +474 -441
  60. data/lib/temporalio/client/connection.rb +90 -44
  61. data/lib/temporalio/client/interceptor.rb +199 -60
  62. data/lib/temporalio/client/schedule.rb +991 -0
  63. data/lib/temporalio/client/schedule_handle.rb +126 -0
  64. data/lib/temporalio/client/with_start_workflow_operation.rb +115 -0
  65. data/lib/temporalio/client/workflow_execution.rb +26 -10
  66. data/lib/temporalio/client/workflow_handle.rb +41 -98
  67. data/lib/temporalio/client/workflow_update_handle.rb +3 -5
  68. data/lib/temporalio/client.rb +247 -44
  69. data/lib/temporalio/common_enums.rb +17 -0
  70. data/lib/temporalio/contrib/open_telemetry.rb +470 -0
  71. data/lib/temporalio/converters/data_converter.rb +4 -7
  72. data/lib/temporalio/converters/failure_converter.rb +5 -3
  73. data/lib/temporalio/converters/payload_converter/composite.rb +4 -0
  74. data/lib/temporalio/converters/payload_converter.rb +6 -8
  75. data/lib/temporalio/converters/raw_value.rb +20 -0
  76. data/lib/temporalio/error/failure.rb +1 -1
  77. data/lib/temporalio/error.rb +11 -2
  78. data/lib/temporalio/internal/bridge/api/activity_task/activity_task.rb +1 -1
  79. data/lib/temporalio/internal/bridge/api/common/common.rb +2 -1
  80. data/lib/temporalio/internal/bridge/api/core_interface.rb +5 -1
  81. data/lib/temporalio/internal/bridge/api/nexus/nexus.rb +33 -0
  82. data/lib/temporalio/internal/bridge/api/workflow_activation/workflow_activation.rb +5 -1
  83. data/lib/temporalio/internal/bridge/api/workflow_commands/workflow_commands.rb +4 -1
  84. data/lib/temporalio/internal/bridge/api/workflow_completion/workflow_completion.rb +2 -1
  85. data/lib/temporalio/internal/bridge/client.rb +11 -6
  86. data/lib/temporalio/internal/bridge/runtime.rb +3 -0
  87. data/lib/temporalio/internal/bridge/testing.rb +23 -0
  88. data/lib/temporalio/internal/bridge/worker.rb +2 -0
  89. data/lib/temporalio/internal/bridge.rb +1 -1
  90. data/lib/temporalio/internal/client/implementation.rb +468 -71
  91. data/lib/temporalio/internal/metric.rb +122 -0
  92. data/lib/temporalio/internal/proto_utils.rb +118 -7
  93. data/lib/temporalio/internal/worker/activity_worker.rb +69 -29
  94. data/lib/temporalio/internal/worker/multi_runner.rb +53 -9
  95. data/lib/temporalio/internal/worker/workflow_instance/child_workflow_handle.rb +54 -0
  96. data/lib/temporalio/internal/worker/workflow_instance/context.rb +383 -0
  97. data/lib/temporalio/internal/worker/workflow_instance/details.rb +46 -0
  98. data/lib/temporalio/internal/worker/workflow_instance/external_workflow_handle.rb +32 -0
  99. data/lib/temporalio/internal/worker/workflow_instance/externally_immutable_hash.rb +22 -0
  100. data/lib/temporalio/internal/worker/workflow_instance/handler_execution.rb +25 -0
  101. data/lib/temporalio/internal/worker/workflow_instance/handler_hash.rb +41 -0
  102. data/lib/temporalio/internal/worker/workflow_instance/illegal_call_tracer.rb +97 -0
  103. data/lib/temporalio/internal/worker/workflow_instance/inbound_implementation.rb +62 -0
  104. data/lib/temporalio/internal/worker/workflow_instance/outbound_implementation.rb +400 -0
  105. data/lib/temporalio/internal/worker/workflow_instance/replay_safe_logger.rb +37 -0
  106. data/lib/temporalio/internal/worker/workflow_instance/replay_safe_metric.rb +40 -0
  107. data/lib/temporalio/internal/worker/workflow_instance/scheduler.rb +183 -0
  108. data/lib/temporalio/internal/worker/workflow_instance.rb +774 -0
  109. data/lib/temporalio/internal/worker/workflow_worker.rb +239 -0
  110. data/lib/temporalio/metric.rb +109 -0
  111. data/lib/temporalio/retry_policy.rb +37 -14
  112. data/lib/temporalio/runtime/metric_buffer.rb +94 -0
  113. data/lib/temporalio/runtime.rb +160 -79
  114. data/lib/temporalio/search_attributes.rb +93 -37
  115. data/lib/temporalio/testing/activity_environment.rb +44 -16
  116. data/lib/temporalio/testing/workflow_environment.rb +276 -7
  117. data/lib/temporalio/version.rb +1 -1
  118. data/lib/temporalio/worker/activity_executor/thread_pool.rb +9 -217
  119. data/lib/temporalio/worker/activity_executor.rb +3 -3
  120. data/lib/temporalio/worker/interceptor.rb +343 -66
  121. data/lib/temporalio/worker/thread_pool.rb +237 -0
  122. data/lib/temporalio/worker/tuner.rb +38 -0
  123. data/lib/temporalio/worker/workflow_executor/thread_pool.rb +235 -0
  124. data/lib/temporalio/worker/workflow_executor.rb +26 -0
  125. data/lib/temporalio/worker/workflow_replayer.rb +350 -0
  126. data/lib/temporalio/worker.rb +235 -58
  127. data/lib/temporalio/workflow/activity_cancellation_type.rb +20 -0
  128. data/lib/temporalio/workflow/child_workflow_cancellation_type.rb +21 -0
  129. data/lib/temporalio/workflow/child_workflow_handle.rb +43 -0
  130. data/lib/temporalio/workflow/definition.rb +598 -0
  131. data/lib/temporalio/workflow/external_workflow_handle.rb +41 -0
  132. data/lib/temporalio/workflow/future.rb +151 -0
  133. data/lib/temporalio/workflow/handler_unfinished_policy.rb +13 -0
  134. data/lib/temporalio/workflow/info.rb +104 -0
  135. data/lib/temporalio/workflow/parent_close_policy.rb +19 -0
  136. data/lib/temporalio/workflow/update_info.rb +20 -0
  137. data/lib/temporalio/workflow.rb +575 -0
  138. data/lib/temporalio/workflow_history.rb +26 -1
  139. data/lib/temporalio.rb +4 -0
  140. data/temporalio.gemspec +4 -3
  141. metadata +73 -10
data/Cargo.lock CHANGED
@@ -1,6 +1,6 @@
1
1
  # This file is automatically @generated by Cargo.
2
2
  # It is not intended for manual editing.
3
- version = 3
3
+ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "addr2line"
@@ -39,9 +39,9 @@ dependencies = [
39
39
 
40
40
  [[package]]
41
41
  name = "allocator-api2"
42
- version = "0.2.18"
42
+ version = "0.2.21"
43
43
  source = "registry+https://github.com/rust-lang/crates.io-index"
44
- checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
44
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
45
45
 
46
46
  [[package]]
47
47
  name = "anes"
@@ -51,9 +51,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
51
51
 
52
52
  [[package]]
53
53
  name = "anstream"
54
- version = "0.6.15"
54
+ version = "0.6.18"
55
55
  source = "registry+https://github.com/rust-lang/crates.io-index"
56
- checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
56
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
57
57
  dependencies = [
58
58
  "anstyle",
59
59
  "anstyle-parse",
@@ -66,49 +66,50 @@ dependencies = [
66
66
 
67
67
  [[package]]
68
68
  name = "anstyle"
69
- version = "1.0.8"
69
+ version = "1.0.10"
70
70
  source = "registry+https://github.com/rust-lang/crates.io-index"
71
- checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
71
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
72
72
 
73
73
  [[package]]
74
74
  name = "anstyle-parse"
75
- version = "0.2.5"
75
+ version = "0.2.6"
76
76
  source = "registry+https://github.com/rust-lang/crates.io-index"
77
- checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
77
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
78
78
  dependencies = [
79
79
  "utf8parse",
80
80
  ]
81
81
 
82
82
  [[package]]
83
83
  name = "anstyle-query"
84
- version = "1.1.1"
84
+ version = "1.1.2"
85
85
  source = "registry+https://github.com/rust-lang/crates.io-index"
86
- checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
86
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
87
87
  dependencies = [
88
- "windows-sys 0.52.0",
88
+ "windows-sys 0.59.0",
89
89
  ]
90
90
 
91
91
  [[package]]
92
92
  name = "anstyle-wincon"
93
- version = "3.0.4"
93
+ version = "3.0.7"
94
94
  source = "registry+https://github.com/rust-lang/crates.io-index"
95
- checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
95
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
96
96
  dependencies = [
97
97
  "anstyle",
98
- "windows-sys 0.52.0",
98
+ "once_cell",
99
+ "windows-sys 0.59.0",
99
100
  ]
100
101
 
101
102
  [[package]]
102
103
  name = "anyhow"
103
- version = "1.0.89"
104
+ version = "1.0.98"
104
105
  source = "registry+https://github.com/rust-lang/crates.io-index"
105
- checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6"
106
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
106
107
 
107
108
  [[package]]
108
109
  name = "arbitrary"
109
- version = "1.3.2"
110
+ version = "1.4.1"
110
111
  source = "registry+https://github.com/rust-lang/crates.io-index"
111
- checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
112
+ checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
112
113
  dependencies = [
113
114
  "derive_arbitrary",
114
115
  ]
@@ -143,9 +144,9 @@ dependencies = [
143
144
 
144
145
  [[package]]
145
146
  name = "async-trait"
146
- version = "0.1.83"
147
+ version = "0.1.88"
147
148
  source = "registry+https://github.com/rust-lang/crates.io-index"
148
- checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
149
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
149
150
  dependencies = [
150
151
  "proc-macro2",
151
152
  "quote",
@@ -166,9 +167,9 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
166
167
 
167
168
  [[package]]
168
169
  name = "axum"
169
- version = "0.7.7"
170
+ version = "0.7.9"
170
171
  source = "registry+https://github.com/rust-lang/crates.io-index"
171
- checksum = "504e3947307ac8326a5437504c517c4b56716c9d98fac0028c2acc7ca47d70ae"
172
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
172
173
  dependencies = [
173
174
  "async-trait",
174
175
  "axum-core",
@@ -185,8 +186,8 @@ dependencies = [
185
186
  "pin-project-lite",
186
187
  "rustversion",
187
188
  "serde",
188
- "sync_wrapper 1.0.1",
189
- "tower 0.5.1",
189
+ "sync_wrapper",
190
+ "tower 0.5.2",
190
191
  "tower-layer",
191
192
  "tower-service",
192
193
  ]
@@ -206,7 +207,7 @@ dependencies = [
206
207
  "mime",
207
208
  "pin-project-lite",
208
209
  "rustversion",
209
- "sync_wrapper 1.0.1",
210
+ "sync_wrapper",
210
211
  "tower-layer",
211
212
  "tower-service",
212
213
  ]
@@ -217,9 +218,9 @@ version = "0.4.0"
217
218
  source = "registry+https://github.com/rust-lang/crates.io-index"
218
219
  checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
219
220
  dependencies = [
220
- "getrandom",
221
+ "getrandom 0.2.15",
221
222
  "instant",
222
- "rand",
223
+ "rand 0.8.5",
223
224
  ]
224
225
 
225
226
  [[package]]
@@ -234,7 +235,7 @@ dependencies = [
234
235
  "miniz_oxide",
235
236
  "object",
236
237
  "rustc-demangle",
237
- "windows-targets",
238
+ "windows-targets 0.52.6",
238
239
  ]
239
240
 
240
241
  [[package]]
@@ -277,9 +278,9 @@ dependencies = [
277
278
 
278
279
  [[package]]
279
280
  name = "bitflags"
280
- version = "2.6.0"
281
+ version = "2.9.0"
281
282
  source = "registry+https://github.com/rust-lang/crates.io-index"
282
- checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
283
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
283
284
 
284
285
  [[package]]
285
286
  name = "block-buffer"
@@ -292,9 +293,9 @@ dependencies = [
292
293
 
293
294
  [[package]]
294
295
  name = "bumpalo"
295
- version = "3.16.0"
296
+ version = "3.17.0"
296
297
  source = "registry+https://github.com/rust-lang/crates.io-index"
297
- checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
298
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
298
299
 
299
300
  [[package]]
300
301
  name = "byteorder"
@@ -304,28 +305,26 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
304
305
 
305
306
  [[package]]
306
307
  name = "bytes"
307
- version = "1.7.2"
308
+ version = "1.10.1"
308
309
  source = "registry+https://github.com/rust-lang/crates.io-index"
309
- checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3"
310
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
310
311
 
311
312
  [[package]]
312
313
  name = "bzip2"
313
- version = "0.4.4"
314
+ version = "0.5.2"
314
315
  source = "registry+https://github.com/rust-lang/crates.io-index"
315
- checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
316
+ checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
316
317
  dependencies = [
317
318
  "bzip2-sys",
318
- "libc",
319
319
  ]
320
320
 
321
321
  [[package]]
322
322
  name = "bzip2-sys"
323
- version = "0.1.11+1.0.8"
323
+ version = "0.1.13+1.0.8"
324
324
  source = "registry+https://github.com/rust-lang/crates.io-index"
325
- checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
325
+ checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
326
326
  dependencies = [
327
327
  "cc",
328
- "libc",
329
328
  "pkg-config",
330
329
  ]
331
330
 
@@ -337,9 +336,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
337
336
 
338
337
  [[package]]
339
338
  name = "cc"
340
- version = "1.1.30"
339
+ version = "1.2.19"
341
340
  source = "registry+https://github.com/rust-lang/crates.io-index"
342
- checksum = "b16803a61b81d9eabb7eae2588776c4c1e584b738ede45fdbb4c972cec1e9945"
341
+ checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
343
342
  dependencies = [
344
343
  "jobserver",
345
344
  "libc",
@@ -361,11 +360,17 @@ version = "1.0.0"
361
360
  source = "registry+https://github.com/rust-lang/crates.io-index"
362
361
  checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
363
362
 
363
+ [[package]]
364
+ name = "cfg_aliases"
365
+ version = "0.2.1"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
368
+
364
369
  [[package]]
365
370
  name = "chrono"
366
- version = "0.4.38"
371
+ version = "0.4.40"
367
372
  source = "registry+https://github.com/rust-lang/crates.io-index"
368
- checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
373
+ checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
369
374
  dependencies = [
370
375
  "num-traits",
371
376
  "serde",
@@ -421,9 +426,9 @@ dependencies = [
421
426
 
422
427
  [[package]]
423
428
  name = "clap"
424
- version = "4.5.20"
429
+ version = "4.5.36"
425
430
  source = "registry+https://github.com/rust-lang/crates.io-index"
426
- checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8"
431
+ checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04"
427
432
  dependencies = [
428
433
  "clap_builder",
429
434
  "clap_derive",
@@ -431,9 +436,9 @@ dependencies = [
431
436
 
432
437
  [[package]]
433
438
  name = "clap_builder"
434
- version = "4.5.20"
439
+ version = "4.5.36"
435
440
  source = "registry+https://github.com/rust-lang/crates.io-index"
436
- checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54"
441
+ checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5"
437
442
  dependencies = [
438
443
  "anstream",
439
444
  "anstyle",
@@ -443,9 +448,9 @@ dependencies = [
443
448
 
444
449
  [[package]]
445
450
  name = "clap_derive"
446
- version = "4.5.18"
451
+ version = "4.5.32"
447
452
  source = "registry+https://github.com/rust-lang/crates.io-index"
448
- checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
453
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
449
454
  dependencies = [
450
455
  "heck",
451
456
  "proc-macro2",
@@ -455,21 +460,21 @@ dependencies = [
455
460
 
456
461
  [[package]]
457
462
  name = "clap_lex"
458
- version = "0.7.2"
463
+ version = "0.7.4"
459
464
  source = "registry+https://github.com/rust-lang/crates.io-index"
460
- checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
465
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
461
466
 
462
467
  [[package]]
463
468
  name = "colorchoice"
464
- version = "1.0.2"
469
+ version = "1.0.3"
465
470
  source = "registry+https://github.com/rust-lang/crates.io-index"
466
- checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
471
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
467
472
 
468
473
  [[package]]
469
474
  name = "console-api"
470
- version = "0.8.0"
475
+ version = "0.8.1"
471
476
  source = "registry+https://github.com/rust-lang/crates.io-index"
472
- checksum = "86ed14aa9c9f927213c6e4f3ef75faaad3406134efe84ba2cb7983431d5f0931"
477
+ checksum = "8030735ecb0d128428b64cd379809817e620a40e5001c54465b99ec5feec2857"
473
478
  dependencies = [
474
479
  "futures-core",
475
480
  "prost",
@@ -480,9 +485,9 @@ dependencies = [
480
485
 
481
486
  [[package]]
482
487
  name = "console-subscriber"
483
- version = "0.4.0"
488
+ version = "0.4.1"
484
489
  source = "registry+https://github.com/rust-lang/crates.io-index"
485
- checksum = "e2e3a111a37f3333946ebf9da370ba5c5577b18eb342ec683eb488dd21980302"
490
+ checksum = "6539aa9c6a4cd31f4b1c040f860a1eac9aa80e7df6b05d506a6e7179936d6a01"
486
491
  dependencies = [
487
492
  "console-api",
488
493
  "crossbeam-channel",
@@ -512,9 +517,9 @@ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
512
517
 
513
518
  [[package]]
514
519
  name = "core-foundation"
515
- version = "0.9.4"
520
+ version = "0.10.0"
516
521
  source = "registry+https://github.com/rust-lang/crates.io-index"
517
- checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
522
+ checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
518
523
  dependencies = [
519
524
  "core-foundation-sys",
520
525
  "libc",
@@ -528,9 +533,9 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
528
533
 
529
534
  [[package]]
530
535
  name = "cpufeatures"
531
- version = "0.2.14"
536
+ version = "0.2.17"
532
537
  source = "registry+https://github.com/rust-lang/crates.io-index"
533
- checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
538
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
534
539
  dependencies = [
535
540
  "libc",
536
541
  ]
@@ -597,18 +602,18 @@ dependencies = [
597
602
 
598
603
  [[package]]
599
604
  name = "crossbeam-channel"
600
- version = "0.5.13"
605
+ version = "0.5.15"
601
606
  source = "registry+https://github.com/rust-lang/crates.io-index"
602
- checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
607
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
603
608
  dependencies = [
604
609
  "crossbeam-utils",
605
610
  ]
606
611
 
607
612
  [[package]]
608
613
  name = "crossbeam-deque"
609
- version = "0.8.5"
614
+ version = "0.8.6"
610
615
  source = "registry+https://github.com/rust-lang/crates.io-index"
611
- checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
616
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
612
617
  dependencies = [
613
618
  "crossbeam-epoch",
614
619
  "crossbeam-utils",
@@ -625,24 +630,24 @@ dependencies = [
625
630
 
626
631
  [[package]]
627
632
  name = "crossbeam-queue"
628
- version = "0.3.11"
633
+ version = "0.3.12"
629
634
  source = "registry+https://github.com/rust-lang/crates.io-index"
630
- checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
635
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
631
636
  dependencies = [
632
637
  "crossbeam-utils",
633
638
  ]
634
639
 
635
640
  [[package]]
636
641
  name = "crossbeam-utils"
637
- version = "0.8.20"
642
+ version = "0.8.21"
638
643
  source = "registry+https://github.com/rust-lang/crates.io-index"
639
- checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
644
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
640
645
 
641
646
  [[package]]
642
647
  name = "crunchy"
643
- version = "0.2.2"
648
+ version = "0.2.3"
644
649
  source = "registry+https://github.com/rust-lang/crates.io-index"
645
- checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
650
+ checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
646
651
 
647
652
  [[package]]
648
653
  name = "crypto-common"
@@ -656,9 +661,9 @@ dependencies = [
656
661
 
657
662
  [[package]]
658
663
  name = "darling"
659
- version = "0.20.10"
664
+ version = "0.20.11"
660
665
  source = "registry+https://github.com/rust-lang/crates.io-index"
661
- checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
666
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
662
667
  dependencies = [
663
668
  "darling_core",
664
669
  "darling_macro",
@@ -666,9 +671,9 @@ dependencies = [
666
671
 
667
672
  [[package]]
668
673
  name = "darling_core"
669
- version = "0.20.10"
674
+ version = "0.20.11"
670
675
  source = "registry+https://github.com/rust-lang/crates.io-index"
671
- checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
676
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
672
677
  dependencies = [
673
678
  "fnv",
674
679
  "ident_case",
@@ -680,28 +685,15 @@ dependencies = [
680
685
 
681
686
  [[package]]
682
687
  name = "darling_macro"
683
- version = "0.20.10"
688
+ version = "0.20.11"
684
689
  source = "registry+https://github.com/rust-lang/crates.io-index"
685
- checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
690
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
686
691
  dependencies = [
687
692
  "darling_core",
688
693
  "quote",
689
694
  "syn",
690
695
  ]
691
696
 
692
- [[package]]
693
- name = "dashmap"
694
- version = "5.5.3"
695
- source = "registry+https://github.com/rust-lang/crates.io-index"
696
- checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
697
- dependencies = [
698
- "cfg-if",
699
- "hashbrown 0.14.5",
700
- "lock_api",
701
- "once_cell",
702
- "parking_lot_core",
703
- ]
704
-
705
697
  [[package]]
706
698
  name = "dashmap"
707
699
  version = "6.1.0"
@@ -724,18 +716,18 @@ checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
724
716
 
725
717
  [[package]]
726
718
  name = "deranged"
727
- version = "0.3.11"
719
+ version = "0.4.0"
728
720
  source = "registry+https://github.com/rust-lang/crates.io-index"
729
- checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
721
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
730
722
  dependencies = [
731
723
  "powerfmt",
732
724
  ]
733
725
 
734
726
  [[package]]
735
727
  name = "derive_arbitrary"
736
- version = "1.3.2"
728
+ version = "1.4.1"
737
729
  source = "registry+https://github.com/rust-lang/crates.io-index"
738
- checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
730
+ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
739
731
  dependencies = [
740
732
  "proc-macro2",
741
733
  "quote",
@@ -818,9 +810,9 @@ dependencies = [
818
810
 
819
811
  [[package]]
820
812
  name = "dissimilar"
821
- version = "1.0.9"
813
+ version = "1.0.10"
822
814
  source = "registry+https://github.com/rust-lang/crates.io-index"
823
- checksum = "59f8e79d1fbf76bdfbde321e902714bf6c49df88a7dda6fc682fc2979226962d"
815
+ checksum = "8975ffdaa0ef3661bfe02dbdcc06c9f829dfafe6a3c474de366a8d5e44276921"
824
816
 
825
817
  [[package]]
826
818
  name = "downcast"
@@ -830,9 +822,9 @@ checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
830
822
 
831
823
  [[package]]
832
824
  name = "either"
833
- version = "1.13.0"
825
+ version = "1.15.0"
834
826
  source = "registry+https://github.com/rust-lang/crates.io-index"
835
- checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
827
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
836
828
 
837
829
  [[package]]
838
830
  name = "enum-iterator"
@@ -868,15 +860,15 @@ dependencies = [
868
860
 
869
861
  [[package]]
870
862
  name = "equivalent"
871
- version = "1.0.1"
863
+ version = "1.0.2"
872
864
  source = "registry+https://github.com/rust-lang/crates.io-index"
873
- checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
865
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
874
866
 
875
867
  [[package]]
876
868
  name = "erased-serde"
877
- version = "0.4.5"
869
+ version = "0.4.6"
878
870
  source = "registry+https://github.com/rust-lang/crates.io-index"
879
- checksum = "24e2389d65ab4fab27dc2a5de7b191e1f6617d1f1c8855c0dc569c94a4cbb18d"
871
+ checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7"
880
872
  dependencies = [
881
873
  "serde",
882
874
  "typeid",
@@ -884,19 +876,19 @@ dependencies = [
884
876
 
885
877
  [[package]]
886
878
  name = "errno"
887
- version = "0.3.9"
879
+ version = "0.3.11"
888
880
  source = "registry+https://github.com/rust-lang/crates.io-index"
889
- checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
881
+ checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
890
882
  dependencies = [
891
883
  "libc",
892
- "windows-sys 0.52.0",
884
+ "windows-sys 0.59.0",
893
885
  ]
894
886
 
895
887
  [[package]]
896
888
  name = "fastrand"
897
- version = "2.1.1"
889
+ version = "2.3.0"
898
890
  source = "registry+https://github.com/rust-lang/crates.io-index"
899
- checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
891
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
900
892
 
901
893
  [[package]]
902
894
  name = "filetime"
@@ -912,15 +904,15 @@ dependencies = [
912
904
 
913
905
  [[package]]
914
906
  name = "fixedbitset"
915
- version = "0.4.2"
907
+ version = "0.5.7"
916
908
  source = "registry+https://github.com/rust-lang/crates.io-index"
917
- checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
909
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
918
910
 
919
911
  [[package]]
920
912
  name = "flate2"
921
- version = "1.0.34"
913
+ version = "1.1.1"
922
914
  source = "registry+https://github.com/rust-lang/crates.io-index"
923
- checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
915
+ checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
924
916
  dependencies = [
925
917
  "crc32fast",
926
918
  "miniz_oxide",
@@ -934,9 +926,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
934
926
 
935
927
  [[package]]
936
928
  name = "foldhash"
937
- version = "0.1.3"
929
+ version = "0.1.5"
938
930
  source = "registry+https://github.com/rust-lang/crates.io-index"
939
- checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2"
931
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
940
932
 
941
933
  [[package]]
942
934
  name = "form_urlencoded"
@@ -949,9 +941,9 @@ dependencies = [
949
941
 
950
942
  [[package]]
951
943
  name = "fragile"
952
- version = "2.0.0"
944
+ version = "2.0.1"
953
945
  source = "registry+https://github.com/rust-lang/crates.io-index"
954
- checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
946
+ checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619"
955
947
 
956
948
  [[package]]
957
949
  name = "futures"
@@ -1076,8 +1068,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
1068
  checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
1077
1069
  dependencies = [
1078
1070
  "cfg-if",
1071
+ "js-sys",
1072
+ "libc",
1073
+ "wasi 0.11.0+wasi-snapshot-preview1",
1074
+ "wasm-bindgen",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "getrandom"
1079
+ version = "0.3.2"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
1082
+ dependencies = [
1083
+ "cfg-if",
1084
+ "js-sys",
1079
1085
  "libc",
1080
- "wasi",
1086
+ "r-efi",
1087
+ "wasi 0.14.2+wasi-0.2.4",
1088
+ "wasm-bindgen",
1081
1089
  ]
1082
1090
 
1083
1091
  [[package]]
@@ -1088,35 +1096,38 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1088
1096
 
1089
1097
  [[package]]
1090
1098
  name = "glob"
1091
- version = "0.3.1"
1099
+ version = "0.3.2"
1092
1100
  source = "registry+https://github.com/rust-lang/crates.io-index"
1093
- checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
1101
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1094
1102
 
1095
1103
  [[package]]
1096
1104
  name = "governor"
1097
- version = "0.6.3"
1105
+ version = "0.8.1"
1098
1106
  source = "registry+https://github.com/rust-lang/crates.io-index"
1099
- checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b"
1107
+ checksum = "be93b4ec2e4710b04d9264c0c7350cdd62a8c20e5e4ac732552ebb8f0debe8eb"
1100
1108
  dependencies = [
1101
1109
  "cfg-if",
1102
- "dashmap 5.5.3",
1103
- "futures",
1110
+ "dashmap",
1111
+ "futures-sink",
1104
1112
  "futures-timer",
1113
+ "futures-util",
1114
+ "getrandom 0.3.2",
1105
1115
  "no-std-compat",
1106
1116
  "nonzero_ext",
1107
1117
  "parking_lot",
1108
1118
  "portable-atomic",
1109
1119
  "quanta",
1110
- "rand",
1120
+ "rand 0.9.0",
1111
1121
  "smallvec",
1112
1122
  "spinning_top",
1123
+ "web-time",
1113
1124
  ]
1114
1125
 
1115
1126
  [[package]]
1116
1127
  name = "h2"
1117
- version = "0.4.6"
1128
+ version = "0.4.9"
1118
1129
  source = "registry+https://github.com/rust-lang/crates.io-index"
1119
- checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205"
1130
+ checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
1120
1131
  dependencies = [
1121
1132
  "atomic-waker",
1122
1133
  "bytes",
@@ -1124,7 +1135,7 @@ dependencies = [
1124
1135
  "futures-core",
1125
1136
  "futures-sink",
1126
1137
  "http",
1127
- "indexmap 2.6.0",
1138
+ "indexmap 2.9.0",
1128
1139
  "slab",
1129
1140
  "tokio",
1130
1141
  "tokio-util",
@@ -1133,9 +1144,9 @@ dependencies = [
1133
1144
 
1134
1145
  [[package]]
1135
1146
  name = "half"
1136
- version = "2.4.1"
1147
+ version = "2.6.0"
1137
1148
  source = "registry+https://github.com/rust-lang/crates.io-index"
1138
- checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
1149
+ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
1139
1150
  dependencies = [
1140
1151
  "cfg-if",
1141
1152
  "crunchy",
@@ -1155,9 +1166,9 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1155
1166
 
1156
1167
  [[package]]
1157
1168
  name = "hashbrown"
1158
- version = "0.15.0"
1169
+ version = "0.15.2"
1159
1170
  source = "registry+https://github.com/rust-lang/crates.io-index"
1160
- checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
1171
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1161
1172
  dependencies = [
1162
1173
  "allocator-api2",
1163
1174
  "equivalent",
@@ -1185,15 +1196,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1185
1196
 
1186
1197
  [[package]]
1187
1198
  name = "hermit-abi"
1188
- version = "0.3.9"
1189
- source = "registry+https://github.com/rust-lang/crates.io-index"
1190
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1191
-
1192
- [[package]]
1193
- name = "hermit-abi"
1194
- version = "0.4.0"
1199
+ version = "0.5.0"
1195
1200
  source = "registry+https://github.com/rust-lang/crates.io-index"
1196
- checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
1201
+ checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e"
1197
1202
 
1198
1203
  [[package]]
1199
1204
  name = "hmac"
@@ -1206,9 +1211,9 @@ dependencies = [
1206
1211
 
1207
1212
  [[package]]
1208
1213
  name = "http"
1209
- version = "1.1.0"
1214
+ version = "1.3.1"
1210
1215
  source = "registry+https://github.com/rust-lang/crates.io-index"
1211
- checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
1216
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1212
1217
  dependencies = [
1213
1218
  "bytes",
1214
1219
  "fnv",
@@ -1227,12 +1232,12 @@ dependencies = [
1227
1232
 
1228
1233
  [[package]]
1229
1234
  name = "http-body-util"
1230
- version = "0.1.2"
1235
+ version = "0.1.3"
1231
1236
  source = "registry+https://github.com/rust-lang/crates.io-index"
1232
- checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
1237
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1233
1238
  dependencies = [
1234
1239
  "bytes",
1235
- "futures-util",
1240
+ "futures-core",
1236
1241
  "http",
1237
1242
  "http-body",
1238
1243
  "pin-project-lite",
@@ -1240,9 +1245,9 @@ dependencies = [
1240
1245
 
1241
1246
  [[package]]
1242
1247
  name = "httparse"
1243
- version = "1.9.5"
1248
+ version = "1.10.1"
1244
1249
  source = "registry+https://github.com/rust-lang/crates.io-index"
1245
- checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
1250
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1246
1251
 
1247
1252
  [[package]]
1248
1253
  name = "httpdate"
@@ -1252,15 +1257,15 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1252
1257
 
1253
1258
  [[package]]
1254
1259
  name = "humantime"
1255
- version = "2.1.0"
1260
+ version = "2.2.0"
1256
1261
  source = "registry+https://github.com/rust-lang/crates.io-index"
1257
- checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
1262
+ checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
1258
1263
 
1259
1264
  [[package]]
1260
1265
  name = "hyper"
1261
- version = "1.5.0"
1266
+ version = "1.6.0"
1262
1267
  source = "registry+https://github.com/rust-lang/crates.io-index"
1263
- checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a"
1268
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1264
1269
  dependencies = [
1265
1270
  "bytes",
1266
1271
  "futures-channel",
@@ -1279,9 +1284,9 @@ dependencies = [
1279
1284
 
1280
1285
  [[package]]
1281
1286
  name = "hyper-rustls"
1282
- version = "0.27.3"
1287
+ version = "0.27.5"
1283
1288
  source = "registry+https://github.com/rust-lang/crates.io-index"
1284
- checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
1289
+ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1285
1290
  dependencies = [
1286
1291
  "futures-util",
1287
1292
  "http",
@@ -1297,9 +1302,9 @@ dependencies = [
1297
1302
 
1298
1303
  [[package]]
1299
1304
  name = "hyper-timeout"
1300
- version = "0.5.1"
1305
+ version = "0.5.2"
1301
1306
  source = "registry+https://github.com/rust-lang/crates.io-index"
1302
- checksum = "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793"
1307
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1303
1308
  dependencies = [
1304
1309
  "hyper",
1305
1310
  "hyper-util",
@@ -1310,9 +1315,9 @@ dependencies = [
1310
1315
 
1311
1316
  [[package]]
1312
1317
  name = "hyper-util"
1313
- version = "0.1.9"
1318
+ version = "0.1.11"
1314
1319
  source = "registry+https://github.com/rust-lang/crates.io-index"
1315
- checksum = "41296eb09f183ac68eec06e03cdbea2e759633d4067b2f6552fc2e009bcad08b"
1320
+ checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
1316
1321
  dependencies = [
1317
1322
  "bytes",
1318
1323
  "futures-channel",
@@ -1320,6 +1325,7 @@ dependencies = [
1320
1325
  "http",
1321
1326
  "http-body",
1322
1327
  "hyper",
1328
+ "libc",
1323
1329
  "pin-project-lite",
1324
1330
  "socket2",
1325
1331
  "tokio",
@@ -1327,6 +1333,124 @@ dependencies = [
1327
1333
  "tracing",
1328
1334
  ]
1329
1335
 
1336
+ [[package]]
1337
+ name = "icu_collections"
1338
+ version = "1.5.0"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1341
+ dependencies = [
1342
+ "displaydoc",
1343
+ "yoke",
1344
+ "zerofrom",
1345
+ "zerovec",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "icu_locid"
1350
+ version = "1.5.0"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1353
+ dependencies = [
1354
+ "displaydoc",
1355
+ "litemap",
1356
+ "tinystr",
1357
+ "writeable",
1358
+ "zerovec",
1359
+ ]
1360
+
1361
+ [[package]]
1362
+ name = "icu_locid_transform"
1363
+ version = "1.5.0"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1366
+ dependencies = [
1367
+ "displaydoc",
1368
+ "icu_locid",
1369
+ "icu_locid_transform_data",
1370
+ "icu_provider",
1371
+ "tinystr",
1372
+ "zerovec",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "icu_locid_transform_data"
1377
+ version = "1.5.1"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
1380
+
1381
+ [[package]]
1382
+ name = "icu_normalizer"
1383
+ version = "1.5.0"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1386
+ dependencies = [
1387
+ "displaydoc",
1388
+ "icu_collections",
1389
+ "icu_normalizer_data",
1390
+ "icu_properties",
1391
+ "icu_provider",
1392
+ "smallvec",
1393
+ "utf16_iter",
1394
+ "utf8_iter",
1395
+ "write16",
1396
+ "zerovec",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "icu_normalizer_data"
1401
+ version = "1.5.1"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1404
+
1405
+ [[package]]
1406
+ name = "icu_properties"
1407
+ version = "1.5.1"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1410
+ dependencies = [
1411
+ "displaydoc",
1412
+ "icu_collections",
1413
+ "icu_locid_transform",
1414
+ "icu_properties_data",
1415
+ "icu_provider",
1416
+ "tinystr",
1417
+ "zerovec",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "icu_properties_data"
1422
+ version = "1.5.1"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1425
+
1426
+ [[package]]
1427
+ name = "icu_provider"
1428
+ version = "1.5.0"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1431
+ dependencies = [
1432
+ "displaydoc",
1433
+ "icu_locid",
1434
+ "icu_provider_macros",
1435
+ "stable_deref_trait",
1436
+ "tinystr",
1437
+ "writeable",
1438
+ "yoke",
1439
+ "zerofrom",
1440
+ "zerovec",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "icu_provider_macros"
1445
+ version = "1.5.0"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1448
+ dependencies = [
1449
+ "proc-macro2",
1450
+ "quote",
1451
+ "syn",
1452
+ ]
1453
+
1330
1454
  [[package]]
1331
1455
  name = "ident_case"
1332
1456
  version = "1.0.1"
@@ -1335,12 +1459,23 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1335
1459
 
1336
1460
  [[package]]
1337
1461
  name = "idna"
1338
- version = "0.5.0"
1462
+ version = "1.0.3"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1465
+ dependencies = [
1466
+ "idna_adapter",
1467
+ "smallvec",
1468
+ "utf8_iter",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "idna_adapter"
1473
+ version = "1.2.0"
1339
1474
  source = "registry+https://github.com/rust-lang/crates.io-index"
1340
- checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
1475
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1341
1476
  dependencies = [
1342
- "unicode-bidi",
1343
- "unicode-normalization",
1477
+ "icu_normalizer",
1478
+ "icu_properties",
1344
1479
  ]
1345
1480
 
1346
1481
  [[package]]
@@ -1355,19 +1490,19 @@ dependencies = [
1355
1490
 
1356
1491
  [[package]]
1357
1492
  name = "indexmap"
1358
- version = "2.6.0"
1493
+ version = "2.9.0"
1359
1494
  source = "registry+https://github.com/rust-lang/crates.io-index"
1360
- checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
1495
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1361
1496
  dependencies = [
1362
1497
  "equivalent",
1363
- "hashbrown 0.15.0",
1498
+ "hashbrown 0.15.2",
1364
1499
  ]
1365
1500
 
1366
1501
  [[package]]
1367
1502
  name = "inout"
1368
- version = "0.1.3"
1503
+ version = "0.1.4"
1369
1504
  source = "registry+https://github.com/rust-lang/crates.io-index"
1370
- checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
1505
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1371
1506
  dependencies = [
1372
1507
  "generic-array",
1373
1508
  ]
@@ -1383,25 +1518,28 @@ dependencies = [
1383
1518
 
1384
1519
  [[package]]
1385
1520
  name = "inventory"
1386
- version = "0.3.15"
1521
+ version = "0.3.20"
1387
1522
  source = "registry+https://github.com/rust-lang/crates.io-index"
1388
- checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
1523
+ checksum = "ab08d7cd2c5897f2c949e5383ea7c7db03fb19130ffcfbf7eda795137ae3cb83"
1524
+ dependencies = [
1525
+ "rustversion",
1526
+ ]
1389
1527
 
1390
1528
  [[package]]
1391
1529
  name = "ipnet"
1392
- version = "2.10.1"
1530
+ version = "2.11.0"
1393
1531
  source = "registry+https://github.com/rust-lang/crates.io-index"
1394
- checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
1532
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1395
1533
 
1396
1534
  [[package]]
1397
1535
  name = "is-terminal"
1398
- version = "0.4.13"
1536
+ version = "0.4.16"
1399
1537
  source = "registry+https://github.com/rust-lang/crates.io-index"
1400
- checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
1538
+ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
1401
1539
  dependencies = [
1402
- "hermit-abi 0.4.0",
1540
+ "hermit-abi",
1403
1541
  "libc",
1404
- "windows-sys 0.52.0",
1542
+ "windows-sys 0.59.0",
1405
1543
  ]
1406
1544
 
1407
1545
  [[package]]
@@ -1430,34 +1568,36 @@ dependencies = [
1430
1568
 
1431
1569
  [[package]]
1432
1570
  name = "itertools"
1433
- version = "0.13.0"
1571
+ version = "0.14.0"
1434
1572
  source = "registry+https://github.com/rust-lang/crates.io-index"
1435
- checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1573
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1436
1574
  dependencies = [
1437
1575
  "either",
1438
1576
  ]
1439
1577
 
1440
1578
  [[package]]
1441
1579
  name = "itoa"
1442
- version = "1.0.11"
1580
+ version = "1.0.15"
1443
1581
  source = "registry+https://github.com/rust-lang/crates.io-index"
1444
- checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
1582
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1445
1583
 
1446
1584
  [[package]]
1447
1585
  name = "jobserver"
1448
- version = "0.1.32"
1586
+ version = "0.1.33"
1449
1587
  source = "registry+https://github.com/rust-lang/crates.io-index"
1450
- checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1588
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1451
1589
  dependencies = [
1590
+ "getrandom 0.3.2",
1452
1591
  "libc",
1453
1592
  ]
1454
1593
 
1455
1594
  [[package]]
1456
1595
  name = "js-sys"
1457
- version = "0.3.72"
1596
+ version = "0.3.77"
1458
1597
  source = "registry+https://github.com/rust-lang/crates.io-index"
1459
- checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
1598
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1460
1599
  dependencies = [
1600
+ "once_cell",
1461
1601
  "wasm-bindgen",
1462
1602
  ]
1463
1603
 
@@ -1475,18 +1615,18 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1475
1615
 
1476
1616
  [[package]]
1477
1617
  name = "libc"
1478
- version = "0.2.160"
1618
+ version = "0.2.172"
1479
1619
  source = "registry+https://github.com/rust-lang/crates.io-index"
1480
- checksum = "f0b21006cd1874ae9e650973c565615676dc4a274c965bb0a73796dac838ce4f"
1620
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1481
1621
 
1482
1622
  [[package]]
1483
1623
  name = "libloading"
1484
- version = "0.8.5"
1624
+ version = "0.8.6"
1485
1625
  source = "registry+https://github.com/rust-lang/crates.io-index"
1486
- checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
1626
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1487
1627
  dependencies = [
1488
1628
  "cfg-if",
1489
- "windows-targets",
1629
+ "windows-targets 0.52.6",
1490
1630
  ]
1491
1631
 
1492
1632
  [[package]]
@@ -1502,9 +1642,15 @@ dependencies = [
1502
1642
 
1503
1643
  [[package]]
1504
1644
  name = "linux-raw-sys"
1505
- version = "0.4.14"
1645
+ version = "0.9.4"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1648
+
1649
+ [[package]]
1650
+ name = "litemap"
1651
+ version = "0.7.5"
1506
1652
  source = "registry+https://github.com/rust-lang/crates.io-index"
1507
- checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
1653
+ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
1508
1654
 
1509
1655
  [[package]]
1510
1656
  name = "lock_api"
@@ -1524,17 +1670,17 @@ checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
1524
1670
 
1525
1671
  [[package]]
1526
1672
  name = "log"
1527
- version = "0.4.22"
1673
+ version = "0.4.27"
1528
1674
  source = "registry+https://github.com/rust-lang/crates.io-index"
1529
- checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
1675
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1530
1676
 
1531
1677
  [[package]]
1532
1678
  name = "lru"
1533
- version = "0.12.5"
1679
+ version = "0.13.0"
1534
1680
  source = "registry+https://github.com/rust-lang/crates.io-index"
1535
- checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
1681
+ checksum = "227748d55f2f0ab4735d87fd623798cb6b664512fe979705f829c9f81c934465"
1536
1682
  dependencies = [
1537
- "hashbrown 0.15.0",
1683
+ "hashbrown 0.15.2",
1538
1684
  ]
1539
1685
 
1540
1686
  [[package]]
@@ -1547,6 +1693,17 @@ dependencies = [
1547
1693
  "crc",
1548
1694
  ]
1549
1695
 
1696
+ [[package]]
1697
+ name = "lzma-sys"
1698
+ version = "0.1.20"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
1701
+ dependencies = [
1702
+ "cc",
1703
+ "libc",
1704
+ "pkg-config",
1705
+ ]
1706
+
1550
1707
  [[package]]
1551
1708
  name = "magnus"
1552
1709
  version = "0.7.1"
@@ -1605,30 +1762,29 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1605
1762
 
1606
1763
  [[package]]
1607
1764
  name = "miniz_oxide"
1608
- version = "0.8.0"
1765
+ version = "0.8.8"
1609
1766
  source = "registry+https://github.com/rust-lang/crates.io-index"
1610
- checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
1767
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1611
1768
  dependencies = [
1612
1769
  "adler2",
1613
1770
  ]
1614
1771
 
1615
1772
  [[package]]
1616
1773
  name = "mio"
1617
- version = "1.0.2"
1774
+ version = "1.0.3"
1618
1775
  source = "registry+https://github.com/rust-lang/crates.io-index"
1619
- checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
1776
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1620
1777
  dependencies = [
1621
- "hermit-abi 0.3.9",
1622
1778
  "libc",
1623
- "wasi",
1779
+ "wasi 0.11.0+wasi-snapshot-preview1",
1624
1780
  "windows-sys 0.52.0",
1625
1781
  ]
1626
1782
 
1627
1783
  [[package]]
1628
1784
  name = "mockall"
1629
- version = "0.13.0"
1785
+ version = "0.13.1"
1630
1786
  source = "registry+https://github.com/rust-lang/crates.io-index"
1631
- checksum = "d4c28b3fb6d753d28c20e826cd46ee611fda1cf3cde03a443a974043247c065a"
1787
+ checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2"
1632
1788
  dependencies = [
1633
1789
  "cfg-if",
1634
1790
  "downcast",
@@ -1640,9 +1796,9 @@ dependencies = [
1640
1796
 
1641
1797
  [[package]]
1642
1798
  name = "mockall_derive"
1643
- version = "0.13.0"
1799
+ version = "0.13.1"
1644
1800
  source = "registry+https://github.com/rust-lang/crates.io-index"
1645
- checksum = "341014e7f530314e9a1fdbc7400b244efea7122662c96bfa248c31da5bfb2020"
1801
+ checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898"
1646
1802
  dependencies = [
1647
1803
  "cfg-if",
1648
1804
  "proc-macro2",
@@ -1714,59 +1870,74 @@ dependencies = [
1714
1870
 
1715
1871
  [[package]]
1716
1872
  name = "object"
1717
- version = "0.36.5"
1873
+ version = "0.36.7"
1718
1874
  source = "registry+https://github.com/rust-lang/crates.io-index"
1719
- checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
1875
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1720
1876
  dependencies = [
1721
1877
  "memchr",
1722
1878
  ]
1723
1879
 
1724
1880
  [[package]]
1725
1881
  name = "once_cell"
1726
- version = "1.20.2"
1882
+ version = "1.21.3"
1727
1883
  source = "registry+https://github.com/rust-lang/crates.io-index"
1728
- checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
1884
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1729
1885
 
1730
1886
  [[package]]
1731
1887
  name = "oorandom"
1732
- version = "11.1.4"
1888
+ version = "11.1.5"
1733
1889
  source = "registry+https://github.com/rust-lang/crates.io-index"
1734
- checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
1890
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1735
1891
 
1736
1892
  [[package]]
1737
1893
  name = "openssl-probe"
1738
- version = "0.1.5"
1894
+ version = "0.1.6"
1739
1895
  source = "registry+https://github.com/rust-lang/crates.io-index"
1740
- checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1896
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1741
1897
 
1742
1898
  [[package]]
1743
1899
  name = "opentelemetry"
1744
- version = "0.24.0"
1900
+ version = "0.26.0"
1745
1901
  source = "registry+https://github.com/rust-lang/crates.io-index"
1746
- checksum = "4c365a63eec4f55b7efeceb724f1336f26a9cf3427b70e59e2cd2a5b947fba96"
1902
+ checksum = "570074cc999d1a58184080966e5bd3bf3a9a4af650c3b05047c2621e7405cd17"
1747
1903
  dependencies = [
1748
1904
  "futures-core",
1749
1905
  "futures-sink",
1750
1906
  "js-sys",
1751
1907
  "once_cell",
1752
1908
  "pin-project-lite",
1753
- "thiserror",
1909
+ "thiserror 1.0.69",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "opentelemetry-http"
1914
+ version = "0.26.0"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "6351496aeaa49d7c267fb480678d85d1cd30c5edb20b497c48c56f62a8c14b99"
1917
+ dependencies = [
1918
+ "async-trait",
1919
+ "bytes",
1920
+ "http",
1921
+ "opentelemetry",
1922
+ "reqwest",
1754
1923
  ]
1755
1924
 
1756
1925
  [[package]]
1757
1926
  name = "opentelemetry-otlp"
1758
- version = "0.17.0"
1927
+ version = "0.26.0"
1759
1928
  source = "registry+https://github.com/rust-lang/crates.io-index"
1760
- checksum = "6b925a602ffb916fb7421276b86756027b37ee708f9dce2dbdcc51739f07e727"
1929
+ checksum = "29e1f9c8b032d4f635c730c0efcf731d5e2530ea13fa8bef7939ddc8420696bd"
1761
1930
  dependencies = [
1762
1931
  "async-trait",
1763
1932
  "futures-core",
1764
1933
  "http",
1765
1934
  "opentelemetry",
1935
+ "opentelemetry-http",
1766
1936
  "opentelemetry-proto",
1767
1937
  "opentelemetry_sdk",
1768
1938
  "prost",
1769
- "thiserror",
1939
+ "reqwest",
1940
+ "thiserror 1.0.69",
1770
1941
  "tokio",
1771
1942
  "tonic",
1772
1943
  ]
@@ -1774,8 +1945,7 @@ dependencies = [
1774
1945
  [[package]]
1775
1946
  name = "opentelemetry-prometheus"
1776
1947
  version = "0.17.0"
1777
- source = "registry+https://github.com/rust-lang/crates.io-index"
1778
- checksum = "cc4191ce34aa274621861a7a9d68dbcf618d5b6c66b10081631b61fd81fbc015"
1948
+ source = "git+https://github.com/open-telemetry/opentelemetry-rust.git?rev=e911383#e91138351a689cd21923c15eb48f5fbc95ded807"
1779
1949
  dependencies = [
1780
1950
  "once_cell",
1781
1951
  "opentelemetry",
@@ -1786,9 +1956,9 @@ dependencies = [
1786
1956
 
1787
1957
  [[package]]
1788
1958
  name = "opentelemetry-proto"
1789
- version = "0.7.0"
1959
+ version = "0.26.1"
1790
1960
  source = "registry+https://github.com/rust-lang/crates.io-index"
1791
- checksum = "30ee9f20bff9c984511a02f082dc8ede839e4a9bf15cc2487c8d6fea5ad850d9"
1961
+ checksum = "c9d3968ce3aefdcca5c27e3c4ea4391b37547726a70893aab52d3de95d5f8b34"
1792
1962
  dependencies = [
1793
1963
  "opentelemetry",
1794
1964
  "opentelemetry_sdk",
@@ -1798,9 +1968,9 @@ dependencies = [
1798
1968
 
1799
1969
  [[package]]
1800
1970
  name = "opentelemetry_sdk"
1801
- version = "0.24.1"
1971
+ version = "0.26.0"
1802
1972
  source = "registry+https://github.com/rust-lang/crates.io-index"
1803
- checksum = "692eac490ec80f24a17828d49b40b60f5aeaccdfe6a503f939713afd22bc28df"
1973
+ checksum = "d2c627d9f4c9cdc1f21a29ee4bfbd6028fcb8bcf2a857b43f3abdf72c9c862f3"
1804
1974
  dependencies = [
1805
1975
  "async-trait",
1806
1976
  "futures-channel",
@@ -1810,9 +1980,9 @@ dependencies = [
1810
1980
  "once_cell",
1811
1981
  "opentelemetry",
1812
1982
  "percent-encoding",
1813
- "rand",
1983
+ "rand 0.8.5",
1814
1984
  "serde_json",
1815
- "thiserror",
1985
+ "thiserror 1.0.69",
1816
1986
  "tokio",
1817
1987
  "tokio-stream",
1818
1988
  ]
@@ -1843,15 +2013,9 @@ dependencies = [
1843
2013
  "libc",
1844
2014
  "redox_syscall",
1845
2015
  "smallvec",
1846
- "windows-targets",
2016
+ "windows-targets 0.52.6",
1847
2017
  ]
1848
2018
 
1849
- [[package]]
1850
- name = "paste"
1851
- version = "1.0.15"
1852
- source = "registry+https://github.com/rust-lang/crates.io-index"
1853
- checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1854
-
1855
2019
  [[package]]
1856
2020
  name = "pbkdf2"
1857
2021
  version = "0.12.2"
@@ -1870,12 +2034,12 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1870
2034
 
1871
2035
  [[package]]
1872
2036
  name = "petgraph"
1873
- version = "0.6.5"
2037
+ version = "0.7.1"
1874
2038
  source = "registry+https://github.com/rust-lang/crates.io-index"
1875
- checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
2039
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
1876
2040
  dependencies = [
1877
2041
  "fixedbitset",
1878
- "indexmap 2.6.0",
2042
+ "indexmap 2.9.0",
1879
2043
  ]
1880
2044
 
1881
2045
  [[package]]
@@ -1889,18 +2053,18 @@ dependencies = [
1889
2053
 
1890
2054
  [[package]]
1891
2055
  name = "pin-project"
1892
- version = "1.1.6"
2056
+ version = "1.1.10"
1893
2057
  source = "registry+https://github.com/rust-lang/crates.io-index"
1894
- checksum = "baf123a161dde1e524adf36f90bc5d8d3462824a9c43553ad07a8183161189ec"
2058
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1895
2059
  dependencies = [
1896
2060
  "pin-project-internal",
1897
2061
  ]
1898
2062
 
1899
2063
  [[package]]
1900
2064
  name = "pin-project-internal"
1901
- version = "1.1.6"
2065
+ version = "1.1.10"
1902
2066
  source = "registry+https://github.com/rust-lang/crates.io-index"
1903
- checksum = "a4502d8515ca9f32f1fb543d987f63d95a14934883db45bdb48060b6b69257f8"
2067
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1904
2068
  dependencies = [
1905
2069
  "proc-macro2",
1906
2070
  "quote",
@@ -1909,9 +2073,9 @@ dependencies = [
1909
2073
 
1910
2074
  [[package]]
1911
2075
  name = "pin-project-lite"
1912
- version = "0.2.14"
2076
+ version = "0.2.16"
1913
2077
  source = "registry+https://github.com/rust-lang/crates.io-index"
1914
- checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2078
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1915
2079
 
1916
2080
  [[package]]
1917
2081
  name = "pin-utils"
@@ -1921,9 +2085,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1921
2085
 
1922
2086
  [[package]]
1923
2087
  name = "pkg-config"
1924
- version = "0.3.31"
2088
+ version = "0.3.32"
1925
2089
  source = "registry+https://github.com/rust-lang/crates.io-index"
1926
- checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
2090
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1927
2091
 
1928
2092
  [[package]]
1929
2093
  name = "plotters"
@@ -1955,9 +2119,18 @@ dependencies = [
1955
2119
 
1956
2120
  [[package]]
1957
2121
  name = "portable-atomic"
1958
- version = "1.9.0"
2122
+ version = "1.11.0"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2125
+
2126
+ [[package]]
2127
+ name = "portable-atomic-util"
2128
+ version = "0.2.4"
1959
2129
  source = "registry+https://github.com/rust-lang/crates.io-index"
1960
- checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
2130
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2131
+ dependencies = [
2132
+ "portable-atomic",
2133
+ ]
1961
2134
 
1962
2135
  [[package]]
1963
2136
  name = "powerfmt"
@@ -1967,18 +2140,18 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1967
2140
 
1968
2141
  [[package]]
1969
2142
  name = "ppv-lite86"
1970
- version = "0.2.20"
2143
+ version = "0.2.21"
1971
2144
  source = "registry+https://github.com/rust-lang/crates.io-index"
1972
- checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
2145
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1973
2146
  dependencies = [
1974
2147
  "zerocopy",
1975
2148
  ]
1976
2149
 
1977
2150
  [[package]]
1978
2151
  name = "predicates"
1979
- version = "3.1.2"
2152
+ version = "3.1.3"
1980
2153
  source = "registry+https://github.com/rust-lang/crates.io-index"
1981
- checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97"
2154
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
1982
2155
  dependencies = [
1983
2156
  "anstyle",
1984
2157
  "predicates-core",
@@ -1986,15 +2159,15 @@ dependencies = [
1986
2159
 
1987
2160
  [[package]]
1988
2161
  name = "predicates-core"
1989
- version = "1.0.8"
2162
+ version = "1.0.9"
1990
2163
  source = "registry+https://github.com/rust-lang/crates.io-index"
1991
- checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931"
2164
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
1992
2165
 
1993
2166
  [[package]]
1994
2167
  name = "predicates-tree"
1995
- version = "1.0.11"
2168
+ version = "1.0.12"
1996
2169
  source = "registry+https://github.com/rust-lang/crates.io-index"
1997
- checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13"
2170
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
1998
2171
  dependencies = [
1999
2172
  "predicates-core",
2000
2173
  "termtree",
@@ -2002,9 +2175,9 @@ dependencies = [
2002
2175
 
2003
2176
  [[package]]
2004
2177
  name = "prettyplease"
2005
- version = "0.2.22"
2178
+ version = "0.2.32"
2006
2179
  source = "registry+https://github.com/rust-lang/crates.io-index"
2007
- checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba"
2180
+ checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
2008
2181
  dependencies = [
2009
2182
  "proc-macro2",
2010
2183
  "syn",
@@ -2012,18 +2185,18 @@ dependencies = [
2012
2185
 
2013
2186
  [[package]]
2014
2187
  name = "proc-macro-crate"
2015
- version = "3.2.0"
2188
+ version = "3.3.0"
2016
2189
  source = "registry+https://github.com/rust-lang/crates.io-index"
2017
- checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b"
2190
+ checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
2018
2191
  dependencies = [
2019
2192
  "toml_edit",
2020
2193
  ]
2021
2194
 
2022
2195
  [[package]]
2023
2196
  name = "proc-macro2"
2024
- version = "1.0.88"
2197
+ version = "1.0.95"
2025
2198
  source = "registry+https://github.com/rust-lang/crates.io-index"
2026
- checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9"
2199
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2027
2200
  dependencies = [
2028
2201
  "unicode-ident",
2029
2202
  ]
@@ -2040,14 +2213,14 @@ dependencies = [
2040
2213
  "memchr",
2041
2214
  "parking_lot",
2042
2215
  "protobuf",
2043
- "thiserror",
2216
+ "thiserror 1.0.69",
2044
2217
  ]
2045
2218
 
2046
2219
  [[package]]
2047
2220
  name = "prost"
2048
- version = "0.13.3"
2221
+ version = "0.13.5"
2049
2222
  source = "registry+https://github.com/rust-lang/crates.io-index"
2050
- checksum = "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f"
2223
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
2051
2224
  dependencies = [
2052
2225
  "bytes",
2053
2226
  "prost-derive",
@@ -2055,13 +2228,12 @@ dependencies = [
2055
2228
 
2056
2229
  [[package]]
2057
2230
  name = "prost-build"
2058
- version = "0.13.3"
2231
+ version = "0.13.5"
2059
2232
  source = "registry+https://github.com/rust-lang/crates.io-index"
2060
- checksum = "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15"
2233
+ checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
2061
2234
  dependencies = [
2062
- "bytes",
2063
2235
  "heck",
2064
- "itertools 0.13.0",
2236
+ "itertools 0.14.0",
2065
2237
  "log",
2066
2238
  "multimap",
2067
2239
  "once_cell",
@@ -2076,12 +2248,12 @@ dependencies = [
2076
2248
 
2077
2249
  [[package]]
2078
2250
  name = "prost-derive"
2079
- version = "0.13.3"
2251
+ version = "0.13.5"
2080
2252
  source = "registry+https://github.com/rust-lang/crates.io-index"
2081
- checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5"
2253
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
2082
2254
  dependencies = [
2083
2255
  "anyhow",
2084
- "itertools 0.13.0",
2256
+ "itertools 0.14.0",
2085
2257
  "proc-macro2",
2086
2258
  "quote",
2087
2259
  "syn",
@@ -2089,9 +2261,9 @@ dependencies = [
2089
2261
 
2090
2262
  [[package]]
2091
2263
  name = "prost-types"
2092
- version = "0.13.3"
2264
+ version = "0.13.5"
2093
2265
  source = "registry+https://github.com/rust-lang/crates.io-index"
2094
- checksum = "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670"
2266
+ checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
2095
2267
  dependencies = [
2096
2268
  "prost",
2097
2269
  ]
@@ -2150,60 +2322,66 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2150
2322
 
2151
2323
  [[package]]
2152
2324
  name = "quanta"
2153
- version = "0.12.3"
2325
+ version = "0.12.5"
2154
2326
  source = "registry+https://github.com/rust-lang/crates.io-index"
2155
- checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5"
2327
+ checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e"
2156
2328
  dependencies = [
2157
2329
  "crossbeam-utils",
2158
2330
  "libc",
2159
2331
  "once_cell",
2160
2332
  "raw-cpuid",
2161
- "wasi",
2333
+ "wasi 0.11.0+wasi-snapshot-preview1",
2162
2334
  "web-sys",
2163
2335
  "winapi",
2164
2336
  ]
2165
2337
 
2166
2338
  [[package]]
2167
2339
  name = "quinn"
2168
- version = "0.11.5"
2340
+ version = "0.11.7"
2169
2341
  source = "registry+https://github.com/rust-lang/crates.io-index"
2170
- checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684"
2342
+ checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
2171
2343
  dependencies = [
2172
2344
  "bytes",
2345
+ "cfg_aliases",
2173
2346
  "pin-project-lite",
2174
2347
  "quinn-proto",
2175
2348
  "quinn-udp",
2176
- "rustc-hash 2.0.0",
2349
+ "rustc-hash 2.1.1",
2177
2350
  "rustls",
2178
2351
  "socket2",
2179
- "thiserror",
2352
+ "thiserror 2.0.12",
2180
2353
  "tokio",
2181
2354
  "tracing",
2355
+ "web-time",
2182
2356
  ]
2183
2357
 
2184
2358
  [[package]]
2185
2359
  name = "quinn-proto"
2186
- version = "0.11.8"
2360
+ version = "0.11.10"
2187
2361
  source = "registry+https://github.com/rust-lang/crates.io-index"
2188
- checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6"
2362
+ checksum = "b820744eb4dc9b57a3398183639c511b5a26d2ed702cedd3febaa1393caa22cc"
2189
2363
  dependencies = [
2190
2364
  "bytes",
2191
- "rand",
2365
+ "getrandom 0.3.2",
2366
+ "rand 0.9.0",
2192
2367
  "ring",
2193
- "rustc-hash 2.0.0",
2368
+ "rustc-hash 2.1.1",
2194
2369
  "rustls",
2370
+ "rustls-pki-types",
2195
2371
  "slab",
2196
- "thiserror",
2372
+ "thiserror 2.0.12",
2197
2373
  "tinyvec",
2198
2374
  "tracing",
2375
+ "web-time",
2199
2376
  ]
2200
2377
 
2201
2378
  [[package]]
2202
2379
  name = "quinn-udp"
2203
- version = "0.5.5"
2380
+ version = "0.5.11"
2204
2381
  source = "registry+https://github.com/rust-lang/crates.io-index"
2205
- checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b"
2382
+ checksum = "541d0f57c6ec747a90738a52741d3221f7960e8ac2f0ff4b1a63680e033b4ab5"
2206
2383
  dependencies = [
2384
+ "cfg_aliases",
2207
2385
  "libc",
2208
2386
  "once_cell",
2209
2387
  "socket2",
@@ -2213,13 +2391,19 @@ dependencies = [
2213
2391
 
2214
2392
  [[package]]
2215
2393
  name = "quote"
2216
- version = "1.0.37"
2394
+ version = "1.0.40"
2217
2395
  source = "registry+https://github.com/rust-lang/crates.io-index"
2218
- checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
2396
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2219
2397
  dependencies = [
2220
2398
  "proc-macro2",
2221
2399
  ]
2222
2400
 
2401
+ [[package]]
2402
+ name = "r-efi"
2403
+ version = "5.2.0"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2406
+
2223
2407
  [[package]]
2224
2408
  name = "rand"
2225
2409
  version = "0.8.5"
@@ -2227,8 +2411,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
2411
  checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2228
2412
  dependencies = [
2229
2413
  "libc",
2230
- "rand_chacha",
2231
- "rand_core",
2414
+ "rand_chacha 0.3.1",
2415
+ "rand_core 0.6.4",
2416
+ ]
2417
+
2418
+ [[package]]
2419
+ name = "rand"
2420
+ version = "0.9.0"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
2423
+ dependencies = [
2424
+ "rand_chacha 0.9.0",
2425
+ "rand_core 0.9.3",
2426
+ "zerocopy",
2232
2427
  ]
2233
2428
 
2234
2429
  [[package]]
@@ -2238,23 +2433,42 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
2433
  checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2239
2434
  dependencies = [
2240
2435
  "ppv-lite86",
2241
- "rand_core",
2436
+ "rand_core 0.6.4",
2242
2437
  ]
2243
2438
 
2244
2439
  [[package]]
2245
- name = "rand_core"
2440
+ name = "rand_chacha"
2441
+ version = "0.9.0"
2442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2443
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2444
+ dependencies = [
2445
+ "ppv-lite86",
2446
+ "rand_core 0.9.3",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "rand_core"
2246
2451
  version = "0.6.4"
2247
2452
  source = "registry+https://github.com/rust-lang/crates.io-index"
2248
2453
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2249
2454
  dependencies = [
2250
- "getrandom",
2455
+ "getrandom 0.2.15",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "rand_core"
2460
+ version = "0.9.3"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2463
+ dependencies = [
2464
+ "getrandom 0.3.2",
2251
2465
  ]
2252
2466
 
2253
2467
  [[package]]
2254
2468
  name = "raw-cpuid"
2255
- version = "11.2.0"
2469
+ version = "11.5.0"
2256
2470
  source = "registry+https://github.com/rust-lang/crates.io-index"
2257
- checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0"
2471
+ checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
2258
2472
  dependencies = [
2259
2473
  "bitflags",
2260
2474
  ]
@@ -2281,18 +2495,18 @@ dependencies = [
2281
2495
 
2282
2496
  [[package]]
2283
2497
  name = "rb-sys"
2284
- version = "0.9.102"
2498
+ version = "0.9.111"
2285
2499
  source = "registry+https://github.com/rust-lang/crates.io-index"
2286
- checksum = "df4dec4b1d304c3b308a2cd86b1216ea45dd4361f4e9fa056f108332d0a450c1"
2500
+ checksum = "becea799ce051c16fb140be80f5e7cf781070f99ca099332383c2b17861249af"
2287
2501
  dependencies = [
2288
2502
  "rb-sys-build",
2289
2503
  ]
2290
2504
 
2291
2505
  [[package]]
2292
2506
  name = "rb-sys-build"
2293
- version = "0.9.102"
2507
+ version = "0.9.111"
2294
2508
  source = "registry+https://github.com/rust-lang/crates.io-index"
2295
- checksum = "1d71de3e29d174b8fb17b5d4470f27d7aa2605f8a9d05fda0d3aeff30e05a570"
2509
+ checksum = "64691175abc704862f60a9ca8ef06174080cc50615f2bf1d4759f46db18b4d29"
2296
2510
  dependencies = [
2297
2511
  "bindgen",
2298
2512
  "lazy_static",
@@ -2311,22 +2525,22 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
2311
2525
 
2312
2526
  [[package]]
2313
2527
  name = "redox_syscall"
2314
- version = "0.5.7"
2528
+ version = "0.5.11"
2315
2529
  source = "registry+https://github.com/rust-lang/crates.io-index"
2316
- checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
2530
+ checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2317
2531
  dependencies = [
2318
2532
  "bitflags",
2319
2533
  ]
2320
2534
 
2321
2535
  [[package]]
2322
2536
  name = "regex"
2323
- version = "1.11.0"
2537
+ version = "1.11.1"
2324
2538
  source = "registry+https://github.com/rust-lang/crates.io-index"
2325
- checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8"
2539
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2326
2540
  dependencies = [
2327
2541
  "aho-corasick",
2328
2542
  "memchr",
2329
- "regex-automata 0.4.8",
2543
+ "regex-automata 0.4.9",
2330
2544
  "regex-syntax 0.8.5",
2331
2545
  ]
2332
2546
 
@@ -2341,9 +2555,9 @@ dependencies = [
2341
2555
 
2342
2556
  [[package]]
2343
2557
  name = "regex-automata"
2344
- version = "0.4.8"
2558
+ version = "0.4.9"
2345
2559
  source = "registry+https://github.com/rust-lang/crates.io-index"
2346
- checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
2560
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2347
2561
  dependencies = [
2348
2562
  "aho-corasick",
2349
2563
  "memchr",
@@ -2370,12 +2584,13 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2370
2584
 
2371
2585
  [[package]]
2372
2586
  name = "reqwest"
2373
- version = "0.12.8"
2587
+ version = "0.12.15"
2374
2588
  source = "registry+https://github.com/rust-lang/crates.io-index"
2375
- checksum = "f713147fbe92361e52392c73b8c9e48c04c6625bce969ef54dc901e58e042a7b"
2589
+ checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2376
2590
  dependencies = [
2377
2591
  "base64 0.22.1",
2378
2592
  "bytes",
2593
+ "futures-channel",
2379
2594
  "futures-core",
2380
2595
  "futures-util",
2381
2596
  "http",
@@ -2399,10 +2614,11 @@ dependencies = [
2399
2614
  "serde",
2400
2615
  "serde_json",
2401
2616
  "serde_urlencoded",
2402
- "sync_wrapper 1.0.1",
2617
+ "sync_wrapper",
2403
2618
  "tokio",
2404
2619
  "tokio-rustls",
2405
2620
  "tokio-util",
2621
+ "tower 0.5.2",
2406
2622
  "tower-service",
2407
2623
  "url",
2408
2624
  "wasm-bindgen",
@@ -2414,68 +2630,46 @@ dependencies = [
2414
2630
 
2415
2631
  [[package]]
2416
2632
  name = "ring"
2417
- version = "0.17.8"
2633
+ version = "0.17.14"
2418
2634
  source = "registry+https://github.com/rust-lang/crates.io-index"
2419
- checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2635
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2420
2636
  dependencies = [
2421
2637
  "cc",
2422
2638
  "cfg-if",
2423
- "getrandom",
2639
+ "getrandom 0.2.15",
2424
2640
  "libc",
2425
- "spin",
2426
2641
  "untrusted",
2427
2642
  "windows-sys 0.52.0",
2428
2643
  ]
2429
2644
 
2430
2645
  [[package]]
2431
2646
  name = "ringbuf"
2432
- version = "0.4.7"
2647
+ version = "0.4.8"
2433
2648
  source = "registry+https://github.com/rust-lang/crates.io-index"
2434
- checksum = "726bb493fe9cac765e8f96a144c3a8396bdf766dedad22e504b70b908dcbceb4"
2649
+ checksum = "fe47b720588c8702e34b5979cb3271a8b1842c7cb6f57408efa70c779363488c"
2435
2650
  dependencies = [
2436
2651
  "crossbeam-utils",
2437
2652
  "portable-atomic",
2438
- ]
2439
-
2440
- [[package]]
2441
- name = "rmp"
2442
- version = "0.8.14"
2443
- source = "registry+https://github.com/rust-lang/crates.io-index"
2444
- checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
2445
- dependencies = [
2446
- "byteorder",
2447
- "num-traits",
2448
- "paste",
2449
- ]
2450
-
2451
- [[package]]
2452
- name = "rmp-serde"
2453
- version = "1.3.0"
2454
- source = "registry+https://github.com/rust-lang/crates.io-index"
2455
- checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
2456
- dependencies = [
2457
- "byteorder",
2458
- "rmp",
2459
- "serde",
2653
+ "portable-atomic-util",
2460
2654
  ]
2461
2655
 
2462
2656
  [[package]]
2463
2657
  name = "rstest"
2464
- version = "0.22.0"
2658
+ version = "0.24.0"
2465
2659
  source = "registry+https://github.com/rust-lang/crates.io-index"
2466
- checksum = "7b423f0e62bdd61734b67cd21ff50871dfaeb9cc74f869dcd6af974fbcb19936"
2660
+ checksum = "03e905296805ab93e13c1ec3a03f4b6c4f35e9498a3d5fa96dc626d22c03cd89"
2467
2661
  dependencies = [
2468
- "futures",
2469
2662
  "futures-timer",
2663
+ "futures-util",
2470
2664
  "rstest_macros",
2471
2665
  "rustc_version",
2472
2666
  ]
2473
2667
 
2474
2668
  [[package]]
2475
2669
  name = "rstest_macros"
2476
- version = "0.22.0"
2670
+ version = "0.24.0"
2477
2671
  source = "registry+https://github.com/rust-lang/crates.io-index"
2478
- checksum = "c5e1711e7d14f74b12a58411c542185ef7fb7f2e7f8ee6e2940a883628522b42"
2672
+ checksum = "ef0053bbffce09062bee4bcc499b0fbe7a57b879f1efe088d6d8d4c7adcdef9b"
2479
2673
  dependencies = [
2480
2674
  "cfg-if",
2481
2675
  "glob",
@@ -2503,9 +2697,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2503
2697
 
2504
2698
  [[package]]
2505
2699
  name = "rustc-hash"
2506
- version = "2.0.0"
2700
+ version = "2.1.1"
2507
2701
  source = "registry+https://github.com/rust-lang/crates.io-index"
2508
- checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
2702
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2509
2703
 
2510
2704
  [[package]]
2511
2705
  name = "rustc_version"
@@ -2542,22 +2736,22 @@ version = "0.1.0"
2542
2736
 
2543
2737
  [[package]]
2544
2738
  name = "rustix"
2545
- version = "0.38.37"
2739
+ version = "1.0.5"
2546
2740
  source = "registry+https://github.com/rust-lang/crates.io-index"
2547
- checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
2741
+ checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
2548
2742
  dependencies = [
2549
2743
  "bitflags",
2550
2744
  "errno",
2551
2745
  "libc",
2552
2746
  "linux-raw-sys",
2553
- "windows-sys 0.52.0",
2747
+ "windows-sys 0.59.0",
2554
2748
  ]
2555
2749
 
2556
2750
  [[package]]
2557
2751
  name = "rustls"
2558
- version = "0.23.15"
2752
+ version = "0.23.26"
2559
2753
  source = "registry+https://github.com/rust-lang/crates.io-index"
2560
- checksum = "5fbb44d7acc4e873d613422379f69f237a1b141928c02f6bc6ccfddddc2d7993"
2754
+ checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
2561
2755
  dependencies = [
2562
2756
  "log",
2563
2757
  "once_cell",
@@ -2570,12 +2764,11 @@ dependencies = [
2570
2764
 
2571
2765
  [[package]]
2572
2766
  name = "rustls-native-certs"
2573
- version = "0.8.0"
2767
+ version = "0.8.1"
2574
2768
  source = "registry+https://github.com/rust-lang/crates.io-index"
2575
- checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a"
2769
+ checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
2576
2770
  dependencies = [
2577
2771
  "openssl-probe",
2578
- "rustls-pemfile",
2579
2772
  "rustls-pki-types",
2580
2773
  "schannel",
2581
2774
  "security-framework",
@@ -2592,15 +2785,18 @@ dependencies = [
2592
2785
 
2593
2786
  [[package]]
2594
2787
  name = "rustls-pki-types"
2595
- version = "1.10.0"
2788
+ version = "1.11.0"
2596
2789
  source = "registry+https://github.com/rust-lang/crates.io-index"
2597
- checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
2790
+ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
2791
+ dependencies = [
2792
+ "web-time",
2793
+ ]
2598
2794
 
2599
2795
  [[package]]
2600
2796
  name = "rustls-webpki"
2601
- version = "0.102.8"
2797
+ version = "0.103.1"
2602
2798
  source = "registry+https://github.com/rust-lang/crates.io-index"
2603
- checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2799
+ checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
2604
2800
  dependencies = [
2605
2801
  "ring",
2606
2802
  "rustls-pki-types",
@@ -2609,15 +2805,15 @@ dependencies = [
2609
2805
 
2610
2806
  [[package]]
2611
2807
  name = "rustversion"
2612
- version = "1.0.18"
2808
+ version = "1.0.20"
2613
2809
  source = "registry+https://github.com/rust-lang/crates.io-index"
2614
- checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
2810
+ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
2615
2811
 
2616
2812
  [[package]]
2617
2813
  name = "ryu"
2618
- version = "1.0.18"
2814
+ version = "1.0.20"
2619
2815
  source = "registry+https://github.com/rust-lang/crates.io-index"
2620
- checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2816
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2621
2817
 
2622
2818
  [[package]]
2623
2819
  name = "same-file"
@@ -2630,9 +2826,9 @@ dependencies = [
2630
2826
 
2631
2827
  [[package]]
2632
2828
  name = "schannel"
2633
- version = "0.1.26"
2829
+ version = "0.1.27"
2634
2830
  source = "registry+https://github.com/rust-lang/crates.io-index"
2635
- checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1"
2831
+ checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
2636
2832
  dependencies = [
2637
2833
  "windows-sys 0.59.0",
2638
2834
  ]
@@ -2645,9 +2841,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2645
2841
 
2646
2842
  [[package]]
2647
2843
  name = "security-framework"
2648
- version = "2.11.1"
2844
+ version = "3.2.0"
2649
2845
  source = "registry+https://github.com/rust-lang/crates.io-index"
2650
- checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2846
+ checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
2651
2847
  dependencies = [
2652
2848
  "bitflags",
2653
2849
  "core-foundation",
@@ -2658,9 +2854,9 @@ dependencies = [
2658
2854
 
2659
2855
  [[package]]
2660
2856
  name = "security-framework-sys"
2661
- version = "2.12.0"
2857
+ version = "2.14.0"
2662
2858
  source = "registry+https://github.com/rust-lang/crates.io-index"
2663
- checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6"
2859
+ checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
2664
2860
  dependencies = [
2665
2861
  "core-foundation-sys",
2666
2862
  "libc",
@@ -2668,30 +2864,30 @@ dependencies = [
2668
2864
 
2669
2865
  [[package]]
2670
2866
  name = "semver"
2671
- version = "1.0.23"
2867
+ version = "1.0.26"
2672
2868
  source = "registry+https://github.com/rust-lang/crates.io-index"
2673
- checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
2869
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
2674
2870
 
2675
2871
  [[package]]
2676
2872
  name = "seq-macro"
2677
- version = "0.3.5"
2873
+ version = "0.3.6"
2678
2874
  source = "registry+https://github.com/rust-lang/crates.io-index"
2679
- checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
2875
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2680
2876
 
2681
2877
  [[package]]
2682
2878
  name = "serde"
2683
- version = "1.0.210"
2879
+ version = "1.0.219"
2684
2880
  source = "registry+https://github.com/rust-lang/crates.io-index"
2685
- checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
2881
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2686
2882
  dependencies = [
2687
2883
  "serde_derive",
2688
2884
  ]
2689
2885
 
2690
2886
  [[package]]
2691
2887
  name = "serde_derive"
2692
- version = "1.0.210"
2888
+ version = "1.0.219"
2693
2889
  source = "registry+https://github.com/rust-lang/crates.io-index"
2694
- checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
2890
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2695
2891
  dependencies = [
2696
2892
  "proc-macro2",
2697
2893
  "quote",
@@ -2700,9 +2896,9 @@ dependencies = [
2700
2896
 
2701
2897
  [[package]]
2702
2898
  name = "serde_json"
2703
- version = "1.0.128"
2899
+ version = "1.0.140"
2704
2900
  source = "registry+https://github.com/rust-lang/crates.io-index"
2705
- checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
2901
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
2706
2902
  dependencies = [
2707
2903
  "itoa",
2708
2904
  "memchr",
@@ -2804,26 +3000,20 @@ dependencies = [
2804
3000
 
2805
3001
  [[package]]
2806
3002
  name = "smallvec"
2807
- version = "1.13.2"
3003
+ version = "1.15.0"
2808
3004
  source = "registry+https://github.com/rust-lang/crates.io-index"
2809
- checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
3005
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2810
3006
 
2811
3007
  [[package]]
2812
3008
  name = "socket2"
2813
- version = "0.5.7"
3009
+ version = "0.5.9"
2814
3010
  source = "registry+https://github.com/rust-lang/crates.io-index"
2815
- checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
3011
+ checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
2816
3012
  dependencies = [
2817
3013
  "libc",
2818
3014
  "windows-sys 0.52.0",
2819
3015
  ]
2820
3016
 
2821
- [[package]]
2822
- name = "spin"
2823
- version = "0.9.8"
2824
- source = "registry+https://github.com/rust-lang/crates.io-index"
2825
- checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2826
-
2827
3017
  [[package]]
2828
3018
  name = "spinning_top"
2829
3019
  version = "0.3.0"
@@ -2833,6 +3023,12 @@ dependencies = [
2833
3023
  "lock_api",
2834
3024
  ]
2835
3025
 
3026
+ [[package]]
3027
+ name = "stable_deref_trait"
3028
+ version = "1.2.0"
3029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3030
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3031
+
2836
3032
  [[package]]
2837
3033
  name = "strsim"
2838
3034
  version = "0.11.1"
@@ -2847,9 +3043,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2847
3043
 
2848
3044
  [[package]]
2849
3045
  name = "syn"
2850
- version = "2.0.79"
3046
+ version = "2.0.100"
2851
3047
  source = "registry+https://github.com/rust-lang/crates.io-index"
2852
- checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
3048
+ checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
2853
3049
  dependencies = [
2854
3050
  "proc-macro2",
2855
3051
  "quote",
@@ -2858,24 +3054,29 @@ dependencies = [
2858
3054
 
2859
3055
  [[package]]
2860
3056
  name = "sync_wrapper"
2861
- version = "0.1.2"
3057
+ version = "1.0.2"
2862
3058
  source = "registry+https://github.com/rust-lang/crates.io-index"
2863
- checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
3059
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3060
+ dependencies = [
3061
+ "futures-core",
3062
+ ]
2864
3063
 
2865
3064
  [[package]]
2866
- name = "sync_wrapper"
2867
- version = "1.0.1"
3065
+ name = "synstructure"
3066
+ version = "0.13.1"
2868
3067
  source = "registry+https://github.com/rust-lang/crates.io-index"
2869
- checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
3068
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
2870
3069
  dependencies = [
2871
- "futures-core",
3070
+ "proc-macro2",
3071
+ "quote",
3072
+ "syn",
2872
3073
  ]
2873
3074
 
2874
3075
  [[package]]
2875
3076
  name = "sysinfo"
2876
- version = "0.31.4"
3077
+ version = "0.33.1"
2877
3078
  source = "registry+https://github.com/rust-lang/crates.io-index"
2878
- checksum = "355dbe4f8799b304b05e1b0f05fc59b2a18d36645cf169607da45bde2f69a1be"
3079
+ checksum = "4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01"
2879
3080
  dependencies = [
2880
3081
  "core-foundation-sys",
2881
3082
  "libc",
@@ -2886,23 +3087,29 @@ dependencies = [
2886
3087
 
2887
3088
  [[package]]
2888
3089
  name = "tar"
2889
- version = "0.4.42"
3090
+ version = "0.4.44"
2890
3091
  source = "registry+https://github.com/rust-lang/crates.io-index"
2891
- checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020"
3092
+ checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
2892
3093
  dependencies = [
2893
3094
  "filetime",
2894
3095
  "libc",
2895
3096
  "xattr",
2896
3097
  ]
2897
3098
 
3099
+ [[package]]
3100
+ name = "target-triple"
3101
+ version = "0.1.4"
3102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3103
+ checksum = "1ac9aa371f599d22256307c24a9d748c041e548cbf599f35d890f9d365361790"
3104
+
2898
3105
  [[package]]
2899
3106
  name = "tempfile"
2900
- version = "3.13.0"
3107
+ version = "3.19.1"
2901
3108
  source = "registry+https://github.com/rust-lang/crates.io-index"
2902
- checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
3109
+ checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
2903
3110
  dependencies = [
2904
- "cfg-if",
2905
3111
  "fastrand",
3112
+ "getrandom 0.3.2",
2906
3113
  "once_cell",
2907
3114
  "rustix",
2908
3115
  "windows-sys 0.59.0",
@@ -2919,24 +3126,23 @@ dependencies = [
2919
3126
  "base64 0.22.1",
2920
3127
  "derive_builder",
2921
3128
  "derive_more",
2922
- "futures",
2923
3129
  "futures-retry",
3130
+ "futures-util",
2924
3131
  "http",
2925
3132
  "http-body-util",
2926
3133
  "hyper",
2927
3134
  "hyper-util",
2928
3135
  "mockall",
2929
- "once_cell",
2930
3136
  "opentelemetry",
2931
3137
  "parking_lot",
2932
- "prost-types",
3138
+ "rstest",
2933
3139
  "slotmap",
2934
3140
  "temporal-sdk-core-api",
2935
3141
  "temporal-sdk-core-protos",
2936
- "thiserror",
3142
+ "thiserror 2.0.12",
2937
3143
  "tokio",
2938
3144
  "tonic",
2939
- "tower 0.5.1",
3145
+ "tower 0.5.2",
2940
3146
  "tracing",
2941
3147
  "url",
2942
3148
  "uuid",
@@ -2948,9 +3154,8 @@ version = "0.1.0-alpha.1"
2948
3154
  dependencies = [
2949
3155
  "anyhow",
2950
3156
  "async-trait",
2951
- "crossbeam-channel",
2952
3157
  "derive_more",
2953
- "futures",
3158
+ "futures-util",
2954
3159
  "parking_lot",
2955
3160
  "prost-wkt-types",
2956
3161
  "serde",
@@ -2958,7 +3163,6 @@ dependencies = [
2958
3163
  "temporal-sdk-core",
2959
3164
  "temporal-sdk-core-api",
2960
3165
  "temporal-sdk-core-protos",
2961
- "thiserror",
2962
3166
  "tokio",
2963
3167
  "tokio-stream",
2964
3168
  "tokio-util",
@@ -2979,22 +3183,21 @@ dependencies = [
2979
3183
  "crossbeam-channel",
2980
3184
  "crossbeam-queue",
2981
3185
  "crossbeam-utils",
2982
- "dashmap 6.1.0",
3186
+ "dashmap",
2983
3187
  "derive_builder",
2984
3188
  "derive_more",
2985
3189
  "enum-iterator",
2986
3190
  "enum_dispatch",
2987
3191
  "flate2",
2988
- "futures",
3192
+ "futures-channel",
2989
3193
  "futures-util",
2990
3194
  "governor",
2991
3195
  "http-body-util",
2992
3196
  "hyper",
2993
3197
  "hyper-util",
2994
- "itertools 0.13.0",
3198
+ "itertools 0.14.0",
2995
3199
  "lru",
2996
3200
  "mockall",
2997
- "once_cell",
2998
3201
  "opentelemetry",
2999
3202
  "opentelemetry-otlp",
3000
3203
  "opentelemetry-prometheus",
@@ -3005,7 +3208,7 @@ dependencies = [
3005
3208
  "prometheus",
3006
3209
  "prost",
3007
3210
  "prost-wkt-types",
3008
- "rand",
3211
+ "rand 0.9.0",
3009
3212
  "reqwest",
3010
3213
  "ringbuf",
3011
3214
  "rstest",
@@ -3021,12 +3224,11 @@ dependencies = [
3021
3224
  "temporal-sdk-core-api",
3022
3225
  "temporal-sdk-core-protos",
3023
3226
  "temporal-sdk-core-test-utils",
3024
- "thiserror",
3227
+ "thiserror 2.0.12",
3025
3228
  "tokio",
3026
3229
  "tokio-stream",
3027
3230
  "tokio-util",
3028
3231
  "tonic",
3029
- "tonic-build",
3030
3232
  "tracing",
3031
3233
  "tracing-subscriber",
3032
3234
  "url",
@@ -3042,10 +3244,10 @@ dependencies = [
3042
3244
  "derive_builder",
3043
3245
  "derive_more",
3044
3246
  "opentelemetry",
3045
- "prost-types",
3247
+ "prost",
3046
3248
  "serde_json",
3047
3249
  "temporal-sdk-core-protos",
3048
- "thiserror",
3250
+ "thiserror 2.0.12",
3049
3251
  "tonic",
3050
3252
  "tracing-core",
3051
3253
  "url",
@@ -3059,13 +3261,14 @@ dependencies = [
3059
3261
  "base64 0.22.1",
3060
3262
  "derive_more",
3061
3263
  "prost",
3264
+ "prost-build",
3062
3265
  "prost-wkt",
3063
3266
  "prost-wkt-build",
3064
3267
  "prost-wkt-types",
3065
- "rand",
3268
+ "rand 0.9.0",
3066
3269
  "serde",
3067
3270
  "serde_json",
3068
- "thiserror",
3271
+ "thiserror 2.0.12",
3069
3272
  "tonic",
3070
3273
  "tonic-build",
3071
3274
  "uuid",
@@ -3076,29 +3279,20 @@ name = "temporal-sdk-core-test-utils"
3076
3279
  version = "0.1.0"
3077
3280
  dependencies = [
3078
3281
  "anyhow",
3282
+ "assert_matches",
3079
3283
  "async-trait",
3080
- "base64 0.22.1",
3081
- "bytes",
3082
- "futures",
3083
- "log",
3084
- "once_cell",
3284
+ "futures-util",
3085
3285
  "parking_lot",
3086
3286
  "prost",
3087
- "prost-types",
3088
- "rand",
3089
- "rmp-serde",
3090
- "serde_json",
3287
+ "rand 0.9.0",
3091
3288
  "temporal-client",
3092
3289
  "temporal-sdk",
3093
3290
  "temporal-sdk-core",
3094
3291
  "temporal-sdk-core-api",
3095
3292
  "temporal-sdk-core-protos",
3096
- "thiserror",
3097
3293
  "tokio",
3098
- "tokio-util",
3099
3294
  "tracing",
3100
3295
  "url",
3101
- "uuid",
3102
3296
  ]
3103
3297
 
3104
3298
  [[package]]
@@ -3115,6 +3309,8 @@ dependencies = [
3115
3309
  "temporal-sdk-core-api",
3116
3310
  "temporal-sdk-core-protos",
3117
3311
  "tokio",
3312
+ "tokio-stream",
3313
+ "tokio-util",
3118
3314
  "tonic",
3119
3315
  "tracing",
3120
3316
  "url",
@@ -3131,24 +3327,44 @@ dependencies = [
3131
3327
 
3132
3328
  [[package]]
3133
3329
  name = "termtree"
3134
- version = "0.4.1"
3330
+ version = "0.5.1"
3135
3331
  source = "registry+https://github.com/rust-lang/crates.io-index"
3136
- checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
3332
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3137
3333
 
3138
3334
  [[package]]
3139
3335
  name = "thiserror"
3140
- version = "1.0.64"
3336
+ version = "1.0.69"
3337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3338
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3339
+ dependencies = [
3340
+ "thiserror-impl 1.0.69",
3341
+ ]
3342
+
3343
+ [[package]]
3344
+ name = "thiserror"
3345
+ version = "2.0.12"
3346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3347
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3348
+ dependencies = [
3349
+ "thiserror-impl 2.0.12",
3350
+ ]
3351
+
3352
+ [[package]]
3353
+ name = "thiserror-impl"
3354
+ version = "1.0.69"
3141
3355
  source = "registry+https://github.com/rust-lang/crates.io-index"
3142
- checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
3356
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3143
3357
  dependencies = [
3144
- "thiserror-impl",
3358
+ "proc-macro2",
3359
+ "quote",
3360
+ "syn",
3145
3361
  ]
3146
3362
 
3147
3363
  [[package]]
3148
3364
  name = "thiserror-impl"
3149
- version = "1.0.64"
3365
+ version = "2.0.12"
3150
3366
  source = "registry+https://github.com/rust-lang/crates.io-index"
3151
- checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
3367
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
3152
3368
  dependencies = [
3153
3369
  "proc-macro2",
3154
3370
  "quote",
@@ -3167,9 +3383,9 @@ dependencies = [
3167
3383
 
3168
3384
  [[package]]
3169
3385
  name = "time"
3170
- version = "0.3.36"
3386
+ version = "0.3.41"
3171
3387
  source = "registry+https://github.com/rust-lang/crates.io-index"
3172
- checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
3388
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
3173
3389
  dependencies = [
3174
3390
  "deranged",
3175
3391
  "num-conv",
@@ -3180,9 +3396,19 @@ dependencies = [
3180
3396
 
3181
3397
  [[package]]
3182
3398
  name = "time-core"
3183
- version = "0.1.2"
3399
+ version = "0.1.4"
3184
3400
  source = "registry+https://github.com/rust-lang/crates.io-index"
3185
- checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3401
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
3402
+
3403
+ [[package]]
3404
+ name = "tinystr"
3405
+ version = "0.7.6"
3406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3407
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3408
+ dependencies = [
3409
+ "displaydoc",
3410
+ "zerovec",
3411
+ ]
3186
3412
 
3187
3413
  [[package]]
3188
3414
  name = "tinytemplate"
@@ -3196,9 +3422,9 @@ dependencies = [
3196
3422
 
3197
3423
  [[package]]
3198
3424
  name = "tinyvec"
3199
- version = "1.8.0"
3425
+ version = "1.9.0"
3200
3426
  source = "registry+https://github.com/rust-lang/crates.io-index"
3201
- checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
3427
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
3202
3428
  dependencies = [
3203
3429
  "tinyvec_macros",
3204
3430
  ]
@@ -3211,9 +3437,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3211
3437
 
3212
3438
  [[package]]
3213
3439
  name = "tokio"
3214
- version = "1.40.0"
3440
+ version = "1.44.2"
3215
3441
  source = "registry+https://github.com/rust-lang/crates.io-index"
3216
- checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998"
3442
+ checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
3217
3443
  dependencies = [
3218
3444
  "backtrace",
3219
3445
  "bytes",
@@ -3230,9 +3456,9 @@ dependencies = [
3230
3456
 
3231
3457
  [[package]]
3232
3458
  name = "tokio-macros"
3233
- version = "2.4.0"
3459
+ version = "2.5.0"
3234
3460
  source = "registry+https://github.com/rust-lang/crates.io-index"
3235
- checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
3461
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3236
3462
  dependencies = [
3237
3463
  "proc-macro2",
3238
3464
  "quote",
@@ -3241,20 +3467,19 @@ dependencies = [
3241
3467
 
3242
3468
  [[package]]
3243
3469
  name = "tokio-rustls"
3244
- version = "0.26.0"
3470
+ version = "0.26.2"
3245
3471
  source = "registry+https://github.com/rust-lang/crates.io-index"
3246
- checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
3472
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
3247
3473
  dependencies = [
3248
3474
  "rustls",
3249
- "rustls-pki-types",
3250
3475
  "tokio",
3251
3476
  ]
3252
3477
 
3253
3478
  [[package]]
3254
3479
  name = "tokio-stream"
3255
- version = "0.1.16"
3480
+ version = "0.1.17"
3256
3481
  source = "registry+https://github.com/rust-lang/crates.io-index"
3257
- checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1"
3482
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3258
3483
  dependencies = [
3259
3484
  "futures-core",
3260
3485
  "pin-project-lite",
@@ -3263,9 +3488,9 @@ dependencies = [
3263
3488
 
3264
3489
  [[package]]
3265
3490
  name = "tokio-util"
3266
- version = "0.7.12"
3491
+ version = "0.7.14"
3267
3492
  source = "registry+https://github.com/rust-lang/crates.io-index"
3268
- checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
3493
+ checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
3269
3494
  dependencies = [
3270
3495
  "bytes",
3271
3496
  "futures-core",
@@ -3276,9 +3501,9 @@ dependencies = [
3276
3501
 
3277
3502
  [[package]]
3278
3503
  name = "toml"
3279
- version = "0.8.19"
3504
+ version = "0.8.20"
3280
3505
  source = "registry+https://github.com/rust-lang/crates.io-index"
3281
- checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
3506
+ checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148"
3282
3507
  dependencies = [
3283
3508
  "serde",
3284
3509
  "serde_spanned",
@@ -3297,11 +3522,11 @@ dependencies = [
3297
3522
 
3298
3523
  [[package]]
3299
3524
  name = "toml_edit"
3300
- version = "0.22.22"
3525
+ version = "0.22.24"
3301
3526
  source = "registry+https://github.com/rust-lang/crates.io-index"
3302
- checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
3527
+ checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
3303
3528
  dependencies = [
3304
- "indexmap 2.6.0",
3529
+ "indexmap 2.9.0",
3305
3530
  "serde",
3306
3531
  "serde_spanned",
3307
3532
  "toml_datetime",
@@ -3366,7 +3591,7 @@ dependencies = [
3366
3591
  "indexmap 1.9.3",
3367
3592
  "pin-project",
3368
3593
  "pin-project-lite",
3369
- "rand",
3594
+ "rand 0.8.5",
3370
3595
  "slab",
3371
3596
  "tokio",
3372
3597
  "tokio-util",
@@ -3377,14 +3602,15 @@ dependencies = [
3377
3602
 
3378
3603
  [[package]]
3379
3604
  name = "tower"
3380
- version = "0.5.1"
3605
+ version = "0.5.2"
3381
3606
  source = "registry+https://github.com/rust-lang/crates.io-index"
3382
- checksum = "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f"
3607
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3383
3608
  dependencies = [
3384
3609
  "futures-core",
3385
3610
  "futures-util",
3386
3611
  "pin-project-lite",
3387
- "sync_wrapper 0.1.2",
3612
+ "sync_wrapper",
3613
+ "tokio",
3388
3614
  "tower-layer",
3389
3615
  "tower-service",
3390
3616
  ]
@@ -3403,9 +3629,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3403
3629
 
3404
3630
  [[package]]
3405
3631
  name = "tracing"
3406
- version = "0.1.40"
3632
+ version = "0.1.41"
3407
3633
  source = "registry+https://github.com/rust-lang/crates.io-index"
3408
- checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
3634
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3409
3635
  dependencies = [
3410
3636
  "pin-project-lite",
3411
3637
  "tracing-attributes",
@@ -3414,9 +3640,9 @@ dependencies = [
3414
3640
 
3415
3641
  [[package]]
3416
3642
  name = "tracing-attributes"
3417
- version = "0.1.27"
3643
+ version = "0.1.28"
3418
3644
  source = "registry+https://github.com/rust-lang/crates.io-index"
3419
- checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
3645
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3420
3646
  dependencies = [
3421
3647
  "proc-macro2",
3422
3648
  "quote",
@@ -3425,30 +3651,19 @@ dependencies = [
3425
3651
 
3426
3652
  [[package]]
3427
3653
  name = "tracing-core"
3428
- version = "0.1.32"
3654
+ version = "0.1.33"
3429
3655
  source = "registry+https://github.com/rust-lang/crates.io-index"
3430
- checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
3656
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3431
3657
  dependencies = [
3432
3658
  "once_cell",
3433
3659
  "valuable",
3434
3660
  ]
3435
3661
 
3436
- [[package]]
3437
- name = "tracing-log"
3438
- version = "0.2.0"
3439
- source = "registry+https://github.com/rust-lang/crates.io-index"
3440
- checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3441
- dependencies = [
3442
- "log",
3443
- "once_cell",
3444
- "tracing-core",
3445
- ]
3446
-
3447
3662
  [[package]]
3448
3663
  name = "tracing-subscriber"
3449
- version = "0.3.18"
3664
+ version = "0.3.19"
3450
3665
  source = "registry+https://github.com/rust-lang/crates.io-index"
3451
- checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
3666
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
3452
3667
  dependencies = [
3453
3668
  "matchers",
3454
3669
  "nu-ansi-term",
@@ -3456,11 +3671,9 @@ dependencies = [
3456
3671
  "parking_lot",
3457
3672
  "regex",
3458
3673
  "sharded-slab",
3459
- "smallvec",
3460
3674
  "thread_local",
3461
3675
  "tracing",
3462
3676
  "tracing-core",
3463
- "tracing-log",
3464
3677
  ]
3465
3678
 
3466
3679
  [[package]]
@@ -3471,36 +3684,37 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3471
3684
 
3472
3685
  [[package]]
3473
3686
  name = "trybuild"
3474
- version = "1.0.100"
3687
+ version = "1.0.104"
3475
3688
  source = "registry+https://github.com/rust-lang/crates.io-index"
3476
- checksum = "8923cde76a6329058a86f04d033f0945a2c6df8b94093512e4ab188b3e3a8950"
3689
+ checksum = "6ae08be68c056db96f0e6c6dd820727cca756ced9e1f4cc7fdd20e2a55e23898"
3477
3690
  dependencies = [
3478
3691
  "dissimilar",
3479
3692
  "glob",
3480
3693
  "serde",
3481
3694
  "serde_derive",
3482
3695
  "serde_json",
3696
+ "target-triple",
3483
3697
  "termcolor",
3484
3698
  "toml",
3485
3699
  ]
3486
3700
 
3487
3701
  [[package]]
3488
3702
  name = "typeid"
3489
- version = "1.0.2"
3703
+ version = "1.0.3"
3490
3704
  source = "registry+https://github.com/rust-lang/crates.io-index"
3491
- checksum = "0e13db2e0ccd5e14a544e8a246ba2312cd25223f616442d7f2cb0e3db614236e"
3705
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
3492
3706
 
3493
3707
  [[package]]
3494
3708
  name = "typenum"
3495
- version = "1.17.0"
3709
+ version = "1.18.0"
3496
3710
  source = "registry+https://github.com/rust-lang/crates.io-index"
3497
- checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
3711
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
3498
3712
 
3499
3713
  [[package]]
3500
3714
  name = "typetag"
3501
- version = "0.2.18"
3715
+ version = "0.2.20"
3502
3716
  source = "registry+https://github.com/rust-lang/crates.io-index"
3503
- checksum = "52ba3b6e86ffe0054b2c44f2d86407388b933b16cb0a70eea3929420db1d9bbe"
3717
+ checksum = "73f22b40dd7bfe8c14230cf9702081366421890435b2d625fa92b4acc4c3de6f"
3504
3718
  dependencies = [
3505
3719
  "erased-serde",
3506
3720
  "inventory",
@@ -3511,35 +3725,20 @@ dependencies = [
3511
3725
 
3512
3726
  [[package]]
3513
3727
  name = "typetag-impl"
3514
- version = "0.2.18"
3728
+ version = "0.2.20"
3515
3729
  source = "registry+https://github.com/rust-lang/crates.io-index"
3516
- checksum = "70b20a22c42c8f1cd23ce5e34f165d4d37038f5b663ad20fb6adbdf029172483"
3730
+ checksum = "35f5380909ffc31b4de4f4bdf96b877175a016aa2ca98cee39fcfd8c4d53d952"
3517
3731
  dependencies = [
3518
3732
  "proc-macro2",
3519
3733
  "quote",
3520
3734
  "syn",
3521
3735
  ]
3522
3736
 
3523
- [[package]]
3524
- name = "unicode-bidi"
3525
- version = "0.3.17"
3526
- source = "registry+https://github.com/rust-lang/crates.io-index"
3527
- checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
3528
-
3529
3737
  [[package]]
3530
3738
  name = "unicode-ident"
3531
- version = "1.0.13"
3532
- source = "registry+https://github.com/rust-lang/crates.io-index"
3533
- checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
3534
-
3535
- [[package]]
3536
- name = "unicode-normalization"
3537
- version = "0.1.24"
3739
+ version = "1.0.18"
3538
3740
  source = "registry+https://github.com/rust-lang/crates.io-index"
3539
- checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
3540
- dependencies = [
3541
- "tinyvec",
3542
- ]
3741
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3543
3742
 
3544
3743
  [[package]]
3545
3744
  name = "unicode-xid"
@@ -3555,15 +3754,27 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3555
3754
 
3556
3755
  [[package]]
3557
3756
  name = "url"
3558
- version = "2.5.2"
3757
+ version = "2.5.4"
3559
3758
  source = "registry+https://github.com/rust-lang/crates.io-index"
3560
- checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
3759
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3561
3760
  dependencies = [
3562
3761
  "form_urlencoded",
3563
3762
  "idna",
3564
3763
  "percent-encoding",
3565
3764
  ]
3566
3765
 
3766
+ [[package]]
3767
+ name = "utf16_iter"
3768
+ version = "1.0.5"
3769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3770
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3771
+
3772
+ [[package]]
3773
+ name = "utf8_iter"
3774
+ version = "1.0.4"
3775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3776
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3777
+
3567
3778
  [[package]]
3568
3779
  name = "utf8parse"
3569
3780
  version = "0.2.2"
@@ -3572,18 +3783,18 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3572
3783
 
3573
3784
  [[package]]
3574
3785
  name = "uuid"
3575
- version = "1.11.0"
3786
+ version = "1.16.0"
3576
3787
  source = "registry+https://github.com/rust-lang/crates.io-index"
3577
- checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
3788
+ checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3578
3789
  dependencies = [
3579
- "getrandom",
3790
+ "getrandom 0.3.2",
3580
3791
  ]
3581
3792
 
3582
3793
  [[package]]
3583
3794
  name = "valuable"
3584
- version = "0.1.0"
3795
+ version = "0.1.1"
3585
3796
  source = "registry+https://github.com/rust-lang/crates.io-index"
3586
- checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
3797
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3587
3798
 
3588
3799
  [[package]]
3589
3800
  name = "version_check"
@@ -3616,26 +3827,35 @@ version = "0.11.0+wasi-snapshot-preview1"
3616
3827
  source = "registry+https://github.com/rust-lang/crates.io-index"
3617
3828
  checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3618
3829
 
3830
+ [[package]]
3831
+ name = "wasi"
3832
+ version = "0.14.2+wasi-0.2.4"
3833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3834
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3835
+ dependencies = [
3836
+ "wit-bindgen-rt",
3837
+ ]
3838
+
3619
3839
  [[package]]
3620
3840
  name = "wasm-bindgen"
3621
- version = "0.2.95"
3841
+ version = "0.2.100"
3622
3842
  source = "registry+https://github.com/rust-lang/crates.io-index"
3623
- checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
3843
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3624
3844
  dependencies = [
3625
3845
  "cfg-if",
3626
3846
  "once_cell",
3847
+ "rustversion",
3627
3848
  "wasm-bindgen-macro",
3628
3849
  ]
3629
3850
 
3630
3851
  [[package]]
3631
3852
  name = "wasm-bindgen-backend"
3632
- version = "0.2.95"
3853
+ version = "0.2.100"
3633
3854
  source = "registry+https://github.com/rust-lang/crates.io-index"
3634
- checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
3855
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3635
3856
  dependencies = [
3636
3857
  "bumpalo",
3637
3858
  "log",
3638
- "once_cell",
3639
3859
  "proc-macro2",
3640
3860
  "quote",
3641
3861
  "syn",
@@ -3644,21 +3864,22 @@ dependencies = [
3644
3864
 
3645
3865
  [[package]]
3646
3866
  name = "wasm-bindgen-futures"
3647
- version = "0.4.45"
3867
+ version = "0.4.50"
3648
3868
  source = "registry+https://github.com/rust-lang/crates.io-index"
3649
- checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
3869
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
3650
3870
  dependencies = [
3651
3871
  "cfg-if",
3652
3872
  "js-sys",
3873
+ "once_cell",
3653
3874
  "wasm-bindgen",
3654
3875
  "web-sys",
3655
3876
  ]
3656
3877
 
3657
3878
  [[package]]
3658
3879
  name = "wasm-bindgen-macro"
3659
- version = "0.2.95"
3880
+ version = "0.2.100"
3660
3881
  source = "registry+https://github.com/rust-lang/crates.io-index"
3661
- checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
3882
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3662
3883
  dependencies = [
3663
3884
  "quote",
3664
3885
  "wasm-bindgen-macro-support",
@@ -3666,9 +3887,9 @@ dependencies = [
3666
3887
 
3667
3888
  [[package]]
3668
3889
  name = "wasm-bindgen-macro-support"
3669
- version = "0.2.95"
3890
+ version = "0.2.100"
3670
3891
  source = "registry+https://github.com/rust-lang/crates.io-index"
3671
- checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
3892
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3672
3893
  dependencies = [
3673
3894
  "proc-macro2",
3674
3895
  "quote",
@@ -3679,15 +3900,18 @@ dependencies = [
3679
3900
 
3680
3901
  [[package]]
3681
3902
  name = "wasm-bindgen-shared"
3682
- version = "0.2.95"
3903
+ version = "0.2.100"
3683
3904
  source = "registry+https://github.com/rust-lang/crates.io-index"
3684
- checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
3905
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3906
+ dependencies = [
3907
+ "unicode-ident",
3908
+ ]
3685
3909
 
3686
3910
  [[package]]
3687
3911
  name = "wasm-streams"
3688
- version = "0.4.1"
3912
+ version = "0.4.2"
3689
3913
  source = "registry+https://github.com/rust-lang/crates.io-index"
3690
- checksum = "4e072d4e72f700fb3443d8fe94a39315df013eef1104903cdb0a2abd322bbecd"
3914
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3691
3915
  dependencies = [
3692
3916
  "futures-util",
3693
3917
  "js-sys",
@@ -3698,9 +3922,19 @@ dependencies = [
3698
3922
 
3699
3923
  [[package]]
3700
3924
  name = "web-sys"
3701
- version = "0.3.72"
3925
+ version = "0.3.77"
3926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3927
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
3928
+ dependencies = [
3929
+ "js-sys",
3930
+ "wasm-bindgen",
3931
+ ]
3932
+
3933
+ [[package]]
3934
+ name = "web-time"
3935
+ version = "1.1.0"
3702
3936
  source = "registry+https://github.com/rust-lang/crates.io-index"
3703
- checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
3937
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3704
3938
  dependencies = [
3705
3939
  "js-sys",
3706
3940
  "wasm-bindgen",
@@ -3744,7 +3978,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3744
3978
  checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
3745
3979
  dependencies = [
3746
3980
  "windows-core",
3747
- "windows-targets",
3981
+ "windows-targets 0.52.6",
3748
3982
  ]
3749
3983
 
3750
3984
  [[package]]
@@ -3756,7 +3990,7 @@ dependencies = [
3756
3990
  "windows-implement",
3757
3991
  "windows-interface",
3758
3992
  "windows-result 0.1.2",
3759
- "windows-targets",
3993
+ "windows-targets 0.52.6",
3760
3994
  ]
3761
3995
 
3762
3996
  [[package]]
@@ -3781,15 +4015,21 @@ dependencies = [
3781
4015
  "syn",
3782
4016
  ]
3783
4017
 
4018
+ [[package]]
4019
+ name = "windows-link"
4020
+ version = "0.1.1"
4021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4022
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
4023
+
3784
4024
  [[package]]
3785
4025
  name = "windows-registry"
3786
- version = "0.2.0"
4026
+ version = "0.4.0"
3787
4027
  source = "registry+https://github.com/rust-lang/crates.io-index"
3788
- checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
4028
+ checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
3789
4029
  dependencies = [
3790
- "windows-result 0.2.0",
4030
+ "windows-result 0.3.2",
3791
4031
  "windows-strings",
3792
- "windows-targets",
4032
+ "windows-targets 0.53.0",
3793
4033
  ]
3794
4034
 
3795
4035
  [[package]]
@@ -3798,26 +4038,25 @@ version = "0.1.2"
3798
4038
  source = "registry+https://github.com/rust-lang/crates.io-index"
3799
4039
  checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
3800
4040
  dependencies = [
3801
- "windows-targets",
4041
+ "windows-targets 0.52.6",
3802
4042
  ]
3803
4043
 
3804
4044
  [[package]]
3805
4045
  name = "windows-result"
3806
- version = "0.2.0"
4046
+ version = "0.3.2"
3807
4047
  source = "registry+https://github.com/rust-lang/crates.io-index"
3808
- checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
4048
+ checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
3809
4049
  dependencies = [
3810
- "windows-targets",
4050
+ "windows-link",
3811
4051
  ]
3812
4052
 
3813
4053
  [[package]]
3814
4054
  name = "windows-strings"
3815
- version = "0.1.0"
4055
+ version = "0.3.1"
3816
4056
  source = "registry+https://github.com/rust-lang/crates.io-index"
3817
- checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
4057
+ checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
3818
4058
  dependencies = [
3819
- "windows-result 0.2.0",
3820
- "windows-targets",
4059
+ "windows-link",
3821
4060
  ]
3822
4061
 
3823
4062
  [[package]]
@@ -3826,7 +4065,7 @@ version = "0.52.0"
3826
4065
  source = "registry+https://github.com/rust-lang/crates.io-index"
3827
4066
  checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3828
4067
  dependencies = [
3829
- "windows-targets",
4068
+ "windows-targets 0.52.6",
3830
4069
  ]
3831
4070
 
3832
4071
  [[package]]
@@ -3835,7 +4074,7 @@ version = "0.59.0"
3835
4074
  source = "registry+https://github.com/rust-lang/crates.io-index"
3836
4075
  checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3837
4076
  dependencies = [
3838
- "windows-targets",
4077
+ "windows-targets 0.52.6",
3839
4078
  ]
3840
4079
 
3841
4080
  [[package]]
@@ -3844,14 +4083,30 @@ version = "0.52.6"
3844
4083
  source = "registry+https://github.com/rust-lang/crates.io-index"
3845
4084
  checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3846
4085
  dependencies = [
3847
- "windows_aarch64_gnullvm",
3848
- "windows_aarch64_msvc",
3849
- "windows_i686_gnu",
3850
- "windows_i686_gnullvm",
3851
- "windows_i686_msvc",
3852
- "windows_x86_64_gnu",
3853
- "windows_x86_64_gnullvm",
3854
- "windows_x86_64_msvc",
4086
+ "windows_aarch64_gnullvm 0.52.6",
4087
+ "windows_aarch64_msvc 0.52.6",
4088
+ "windows_i686_gnu 0.52.6",
4089
+ "windows_i686_gnullvm 0.52.6",
4090
+ "windows_i686_msvc 0.52.6",
4091
+ "windows_x86_64_gnu 0.52.6",
4092
+ "windows_x86_64_gnullvm 0.52.6",
4093
+ "windows_x86_64_msvc 0.52.6",
4094
+ ]
4095
+
4096
+ [[package]]
4097
+ name = "windows-targets"
4098
+ version = "0.53.0"
4099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4100
+ checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
4101
+ dependencies = [
4102
+ "windows_aarch64_gnullvm 0.53.0",
4103
+ "windows_aarch64_msvc 0.53.0",
4104
+ "windows_i686_gnu 0.53.0",
4105
+ "windows_i686_gnullvm 0.53.0",
4106
+ "windows_i686_msvc 0.53.0",
4107
+ "windows_x86_64_gnu 0.53.0",
4108
+ "windows_x86_64_gnullvm 0.53.0",
4109
+ "windows_x86_64_msvc 0.53.0",
3855
4110
  ]
3856
4111
 
3857
4112
  [[package]]
@@ -3860,89 +4115,210 @@ version = "0.52.6"
3860
4115
  source = "registry+https://github.com/rust-lang/crates.io-index"
3861
4116
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3862
4117
 
4118
+ [[package]]
4119
+ name = "windows_aarch64_gnullvm"
4120
+ version = "0.53.0"
4121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4122
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
4123
+
3863
4124
  [[package]]
3864
4125
  name = "windows_aarch64_msvc"
3865
4126
  version = "0.52.6"
3866
4127
  source = "registry+https://github.com/rust-lang/crates.io-index"
3867
4128
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3868
4129
 
4130
+ [[package]]
4131
+ name = "windows_aarch64_msvc"
4132
+ version = "0.53.0"
4133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4134
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
4135
+
3869
4136
  [[package]]
3870
4137
  name = "windows_i686_gnu"
3871
4138
  version = "0.52.6"
3872
4139
  source = "registry+https://github.com/rust-lang/crates.io-index"
3873
4140
  checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3874
4141
 
4142
+ [[package]]
4143
+ name = "windows_i686_gnu"
4144
+ version = "0.53.0"
4145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4146
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
4147
+
3875
4148
  [[package]]
3876
4149
  name = "windows_i686_gnullvm"
3877
4150
  version = "0.52.6"
3878
4151
  source = "registry+https://github.com/rust-lang/crates.io-index"
3879
4152
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3880
4153
 
4154
+ [[package]]
4155
+ name = "windows_i686_gnullvm"
4156
+ version = "0.53.0"
4157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4158
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
4159
+
3881
4160
  [[package]]
3882
4161
  name = "windows_i686_msvc"
3883
4162
  version = "0.52.6"
3884
4163
  source = "registry+https://github.com/rust-lang/crates.io-index"
3885
4164
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3886
4165
 
4166
+ [[package]]
4167
+ name = "windows_i686_msvc"
4168
+ version = "0.53.0"
4169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4170
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
4171
+
3887
4172
  [[package]]
3888
4173
  name = "windows_x86_64_gnu"
3889
4174
  version = "0.52.6"
3890
4175
  source = "registry+https://github.com/rust-lang/crates.io-index"
3891
4176
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3892
4177
 
4178
+ [[package]]
4179
+ name = "windows_x86_64_gnu"
4180
+ version = "0.53.0"
4181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4182
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
4183
+
3893
4184
  [[package]]
3894
4185
  name = "windows_x86_64_gnullvm"
3895
4186
  version = "0.52.6"
3896
4187
  source = "registry+https://github.com/rust-lang/crates.io-index"
3897
4188
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3898
4189
 
4190
+ [[package]]
4191
+ name = "windows_x86_64_gnullvm"
4192
+ version = "0.53.0"
4193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4194
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
4195
+
3899
4196
  [[package]]
3900
4197
  name = "windows_x86_64_msvc"
3901
4198
  version = "0.52.6"
3902
4199
  source = "registry+https://github.com/rust-lang/crates.io-index"
3903
4200
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3904
4201
 
4202
+ [[package]]
4203
+ name = "windows_x86_64_msvc"
4204
+ version = "0.53.0"
4205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4206
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
4207
+
3905
4208
  [[package]]
3906
4209
  name = "winnow"
3907
- version = "0.6.20"
4210
+ version = "0.7.6"
3908
4211
  source = "registry+https://github.com/rust-lang/crates.io-index"
3909
- checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
4212
+ checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10"
3910
4213
  dependencies = [
3911
4214
  "memchr",
3912
4215
  ]
3913
4216
 
4217
+ [[package]]
4218
+ name = "wit-bindgen-rt"
4219
+ version = "0.39.0"
4220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4221
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
4222
+ dependencies = [
4223
+ "bitflags",
4224
+ ]
4225
+
4226
+ [[package]]
4227
+ name = "write16"
4228
+ version = "1.0.0"
4229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4230
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4231
+
4232
+ [[package]]
4233
+ name = "writeable"
4234
+ version = "0.5.5"
4235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4236
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4237
+
3914
4238
  [[package]]
3915
4239
  name = "xattr"
3916
- version = "1.3.1"
4240
+ version = "1.5.0"
3917
4241
  source = "registry+https://github.com/rust-lang/crates.io-index"
3918
- checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
4242
+ checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
3919
4243
  dependencies = [
3920
4244
  "libc",
3921
- "linux-raw-sys",
3922
4245
  "rustix",
3923
4246
  ]
3924
4247
 
4248
+ [[package]]
4249
+ name = "xz2"
4250
+ version = "0.1.7"
4251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4252
+ checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
4253
+ dependencies = [
4254
+ "lzma-sys",
4255
+ ]
4256
+
4257
+ [[package]]
4258
+ name = "yoke"
4259
+ version = "0.7.5"
4260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4261
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4262
+ dependencies = [
4263
+ "serde",
4264
+ "stable_deref_trait",
4265
+ "yoke-derive",
4266
+ "zerofrom",
4267
+ ]
4268
+
4269
+ [[package]]
4270
+ name = "yoke-derive"
4271
+ version = "0.7.5"
4272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4273
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4274
+ dependencies = [
4275
+ "proc-macro2",
4276
+ "quote",
4277
+ "syn",
4278
+ "synstructure",
4279
+ ]
4280
+
3925
4281
  [[package]]
3926
4282
  name = "zerocopy"
3927
- version = "0.7.35"
4283
+ version = "0.8.24"
3928
4284
  source = "registry+https://github.com/rust-lang/crates.io-index"
3929
- checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4285
+ checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
3930
4286
  dependencies = [
3931
- "byteorder",
3932
4287
  "zerocopy-derive",
3933
4288
  ]
3934
4289
 
3935
4290
  [[package]]
3936
4291
  name = "zerocopy-derive"
3937
- version = "0.7.35"
4292
+ version = "0.8.24"
3938
4293
  source = "registry+https://github.com/rust-lang/crates.io-index"
3939
- checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4294
+ checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
3940
4295
  dependencies = [
3941
4296
  "proc-macro2",
3942
4297
  "quote",
3943
4298
  "syn",
3944
4299
  ]
3945
4300
 
4301
+ [[package]]
4302
+ name = "zerofrom"
4303
+ version = "0.1.6"
4304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4305
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4306
+ dependencies = [
4307
+ "zerofrom-derive",
4308
+ ]
4309
+
4310
+ [[package]]
4311
+ name = "zerofrom-derive"
4312
+ version = "0.1.6"
4313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4314
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4315
+ dependencies = [
4316
+ "proc-macro2",
4317
+ "quote",
4318
+ "syn",
4319
+ "synstructure",
4320
+ ]
4321
+
3946
4322
  [[package]]
3947
4323
  name = "zeroize"
3948
4324
  version = "1.8.1"
@@ -3963,11 +4339,33 @@ dependencies = [
3963
4339
  "syn",
3964
4340
  ]
3965
4341
 
4342
+ [[package]]
4343
+ name = "zerovec"
4344
+ version = "0.10.4"
4345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4346
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4347
+ dependencies = [
4348
+ "yoke",
4349
+ "zerofrom",
4350
+ "zerovec-derive",
4351
+ ]
4352
+
4353
+ [[package]]
4354
+ name = "zerovec-derive"
4355
+ version = "0.10.3"
4356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4357
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4358
+ dependencies = [
4359
+ "proc-macro2",
4360
+ "quote",
4361
+ "syn",
4362
+ ]
4363
+
3966
4364
  [[package]]
3967
4365
  name = "zip"
3968
- version = "2.2.0"
4366
+ version = "2.6.1"
3969
4367
  source = "registry+https://github.com/rust-lang/crates.io-index"
3970
- checksum = "dc5e4288ea4057ae23afc69a4472434a87a2495cafce6632fd1c4ec9f5cf3494"
4368
+ checksum = "1dcb24d0152526ae49b9b96c1dcf71850ca1e0b882e4e28ed898a93c41334744"
3971
4369
  dependencies = [
3972
4370
  "aes",
3973
4371
  "arbitrary",
@@ -3976,17 +4374,16 @@ dependencies = [
3976
4374
  "crc32fast",
3977
4375
  "crossbeam-utils",
3978
4376
  "deflate64",
3979
- "displaydoc",
3980
4377
  "flate2",
4378
+ "getrandom 0.3.2",
3981
4379
  "hmac",
3982
- "indexmap 2.6.0",
4380
+ "indexmap 2.9.0",
3983
4381
  "lzma-rs",
3984
4382
  "memchr",
3985
4383
  "pbkdf2",
3986
- "rand",
3987
4384
  "sha1",
3988
- "thiserror",
3989
4385
  "time",
4386
+ "xz2",
3990
4387
  "zeroize",
3991
4388
  "zopfli",
3992
4389
  "zstd",
@@ -4008,27 +4405,27 @@ dependencies = [
4008
4405
 
4009
4406
  [[package]]
4010
4407
  name = "zstd"
4011
- version = "0.13.2"
4408
+ version = "0.13.3"
4012
4409
  source = "registry+https://github.com/rust-lang/crates.io-index"
4013
- checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
4410
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4014
4411
  dependencies = [
4015
4412
  "zstd-safe",
4016
4413
  ]
4017
4414
 
4018
4415
  [[package]]
4019
4416
  name = "zstd-safe"
4020
- version = "7.2.1"
4417
+ version = "7.2.4"
4021
4418
  source = "registry+https://github.com/rust-lang/crates.io-index"
4022
- checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
4419
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4023
4420
  dependencies = [
4024
4421
  "zstd-sys",
4025
4422
  ]
4026
4423
 
4027
4424
  [[package]]
4028
4425
  name = "zstd-sys"
4029
- version = "2.0.13+zstd.1.5.6"
4426
+ version = "2.0.15+zstd.1.5.7"
4030
4427
  source = "registry+https://github.com/rust-lang/crates.io-index"
4031
- checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
4428
+ checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
4032
4429
  dependencies = [
4033
4430
  "cc",
4034
4431
  "pkg-config",