temporalio 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +2 -0
  3. data/Cargo.lock +659 -370
  4. data/Cargo.toml +2 -2
  5. data/Gemfile +3 -3
  6. data/README.md +589 -47
  7. data/Rakefile +10 -296
  8. data/ext/Cargo.toml +1 -0
  9. data/lib/temporalio/activity/complete_async_error.rb +1 -1
  10. data/lib/temporalio/activity/context.rb +5 -2
  11. data/lib/temporalio/activity/definition.rb +163 -65
  12. data/lib/temporalio/activity/info.rb +22 -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/cloud/account/v1/message.rb +28 -0
  16. data/lib/temporalio/api/cloud/cloudservice/v1/request_response.rb +34 -1
  17. data/lib/temporalio/api/cloud/cloudservice/v1/service.rb +1 -1
  18. data/lib/temporalio/api/cloud/identity/v1/message.rb +6 -1
  19. data/lib/temporalio/api/cloud/namespace/v1/message.rb +8 -1
  20. data/lib/temporalio/api/cloud/nexus/v1/message.rb +31 -0
  21. data/lib/temporalio/api/cloud/operation/v1/message.rb +2 -1
  22. data/lib/temporalio/api/cloud/region/v1/message.rb +2 -1
  23. data/lib/temporalio/api/cloud/resource/v1/message.rb +23 -0
  24. data/lib/temporalio/api/cloud/sink/v1/message.rb +24 -0
  25. data/lib/temporalio/api/cloud/usage/v1/message.rb +31 -0
  26. data/lib/temporalio/api/common/v1/message.rb +7 -1
  27. data/lib/temporalio/api/enums/v1/event_type.rb +1 -1
  28. data/lib/temporalio/api/enums/v1/failed_cause.rb +1 -1
  29. data/lib/temporalio/api/enums/v1/reset.rb +1 -1
  30. data/lib/temporalio/api/history/v1/message.rb +1 -1
  31. data/lib/temporalio/api/nexus/v1/message.rb +2 -2
  32. data/lib/temporalio/api/operatorservice/v1/service.rb +1 -1
  33. data/lib/temporalio/api/payload_visitor.rb +1513 -0
  34. data/lib/temporalio/api/schedule/v1/message.rb +2 -1
  35. data/lib/temporalio/api/testservice/v1/request_response.rb +31 -0
  36. data/lib/temporalio/api/testservice/v1/service.rb +23 -0
  37. data/lib/temporalio/api/workflow/v1/message.rb +1 -1
  38. data/lib/temporalio/api/workflowservice/v1/request_response.rb +17 -2
  39. data/lib/temporalio/api/workflowservice/v1/service.rb +1 -1
  40. data/lib/temporalio/api.rb +1 -0
  41. data/lib/temporalio/cancellation.rb +34 -14
  42. data/lib/temporalio/client/async_activity_handle.rb +12 -37
  43. data/lib/temporalio/client/connection/cloud_service.rb +309 -231
  44. data/lib/temporalio/client/connection/operator_service.rb +36 -84
  45. data/lib/temporalio/client/connection/service.rb +6 -5
  46. data/lib/temporalio/client/connection/test_service.rb +111 -0
  47. data/lib/temporalio/client/connection/workflow_service.rb +264 -441
  48. data/lib/temporalio/client/connection.rb +90 -44
  49. data/lib/temporalio/client/interceptor.rb +160 -60
  50. data/lib/temporalio/client/schedule.rb +967 -0
  51. data/lib/temporalio/client/schedule_handle.rb +126 -0
  52. data/lib/temporalio/client/workflow_execution.rb +7 -10
  53. data/lib/temporalio/client/workflow_handle.rb +38 -95
  54. data/lib/temporalio/client/workflow_update_handle.rb +3 -5
  55. data/lib/temporalio/client.rb +122 -42
  56. data/lib/temporalio/common_enums.rb +17 -0
  57. data/lib/temporalio/converters/data_converter.rb +4 -7
  58. data/lib/temporalio/converters/failure_converter.rb +5 -3
  59. data/lib/temporalio/converters/payload_converter/composite.rb +4 -0
  60. data/lib/temporalio/converters/payload_converter.rb +6 -8
  61. data/lib/temporalio/converters/raw_value.rb +20 -0
  62. data/lib/temporalio/error/failure.rb +1 -1
  63. data/lib/temporalio/error.rb +10 -2
  64. data/lib/temporalio/internal/bridge/api/core_interface.rb +5 -1
  65. data/lib/temporalio/internal/bridge/api/nexus/nexus.rb +33 -0
  66. data/lib/temporalio/internal/bridge/api/workflow_activation/workflow_activation.rb +5 -1
  67. data/lib/temporalio/internal/bridge/api/workflow_commands/workflow_commands.rb +4 -1
  68. data/lib/temporalio/internal/bridge/client.rb +11 -6
  69. data/lib/temporalio/internal/bridge/testing.rb +20 -0
  70. data/lib/temporalio/internal/bridge/worker.rb +2 -0
  71. data/lib/temporalio/internal/bridge.rb +1 -1
  72. data/lib/temporalio/internal/client/implementation.rb +245 -70
  73. data/lib/temporalio/internal/metric.rb +122 -0
  74. data/lib/temporalio/internal/proto_utils.rb +86 -7
  75. data/lib/temporalio/internal/worker/activity_worker.rb +52 -24
  76. data/lib/temporalio/internal/worker/multi_runner.rb +51 -7
  77. data/lib/temporalio/internal/worker/workflow_instance/child_workflow_handle.rb +54 -0
  78. data/lib/temporalio/internal/worker/workflow_instance/context.rb +329 -0
  79. data/lib/temporalio/internal/worker/workflow_instance/details.rb +44 -0
  80. data/lib/temporalio/internal/worker/workflow_instance/external_workflow_handle.rb +32 -0
  81. data/lib/temporalio/internal/worker/workflow_instance/externally_immutable_hash.rb +22 -0
  82. data/lib/temporalio/internal/worker/workflow_instance/handler_execution.rb +25 -0
  83. data/lib/temporalio/internal/worker/workflow_instance/handler_hash.rb +41 -0
  84. data/lib/temporalio/internal/worker/workflow_instance/illegal_call_tracer.rb +97 -0
  85. data/lib/temporalio/internal/worker/workflow_instance/inbound_implementation.rb +62 -0
  86. data/lib/temporalio/internal/worker/workflow_instance/outbound_implementation.rb +415 -0
  87. data/lib/temporalio/internal/worker/workflow_instance/replay_safe_logger.rb +37 -0
  88. data/lib/temporalio/internal/worker/workflow_instance/replay_safe_metric.rb +40 -0
  89. data/lib/temporalio/internal/worker/workflow_instance/scheduler.rb +163 -0
  90. data/lib/temporalio/internal/worker/workflow_instance.rb +730 -0
  91. data/lib/temporalio/internal/worker/workflow_worker.rb +196 -0
  92. data/lib/temporalio/metric.rb +109 -0
  93. data/lib/temporalio/retry_policy.rb +37 -14
  94. data/lib/temporalio/runtime.rb +118 -75
  95. data/lib/temporalio/search_attributes.rb +80 -37
  96. data/lib/temporalio/testing/activity_environment.rb +2 -2
  97. data/lib/temporalio/testing/workflow_environment.rb +251 -5
  98. data/lib/temporalio/version.rb +1 -1
  99. data/lib/temporalio/worker/activity_executor/thread_pool.rb +9 -217
  100. data/lib/temporalio/worker/activity_executor.rb +3 -3
  101. data/lib/temporalio/worker/interceptor.rb +340 -66
  102. data/lib/temporalio/worker/thread_pool.rb +237 -0
  103. data/lib/temporalio/worker/workflow_executor/thread_pool.rb +230 -0
  104. data/lib/temporalio/worker/workflow_executor.rb +26 -0
  105. data/lib/temporalio/worker.rb +201 -30
  106. data/lib/temporalio/workflow/activity_cancellation_type.rb +20 -0
  107. data/lib/temporalio/workflow/child_workflow_cancellation_type.rb +21 -0
  108. data/lib/temporalio/workflow/child_workflow_handle.rb +43 -0
  109. data/lib/temporalio/workflow/definition.rb +566 -0
  110. data/lib/temporalio/workflow/external_workflow_handle.rb +41 -0
  111. data/lib/temporalio/workflow/future.rb +151 -0
  112. data/lib/temporalio/workflow/handler_unfinished_policy.rb +13 -0
  113. data/lib/temporalio/workflow/info.rb +82 -0
  114. data/lib/temporalio/workflow/parent_close_policy.rb +19 -0
  115. data/lib/temporalio/workflow/update_info.rb +20 -0
  116. data/lib/temporalio/workflow.rb +523 -0
  117. data/lib/temporalio.rb +4 -0
  118. data/temporalio.gemspec +2 -2
  119. metadata +50 -8
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.95"
104
105
  source = "registry+https://github.com/rust-lang/crates.io-index"
105
- checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6"
106
+ checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
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.85"
147
148
  source = "registry+https://github.com/rust-lang/crates.io-index"
148
- checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
149
+ checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056"
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
  ]
@@ -277,9 +278,9 @@ dependencies = [
277
278
 
278
279
  [[package]]
279
280
  name = "bitflags"
280
- version = "2.6.0"
281
+ version = "2.8.0"
281
282
  source = "registry+https://github.com/rust-lang/crates.io-index"
282
- checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
283
+ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
283
284
 
284
285
  [[package]]
285
286
  name = "block-buffer"
@@ -304,9 +305,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
304
305
 
305
306
  [[package]]
306
307
  name = "bytes"
307
- version = "1.7.2"
308
+ version = "1.9.0"
308
309
  source = "registry+https://github.com/rust-lang/crates.io-index"
309
- checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3"
310
+ checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
310
311
 
311
312
  [[package]]
312
313
  name = "bzip2"
@@ -337,9 +338,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
337
338
 
338
339
  [[package]]
339
340
  name = "cc"
340
- version = "1.1.30"
341
+ version = "1.2.10"
341
342
  source = "registry+https://github.com/rust-lang/crates.io-index"
342
- checksum = "b16803a61b81d9eabb7eae2588776c4c1e584b738ede45fdbb4c972cec1e9945"
343
+ checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
343
344
  dependencies = [
344
345
  "jobserver",
345
346
  "libc",
@@ -361,11 +362,17 @@ version = "1.0.0"
361
362
  source = "registry+https://github.com/rust-lang/crates.io-index"
362
363
  checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
363
364
 
365
+ [[package]]
366
+ name = "cfg_aliases"
367
+ version = "0.2.1"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
370
+
364
371
  [[package]]
365
372
  name = "chrono"
366
- version = "0.4.38"
373
+ version = "0.4.39"
367
374
  source = "registry+https://github.com/rust-lang/crates.io-index"
368
- checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
375
+ checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
369
376
  dependencies = [
370
377
  "num-traits",
371
378
  "serde",
@@ -421,9 +428,9 @@ dependencies = [
421
428
 
422
429
  [[package]]
423
430
  name = "clap"
424
- version = "4.5.20"
431
+ version = "4.5.26"
425
432
  source = "registry+https://github.com/rust-lang/crates.io-index"
426
- checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8"
433
+ checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783"
427
434
  dependencies = [
428
435
  "clap_builder",
429
436
  "clap_derive",
@@ -431,9 +438,9 @@ dependencies = [
431
438
 
432
439
  [[package]]
433
440
  name = "clap_builder"
434
- version = "4.5.20"
441
+ version = "4.5.26"
435
442
  source = "registry+https://github.com/rust-lang/crates.io-index"
436
- checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54"
443
+ checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121"
437
444
  dependencies = [
438
445
  "anstream",
439
446
  "anstyle",
@@ -443,9 +450,9 @@ dependencies = [
443
450
 
444
451
  [[package]]
445
452
  name = "clap_derive"
446
- version = "4.5.18"
453
+ version = "4.5.24"
447
454
  source = "registry+https://github.com/rust-lang/crates.io-index"
448
- checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
455
+ checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
449
456
  dependencies = [
450
457
  "heck",
451
458
  "proc-macro2",
@@ -455,21 +462,21 @@ dependencies = [
455
462
 
456
463
  [[package]]
457
464
  name = "clap_lex"
458
- version = "0.7.2"
465
+ version = "0.7.4"
459
466
  source = "registry+https://github.com/rust-lang/crates.io-index"
460
- checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
467
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
461
468
 
462
469
  [[package]]
463
470
  name = "colorchoice"
464
- version = "1.0.2"
471
+ version = "1.0.3"
465
472
  source = "registry+https://github.com/rust-lang/crates.io-index"
466
- checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
473
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
467
474
 
468
475
  [[package]]
469
476
  name = "console-api"
470
- version = "0.8.0"
477
+ version = "0.8.1"
471
478
  source = "registry+https://github.com/rust-lang/crates.io-index"
472
- checksum = "86ed14aa9c9f927213c6e4f3ef75faaad3406134efe84ba2cb7983431d5f0931"
479
+ checksum = "8030735ecb0d128428b64cd379809817e620a40e5001c54465b99ec5feec2857"
473
480
  dependencies = [
474
481
  "futures-core",
475
482
  "prost",
@@ -480,9 +487,9 @@ dependencies = [
480
487
 
481
488
  [[package]]
482
489
  name = "console-subscriber"
483
- version = "0.4.0"
490
+ version = "0.4.1"
484
491
  source = "registry+https://github.com/rust-lang/crates.io-index"
485
- checksum = "e2e3a111a37f3333946ebf9da370ba5c5577b18eb342ec683eb488dd21980302"
492
+ checksum = "6539aa9c6a4cd31f4b1c040f860a1eac9aa80e7df6b05d506a6e7179936d6a01"
486
493
  dependencies = [
487
494
  "console-api",
488
495
  "crossbeam-channel",
@@ -512,9 +519,9 @@ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
512
519
 
513
520
  [[package]]
514
521
  name = "core-foundation"
515
- version = "0.9.4"
522
+ version = "0.10.0"
516
523
  source = "registry+https://github.com/rust-lang/crates.io-index"
517
- checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
524
+ checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
518
525
  dependencies = [
519
526
  "core-foundation-sys",
520
527
  "libc",
@@ -528,9 +535,9 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
528
535
 
529
536
  [[package]]
530
537
  name = "cpufeatures"
531
- version = "0.2.14"
538
+ version = "0.2.16"
532
539
  source = "registry+https://github.com/rust-lang/crates.io-index"
533
- checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
540
+ checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
534
541
  dependencies = [
535
542
  "libc",
536
543
  ]
@@ -597,18 +604,18 @@ dependencies = [
597
604
 
598
605
  [[package]]
599
606
  name = "crossbeam-channel"
600
- version = "0.5.13"
607
+ version = "0.5.14"
601
608
  source = "registry+https://github.com/rust-lang/crates.io-index"
602
- checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
609
+ checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
603
610
  dependencies = [
604
611
  "crossbeam-utils",
605
612
  ]
606
613
 
607
614
  [[package]]
608
615
  name = "crossbeam-deque"
609
- version = "0.8.5"
616
+ version = "0.8.6"
610
617
  source = "registry+https://github.com/rust-lang/crates.io-index"
611
- checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
618
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
612
619
  dependencies = [
613
620
  "crossbeam-epoch",
614
621
  "crossbeam-utils",
@@ -625,18 +632,18 @@ dependencies = [
625
632
 
626
633
  [[package]]
627
634
  name = "crossbeam-queue"
628
- version = "0.3.11"
635
+ version = "0.3.12"
629
636
  source = "registry+https://github.com/rust-lang/crates.io-index"
630
- checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
637
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
631
638
  dependencies = [
632
639
  "crossbeam-utils",
633
640
  ]
634
641
 
635
642
  [[package]]
636
643
  name = "crossbeam-utils"
637
- version = "0.8.20"
644
+ version = "0.8.21"
638
645
  source = "registry+https://github.com/rust-lang/crates.io-index"
639
- checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
646
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
640
647
 
641
648
  [[package]]
642
649
  name = "crunchy"
@@ -689,19 +696,6 @@ dependencies = [
689
696
  "syn",
690
697
  ]
691
698
 
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
699
  [[package]]
706
700
  name = "dashmap"
707
701
  version = "6.1.0"
@@ -733,9 +727,9 @@ dependencies = [
733
727
 
734
728
  [[package]]
735
729
  name = "derive_arbitrary"
736
- version = "1.3.2"
730
+ version = "1.4.1"
737
731
  source = "registry+https://github.com/rust-lang/crates.io-index"
738
- checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
732
+ checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
739
733
  dependencies = [
740
734
  "proc-macro2",
741
735
  "quote",
@@ -884,19 +878,19 @@ dependencies = [
884
878
 
885
879
  [[package]]
886
880
  name = "errno"
887
- version = "0.3.9"
881
+ version = "0.3.10"
888
882
  source = "registry+https://github.com/rust-lang/crates.io-index"
889
- checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
883
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
890
884
  dependencies = [
891
885
  "libc",
892
- "windows-sys 0.52.0",
886
+ "windows-sys 0.59.0",
893
887
  ]
894
888
 
895
889
  [[package]]
896
890
  name = "fastrand"
897
- version = "2.1.1"
891
+ version = "2.3.0"
898
892
  source = "registry+https://github.com/rust-lang/crates.io-index"
899
- checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
893
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
900
894
 
901
895
  [[package]]
902
896
  name = "filetime"
@@ -918,9 +912,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
918
912
 
919
913
  [[package]]
920
914
  name = "flate2"
921
- version = "1.0.34"
915
+ version = "1.0.35"
922
916
  source = "registry+https://github.com/rust-lang/crates.io-index"
923
- checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
917
+ checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
924
918
  dependencies = [
925
919
  "crc32fast",
926
920
  "miniz_oxide",
@@ -934,9 +928,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
934
928
 
935
929
  [[package]]
936
930
  name = "foldhash"
937
- version = "0.1.3"
931
+ version = "0.1.4"
938
932
  source = "registry+https://github.com/rust-lang/crates.io-index"
939
- checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2"
933
+ checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
940
934
 
941
935
  [[package]]
942
936
  name = "form_urlencoded"
@@ -1076,8 +1070,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
1070
  checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
1077
1071
  dependencies = [
1078
1072
  "cfg-if",
1073
+ "js-sys",
1079
1074
  "libc",
1080
1075
  "wasi",
1076
+ "wasm-bindgen",
1081
1077
  ]
1082
1078
 
1083
1079
  [[package]]
@@ -1088,20 +1084,21 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1088
1084
 
1089
1085
  [[package]]
1090
1086
  name = "glob"
1091
- version = "0.3.1"
1087
+ version = "0.3.2"
1092
1088
  source = "registry+https://github.com/rust-lang/crates.io-index"
1093
- checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
1089
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1094
1090
 
1095
1091
  [[package]]
1096
1092
  name = "governor"
1097
- version = "0.6.3"
1093
+ version = "0.7.0"
1098
1094
  source = "registry+https://github.com/rust-lang/crates.io-index"
1099
- checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b"
1095
+ checksum = "0746aa765db78b521451ef74221663b57ba595bf83f75d0ce23cc09447c8139f"
1100
1096
  dependencies = [
1101
1097
  "cfg-if",
1102
- "dashmap 5.5.3",
1103
- "futures",
1098
+ "dashmap",
1099
+ "futures-sink",
1104
1100
  "futures-timer",
1101
+ "futures-util",
1105
1102
  "no-std-compat",
1106
1103
  "nonzero_ext",
1107
1104
  "parking_lot",
@@ -1114,9 +1111,9 @@ dependencies = [
1114
1111
 
1115
1112
  [[package]]
1116
1113
  name = "h2"
1117
- version = "0.4.6"
1114
+ version = "0.4.7"
1118
1115
  source = "registry+https://github.com/rust-lang/crates.io-index"
1119
- checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205"
1116
+ checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
1120
1117
  dependencies = [
1121
1118
  "atomic-waker",
1122
1119
  "bytes",
@@ -1124,7 +1121,7 @@ dependencies = [
1124
1121
  "futures-core",
1125
1122
  "futures-sink",
1126
1123
  "http",
1127
- "indexmap 2.6.0",
1124
+ "indexmap 2.7.0",
1128
1125
  "slab",
1129
1126
  "tokio",
1130
1127
  "tokio-util",
@@ -1155,9 +1152,9 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1155
1152
 
1156
1153
  [[package]]
1157
1154
  name = "hashbrown"
1158
- version = "0.15.0"
1155
+ version = "0.15.2"
1159
1156
  source = "registry+https://github.com/rust-lang/crates.io-index"
1160
- checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
1157
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1161
1158
  dependencies = [
1162
1159
  "allocator-api2",
1163
1160
  "equivalent",
@@ -1183,12 +1180,6 @@ version = "0.5.0"
1183
1180
  source = "registry+https://github.com/rust-lang/crates.io-index"
1184
1181
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1185
1182
 
1186
- [[package]]
1187
- name = "hermit-abi"
1188
- version = "0.3.9"
1189
- source = "registry+https://github.com/rust-lang/crates.io-index"
1190
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1191
-
1192
1183
  [[package]]
1193
1184
  name = "hermit-abi"
1194
1185
  version = "0.4.0"
@@ -1206,9 +1197,9 @@ dependencies = [
1206
1197
 
1207
1198
  [[package]]
1208
1199
  name = "http"
1209
- version = "1.1.0"
1200
+ version = "1.2.0"
1210
1201
  source = "registry+https://github.com/rust-lang/crates.io-index"
1211
- checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
1202
+ checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
1212
1203
  dependencies = [
1213
1204
  "bytes",
1214
1205
  "fnv",
@@ -1258,9 +1249,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
1258
1249
 
1259
1250
  [[package]]
1260
1251
  name = "hyper"
1261
- version = "1.5.0"
1252
+ version = "1.5.2"
1262
1253
  source = "registry+https://github.com/rust-lang/crates.io-index"
1263
- checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a"
1254
+ checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0"
1264
1255
  dependencies = [
1265
1256
  "bytes",
1266
1257
  "futures-channel",
@@ -1279,9 +1270,9 @@ dependencies = [
1279
1270
 
1280
1271
  [[package]]
1281
1272
  name = "hyper-rustls"
1282
- version = "0.27.3"
1273
+ version = "0.27.5"
1283
1274
  source = "registry+https://github.com/rust-lang/crates.io-index"
1284
- checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
1275
+ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1285
1276
  dependencies = [
1286
1277
  "futures-util",
1287
1278
  "http",
@@ -1297,9 +1288,9 @@ dependencies = [
1297
1288
 
1298
1289
  [[package]]
1299
1290
  name = "hyper-timeout"
1300
- version = "0.5.1"
1291
+ version = "0.5.2"
1301
1292
  source = "registry+https://github.com/rust-lang/crates.io-index"
1302
- checksum = "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793"
1293
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1303
1294
  dependencies = [
1304
1295
  "hyper",
1305
1296
  "hyper-util",
@@ -1310,9 +1301,9 @@ dependencies = [
1310
1301
 
1311
1302
  [[package]]
1312
1303
  name = "hyper-util"
1313
- version = "0.1.9"
1304
+ version = "0.1.10"
1314
1305
  source = "registry+https://github.com/rust-lang/crates.io-index"
1315
- checksum = "41296eb09f183ac68eec06e03cdbea2e759633d4067b2f6552fc2e009bcad08b"
1306
+ checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
1316
1307
  dependencies = [
1317
1308
  "bytes",
1318
1309
  "futures-channel",
@@ -1327,6 +1318,124 @@ dependencies = [
1327
1318
  "tracing",
1328
1319
  ]
1329
1320
 
1321
+ [[package]]
1322
+ name = "icu_collections"
1323
+ version = "1.5.0"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1326
+ dependencies = [
1327
+ "displaydoc",
1328
+ "yoke",
1329
+ "zerofrom",
1330
+ "zerovec",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "icu_locid"
1335
+ version = "1.5.0"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1338
+ dependencies = [
1339
+ "displaydoc",
1340
+ "litemap",
1341
+ "tinystr",
1342
+ "writeable",
1343
+ "zerovec",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "icu_locid_transform"
1348
+ version = "1.5.0"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1351
+ dependencies = [
1352
+ "displaydoc",
1353
+ "icu_locid",
1354
+ "icu_locid_transform_data",
1355
+ "icu_provider",
1356
+ "tinystr",
1357
+ "zerovec",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "icu_locid_transform_data"
1362
+ version = "1.5.0"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1365
+
1366
+ [[package]]
1367
+ name = "icu_normalizer"
1368
+ version = "1.5.0"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1371
+ dependencies = [
1372
+ "displaydoc",
1373
+ "icu_collections",
1374
+ "icu_normalizer_data",
1375
+ "icu_properties",
1376
+ "icu_provider",
1377
+ "smallvec",
1378
+ "utf16_iter",
1379
+ "utf8_iter",
1380
+ "write16",
1381
+ "zerovec",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "icu_normalizer_data"
1386
+ version = "1.5.0"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1389
+
1390
+ [[package]]
1391
+ name = "icu_properties"
1392
+ version = "1.5.1"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1395
+ dependencies = [
1396
+ "displaydoc",
1397
+ "icu_collections",
1398
+ "icu_locid_transform",
1399
+ "icu_properties_data",
1400
+ "icu_provider",
1401
+ "tinystr",
1402
+ "zerovec",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "icu_properties_data"
1407
+ version = "1.5.0"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1410
+
1411
+ [[package]]
1412
+ name = "icu_provider"
1413
+ version = "1.5.0"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1416
+ dependencies = [
1417
+ "displaydoc",
1418
+ "icu_locid",
1419
+ "icu_provider_macros",
1420
+ "stable_deref_trait",
1421
+ "tinystr",
1422
+ "writeable",
1423
+ "yoke",
1424
+ "zerofrom",
1425
+ "zerovec",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "icu_provider_macros"
1430
+ version = "1.5.0"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1433
+ dependencies = [
1434
+ "proc-macro2",
1435
+ "quote",
1436
+ "syn",
1437
+ ]
1438
+
1330
1439
  [[package]]
1331
1440
  name = "ident_case"
1332
1441
  version = "1.0.1"
@@ -1335,12 +1444,23 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1335
1444
 
1336
1445
  [[package]]
1337
1446
  name = "idna"
1338
- version = "0.5.0"
1447
+ version = "1.0.3"
1339
1448
  source = "registry+https://github.com/rust-lang/crates.io-index"
1340
- checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
1449
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1341
1450
  dependencies = [
1342
- "unicode-bidi",
1343
- "unicode-normalization",
1451
+ "idna_adapter",
1452
+ "smallvec",
1453
+ "utf8_iter",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "idna_adapter"
1458
+ version = "1.2.0"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1461
+ dependencies = [
1462
+ "icu_normalizer",
1463
+ "icu_properties",
1344
1464
  ]
1345
1465
 
1346
1466
  [[package]]
@@ -1355,12 +1475,12 @@ dependencies = [
1355
1475
 
1356
1476
  [[package]]
1357
1477
  name = "indexmap"
1358
- version = "2.6.0"
1478
+ version = "2.7.0"
1359
1479
  source = "registry+https://github.com/rust-lang/crates.io-index"
1360
- checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
1480
+ checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
1361
1481
  dependencies = [
1362
1482
  "equivalent",
1363
- "hashbrown 0.15.0",
1483
+ "hashbrown 0.15.2",
1364
1484
  ]
1365
1485
 
1366
1486
  [[package]]
@@ -1383,9 +1503,12 @@ dependencies = [
1383
1503
 
1384
1504
  [[package]]
1385
1505
  name = "inventory"
1386
- version = "0.3.15"
1506
+ version = "0.3.17"
1387
1507
  source = "registry+https://github.com/rust-lang/crates.io-index"
1388
- checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
1508
+ checksum = "3b31349d02fe60f80bbbab1a9402364cad7460626d6030494b08ac4a2075bf81"
1509
+ dependencies = [
1510
+ "rustversion",
1511
+ ]
1389
1512
 
1390
1513
  [[package]]
1391
1514
  name = "ipnet"
@@ -1399,7 +1522,7 @@ version = "0.4.13"
1399
1522
  source = "registry+https://github.com/rust-lang/crates.io-index"
1400
1523
  checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
1401
1524
  dependencies = [
1402
- "hermit-abi 0.4.0",
1525
+ "hermit-abi",
1403
1526
  "libc",
1404
1527
  "windows-sys 0.52.0",
1405
1528
  ]
@@ -1439,9 +1562,9 @@ dependencies = [
1439
1562
 
1440
1563
  [[package]]
1441
1564
  name = "itoa"
1442
- version = "1.0.11"
1565
+ version = "1.0.14"
1443
1566
  source = "registry+https://github.com/rust-lang/crates.io-index"
1444
- checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
1567
+ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1445
1568
 
1446
1569
  [[package]]
1447
1570
  name = "jobserver"
@@ -1454,10 +1577,11 @@ dependencies = [
1454
1577
 
1455
1578
  [[package]]
1456
1579
  name = "js-sys"
1457
- version = "0.3.72"
1580
+ version = "0.3.77"
1458
1581
  source = "registry+https://github.com/rust-lang/crates.io-index"
1459
- checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
1582
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1460
1583
  dependencies = [
1584
+ "once_cell",
1461
1585
  "wasm-bindgen",
1462
1586
  ]
1463
1587
 
@@ -1475,15 +1599,15 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1475
1599
 
1476
1600
  [[package]]
1477
1601
  name = "libc"
1478
- version = "0.2.160"
1602
+ version = "0.2.169"
1479
1603
  source = "registry+https://github.com/rust-lang/crates.io-index"
1480
- checksum = "f0b21006cd1874ae9e650973c565615676dc4a274c965bb0a73796dac838ce4f"
1604
+ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
1481
1605
 
1482
1606
  [[package]]
1483
1607
  name = "libloading"
1484
- version = "0.8.5"
1608
+ version = "0.8.6"
1485
1609
  source = "registry+https://github.com/rust-lang/crates.io-index"
1486
- checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
1610
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1487
1611
  dependencies = [
1488
1612
  "cfg-if",
1489
1613
  "windows-targets",
@@ -1502,9 +1626,15 @@ dependencies = [
1502
1626
 
1503
1627
  [[package]]
1504
1628
  name = "linux-raw-sys"
1505
- version = "0.4.14"
1629
+ version = "0.4.15"
1506
1630
  source = "registry+https://github.com/rust-lang/crates.io-index"
1507
- checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
1631
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1632
+
1633
+ [[package]]
1634
+ name = "litemap"
1635
+ version = "0.7.4"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
1508
1638
 
1509
1639
  [[package]]
1510
1640
  name = "lock_api"
@@ -1524,9 +1654,9 @@ checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
1524
1654
 
1525
1655
  [[package]]
1526
1656
  name = "log"
1527
- version = "0.4.22"
1657
+ version = "0.4.25"
1528
1658
  source = "registry+https://github.com/rust-lang/crates.io-index"
1529
- checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
1659
+ checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
1530
1660
 
1531
1661
  [[package]]
1532
1662
  name = "lru"
@@ -1534,7 +1664,7 @@ version = "0.12.5"
1534
1664
  source = "registry+https://github.com/rust-lang/crates.io-index"
1535
1665
  checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
1536
1666
  dependencies = [
1537
- "hashbrown 0.15.0",
1667
+ "hashbrown 0.15.2",
1538
1668
  ]
1539
1669
 
1540
1670
  [[package]]
@@ -1605,20 +1735,19 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1605
1735
 
1606
1736
  [[package]]
1607
1737
  name = "miniz_oxide"
1608
- version = "0.8.0"
1738
+ version = "0.8.3"
1609
1739
  source = "registry+https://github.com/rust-lang/crates.io-index"
1610
- checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
1740
+ checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
1611
1741
  dependencies = [
1612
1742
  "adler2",
1613
1743
  ]
1614
1744
 
1615
1745
  [[package]]
1616
1746
  name = "mio"
1617
- version = "1.0.2"
1747
+ version = "1.0.3"
1618
1748
  source = "registry+https://github.com/rust-lang/crates.io-index"
1619
- checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
1749
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1620
1750
  dependencies = [
1621
- "hermit-abi 0.3.9",
1622
1751
  "libc",
1623
1752
  "wasi",
1624
1753
  "windows-sys 0.52.0",
@@ -1626,9 +1755,9 @@ dependencies = [
1626
1755
 
1627
1756
  [[package]]
1628
1757
  name = "mockall"
1629
- version = "0.13.0"
1758
+ version = "0.13.1"
1630
1759
  source = "registry+https://github.com/rust-lang/crates.io-index"
1631
- checksum = "d4c28b3fb6d753d28c20e826cd46ee611fda1cf3cde03a443a974043247c065a"
1760
+ checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2"
1632
1761
  dependencies = [
1633
1762
  "cfg-if",
1634
1763
  "downcast",
@@ -1640,9 +1769,9 @@ dependencies = [
1640
1769
 
1641
1770
  [[package]]
1642
1771
  name = "mockall_derive"
1643
- version = "0.13.0"
1772
+ version = "0.13.1"
1644
1773
  source = "registry+https://github.com/rust-lang/crates.io-index"
1645
- checksum = "341014e7f530314e9a1fdbc7400b244efea7122662c96bfa248c31da5bfb2020"
1774
+ checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898"
1646
1775
  dependencies = [
1647
1776
  "cfg-if",
1648
1777
  "proc-macro2",
@@ -1714,9 +1843,9 @@ dependencies = [
1714
1843
 
1715
1844
  [[package]]
1716
1845
  name = "object"
1717
- version = "0.36.5"
1846
+ version = "0.36.7"
1718
1847
  source = "registry+https://github.com/rust-lang/crates.io-index"
1719
- checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
1848
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1720
1849
  dependencies = [
1721
1850
  "memchr",
1722
1851
  ]
@@ -1741,32 +1870,47 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1741
1870
 
1742
1871
  [[package]]
1743
1872
  name = "opentelemetry"
1744
- version = "0.24.0"
1873
+ version = "0.26.0"
1745
1874
  source = "registry+https://github.com/rust-lang/crates.io-index"
1746
- checksum = "4c365a63eec4f55b7efeceb724f1336f26a9cf3427b70e59e2cd2a5b947fba96"
1875
+ checksum = "570074cc999d1a58184080966e5bd3bf3a9a4af650c3b05047c2621e7405cd17"
1747
1876
  dependencies = [
1748
1877
  "futures-core",
1749
1878
  "futures-sink",
1750
1879
  "js-sys",
1751
1880
  "once_cell",
1752
1881
  "pin-project-lite",
1753
- "thiserror",
1882
+ "thiserror 1.0.69",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "opentelemetry-http"
1887
+ version = "0.26.0"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "6351496aeaa49d7c267fb480678d85d1cd30c5edb20b497c48c56f62a8c14b99"
1890
+ dependencies = [
1891
+ "async-trait",
1892
+ "bytes",
1893
+ "http",
1894
+ "opentelemetry",
1895
+ "reqwest",
1754
1896
  ]
1755
1897
 
1756
1898
  [[package]]
1757
1899
  name = "opentelemetry-otlp"
1758
- version = "0.17.0"
1900
+ version = "0.26.0"
1759
1901
  source = "registry+https://github.com/rust-lang/crates.io-index"
1760
- checksum = "6b925a602ffb916fb7421276b86756027b37ee708f9dce2dbdcc51739f07e727"
1902
+ checksum = "29e1f9c8b032d4f635c730c0efcf731d5e2530ea13fa8bef7939ddc8420696bd"
1761
1903
  dependencies = [
1762
1904
  "async-trait",
1763
1905
  "futures-core",
1764
1906
  "http",
1765
1907
  "opentelemetry",
1908
+ "opentelemetry-http",
1766
1909
  "opentelemetry-proto",
1767
1910
  "opentelemetry_sdk",
1768
1911
  "prost",
1769
- "thiserror",
1912
+ "reqwest",
1913
+ "thiserror 1.0.69",
1770
1914
  "tokio",
1771
1915
  "tonic",
1772
1916
  ]
@@ -1774,8 +1918,7 @@ dependencies = [
1774
1918
  [[package]]
1775
1919
  name = "opentelemetry-prometheus"
1776
1920
  version = "0.17.0"
1777
- source = "registry+https://github.com/rust-lang/crates.io-index"
1778
- checksum = "cc4191ce34aa274621861a7a9d68dbcf618d5b6c66b10081631b61fd81fbc015"
1921
+ source = "git+https://github.com/open-telemetry/opentelemetry-rust.git?rev=e911383#e91138351a689cd21923c15eb48f5fbc95ded807"
1779
1922
  dependencies = [
1780
1923
  "once_cell",
1781
1924
  "opentelemetry",
@@ -1786,9 +1929,9 @@ dependencies = [
1786
1929
 
1787
1930
  [[package]]
1788
1931
  name = "opentelemetry-proto"
1789
- version = "0.7.0"
1932
+ version = "0.26.1"
1790
1933
  source = "registry+https://github.com/rust-lang/crates.io-index"
1791
- checksum = "30ee9f20bff9c984511a02f082dc8ede839e4a9bf15cc2487c8d6fea5ad850d9"
1934
+ checksum = "c9d3968ce3aefdcca5c27e3c4ea4391b37547726a70893aab52d3de95d5f8b34"
1792
1935
  dependencies = [
1793
1936
  "opentelemetry",
1794
1937
  "opentelemetry_sdk",
@@ -1798,9 +1941,9 @@ dependencies = [
1798
1941
 
1799
1942
  [[package]]
1800
1943
  name = "opentelemetry_sdk"
1801
- version = "0.24.1"
1944
+ version = "0.26.0"
1802
1945
  source = "registry+https://github.com/rust-lang/crates.io-index"
1803
- checksum = "692eac490ec80f24a17828d49b40b60f5aeaccdfe6a503f939713afd22bc28df"
1946
+ checksum = "d2c627d9f4c9cdc1f21a29ee4bfbd6028fcb8bcf2a857b43f3abdf72c9c862f3"
1804
1947
  dependencies = [
1805
1948
  "async-trait",
1806
1949
  "futures-channel",
@@ -1812,7 +1955,7 @@ dependencies = [
1812
1955
  "percent-encoding",
1813
1956
  "rand",
1814
1957
  "serde_json",
1815
- "thiserror",
1958
+ "thiserror 1.0.69",
1816
1959
  "tokio",
1817
1960
  "tokio-stream",
1818
1961
  ]
@@ -1875,7 +2018,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
2018
  checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
1876
2019
  dependencies = [
1877
2020
  "fixedbitset",
1878
- "indexmap 2.6.0",
2021
+ "indexmap 2.7.0",
1879
2022
  ]
1880
2023
 
1881
2024
  [[package]]
@@ -1889,18 +2032,18 @@ dependencies = [
1889
2032
 
1890
2033
  [[package]]
1891
2034
  name = "pin-project"
1892
- version = "1.1.6"
2035
+ version = "1.1.8"
1893
2036
  source = "registry+https://github.com/rust-lang/crates.io-index"
1894
- checksum = "baf123a161dde1e524adf36f90bc5d8d3462824a9c43553ad07a8183161189ec"
2037
+ checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916"
1895
2038
  dependencies = [
1896
2039
  "pin-project-internal",
1897
2040
  ]
1898
2041
 
1899
2042
  [[package]]
1900
2043
  name = "pin-project-internal"
1901
- version = "1.1.6"
2044
+ version = "1.1.8"
1902
2045
  source = "registry+https://github.com/rust-lang/crates.io-index"
1903
- checksum = "a4502d8515ca9f32f1fb543d987f63d95a14934883db45bdb48060b6b69257f8"
2046
+ checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb"
1904
2047
  dependencies = [
1905
2048
  "proc-macro2",
1906
2049
  "quote",
@@ -1909,9 +2052,9 @@ dependencies = [
1909
2052
 
1910
2053
  [[package]]
1911
2054
  name = "pin-project-lite"
1912
- version = "0.2.14"
2055
+ version = "0.2.16"
1913
2056
  source = "registry+https://github.com/rust-lang/crates.io-index"
1914
- checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2057
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1915
2058
 
1916
2059
  [[package]]
1917
2060
  name = "pin-utils"
@@ -1955,9 +2098,9 @@ dependencies = [
1955
2098
 
1956
2099
  [[package]]
1957
2100
  name = "portable-atomic"
1958
- version = "1.9.0"
2101
+ version = "1.10.0"
1959
2102
  source = "registry+https://github.com/rust-lang/crates.io-index"
1960
- checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
2103
+ checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
1961
2104
 
1962
2105
  [[package]]
1963
2106
  name = "powerfmt"
@@ -1976,9 +2119,9 @@ dependencies = [
1976
2119
 
1977
2120
  [[package]]
1978
2121
  name = "predicates"
1979
- version = "3.1.2"
2122
+ version = "3.1.3"
1980
2123
  source = "registry+https://github.com/rust-lang/crates.io-index"
1981
- checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97"
2124
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
1982
2125
  dependencies = [
1983
2126
  "anstyle",
1984
2127
  "predicates-core",
@@ -1986,15 +2129,15 @@ dependencies = [
1986
2129
 
1987
2130
  [[package]]
1988
2131
  name = "predicates-core"
1989
- version = "1.0.8"
2132
+ version = "1.0.9"
1990
2133
  source = "registry+https://github.com/rust-lang/crates.io-index"
1991
- checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931"
2134
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
1992
2135
 
1993
2136
  [[package]]
1994
2137
  name = "predicates-tree"
1995
- version = "1.0.11"
2138
+ version = "1.0.12"
1996
2139
  source = "registry+https://github.com/rust-lang/crates.io-index"
1997
- checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13"
2140
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
1998
2141
  dependencies = [
1999
2142
  "predicates-core",
2000
2143
  "termtree",
@@ -2002,9 +2145,9 @@ dependencies = [
2002
2145
 
2003
2146
  [[package]]
2004
2147
  name = "prettyplease"
2005
- version = "0.2.22"
2148
+ version = "0.2.29"
2006
2149
  source = "registry+https://github.com/rust-lang/crates.io-index"
2007
- checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba"
2150
+ checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
2008
2151
  dependencies = [
2009
2152
  "proc-macro2",
2010
2153
  "syn",
@@ -2021,9 +2164,9 @@ dependencies = [
2021
2164
 
2022
2165
  [[package]]
2023
2166
  name = "proc-macro2"
2024
- version = "1.0.88"
2167
+ version = "1.0.93"
2025
2168
  source = "registry+https://github.com/rust-lang/crates.io-index"
2026
- checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9"
2169
+ checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
2027
2170
  dependencies = [
2028
2171
  "unicode-ident",
2029
2172
  ]
@@ -2040,14 +2183,14 @@ dependencies = [
2040
2183
  "memchr",
2041
2184
  "parking_lot",
2042
2185
  "protobuf",
2043
- "thiserror",
2186
+ "thiserror 1.0.69",
2044
2187
  ]
2045
2188
 
2046
2189
  [[package]]
2047
2190
  name = "prost"
2048
- version = "0.13.3"
2191
+ version = "0.13.4"
2049
2192
  source = "registry+https://github.com/rust-lang/crates.io-index"
2050
- checksum = "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f"
2193
+ checksum = "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec"
2051
2194
  dependencies = [
2052
2195
  "bytes",
2053
2196
  "prost-derive",
@@ -2055,11 +2198,10 @@ dependencies = [
2055
2198
 
2056
2199
  [[package]]
2057
2200
  name = "prost-build"
2058
- version = "0.13.3"
2201
+ version = "0.13.4"
2059
2202
  source = "registry+https://github.com/rust-lang/crates.io-index"
2060
- checksum = "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15"
2203
+ checksum = "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b"
2061
2204
  dependencies = [
2062
- "bytes",
2063
2205
  "heck",
2064
2206
  "itertools 0.13.0",
2065
2207
  "log",
@@ -2076,9 +2218,9 @@ dependencies = [
2076
2218
 
2077
2219
  [[package]]
2078
2220
  name = "prost-derive"
2079
- version = "0.13.3"
2221
+ version = "0.13.4"
2080
2222
  source = "registry+https://github.com/rust-lang/crates.io-index"
2081
- checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5"
2223
+ checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3"
2082
2224
  dependencies = [
2083
2225
  "anyhow",
2084
2226
  "itertools 0.13.0",
@@ -2089,9 +2231,9 @@ dependencies = [
2089
2231
 
2090
2232
  [[package]]
2091
2233
  name = "prost-types"
2092
- version = "0.13.3"
2234
+ version = "0.13.4"
2093
2235
  source = "registry+https://github.com/rust-lang/crates.io-index"
2094
- checksum = "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670"
2236
+ checksum = "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc"
2095
2237
  dependencies = [
2096
2238
  "prost",
2097
2239
  ]
@@ -2150,9 +2292,9 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2150
2292
 
2151
2293
  [[package]]
2152
2294
  name = "quanta"
2153
- version = "0.12.3"
2295
+ version = "0.12.5"
2154
2296
  source = "registry+https://github.com/rust-lang/crates.io-index"
2155
- checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5"
2297
+ checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e"
2156
2298
  dependencies = [
2157
2299
  "crossbeam-utils",
2158
2300
  "libc",
@@ -2165,45 +2307,49 @@ dependencies = [
2165
2307
 
2166
2308
  [[package]]
2167
2309
  name = "quinn"
2168
- version = "0.11.5"
2310
+ version = "0.11.6"
2169
2311
  source = "registry+https://github.com/rust-lang/crates.io-index"
2170
- checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684"
2312
+ checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
2171
2313
  dependencies = [
2172
2314
  "bytes",
2173
2315
  "pin-project-lite",
2174
2316
  "quinn-proto",
2175
2317
  "quinn-udp",
2176
- "rustc-hash 2.0.0",
2318
+ "rustc-hash 2.1.0",
2177
2319
  "rustls",
2178
2320
  "socket2",
2179
- "thiserror",
2321
+ "thiserror 2.0.11",
2180
2322
  "tokio",
2181
2323
  "tracing",
2182
2324
  ]
2183
2325
 
2184
2326
  [[package]]
2185
2327
  name = "quinn-proto"
2186
- version = "0.11.8"
2328
+ version = "0.11.9"
2187
2329
  source = "registry+https://github.com/rust-lang/crates.io-index"
2188
- checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6"
2330
+ checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
2189
2331
  dependencies = [
2190
2332
  "bytes",
2333
+ "getrandom",
2191
2334
  "rand",
2192
2335
  "ring",
2193
- "rustc-hash 2.0.0",
2336
+ "rustc-hash 2.1.0",
2194
2337
  "rustls",
2338
+ "rustls-pki-types",
2195
2339
  "slab",
2196
- "thiserror",
2340
+ "thiserror 2.0.11",
2197
2341
  "tinyvec",
2198
2342
  "tracing",
2343
+ "web-time",
2199
2344
  ]
2200
2345
 
2201
2346
  [[package]]
2202
2347
  name = "quinn-udp"
2203
- version = "0.5.5"
2348
+ version = "0.5.9"
2204
2349
  source = "registry+https://github.com/rust-lang/crates.io-index"
2205
- checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b"
2350
+ checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904"
2206
2351
  dependencies = [
2352
+ "cfg_aliases",
2207
2353
  "libc",
2208
2354
  "once_cell",
2209
2355
  "socket2",
@@ -2213,9 +2359,9 @@ dependencies = [
2213
2359
 
2214
2360
  [[package]]
2215
2361
  name = "quote"
2216
- version = "1.0.37"
2362
+ version = "1.0.38"
2217
2363
  source = "registry+https://github.com/rust-lang/crates.io-index"
2218
- checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
2364
+ checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
2219
2365
  dependencies = [
2220
2366
  "proc-macro2",
2221
2367
  ]
@@ -2252,9 +2398,9 @@ dependencies = [
2252
2398
 
2253
2399
  [[package]]
2254
2400
  name = "raw-cpuid"
2255
- version = "11.2.0"
2401
+ version = "11.3.0"
2256
2402
  source = "registry+https://github.com/rust-lang/crates.io-index"
2257
- checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0"
2403
+ checksum = "c6928fa44c097620b706542d428957635951bade7143269085389d42c8a4927e"
2258
2404
  dependencies = [
2259
2405
  "bitflags",
2260
2406
  ]
@@ -2281,18 +2427,18 @@ dependencies = [
2281
2427
 
2282
2428
  [[package]]
2283
2429
  name = "rb-sys"
2284
- version = "0.9.102"
2430
+ version = "0.9.108"
2285
2431
  source = "registry+https://github.com/rust-lang/crates.io-index"
2286
- checksum = "df4dec4b1d304c3b308a2cd86b1216ea45dd4361f4e9fa056f108332d0a450c1"
2432
+ checksum = "1e955384e1a4dc64b71d1e4b39ed0edbd77c7bde4a10dfd5ad208e1160fddfa7"
2287
2433
  dependencies = [
2288
2434
  "rb-sys-build",
2289
2435
  ]
2290
2436
 
2291
2437
  [[package]]
2292
2438
  name = "rb-sys-build"
2293
- version = "0.9.102"
2439
+ version = "0.9.108"
2294
2440
  source = "registry+https://github.com/rust-lang/crates.io-index"
2295
- checksum = "1d71de3e29d174b8fb17b5d4470f27d7aa2605f8a9d05fda0d3aeff30e05a570"
2441
+ checksum = "c167c6571889b2550d6fcb315e8aa60bdb95e47e4b64793e3f65a30dc25afc85"
2296
2442
  dependencies = [
2297
2443
  "bindgen",
2298
2444
  "lazy_static",
@@ -2311,22 +2457,22 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
2311
2457
 
2312
2458
  [[package]]
2313
2459
  name = "redox_syscall"
2314
- version = "0.5.7"
2460
+ version = "0.5.8"
2315
2461
  source = "registry+https://github.com/rust-lang/crates.io-index"
2316
- checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
2462
+ checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
2317
2463
  dependencies = [
2318
2464
  "bitflags",
2319
2465
  ]
2320
2466
 
2321
2467
  [[package]]
2322
2468
  name = "regex"
2323
- version = "1.11.0"
2469
+ version = "1.11.1"
2324
2470
  source = "registry+https://github.com/rust-lang/crates.io-index"
2325
- checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8"
2471
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2326
2472
  dependencies = [
2327
2473
  "aho-corasick",
2328
2474
  "memchr",
2329
- "regex-automata 0.4.8",
2475
+ "regex-automata 0.4.9",
2330
2476
  "regex-syntax 0.8.5",
2331
2477
  ]
2332
2478
 
@@ -2341,9 +2487,9 @@ dependencies = [
2341
2487
 
2342
2488
  [[package]]
2343
2489
  name = "regex-automata"
2344
- version = "0.4.8"
2490
+ version = "0.4.9"
2345
2491
  source = "registry+https://github.com/rust-lang/crates.io-index"
2346
- checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
2492
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2347
2493
  dependencies = [
2348
2494
  "aho-corasick",
2349
2495
  "memchr",
@@ -2370,12 +2516,13 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2370
2516
 
2371
2517
  [[package]]
2372
2518
  name = "reqwest"
2373
- version = "0.12.8"
2519
+ version = "0.12.12"
2374
2520
  source = "registry+https://github.com/rust-lang/crates.io-index"
2375
- checksum = "f713147fbe92361e52392c73b8c9e48c04c6625bce969ef54dc901e58e042a7b"
2521
+ checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da"
2376
2522
  dependencies = [
2377
2523
  "base64 0.22.1",
2378
2524
  "bytes",
2525
+ "futures-channel",
2379
2526
  "futures-core",
2380
2527
  "futures-util",
2381
2528
  "http",
@@ -2399,10 +2546,11 @@ dependencies = [
2399
2546
  "serde",
2400
2547
  "serde_json",
2401
2548
  "serde_urlencoded",
2402
- "sync_wrapper 1.0.1",
2549
+ "sync_wrapper",
2403
2550
  "tokio",
2404
2551
  "tokio-rustls",
2405
2552
  "tokio-util",
2553
+ "tower 0.5.2",
2406
2554
  "tower-service",
2407
2555
  "url",
2408
2556
  "wasm-bindgen",
@@ -2461,9 +2609,9 @@ dependencies = [
2461
2609
 
2462
2610
  [[package]]
2463
2611
  name = "rstest"
2464
- version = "0.22.0"
2612
+ version = "0.23.0"
2465
2613
  source = "registry+https://github.com/rust-lang/crates.io-index"
2466
- checksum = "7b423f0e62bdd61734b67cd21ff50871dfaeb9cc74f869dcd6af974fbcb19936"
2614
+ checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035"
2467
2615
  dependencies = [
2468
2616
  "futures",
2469
2617
  "futures-timer",
@@ -2473,9 +2621,9 @@ dependencies = [
2473
2621
 
2474
2622
  [[package]]
2475
2623
  name = "rstest_macros"
2476
- version = "0.22.0"
2624
+ version = "0.23.0"
2477
2625
  source = "registry+https://github.com/rust-lang/crates.io-index"
2478
- checksum = "c5e1711e7d14f74b12a58411c542185ef7fb7f2e7f8ee6e2940a883628522b42"
2626
+ checksum = "825ea780781b15345a146be27eaefb05085e337e869bff01b4306a4fd4a9ad5a"
2479
2627
  dependencies = [
2480
2628
  "cfg-if",
2481
2629
  "glob",
@@ -2503,9 +2651,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2503
2651
 
2504
2652
  [[package]]
2505
2653
  name = "rustc-hash"
2506
- version = "2.0.0"
2654
+ version = "2.1.0"
2507
2655
  source = "registry+https://github.com/rust-lang/crates.io-index"
2508
- checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
2656
+ checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
2509
2657
 
2510
2658
  [[package]]
2511
2659
  name = "rustc_version"
@@ -2542,22 +2690,22 @@ version = "0.1.0"
2542
2690
 
2543
2691
  [[package]]
2544
2692
  name = "rustix"
2545
- version = "0.38.37"
2693
+ version = "0.38.43"
2546
2694
  source = "registry+https://github.com/rust-lang/crates.io-index"
2547
- checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
2695
+ checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6"
2548
2696
  dependencies = [
2549
2697
  "bitflags",
2550
2698
  "errno",
2551
2699
  "libc",
2552
2700
  "linux-raw-sys",
2553
- "windows-sys 0.52.0",
2701
+ "windows-sys 0.59.0",
2554
2702
  ]
2555
2703
 
2556
2704
  [[package]]
2557
2705
  name = "rustls"
2558
- version = "0.23.15"
2706
+ version = "0.23.21"
2559
2707
  source = "registry+https://github.com/rust-lang/crates.io-index"
2560
- checksum = "5fbb44d7acc4e873d613422379f69f237a1b141928c02f6bc6ccfddddc2d7993"
2708
+ checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8"
2561
2709
  dependencies = [
2562
2710
  "log",
2563
2711
  "once_cell",
@@ -2570,12 +2718,11 @@ dependencies = [
2570
2718
 
2571
2719
  [[package]]
2572
2720
  name = "rustls-native-certs"
2573
- version = "0.8.0"
2721
+ version = "0.8.1"
2574
2722
  source = "registry+https://github.com/rust-lang/crates.io-index"
2575
- checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a"
2723
+ checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
2576
2724
  dependencies = [
2577
2725
  "openssl-probe",
2578
- "rustls-pemfile",
2579
2726
  "rustls-pki-types",
2580
2727
  "schannel",
2581
2728
  "security-framework",
@@ -2592,9 +2739,12 @@ dependencies = [
2592
2739
 
2593
2740
  [[package]]
2594
2741
  name = "rustls-pki-types"
2595
- version = "1.10.0"
2742
+ version = "1.10.1"
2596
2743
  source = "registry+https://github.com/rust-lang/crates.io-index"
2597
- checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
2744
+ checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37"
2745
+ dependencies = [
2746
+ "web-time",
2747
+ ]
2598
2748
 
2599
2749
  [[package]]
2600
2750
  name = "rustls-webpki"
@@ -2609,9 +2759,9 @@ dependencies = [
2609
2759
 
2610
2760
  [[package]]
2611
2761
  name = "rustversion"
2612
- version = "1.0.18"
2762
+ version = "1.0.19"
2613
2763
  source = "registry+https://github.com/rust-lang/crates.io-index"
2614
- checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
2764
+ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
2615
2765
 
2616
2766
  [[package]]
2617
2767
  name = "ryu"
@@ -2630,9 +2780,9 @@ dependencies = [
2630
2780
 
2631
2781
  [[package]]
2632
2782
  name = "schannel"
2633
- version = "0.1.26"
2783
+ version = "0.1.27"
2634
2784
  source = "registry+https://github.com/rust-lang/crates.io-index"
2635
- checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1"
2785
+ checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
2636
2786
  dependencies = [
2637
2787
  "windows-sys 0.59.0",
2638
2788
  ]
@@ -2645,9 +2795,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2645
2795
 
2646
2796
  [[package]]
2647
2797
  name = "security-framework"
2648
- version = "2.11.1"
2798
+ version = "3.2.0"
2649
2799
  source = "registry+https://github.com/rust-lang/crates.io-index"
2650
- checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2800
+ checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
2651
2801
  dependencies = [
2652
2802
  "bitflags",
2653
2803
  "core-foundation",
@@ -2658,9 +2808,9 @@ dependencies = [
2658
2808
 
2659
2809
  [[package]]
2660
2810
  name = "security-framework-sys"
2661
- version = "2.12.0"
2811
+ version = "2.14.0"
2662
2812
  source = "registry+https://github.com/rust-lang/crates.io-index"
2663
- checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6"
2813
+ checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
2664
2814
  dependencies = [
2665
2815
  "core-foundation-sys",
2666
2816
  "libc",
@@ -2668,9 +2818,9 @@ dependencies = [
2668
2818
 
2669
2819
  [[package]]
2670
2820
  name = "semver"
2671
- version = "1.0.23"
2821
+ version = "1.0.24"
2672
2822
  source = "registry+https://github.com/rust-lang/crates.io-index"
2673
- checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
2823
+ checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
2674
2824
 
2675
2825
  [[package]]
2676
2826
  name = "seq-macro"
@@ -2680,18 +2830,18 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
2680
2830
 
2681
2831
  [[package]]
2682
2832
  name = "serde"
2683
- version = "1.0.210"
2833
+ version = "1.0.217"
2684
2834
  source = "registry+https://github.com/rust-lang/crates.io-index"
2685
- checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
2835
+ checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
2686
2836
  dependencies = [
2687
2837
  "serde_derive",
2688
2838
  ]
2689
2839
 
2690
2840
  [[package]]
2691
2841
  name = "serde_derive"
2692
- version = "1.0.210"
2842
+ version = "1.0.217"
2693
2843
  source = "registry+https://github.com/rust-lang/crates.io-index"
2694
- checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
2844
+ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
2695
2845
  dependencies = [
2696
2846
  "proc-macro2",
2697
2847
  "quote",
@@ -2700,9 +2850,9 @@ dependencies = [
2700
2850
 
2701
2851
  [[package]]
2702
2852
  name = "serde_json"
2703
- version = "1.0.128"
2853
+ version = "1.0.135"
2704
2854
  source = "registry+https://github.com/rust-lang/crates.io-index"
2705
- checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
2855
+ checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9"
2706
2856
  dependencies = [
2707
2857
  "itoa",
2708
2858
  "memchr",
@@ -2810,9 +2960,9 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2810
2960
 
2811
2961
  [[package]]
2812
2962
  name = "socket2"
2813
- version = "0.5.7"
2963
+ version = "0.5.8"
2814
2964
  source = "registry+https://github.com/rust-lang/crates.io-index"
2815
- checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
2965
+ checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
2816
2966
  dependencies = [
2817
2967
  "libc",
2818
2968
  "windows-sys 0.52.0",
@@ -2833,6 +2983,12 @@ dependencies = [
2833
2983
  "lock_api",
2834
2984
  ]
2835
2985
 
2986
+ [[package]]
2987
+ name = "stable_deref_trait"
2988
+ version = "1.2.0"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2991
+
2836
2992
  [[package]]
2837
2993
  name = "strsim"
2838
2994
  version = "0.11.1"
@@ -2847,9 +3003,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2847
3003
 
2848
3004
  [[package]]
2849
3005
  name = "syn"
2850
- version = "2.0.79"
3006
+ version = "2.0.96"
2851
3007
  source = "registry+https://github.com/rust-lang/crates.io-index"
2852
- checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
3008
+ checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
2853
3009
  dependencies = [
2854
3010
  "proc-macro2",
2855
3011
  "quote",
@@ -2858,24 +3014,29 @@ dependencies = [
2858
3014
 
2859
3015
  [[package]]
2860
3016
  name = "sync_wrapper"
2861
- version = "0.1.2"
3017
+ version = "1.0.2"
2862
3018
  source = "registry+https://github.com/rust-lang/crates.io-index"
2863
- checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
3019
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3020
+ dependencies = [
3021
+ "futures-core",
3022
+ ]
2864
3023
 
2865
3024
  [[package]]
2866
- name = "sync_wrapper"
2867
- version = "1.0.1"
3025
+ name = "synstructure"
3026
+ version = "0.13.1"
2868
3027
  source = "registry+https://github.com/rust-lang/crates.io-index"
2869
- checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
3028
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
2870
3029
  dependencies = [
2871
- "futures-core",
3030
+ "proc-macro2",
3031
+ "quote",
3032
+ "syn",
2872
3033
  ]
2873
3034
 
2874
3035
  [[package]]
2875
3036
  name = "sysinfo"
2876
- version = "0.31.4"
3037
+ version = "0.32.1"
2877
3038
  source = "registry+https://github.com/rust-lang/crates.io-index"
2878
- checksum = "355dbe4f8799b304b05e1b0f05fc59b2a18d36645cf169607da45bde2f69a1be"
3039
+ checksum = "4c33cd241af0f2e9e3b5c32163b873b29956890b5342e6745b917ce9d490f4af"
2879
3040
  dependencies = [
2880
3041
  "core-foundation-sys",
2881
3042
  "libc",
@@ -2886,23 +3047,30 @@ dependencies = [
2886
3047
 
2887
3048
  [[package]]
2888
3049
  name = "tar"
2889
- version = "0.4.42"
3050
+ version = "0.4.43"
2890
3051
  source = "registry+https://github.com/rust-lang/crates.io-index"
2891
- checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020"
3052
+ checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6"
2892
3053
  dependencies = [
2893
3054
  "filetime",
2894
3055
  "libc",
2895
3056
  "xattr",
2896
3057
  ]
2897
3058
 
3059
+ [[package]]
3060
+ name = "target-triple"
3061
+ version = "0.1.3"
3062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3063
+ checksum = "42a4d50cdb458045afc8131fd91b64904da29548bcb63c7236e0844936c13078"
3064
+
2898
3065
  [[package]]
2899
3066
  name = "tempfile"
2900
- version = "3.13.0"
3067
+ version = "3.15.0"
2901
3068
  source = "registry+https://github.com/rust-lang/crates.io-index"
2902
- checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
3069
+ checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
2903
3070
  dependencies = [
2904
3071
  "cfg-if",
2905
3072
  "fastrand",
3073
+ "getrandom",
2906
3074
  "once_cell",
2907
3075
  "rustix",
2908
3076
  "windows-sys 0.59.0",
@@ -2919,24 +3087,23 @@ dependencies = [
2919
3087
  "base64 0.22.1",
2920
3088
  "derive_builder",
2921
3089
  "derive_more",
2922
- "futures",
2923
3090
  "futures-retry",
3091
+ "futures-util",
2924
3092
  "http",
2925
3093
  "http-body-util",
2926
3094
  "hyper",
2927
3095
  "hyper-util",
2928
3096
  "mockall",
2929
- "once_cell",
2930
3097
  "opentelemetry",
2931
3098
  "parking_lot",
2932
3099
  "prost-types",
2933
3100
  "slotmap",
2934
3101
  "temporal-sdk-core-api",
2935
3102
  "temporal-sdk-core-protos",
2936
- "thiserror",
3103
+ "thiserror 2.0.11",
2937
3104
  "tokio",
2938
3105
  "tonic",
2939
- "tower 0.5.1",
3106
+ "tower 0.5.2",
2940
3107
  "tracing",
2941
3108
  "url",
2942
3109
  "uuid",
@@ -2948,9 +3115,8 @@ version = "0.1.0-alpha.1"
2948
3115
  dependencies = [
2949
3116
  "anyhow",
2950
3117
  "async-trait",
2951
- "crossbeam-channel",
2952
3118
  "derive_more",
2953
- "futures",
3119
+ "futures-util",
2954
3120
  "parking_lot",
2955
3121
  "prost-wkt-types",
2956
3122
  "serde",
@@ -2958,7 +3124,7 @@ dependencies = [
2958
3124
  "temporal-sdk-core",
2959
3125
  "temporal-sdk-core-api",
2960
3126
  "temporal-sdk-core-protos",
2961
- "thiserror",
3127
+ "thiserror 2.0.11",
2962
3128
  "tokio",
2963
3129
  "tokio-stream",
2964
3130
  "tokio-util",
@@ -2979,13 +3145,13 @@ dependencies = [
2979
3145
  "crossbeam-channel",
2980
3146
  "crossbeam-queue",
2981
3147
  "crossbeam-utils",
2982
- "dashmap 6.1.0",
3148
+ "dashmap",
2983
3149
  "derive_builder",
2984
3150
  "derive_more",
2985
3151
  "enum-iterator",
2986
3152
  "enum_dispatch",
2987
3153
  "flate2",
2988
- "futures",
3154
+ "futures-channel",
2989
3155
  "futures-util",
2990
3156
  "governor",
2991
3157
  "http-body-util",
@@ -2994,7 +3160,6 @@ dependencies = [
2994
3160
  "itertools 0.13.0",
2995
3161
  "lru",
2996
3162
  "mockall",
2997
- "once_cell",
2998
3163
  "opentelemetry",
2999
3164
  "opentelemetry-otlp",
3000
3165
  "opentelemetry-prometheus",
@@ -3021,12 +3186,11 @@ dependencies = [
3021
3186
  "temporal-sdk-core-api",
3022
3187
  "temporal-sdk-core-protos",
3023
3188
  "temporal-sdk-core-test-utils",
3024
- "thiserror",
3189
+ "thiserror 2.0.11",
3025
3190
  "tokio",
3026
3191
  "tokio-stream",
3027
3192
  "tokio-util",
3028
3193
  "tonic",
3029
- "tonic-build",
3030
3194
  "tracing",
3031
3195
  "tracing-subscriber",
3032
3196
  "url",
@@ -3042,10 +3206,11 @@ dependencies = [
3042
3206
  "derive_builder",
3043
3207
  "derive_more",
3044
3208
  "opentelemetry",
3209
+ "prost",
3045
3210
  "prost-types",
3046
3211
  "serde_json",
3047
3212
  "temporal-sdk-core-protos",
3048
- "thiserror",
3213
+ "thiserror 2.0.11",
3049
3214
  "tonic",
3050
3215
  "tracing-core",
3051
3216
  "url",
@@ -3059,13 +3224,15 @@ dependencies = [
3059
3224
  "base64 0.22.1",
3060
3225
  "derive_more",
3061
3226
  "prost",
3227
+ "prost-build",
3228
+ "prost-types",
3062
3229
  "prost-wkt",
3063
3230
  "prost-wkt-build",
3064
3231
  "prost-wkt-types",
3065
3232
  "rand",
3066
3233
  "serde",
3067
3234
  "serde_json",
3068
- "thiserror",
3235
+ "thiserror 2.0.11",
3069
3236
  "tonic",
3070
3237
  "tonic-build",
3071
3238
  "uuid",
@@ -3076,12 +3243,12 @@ name = "temporal-sdk-core-test-utils"
3076
3243
  version = "0.1.0"
3077
3244
  dependencies = [
3078
3245
  "anyhow",
3246
+ "assert_matches",
3079
3247
  "async-trait",
3080
3248
  "base64 0.22.1",
3081
3249
  "bytes",
3082
- "futures",
3250
+ "futures-util",
3083
3251
  "log",
3084
- "once_cell",
3085
3252
  "parking_lot",
3086
3253
  "prost",
3087
3254
  "prost-types",
@@ -3093,7 +3260,7 @@ dependencies = [
3093
3260
  "temporal-sdk-core",
3094
3261
  "temporal-sdk-core-api",
3095
3262
  "temporal-sdk-core-protos",
3096
- "thiserror",
3263
+ "thiserror 2.0.11",
3097
3264
  "tokio",
3098
3265
  "tokio-util",
3099
3266
  "tracing",
@@ -3115,6 +3282,7 @@ dependencies = [
3115
3282
  "temporal-sdk-core-api",
3116
3283
  "temporal-sdk-core-protos",
3117
3284
  "tokio",
3285
+ "tokio-util",
3118
3286
  "tonic",
3119
3287
  "tracing",
3120
3288
  "url",
@@ -3131,24 +3299,44 @@ dependencies = [
3131
3299
 
3132
3300
  [[package]]
3133
3301
  name = "termtree"
3134
- version = "0.4.1"
3302
+ version = "0.5.1"
3135
3303
  source = "registry+https://github.com/rust-lang/crates.io-index"
3136
- checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
3304
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3137
3305
 
3138
3306
  [[package]]
3139
3307
  name = "thiserror"
3140
- version = "1.0.64"
3308
+ version = "1.0.69"
3309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3310
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3311
+ dependencies = [
3312
+ "thiserror-impl 1.0.69",
3313
+ ]
3314
+
3315
+ [[package]]
3316
+ name = "thiserror"
3317
+ version = "2.0.11"
3318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3319
+ checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
3320
+ dependencies = [
3321
+ "thiserror-impl 2.0.11",
3322
+ ]
3323
+
3324
+ [[package]]
3325
+ name = "thiserror-impl"
3326
+ version = "1.0.69"
3141
3327
  source = "registry+https://github.com/rust-lang/crates.io-index"
3142
- checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
3328
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3143
3329
  dependencies = [
3144
- "thiserror-impl",
3330
+ "proc-macro2",
3331
+ "quote",
3332
+ "syn",
3145
3333
  ]
3146
3334
 
3147
3335
  [[package]]
3148
3336
  name = "thiserror-impl"
3149
- version = "1.0.64"
3337
+ version = "2.0.11"
3150
3338
  source = "registry+https://github.com/rust-lang/crates.io-index"
3151
- checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
3339
+ checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
3152
3340
  dependencies = [
3153
3341
  "proc-macro2",
3154
3342
  "quote",
@@ -3167,9 +3355,9 @@ dependencies = [
3167
3355
 
3168
3356
  [[package]]
3169
3357
  name = "time"
3170
- version = "0.3.36"
3358
+ version = "0.3.37"
3171
3359
  source = "registry+https://github.com/rust-lang/crates.io-index"
3172
- checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
3360
+ checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
3173
3361
  dependencies = [
3174
3362
  "deranged",
3175
3363
  "num-conv",
@@ -3184,6 +3372,16 @@ version = "0.1.2"
3184
3372
  source = "registry+https://github.com/rust-lang/crates.io-index"
3185
3373
  checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3186
3374
 
3375
+ [[package]]
3376
+ name = "tinystr"
3377
+ version = "0.7.6"
3378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3379
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3380
+ dependencies = [
3381
+ "displaydoc",
3382
+ "zerovec",
3383
+ ]
3384
+
3187
3385
  [[package]]
3188
3386
  name = "tinytemplate"
3189
3387
  version = "1.2.1"
@@ -3196,9 +3394,9 @@ dependencies = [
3196
3394
 
3197
3395
  [[package]]
3198
3396
  name = "tinyvec"
3199
- version = "1.8.0"
3397
+ version = "1.8.1"
3200
3398
  source = "registry+https://github.com/rust-lang/crates.io-index"
3201
- checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
3399
+ checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
3202
3400
  dependencies = [
3203
3401
  "tinyvec_macros",
3204
3402
  ]
@@ -3211,9 +3409,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3211
3409
 
3212
3410
  [[package]]
3213
3411
  name = "tokio"
3214
- version = "1.40.0"
3412
+ version = "1.43.0"
3215
3413
  source = "registry+https://github.com/rust-lang/crates.io-index"
3216
- checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998"
3414
+ checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
3217
3415
  dependencies = [
3218
3416
  "backtrace",
3219
3417
  "bytes",
@@ -3230,9 +3428,9 @@ dependencies = [
3230
3428
 
3231
3429
  [[package]]
3232
3430
  name = "tokio-macros"
3233
- version = "2.4.0"
3431
+ version = "2.5.0"
3234
3432
  source = "registry+https://github.com/rust-lang/crates.io-index"
3235
- checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
3433
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3236
3434
  dependencies = [
3237
3435
  "proc-macro2",
3238
3436
  "quote",
@@ -3241,20 +3439,19 @@ dependencies = [
3241
3439
 
3242
3440
  [[package]]
3243
3441
  name = "tokio-rustls"
3244
- version = "0.26.0"
3442
+ version = "0.26.1"
3245
3443
  source = "registry+https://github.com/rust-lang/crates.io-index"
3246
- checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
3444
+ checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
3247
3445
  dependencies = [
3248
3446
  "rustls",
3249
- "rustls-pki-types",
3250
3447
  "tokio",
3251
3448
  ]
3252
3449
 
3253
3450
  [[package]]
3254
3451
  name = "tokio-stream"
3255
- version = "0.1.16"
3452
+ version = "0.1.17"
3256
3453
  source = "registry+https://github.com/rust-lang/crates.io-index"
3257
- checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1"
3454
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3258
3455
  dependencies = [
3259
3456
  "futures-core",
3260
3457
  "pin-project-lite",
@@ -3263,9 +3460,9 @@ dependencies = [
3263
3460
 
3264
3461
  [[package]]
3265
3462
  name = "tokio-util"
3266
- version = "0.7.12"
3463
+ version = "0.7.13"
3267
3464
  source = "registry+https://github.com/rust-lang/crates.io-index"
3268
- checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
3465
+ checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
3269
3466
  dependencies = [
3270
3467
  "bytes",
3271
3468
  "futures-core",
@@ -3301,7 +3498,7 @@ version = "0.22.22"
3301
3498
  source = "registry+https://github.com/rust-lang/crates.io-index"
3302
3499
  checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
3303
3500
  dependencies = [
3304
- "indexmap 2.6.0",
3501
+ "indexmap 2.7.0",
3305
3502
  "serde",
3306
3503
  "serde_spanned",
3307
3504
  "toml_datetime",
@@ -3377,14 +3574,15 @@ dependencies = [
3377
3574
 
3378
3575
  [[package]]
3379
3576
  name = "tower"
3380
- version = "0.5.1"
3577
+ version = "0.5.2"
3381
3578
  source = "registry+https://github.com/rust-lang/crates.io-index"
3382
- checksum = "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f"
3579
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3383
3580
  dependencies = [
3384
3581
  "futures-core",
3385
3582
  "futures-util",
3386
3583
  "pin-project-lite",
3387
- "sync_wrapper 0.1.2",
3584
+ "sync_wrapper",
3585
+ "tokio",
3388
3586
  "tower-layer",
3389
3587
  "tower-service",
3390
3588
  ]
@@ -3403,9 +3601,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3403
3601
 
3404
3602
  [[package]]
3405
3603
  name = "tracing"
3406
- version = "0.1.40"
3604
+ version = "0.1.41"
3407
3605
  source = "registry+https://github.com/rust-lang/crates.io-index"
3408
- checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
3606
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3409
3607
  dependencies = [
3410
3608
  "pin-project-lite",
3411
3609
  "tracing-attributes",
@@ -3414,9 +3612,9 @@ dependencies = [
3414
3612
 
3415
3613
  [[package]]
3416
3614
  name = "tracing-attributes"
3417
- version = "0.1.27"
3615
+ version = "0.1.28"
3418
3616
  source = "registry+https://github.com/rust-lang/crates.io-index"
3419
- checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
3617
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3420
3618
  dependencies = [
3421
3619
  "proc-macro2",
3422
3620
  "quote",
@@ -3425,9 +3623,9 @@ dependencies = [
3425
3623
 
3426
3624
  [[package]]
3427
3625
  name = "tracing-core"
3428
- version = "0.1.32"
3626
+ version = "0.1.33"
3429
3627
  source = "registry+https://github.com/rust-lang/crates.io-index"
3430
- checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
3628
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3431
3629
  dependencies = [
3432
3630
  "once_cell",
3433
3631
  "valuable",
@@ -3446,9 +3644,9 @@ dependencies = [
3446
3644
 
3447
3645
  [[package]]
3448
3646
  name = "tracing-subscriber"
3449
- version = "0.3.18"
3647
+ version = "0.3.19"
3450
3648
  source = "registry+https://github.com/rust-lang/crates.io-index"
3451
- checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
3649
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
3452
3650
  dependencies = [
3453
3651
  "matchers",
3454
3652
  "nu-ansi-term",
@@ -3471,15 +3669,16 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3471
3669
 
3472
3670
  [[package]]
3473
3671
  name = "trybuild"
3474
- version = "1.0.100"
3672
+ version = "1.0.101"
3475
3673
  source = "registry+https://github.com/rust-lang/crates.io-index"
3476
- checksum = "8923cde76a6329058a86f04d033f0945a2c6df8b94093512e4ab188b3e3a8950"
3674
+ checksum = "8dcd332a5496c026f1e14b7f3d2b7bd98e509660c04239c58b0ba38a12daded4"
3477
3675
  dependencies = [
3478
3676
  "dissimilar",
3479
3677
  "glob",
3480
3678
  "serde",
3481
3679
  "serde_derive",
3482
3680
  "serde_json",
3681
+ "target-triple",
3483
3682
  "termcolor",
3484
3683
  "toml",
3485
3684
  ]
@@ -3498,9 +3697,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
3498
3697
 
3499
3698
  [[package]]
3500
3699
  name = "typetag"
3501
- version = "0.2.18"
3700
+ version = "0.2.19"
3502
3701
  source = "registry+https://github.com/rust-lang/crates.io-index"
3503
- checksum = "52ba3b6e86ffe0054b2c44f2d86407388b933b16cb0a70eea3929420db1d9bbe"
3702
+ checksum = "044fc3365ddd307c297fe0fe7b2e70588cdab4d0f62dc52055ca0d11b174cf0e"
3504
3703
  dependencies = [
3505
3704
  "erased-serde",
3506
3705
  "inventory",
@@ -3511,35 +3710,20 @@ dependencies = [
3511
3710
 
3512
3711
  [[package]]
3513
3712
  name = "typetag-impl"
3514
- version = "0.2.18"
3713
+ version = "0.2.19"
3515
3714
  source = "registry+https://github.com/rust-lang/crates.io-index"
3516
- checksum = "70b20a22c42c8f1cd23ce5e34f165d4d37038f5b663ad20fb6adbdf029172483"
3715
+ checksum = "d9d30226ac9cbd2d1ff775f74e8febdab985dab14fb14aa2582c29a92d5555dc"
3517
3716
  dependencies = [
3518
3717
  "proc-macro2",
3519
3718
  "quote",
3520
3719
  "syn",
3521
3720
  ]
3522
3721
 
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
3722
  [[package]]
3530
3723
  name = "unicode-ident"
3531
- version = "1.0.13"
3724
+ version = "1.0.14"
3532
3725
  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"
3538
- source = "registry+https://github.com/rust-lang/crates.io-index"
3539
- checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
3540
- dependencies = [
3541
- "tinyvec",
3542
- ]
3726
+ checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
3543
3727
 
3544
3728
  [[package]]
3545
3729
  name = "unicode-xid"
@@ -3555,15 +3739,27 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3555
3739
 
3556
3740
  [[package]]
3557
3741
  name = "url"
3558
- version = "2.5.2"
3742
+ version = "2.5.4"
3559
3743
  source = "registry+https://github.com/rust-lang/crates.io-index"
3560
- checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
3744
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3561
3745
  dependencies = [
3562
3746
  "form_urlencoded",
3563
3747
  "idna",
3564
3748
  "percent-encoding",
3565
3749
  ]
3566
3750
 
3751
+ [[package]]
3752
+ name = "utf16_iter"
3753
+ version = "1.0.5"
3754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3755
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3756
+
3757
+ [[package]]
3758
+ name = "utf8_iter"
3759
+ version = "1.0.4"
3760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3761
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3762
+
3567
3763
  [[package]]
3568
3764
  name = "utf8parse"
3569
3765
  version = "0.2.2"
@@ -3572,18 +3768,18 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3572
3768
 
3573
3769
  [[package]]
3574
3770
  name = "uuid"
3575
- version = "1.11.0"
3771
+ version = "1.12.0"
3576
3772
  source = "registry+https://github.com/rust-lang/crates.io-index"
3577
- checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
3773
+ checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4"
3578
3774
  dependencies = [
3579
3775
  "getrandom",
3580
3776
  ]
3581
3777
 
3582
3778
  [[package]]
3583
3779
  name = "valuable"
3584
- version = "0.1.0"
3780
+ version = "0.1.1"
3585
3781
  source = "registry+https://github.com/rust-lang/crates.io-index"
3586
- checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
3782
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3587
3783
 
3588
3784
  [[package]]
3589
3785
  name = "version_check"
@@ -3618,24 +3814,24 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3618
3814
 
3619
3815
  [[package]]
3620
3816
  name = "wasm-bindgen"
3621
- version = "0.2.95"
3817
+ version = "0.2.100"
3622
3818
  source = "registry+https://github.com/rust-lang/crates.io-index"
3623
- checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
3819
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3624
3820
  dependencies = [
3625
3821
  "cfg-if",
3626
3822
  "once_cell",
3823
+ "rustversion",
3627
3824
  "wasm-bindgen-macro",
3628
3825
  ]
3629
3826
 
3630
3827
  [[package]]
3631
3828
  name = "wasm-bindgen-backend"
3632
- version = "0.2.95"
3829
+ version = "0.2.100"
3633
3830
  source = "registry+https://github.com/rust-lang/crates.io-index"
3634
- checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
3831
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3635
3832
  dependencies = [
3636
3833
  "bumpalo",
3637
3834
  "log",
3638
- "once_cell",
3639
3835
  "proc-macro2",
3640
3836
  "quote",
3641
3837
  "syn",
@@ -3644,21 +3840,22 @@ dependencies = [
3644
3840
 
3645
3841
  [[package]]
3646
3842
  name = "wasm-bindgen-futures"
3647
- version = "0.4.45"
3843
+ version = "0.4.50"
3648
3844
  source = "registry+https://github.com/rust-lang/crates.io-index"
3649
- checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
3845
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
3650
3846
  dependencies = [
3651
3847
  "cfg-if",
3652
3848
  "js-sys",
3849
+ "once_cell",
3653
3850
  "wasm-bindgen",
3654
3851
  "web-sys",
3655
3852
  ]
3656
3853
 
3657
3854
  [[package]]
3658
3855
  name = "wasm-bindgen-macro"
3659
- version = "0.2.95"
3856
+ version = "0.2.100"
3660
3857
  source = "registry+https://github.com/rust-lang/crates.io-index"
3661
- checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
3858
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3662
3859
  dependencies = [
3663
3860
  "quote",
3664
3861
  "wasm-bindgen-macro-support",
@@ -3666,9 +3863,9 @@ dependencies = [
3666
3863
 
3667
3864
  [[package]]
3668
3865
  name = "wasm-bindgen-macro-support"
3669
- version = "0.2.95"
3866
+ version = "0.2.100"
3670
3867
  source = "registry+https://github.com/rust-lang/crates.io-index"
3671
- checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
3868
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3672
3869
  dependencies = [
3673
3870
  "proc-macro2",
3674
3871
  "quote",
@@ -3679,15 +3876,18 @@ dependencies = [
3679
3876
 
3680
3877
  [[package]]
3681
3878
  name = "wasm-bindgen-shared"
3682
- version = "0.2.95"
3879
+ version = "0.2.100"
3683
3880
  source = "registry+https://github.com/rust-lang/crates.io-index"
3684
- checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
3881
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3882
+ dependencies = [
3883
+ "unicode-ident",
3884
+ ]
3685
3885
 
3686
3886
  [[package]]
3687
3887
  name = "wasm-streams"
3688
- version = "0.4.1"
3888
+ version = "0.4.2"
3689
3889
  source = "registry+https://github.com/rust-lang/crates.io-index"
3690
- checksum = "4e072d4e72f700fb3443d8fe94a39315df013eef1104903cdb0a2abd322bbecd"
3890
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3691
3891
  dependencies = [
3692
3892
  "futures-util",
3693
3893
  "js-sys",
@@ -3698,9 +3898,19 @@ dependencies = [
3698
3898
 
3699
3899
  [[package]]
3700
3900
  name = "web-sys"
3701
- version = "0.3.72"
3901
+ version = "0.3.77"
3902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3903
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
3904
+ dependencies = [
3905
+ "js-sys",
3906
+ "wasm-bindgen",
3907
+ ]
3908
+
3909
+ [[package]]
3910
+ name = "web-time"
3911
+ version = "1.1.0"
3702
3912
  source = "registry+https://github.com/rust-lang/crates.io-index"
3703
- checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
3913
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3704
3914
  dependencies = [
3705
3915
  "js-sys",
3706
3916
  "wasm-bindgen",
@@ -3904,24 +4114,60 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3904
4114
 
3905
4115
  [[package]]
3906
4116
  name = "winnow"
3907
- version = "0.6.20"
4117
+ version = "0.6.24"
3908
4118
  source = "registry+https://github.com/rust-lang/crates.io-index"
3909
- checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
4119
+ checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a"
3910
4120
  dependencies = [
3911
4121
  "memchr",
3912
4122
  ]
3913
4123
 
4124
+ [[package]]
4125
+ name = "write16"
4126
+ version = "1.0.0"
4127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4128
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4129
+
4130
+ [[package]]
4131
+ name = "writeable"
4132
+ version = "0.5.5"
4133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4134
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4135
+
3914
4136
  [[package]]
3915
4137
  name = "xattr"
3916
- version = "1.3.1"
4138
+ version = "1.4.0"
3917
4139
  source = "registry+https://github.com/rust-lang/crates.io-index"
3918
- checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
4140
+ checksum = "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909"
3919
4141
  dependencies = [
3920
4142
  "libc",
3921
4143
  "linux-raw-sys",
3922
4144
  "rustix",
3923
4145
  ]
3924
4146
 
4147
+ [[package]]
4148
+ name = "yoke"
4149
+ version = "0.7.5"
4150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4151
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4152
+ dependencies = [
4153
+ "serde",
4154
+ "stable_deref_trait",
4155
+ "yoke-derive",
4156
+ "zerofrom",
4157
+ ]
4158
+
4159
+ [[package]]
4160
+ name = "yoke-derive"
4161
+ version = "0.7.5"
4162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4163
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4164
+ dependencies = [
4165
+ "proc-macro2",
4166
+ "quote",
4167
+ "syn",
4168
+ "synstructure",
4169
+ ]
4170
+
3925
4171
  [[package]]
3926
4172
  name = "zerocopy"
3927
4173
  version = "0.7.35"
@@ -3943,6 +4189,27 @@ dependencies = [
3943
4189
  "syn",
3944
4190
  ]
3945
4191
 
4192
+ [[package]]
4193
+ name = "zerofrom"
4194
+ version = "0.1.5"
4195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4196
+ checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
4197
+ dependencies = [
4198
+ "zerofrom-derive",
4199
+ ]
4200
+
4201
+ [[package]]
4202
+ name = "zerofrom-derive"
4203
+ version = "0.1.5"
4204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4205
+ checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
4206
+ dependencies = [
4207
+ "proc-macro2",
4208
+ "quote",
4209
+ "syn",
4210
+ "synstructure",
4211
+ ]
4212
+
3946
4213
  [[package]]
3947
4214
  name = "zeroize"
3948
4215
  version = "1.8.1"
@@ -3963,11 +4230,33 @@ dependencies = [
3963
4230
  "syn",
3964
4231
  ]
3965
4232
 
4233
+ [[package]]
4234
+ name = "zerovec"
4235
+ version = "0.10.4"
4236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4237
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4238
+ dependencies = [
4239
+ "yoke",
4240
+ "zerofrom",
4241
+ "zerovec-derive",
4242
+ ]
4243
+
4244
+ [[package]]
4245
+ name = "zerovec-derive"
4246
+ version = "0.10.3"
4247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4248
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4249
+ dependencies = [
4250
+ "proc-macro2",
4251
+ "quote",
4252
+ "syn",
4253
+ ]
4254
+
3966
4255
  [[package]]
3967
4256
  name = "zip"
3968
- version = "2.2.0"
4257
+ version = "2.2.2"
3969
4258
  source = "registry+https://github.com/rust-lang/crates.io-index"
3970
- checksum = "dc5e4288ea4057ae23afc69a4472434a87a2495cafce6632fd1c4ec9f5cf3494"
4259
+ checksum = "ae9c1ea7b3a5e1f4b922ff856a129881167511563dc219869afe3787fc0c1a45"
3971
4260
  dependencies = [
3972
4261
  "aes",
3973
4262
  "arbitrary",
@@ -3979,13 +4268,13 @@ dependencies = [
3979
4268
  "displaydoc",
3980
4269
  "flate2",
3981
4270
  "hmac",
3982
- "indexmap 2.6.0",
4271
+ "indexmap 2.7.0",
3983
4272
  "lzma-rs",
3984
4273
  "memchr",
3985
4274
  "pbkdf2",
3986
4275
  "rand",
3987
4276
  "sha1",
3988
- "thiserror",
4277
+ "thiserror 2.0.11",
3989
4278
  "time",
3990
4279
  "zeroize",
3991
4280
  "zopfli",