@temporalio/core-bridge 1.11.7 → 1.11.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.lock +504 -341
- package/package.json +3 -3
- package/releases/aarch64-apple-darwin/index.node +0 -0
- package/releases/aarch64-unknown-linux-gnu/index.node +0 -0
- package/releases/x86_64-apple-darwin/index.node +0 -0
- package/releases/x86_64-pc-windows-msvc/index.node +0 -0
- package/releases/x86_64-unknown-linux-gnu/index.node +0 -0
- package/sdk-core/.cargo/config.toml +5 -0
- package/sdk-core/.github/workflows/per-pr.yml +59 -5
- package/sdk-core/Cargo.toml +3 -2
- package/sdk-core/client/Cargo.toml +3 -3
- package/sdk-core/client/src/lib.rs +154 -161
- package/sdk-core/client/src/metrics.rs +15 -8
- package/sdk-core/client/src/proxy.rs +1 -1
- package/sdk-core/client/src/raw.rs +176 -33
- package/sdk-core/client/src/retry.rs +102 -465
- package/sdk-core/client/src/worker_registry/mod.rs +2 -2
- package/sdk-core/client/src/workflow_handle/mod.rs +19 -1
- package/sdk-core/core/Cargo.toml +12 -14
- package/sdk-core/core/benches/workflow_replay.rs +1 -1
- package/sdk-core/core/src/abstractions.rs +2 -2
- package/sdk-core/core/src/core_tests/activity_tasks.rs +99 -46
- package/sdk-core/core/src/core_tests/child_workflows.rs +68 -9
- package/sdk-core/core/src/core_tests/determinism.rs +2 -2
- package/sdk-core/core/src/core_tests/local_activities.rs +20 -33
- package/sdk-core/core/src/core_tests/mod.rs +7 -8
- package/sdk-core/core/src/core_tests/queries.rs +79 -79
- package/sdk-core/core/src/core_tests/replay_flag.rs +5 -5
- package/sdk-core/core/src/core_tests/updates.rs +6 -6
- package/sdk-core/core/src/core_tests/workers.rs +19 -22
- package/sdk-core/core/src/core_tests/workflow_cancels.rs +3 -3
- package/sdk-core/core/src/core_tests/workflow_tasks.rs +154 -106
- package/sdk-core/core/src/ephemeral_server/mod.rs +66 -10
- package/sdk-core/core/src/internal_flags.rs +103 -12
- package/sdk-core/core/src/lib.rs +21 -13
- package/sdk-core/core/src/pollers/mod.rs +200 -6
- package/sdk-core/core/src/pollers/poll_buffer.rs +32 -8
- package/sdk-core/core/src/protosext/mod.rs +7 -7
- package/sdk-core/core/src/protosext/protocol_messages.rs +2 -2
- package/sdk-core/core/src/replay/mod.rs +8 -9
- package/sdk-core/core/src/retry_logic.rs +8 -6
- package/sdk-core/core/src/telemetry/log_export.rs +4 -4
- package/sdk-core/core/src/telemetry/metrics.rs +111 -25
- package/sdk-core/core/src/telemetry/mod.rs +11 -4
- package/sdk-core/core/src/telemetry/otel.rs +108 -144
- package/sdk-core/core/src/telemetry/prometheus_server.rs +1 -4
- package/sdk-core/core/src/test_help/mod.rs +27 -21
- package/sdk-core/core/src/worker/activities/activity_heartbeat_manager.rs +7 -5
- package/sdk-core/core/src/worker/activities/local_activities.rs +9 -9
- package/sdk-core/core/src/worker/activities.rs +34 -46
- package/sdk-core/core/src/worker/client/mocks.rs +24 -2
- package/sdk-core/core/src/worker/client.rs +169 -33
- package/sdk-core/core/src/worker/mod.rs +132 -56
- package/sdk-core/core/src/worker/nexus.rs +410 -0
- package/sdk-core/core/src/worker/tuner/resource_based.rs +27 -5
- package/sdk-core/core/src/worker/tuner.rs +29 -2
- package/sdk-core/core/src/worker/workflow/driven_workflow.rs +8 -3
- package/sdk-core/core/src/worker/workflow/history_update.rs +5 -8
- package/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +83 -87
- package/sdk-core/core/src/worker/workflow/machines/cancel_external_state_machine.rs +38 -38
- package/sdk-core/core/src/worker/workflow/machines/cancel_nexus_op_state_machine.rs +117 -0
- package/sdk-core/core/src/worker/workflow/machines/cancel_workflow_state_machine.rs +8 -18
- package/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +114 -108
- package/sdk-core/core/src/worker/workflow/machines/complete_workflow_state_machine.rs +16 -31
- package/sdk-core/core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs +7 -14
- package/sdk-core/core/src/worker/workflow/machines/fail_workflow_state_machine.rs +8 -15
- package/sdk-core/core/src/worker/workflow/machines/local_activity_state_machine.rs +34 -75
- package/sdk-core/core/src/worker/workflow/machines/mod.rs +26 -48
- package/sdk-core/core/src/worker/workflow/machines/modify_workflow_properties_state_machine.rs +10 -17
- package/sdk-core/core/src/worker/workflow/machines/nexus_operation_state_machine.rs +543 -0
- package/sdk-core/core/src/worker/workflow/machines/patch_state_machine.rs +22 -31
- package/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +53 -51
- package/sdk-core/core/src/worker/workflow/machines/timer_state_machine.rs +40 -45
- package/sdk-core/core/src/worker/workflow/machines/transition_coverage.rs +2 -2
- package/sdk-core/core/src/worker/workflow/machines/update_state_machine.rs +8 -10
- package/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +24 -30
- package/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +182 -116
- package/sdk-core/core/src/worker/workflow/machines/workflow_task_state_machine.rs +4 -8
- package/sdk-core/core/src/worker/workflow/managed_run.rs +75 -45
- package/sdk-core/core/src/worker/workflow/mod.rs +104 -55
- package/sdk-core/core/src/worker/workflow/run_cache.rs +23 -4
- package/sdk-core/core/src/worker/workflow/wft_extraction.rs +4 -4
- package/sdk-core/core/src/worker/workflow/wft_poller.rs +3 -3
- package/sdk-core/core/src/worker/workflow/workflow_stream.rs +32 -13
- package/sdk-core/core-api/Cargo.toml +2 -3
- package/sdk-core/core-api/src/errors.rs +22 -20
- package/sdk-core/core-api/src/lib.rs +24 -5
- package/sdk-core/core-api/src/telemetry/metrics.rs +27 -1
- package/sdk-core/core-api/src/telemetry.rs +37 -3
- package/sdk-core/core-api/src/worker.rs +36 -3
- package/sdk-core/docker/docker-compose-ci.yaml +25 -0
- package/sdk-core/etc/otel-collector-ci.yaml +36 -0
- package/sdk-core/etc/otel-collector-config.yaml +3 -3
- package/sdk-core/etc/prometheus.yaml +1 -1
- package/sdk-core/fsm/Cargo.toml +1 -1
- package/sdk-core/fsm/rustfsm_procmacro/Cargo.toml +1 -1
- package/sdk-core/fsm/rustfsm_procmacro/src/lib.rs +3 -4
- package/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.stderr +1 -1
- package/sdk-core/fsm/rustfsm_trait/Cargo.toml +1 -1
- package/sdk-core/sdk/Cargo.toml +1 -2
- package/sdk-core/sdk/src/activity_context.rs +1 -1
- package/sdk-core/sdk/src/interceptors.rs +1 -1
- package/sdk-core/sdk/src/lib.rs +126 -54
- package/sdk-core/sdk/src/workflow_context/options.rs +184 -74
- package/sdk-core/sdk/src/workflow_context.rs +193 -79
- package/sdk-core/sdk/src/workflow_future.rs +151 -131
- package/sdk-core/sdk-core-protos/Cargo.toml +3 -4
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/VERSION +1 -1
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/account/v1/message.proto +46 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/cloudservice/v1/request_response.proto +254 -5
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/cloudservice/v1/service.proto +108 -2
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/identity/v1/message.proto +94 -15
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/namespace/v1/message.proto +102 -4
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/nexus/v1/message.proto +84 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/operation/v1/message.proto +25 -10
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/region/v1/message.proto +14 -1
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/resource/v1/message.proto +25 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/sink/v1/message.proto +41 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/usage/v1/message.proto +59 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/.github/PULL_REQUEST_TEMPLATE.md +2 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/.github/workflows/create-release.yml +135 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/.github/workflows/push-to-buf.yml +20 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/.github/workflows/trigger-api-go-delete-release.yml +13 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/.github/workflows/trigger-api-go-publish-release.yml +13 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/.github/workflows/trigger-api-go-update.yml +13 -21
- package/sdk-core/sdk-core-protos/protos/api_upstream/Makefile +2 -2
- package/sdk-core/sdk-core-protos/protos/api_upstream/buf.yaml +1 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/openapi/openapiv2.json +3386 -1047
- package/sdk-core/sdk-core-protos/protos/api_upstream/openapi/openapiv3.yaml +3529 -1144
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/batch/v1/message.proto +39 -1
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/command/v1/message.proto +6 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/common/v1/message.proto +39 -1
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/deployment/v1/message.proto +252 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/batch_operation.proto +1 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/common.proto +6 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/deployment.proto +96 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/event_type.proto +2 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +2 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/nexus.proto +42 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/reset.proto +2 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/workflow.proto +43 -2
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/errordetails/v1/message.proto +13 -1
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/failure/v1/message.proto +14 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/history/v1/message.proto +70 -12
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/nexus/v1/message.proto +12 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/query/v1/message.proto +9 -2
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +46 -2
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflow/v1/message.proto +206 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +482 -97
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +230 -43
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/core_interface.proto +6 -0
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/nexus/nexus.proto +71 -0
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +46 -2
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +55 -9
- package/sdk-core/sdk-core-protos/src/history_builder.rs +5 -5
- package/sdk-core/sdk-core-protos/src/history_info.rs +5 -6
- package/sdk-core/sdk-core-protos/src/lib.rs +414 -34
- package/sdk-core/sdk-core-protos/src/task_token.rs +1 -1
- package/sdk-core/test-utils/Cargo.toml +3 -11
- package/sdk-core/test-utils/src/canned_histories.rs +1 -1
- package/sdk-core/test-utils/src/lib.rs +159 -85
- package/sdk-core/tests/fuzzy_workflow.rs +3 -3
- package/sdk-core/tests/heavy_tests.rs +3 -3
- package/sdk-core/tests/integ_tests/client_tests.rs +171 -20
- package/sdk-core/tests/integ_tests/ephemeral_server_tests.rs +45 -39
- package/sdk-core/tests/integ_tests/heartbeat_tests.rs +7 -6
- package/sdk-core/tests/integ_tests/metrics_tests.rs +492 -35
- package/sdk-core/tests/integ_tests/polling_tests.rs +7 -5
- package/sdk-core/tests/integ_tests/queries_tests.rs +14 -17
- package/sdk-core/tests/integ_tests/update_tests.rs +47 -44
- package/sdk-core/tests/integ_tests/visibility_tests.rs +4 -3
- package/sdk-core/tests/integ_tests/worker_tests.rs +5 -5
- package/sdk-core/tests/integ_tests/workflow_tests/activities.rs +15 -13
- package/sdk-core/tests/integ_tests/workflow_tests/cancel_external.rs +28 -14
- package/sdk-core/tests/integ_tests/workflow_tests/cancel_wf.rs +7 -1
- package/sdk-core/tests/integ_tests/workflow_tests/child_workflows.rs +57 -4
- package/sdk-core/tests/integ_tests/workflow_tests/eager.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +24 -18
- package/sdk-core/tests/integ_tests/workflow_tests/nexus.rs +506 -0
- package/sdk-core/tests/integ_tests/workflow_tests/patches.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/priority.rs +104 -0
- package/sdk-core/tests/integ_tests/workflow_tests/replay.rs +34 -31
- package/sdk-core/tests/integ_tests/workflow_tests/resets.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/timers.rs +10 -7
- package/sdk-core/tests/integ_tests/workflow_tests.rs +152 -116
- package/sdk-core/tests/main.rs +36 -6
- package/sdk-core/tests/runner.rs +30 -9
- package/src/conversions/slot_supplier_bridge.rs +4 -0
- package/src/conversions.rs +1 -0
- package/src/worker.rs +5 -7
- package/sdk-core/core/src/worker/activities/activity_task_poller_stream.rs +0 -78
package/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
|
+
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "addr2line"
|
|
@@ -51,9 +51,9 @@ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
|
|
|
51
51
|
|
|
52
52
|
[[package]]
|
|
53
53
|
name = "anyhow"
|
|
54
|
-
version = "1.0.
|
|
54
|
+
version = "1.0.98"
|
|
55
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
-
checksum = "
|
|
56
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
57
57
|
|
|
58
58
|
[[package]]
|
|
59
59
|
name = "arbitrary"
|
|
@@ -88,9 +88,9 @@ dependencies = [
|
|
|
88
88
|
|
|
89
89
|
[[package]]
|
|
90
90
|
name = "async-trait"
|
|
91
|
-
version = "0.1.
|
|
91
|
+
version = "0.1.88"
|
|
92
92
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
-
checksum = "
|
|
93
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
|
94
94
|
dependencies = [
|
|
95
95
|
"proc-macro2",
|
|
96
96
|
"quote",
|
|
@@ -162,9 +162,9 @@ version = "0.4.0"
|
|
|
162
162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
163
|
checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
|
|
164
164
|
dependencies = [
|
|
165
|
-
"getrandom",
|
|
165
|
+
"getrandom 0.2.16",
|
|
166
166
|
"instant",
|
|
167
|
-
"rand",
|
|
167
|
+
"rand 0.8.5",
|
|
168
168
|
]
|
|
169
169
|
|
|
170
170
|
[[package]]
|
|
@@ -179,7 +179,7 @@ dependencies = [
|
|
|
179
179
|
"miniz_oxide",
|
|
180
180
|
"object",
|
|
181
181
|
"rustc-demangle",
|
|
182
|
-
"windows-targets",
|
|
182
|
+
"windows-targets 0.52.6",
|
|
183
183
|
]
|
|
184
184
|
|
|
185
185
|
[[package]]
|
|
@@ -190,9 +190,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
190
190
|
|
|
191
191
|
[[package]]
|
|
192
192
|
name = "bitflags"
|
|
193
|
-
version = "2.
|
|
193
|
+
version = "2.9.0"
|
|
194
194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
-
checksum = "
|
|
195
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
196
196
|
|
|
197
197
|
[[package]]
|
|
198
198
|
name = "block-buffer"
|
|
@@ -205,9 +205,9 @@ dependencies = [
|
|
|
205
205
|
|
|
206
206
|
[[package]]
|
|
207
207
|
name = "bumpalo"
|
|
208
|
-
version = "3.
|
|
208
|
+
version = "3.17.0"
|
|
209
209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
-
checksum = "
|
|
210
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
211
211
|
|
|
212
212
|
[[package]]
|
|
213
213
|
name = "byteorder"
|
|
@@ -217,36 +217,34 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
217
217
|
|
|
218
218
|
[[package]]
|
|
219
219
|
name = "bytes"
|
|
220
|
-
version = "1.
|
|
220
|
+
version = "1.10.1"
|
|
221
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
-
checksum = "
|
|
222
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
223
223
|
|
|
224
224
|
[[package]]
|
|
225
225
|
name = "bzip2"
|
|
226
|
-
version = "0.
|
|
226
|
+
version = "0.5.2"
|
|
227
227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
-
checksum = "
|
|
228
|
+
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
|
|
229
229
|
dependencies = [
|
|
230
230
|
"bzip2-sys",
|
|
231
|
-
"libc",
|
|
232
231
|
]
|
|
233
232
|
|
|
234
233
|
[[package]]
|
|
235
234
|
name = "bzip2-sys"
|
|
236
|
-
version = "0.1.
|
|
235
|
+
version = "0.1.13+1.0.8"
|
|
237
236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
-
checksum = "
|
|
237
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
239
238
|
dependencies = [
|
|
240
239
|
"cc",
|
|
241
|
-
"libc",
|
|
242
240
|
"pkg-config",
|
|
243
241
|
]
|
|
244
242
|
|
|
245
243
|
[[package]]
|
|
246
244
|
name = "cc"
|
|
247
|
-
version = "1.2.
|
|
245
|
+
version = "1.2.19"
|
|
248
246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
-
checksum = "
|
|
247
|
+
checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
|
|
250
248
|
dependencies = [
|
|
251
249
|
"jobserver",
|
|
252
250
|
"libc",
|
|
@@ -267,9 +265,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
267
265
|
|
|
268
266
|
[[package]]
|
|
269
267
|
name = "chrono"
|
|
270
|
-
version = "0.4.
|
|
268
|
+
version = "0.4.40"
|
|
271
269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
-
checksum = "
|
|
270
|
+
checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
|
|
273
271
|
dependencies = [
|
|
274
272
|
"num-traits",
|
|
275
273
|
"serde",
|
|
@@ -309,9 +307,9 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
|
309
307
|
|
|
310
308
|
[[package]]
|
|
311
309
|
name = "cpufeatures"
|
|
312
|
-
version = "0.2.
|
|
310
|
+
version = "0.2.17"
|
|
313
311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
-
checksum = "
|
|
312
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
315
313
|
dependencies = [
|
|
316
314
|
"libc",
|
|
317
315
|
]
|
|
@@ -342,9 +340,9 @@ dependencies = [
|
|
|
342
340
|
|
|
343
341
|
[[package]]
|
|
344
342
|
name = "crossbeam-channel"
|
|
345
|
-
version = "0.5.
|
|
343
|
+
version = "0.5.15"
|
|
346
344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
-
checksum = "
|
|
345
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
348
346
|
dependencies = [
|
|
349
347
|
"crossbeam-utils",
|
|
350
348
|
]
|
|
@@ -376,9 +374,9 @@ dependencies = [
|
|
|
376
374
|
|
|
377
375
|
[[package]]
|
|
378
376
|
name = "darling"
|
|
379
|
-
version = "0.20.
|
|
377
|
+
version = "0.20.11"
|
|
380
378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
-
checksum = "
|
|
379
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
382
380
|
dependencies = [
|
|
383
381
|
"darling_core",
|
|
384
382
|
"darling_macro",
|
|
@@ -386,9 +384,9 @@ dependencies = [
|
|
|
386
384
|
|
|
387
385
|
[[package]]
|
|
388
386
|
name = "darling_core"
|
|
389
|
-
version = "0.20.
|
|
387
|
+
version = "0.20.11"
|
|
390
388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
-
checksum = "
|
|
389
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
392
390
|
dependencies = [
|
|
393
391
|
"fnv",
|
|
394
392
|
"ident_case",
|
|
@@ -400,9 +398,9 @@ dependencies = [
|
|
|
400
398
|
|
|
401
399
|
[[package]]
|
|
402
400
|
name = "darling_macro"
|
|
403
|
-
version = "0.20.
|
|
401
|
+
version = "0.20.11"
|
|
404
402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
-
checksum = "
|
|
403
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
406
404
|
dependencies = [
|
|
407
405
|
"darling_core",
|
|
408
406
|
"quote",
|
|
@@ -431,9 +429,9 @@ checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
|
|
|
431
429
|
|
|
432
430
|
[[package]]
|
|
433
431
|
name = "deranged"
|
|
434
|
-
version = "0.
|
|
432
|
+
version = "0.4.0"
|
|
435
433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
-
checksum = "
|
|
434
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
|
437
435
|
dependencies = [
|
|
438
436
|
"powerfmt",
|
|
439
437
|
]
|
|
@@ -482,18 +480,18 @@ dependencies = [
|
|
|
482
480
|
|
|
483
481
|
[[package]]
|
|
484
482
|
name = "derive_more"
|
|
485
|
-
version = "
|
|
483
|
+
version = "2.0.1"
|
|
486
484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
-
checksum = "
|
|
485
|
+
checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
|
|
488
486
|
dependencies = [
|
|
489
487
|
"derive_more-impl",
|
|
490
488
|
]
|
|
491
489
|
|
|
492
490
|
[[package]]
|
|
493
491
|
name = "derive_more-impl"
|
|
494
|
-
version = "
|
|
492
|
+
version = "2.0.1"
|
|
495
493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
-
checksum = "
|
|
494
|
+
checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
|
|
497
495
|
dependencies = [
|
|
498
496
|
"proc-macro2",
|
|
499
497
|
"quote",
|
|
@@ -531,9 +529,9 @@ checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
|
|
|
531
529
|
|
|
532
530
|
[[package]]
|
|
533
531
|
name = "either"
|
|
534
|
-
version = "1.
|
|
532
|
+
version = "1.15.0"
|
|
535
533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
-
checksum = "
|
|
534
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
537
535
|
|
|
538
536
|
[[package]]
|
|
539
537
|
name = "enum-iterator"
|
|
@@ -569,15 +567,15 @@ dependencies = [
|
|
|
569
567
|
|
|
570
568
|
[[package]]
|
|
571
569
|
name = "equivalent"
|
|
572
|
-
version = "1.0.
|
|
570
|
+
version = "1.0.2"
|
|
573
571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
-
checksum = "
|
|
572
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
575
573
|
|
|
576
574
|
[[package]]
|
|
577
575
|
name = "erased-serde"
|
|
578
|
-
version = "0.4.
|
|
576
|
+
version = "0.4.6"
|
|
579
577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
-
checksum = "
|
|
578
|
+
checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7"
|
|
581
579
|
dependencies = [
|
|
582
580
|
"serde",
|
|
583
581
|
"typeid",
|
|
@@ -585,9 +583,9 @@ dependencies = [
|
|
|
585
583
|
|
|
586
584
|
[[package]]
|
|
587
585
|
name = "errno"
|
|
588
|
-
version = "0.3.
|
|
586
|
+
version = "0.3.11"
|
|
589
587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
-
checksum = "
|
|
588
|
+
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
|
591
589
|
dependencies = [
|
|
592
590
|
"libc",
|
|
593
591
|
"windows-sys 0.59.0",
|
|
@@ -613,15 +611,15 @@ dependencies = [
|
|
|
613
611
|
|
|
614
612
|
[[package]]
|
|
615
613
|
name = "fixedbitset"
|
|
616
|
-
version = "0.
|
|
614
|
+
version = "0.5.7"
|
|
617
615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
-
checksum = "
|
|
616
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
619
617
|
|
|
620
618
|
[[package]]
|
|
621
619
|
name = "flate2"
|
|
622
|
-
version = "1.
|
|
620
|
+
version = "1.1.1"
|
|
623
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
-
checksum = "
|
|
622
|
+
checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
|
|
625
623
|
dependencies = [
|
|
626
624
|
"crc32fast",
|
|
627
625
|
"miniz_oxide",
|
|
@@ -635,9 +633,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
635
633
|
|
|
636
634
|
[[package]]
|
|
637
635
|
name = "foldhash"
|
|
638
|
-
version = "0.1.
|
|
636
|
+
version = "0.1.5"
|
|
639
637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
-
checksum = "
|
|
638
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
641
639
|
|
|
642
640
|
[[package]]
|
|
643
641
|
name = "form_urlencoded"
|
|
@@ -650,9 +648,9 @@ dependencies = [
|
|
|
650
648
|
|
|
651
649
|
[[package]]
|
|
652
650
|
name = "fragile"
|
|
653
|
-
version = "2.0.
|
|
651
|
+
version = "2.0.1"
|
|
654
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
-
checksum = "
|
|
653
|
+
checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619"
|
|
656
654
|
|
|
657
655
|
[[package]]
|
|
658
656
|
name = "futures"
|
|
@@ -772,14 +770,28 @@ dependencies = [
|
|
|
772
770
|
|
|
773
771
|
[[package]]
|
|
774
772
|
name = "getrandom"
|
|
775
|
-
version = "0.2.
|
|
773
|
+
version = "0.2.16"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"cfg-if",
|
|
778
|
+
"js-sys",
|
|
779
|
+
"libc",
|
|
780
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
781
|
+
"wasm-bindgen",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "getrandom"
|
|
786
|
+
version = "0.3.2"
|
|
776
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
-
checksum = "
|
|
788
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
778
789
|
dependencies = [
|
|
779
790
|
"cfg-if",
|
|
780
791
|
"js-sys",
|
|
781
792
|
"libc",
|
|
782
|
-
"
|
|
793
|
+
"r-efi",
|
|
794
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
783
795
|
"wasm-bindgen",
|
|
784
796
|
]
|
|
785
797
|
|
|
@@ -797,30 +809,32 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
|
797
809
|
|
|
798
810
|
[[package]]
|
|
799
811
|
name = "governor"
|
|
800
|
-
version = "0.
|
|
812
|
+
version = "0.8.1"
|
|
801
813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
-
checksum = "
|
|
814
|
+
checksum = "be93b4ec2e4710b04d9264c0c7350cdd62a8c20e5e4ac732552ebb8f0debe8eb"
|
|
803
815
|
dependencies = [
|
|
804
816
|
"cfg-if",
|
|
805
817
|
"dashmap",
|
|
806
818
|
"futures-sink",
|
|
807
819
|
"futures-timer",
|
|
808
820
|
"futures-util",
|
|
821
|
+
"getrandom 0.3.2",
|
|
809
822
|
"no-std-compat",
|
|
810
823
|
"nonzero_ext",
|
|
811
824
|
"parking_lot",
|
|
812
825
|
"portable-atomic",
|
|
813
826
|
"quanta",
|
|
814
|
-
"rand",
|
|
827
|
+
"rand 0.9.1",
|
|
815
828
|
"smallvec",
|
|
816
829
|
"spinning_top",
|
|
830
|
+
"web-time",
|
|
817
831
|
]
|
|
818
832
|
|
|
819
833
|
[[package]]
|
|
820
834
|
name = "h2"
|
|
821
|
-
version = "0.4.
|
|
835
|
+
version = "0.4.9"
|
|
822
836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
-
checksum = "
|
|
837
|
+
checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
|
|
824
838
|
dependencies = [
|
|
825
839
|
"atomic-waker",
|
|
826
840
|
"bytes",
|
|
@@ -828,7 +842,7 @@ dependencies = [
|
|
|
828
842
|
"futures-core",
|
|
829
843
|
"futures-sink",
|
|
830
844
|
"http",
|
|
831
|
-
"indexmap 2.
|
|
845
|
+
"indexmap 2.9.0",
|
|
832
846
|
"slab",
|
|
833
847
|
"tokio",
|
|
834
848
|
"tokio-util",
|
|
@@ -875,9 +889,9 @@ dependencies = [
|
|
|
875
889
|
|
|
876
890
|
[[package]]
|
|
877
891
|
name = "http"
|
|
878
|
-
version = "1.
|
|
892
|
+
version = "1.3.1"
|
|
879
893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
-
checksum = "
|
|
894
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
881
895
|
dependencies = [
|
|
882
896
|
"bytes",
|
|
883
897
|
"fnv",
|
|
@@ -896,12 +910,12 @@ dependencies = [
|
|
|
896
910
|
|
|
897
911
|
[[package]]
|
|
898
912
|
name = "http-body-util"
|
|
899
|
-
version = "0.1.
|
|
913
|
+
version = "0.1.3"
|
|
900
914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
-
checksum = "
|
|
915
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
902
916
|
dependencies = [
|
|
903
917
|
"bytes",
|
|
904
|
-
"futures-
|
|
918
|
+
"futures-core",
|
|
905
919
|
"http",
|
|
906
920
|
"http-body",
|
|
907
921
|
"pin-project-lite",
|
|
@@ -909,9 +923,9 @@ dependencies = [
|
|
|
909
923
|
|
|
910
924
|
[[package]]
|
|
911
925
|
name = "httparse"
|
|
912
|
-
version = "1.
|
|
926
|
+
version = "1.10.1"
|
|
913
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
-
checksum = "
|
|
928
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
915
929
|
|
|
916
930
|
[[package]]
|
|
917
931
|
name = "httpdate"
|
|
@@ -921,9 +935,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
921
935
|
|
|
922
936
|
[[package]]
|
|
923
937
|
name = "hyper"
|
|
924
|
-
version = "1.
|
|
938
|
+
version = "1.6.0"
|
|
925
939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
-
checksum = "
|
|
940
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
|
927
941
|
dependencies = [
|
|
928
942
|
"bytes",
|
|
929
943
|
"futures-channel",
|
|
@@ -973,9 +987,9 @@ dependencies = [
|
|
|
973
987
|
|
|
974
988
|
[[package]]
|
|
975
989
|
name = "hyper-util"
|
|
976
|
-
version = "0.1.
|
|
990
|
+
version = "0.1.11"
|
|
977
991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
-
checksum = "
|
|
992
|
+
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
|
979
993
|
dependencies = [
|
|
980
994
|
"bytes",
|
|
981
995
|
"futures-channel",
|
|
@@ -983,6 +997,7 @@ dependencies = [
|
|
|
983
997
|
"http",
|
|
984
998
|
"http-body",
|
|
985
999
|
"hyper",
|
|
1000
|
+
"libc",
|
|
986
1001
|
"pin-project-lite",
|
|
987
1002
|
"socket2",
|
|
988
1003
|
"tokio",
|
|
@@ -1031,9 +1046,9 @@ dependencies = [
|
|
|
1031
1046
|
|
|
1032
1047
|
[[package]]
|
|
1033
1048
|
name = "icu_locid_transform_data"
|
|
1034
|
-
version = "1.5.
|
|
1049
|
+
version = "1.5.1"
|
|
1035
1050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
-
checksum = "
|
|
1051
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
1037
1052
|
|
|
1038
1053
|
[[package]]
|
|
1039
1054
|
name = "icu_normalizer"
|
|
@@ -1055,9 +1070,9 @@ dependencies = [
|
|
|
1055
1070
|
|
|
1056
1071
|
[[package]]
|
|
1057
1072
|
name = "icu_normalizer_data"
|
|
1058
|
-
version = "1.5.
|
|
1073
|
+
version = "1.5.1"
|
|
1059
1074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
-
checksum = "
|
|
1075
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
1061
1076
|
|
|
1062
1077
|
[[package]]
|
|
1063
1078
|
name = "icu_properties"
|
|
@@ -1076,9 +1091,9 @@ dependencies = [
|
|
|
1076
1091
|
|
|
1077
1092
|
[[package]]
|
|
1078
1093
|
name = "icu_properties_data"
|
|
1079
|
-
version = "1.5.
|
|
1094
|
+
version = "1.5.1"
|
|
1080
1095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "
|
|
1096
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
|
1082
1097
|
|
|
1083
1098
|
[[package]]
|
|
1084
1099
|
name = "icu_provider"
|
|
@@ -1147,9 +1162,9 @@ dependencies = [
|
|
|
1147
1162
|
|
|
1148
1163
|
[[package]]
|
|
1149
1164
|
name = "indexmap"
|
|
1150
|
-
version = "2.
|
|
1165
|
+
version = "2.9.0"
|
|
1151
1166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
-
checksum = "
|
|
1167
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
1153
1168
|
dependencies = [
|
|
1154
1169
|
"equivalent",
|
|
1155
1170
|
"hashbrown 0.15.2",
|
|
@@ -1157,9 +1172,9 @@ dependencies = [
|
|
|
1157
1172
|
|
|
1158
1173
|
[[package]]
|
|
1159
1174
|
name = "inout"
|
|
1160
|
-
version = "0.1.
|
|
1175
|
+
version = "0.1.4"
|
|
1161
1176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
-
checksum = "
|
|
1177
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1163
1178
|
dependencies = [
|
|
1164
1179
|
"generic-array",
|
|
1165
1180
|
]
|
|
@@ -1175,40 +1190,41 @@ dependencies = [
|
|
|
1175
1190
|
|
|
1176
1191
|
[[package]]
|
|
1177
1192
|
name = "inventory"
|
|
1178
|
-
version = "0.3.
|
|
1193
|
+
version = "0.3.20"
|
|
1179
1194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
-
checksum = "
|
|
1195
|
+
checksum = "ab08d7cd2c5897f2c949e5383ea7c7db03fb19130ffcfbf7eda795137ae3cb83"
|
|
1181
1196
|
dependencies = [
|
|
1182
1197
|
"rustversion",
|
|
1183
1198
|
]
|
|
1184
1199
|
|
|
1185
1200
|
[[package]]
|
|
1186
1201
|
name = "ipnet"
|
|
1187
|
-
version = "2.
|
|
1202
|
+
version = "2.11.0"
|
|
1188
1203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
-
checksum = "
|
|
1204
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1190
1205
|
|
|
1191
1206
|
[[package]]
|
|
1192
1207
|
name = "itertools"
|
|
1193
|
-
version = "0.
|
|
1208
|
+
version = "0.14.0"
|
|
1194
1209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
-
checksum = "
|
|
1210
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1196
1211
|
dependencies = [
|
|
1197
1212
|
"either",
|
|
1198
1213
|
]
|
|
1199
1214
|
|
|
1200
1215
|
[[package]]
|
|
1201
1216
|
name = "itoa"
|
|
1202
|
-
version = "1.0.
|
|
1217
|
+
version = "1.0.15"
|
|
1203
1218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
-
checksum = "
|
|
1219
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1205
1220
|
|
|
1206
1221
|
[[package]]
|
|
1207
1222
|
name = "jobserver"
|
|
1208
|
-
version = "0.1.
|
|
1223
|
+
version = "0.1.33"
|
|
1209
1224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
-
checksum = "
|
|
1225
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
1211
1226
|
dependencies = [
|
|
1227
|
+
"getrandom 0.3.2",
|
|
1212
1228
|
"libc",
|
|
1213
1229
|
]
|
|
1214
1230
|
|
|
@@ -1230,9 +1246,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
|
1230
1246
|
|
|
1231
1247
|
[[package]]
|
|
1232
1248
|
name = "libc"
|
|
1233
|
-
version = "0.2.
|
|
1249
|
+
version = "0.2.172"
|
|
1234
1250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
-
checksum = "
|
|
1251
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
1236
1252
|
|
|
1237
1253
|
[[package]]
|
|
1238
1254
|
name = "libloading"
|
|
@@ -1241,7 +1257,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1241
1257
|
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
|
1242
1258
|
dependencies = [
|
|
1243
1259
|
"cfg-if",
|
|
1244
|
-
"windows-targets",
|
|
1260
|
+
"windows-targets 0.52.6",
|
|
1245
1261
|
]
|
|
1246
1262
|
|
|
1247
1263
|
[[package]]
|
|
@@ -1257,15 +1273,15 @@ dependencies = [
|
|
|
1257
1273
|
|
|
1258
1274
|
[[package]]
|
|
1259
1275
|
name = "linux-raw-sys"
|
|
1260
|
-
version = "0.4
|
|
1276
|
+
version = "0.9.4"
|
|
1261
1277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
-
checksum = "
|
|
1278
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1263
1279
|
|
|
1264
1280
|
[[package]]
|
|
1265
1281
|
name = "litemap"
|
|
1266
|
-
version = "0.7.
|
|
1282
|
+
version = "0.7.5"
|
|
1267
1283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
-
checksum = "
|
|
1284
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
1269
1285
|
|
|
1270
1286
|
[[package]]
|
|
1271
1287
|
name = "lock_api"
|
|
@@ -1277,23 +1293,17 @@ dependencies = [
|
|
|
1277
1293
|
"scopeguard",
|
|
1278
1294
|
]
|
|
1279
1295
|
|
|
1280
|
-
[[package]]
|
|
1281
|
-
name = "lockfree-object-pool"
|
|
1282
|
-
version = "0.1.6"
|
|
1283
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
-
checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
|
|
1285
|
-
|
|
1286
1296
|
[[package]]
|
|
1287
1297
|
name = "log"
|
|
1288
|
-
version = "0.4.
|
|
1298
|
+
version = "0.4.27"
|
|
1289
1299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
-
checksum = "
|
|
1300
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1291
1301
|
|
|
1292
1302
|
[[package]]
|
|
1293
1303
|
name = "lru"
|
|
1294
|
-
version = "0.
|
|
1304
|
+
version = "0.13.0"
|
|
1295
1305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
-
checksum = "
|
|
1306
|
+
checksum = "227748d55f2f0ab4735d87fd623798cb6b664512fe979705f829c9f81c934465"
|
|
1297
1307
|
dependencies = [
|
|
1298
1308
|
"hashbrown 0.15.2",
|
|
1299
1309
|
]
|
|
@@ -1308,6 +1318,17 @@ dependencies = [
|
|
|
1308
1318
|
"crc",
|
|
1309
1319
|
]
|
|
1310
1320
|
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "lzma-sys"
|
|
1323
|
+
version = "0.1.20"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
1326
|
+
dependencies = [
|
|
1327
|
+
"cc",
|
|
1328
|
+
"libc",
|
|
1329
|
+
"pkg-config",
|
|
1330
|
+
]
|
|
1331
|
+
|
|
1311
1332
|
[[package]]
|
|
1312
1333
|
name = "matchers"
|
|
1313
1334
|
version = "0.1.0"
|
|
@@ -1337,9 +1358,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
|
1337
1358
|
|
|
1338
1359
|
[[package]]
|
|
1339
1360
|
name = "miniz_oxide"
|
|
1340
|
-
version = "0.8.
|
|
1361
|
+
version = "0.8.8"
|
|
1341
1362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
-
checksum = "
|
|
1363
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
1343
1364
|
dependencies = [
|
|
1344
1365
|
"adler2",
|
|
1345
1366
|
]
|
|
@@ -1351,7 +1372,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1351
1372
|
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
1352
1373
|
dependencies = [
|
|
1353
1374
|
"libc",
|
|
1354
|
-
"wasi",
|
|
1375
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1355
1376
|
"windows-sys 0.52.0",
|
|
1356
1377
|
]
|
|
1357
1378
|
|
|
@@ -1470,15 +1491,15 @@ dependencies = [
|
|
|
1470
1491
|
|
|
1471
1492
|
[[package]]
|
|
1472
1493
|
name = "once_cell"
|
|
1473
|
-
version = "1.
|
|
1494
|
+
version = "1.21.3"
|
|
1474
1495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1475
|
-
checksum = "
|
|
1496
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1476
1497
|
|
|
1477
1498
|
[[package]]
|
|
1478
1499
|
name = "openssl-probe"
|
|
1479
|
-
version = "0.1.
|
|
1500
|
+
version = "0.1.6"
|
|
1480
1501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
-
checksum = "
|
|
1502
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1482
1503
|
|
|
1483
1504
|
[[package]]
|
|
1484
1505
|
name = "opentelemetry"
|
|
@@ -1494,19 +1515,48 @@ dependencies = [
|
|
|
1494
1515
|
"thiserror 1.0.69",
|
|
1495
1516
|
]
|
|
1496
1517
|
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "opentelemetry"
|
|
1520
|
+
version = "0.26.0"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "570074cc999d1a58184080966e5bd3bf3a9a4af650c3b05047c2621e7405cd17"
|
|
1523
|
+
dependencies = [
|
|
1524
|
+
"futures-core",
|
|
1525
|
+
"futures-sink",
|
|
1526
|
+
"js-sys",
|
|
1527
|
+
"once_cell",
|
|
1528
|
+
"pin-project-lite",
|
|
1529
|
+
"thiserror 1.0.69",
|
|
1530
|
+
]
|
|
1531
|
+
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "opentelemetry-http"
|
|
1534
|
+
version = "0.26.0"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "6351496aeaa49d7c267fb480678d85d1cd30c5edb20b497c48c56f62a8c14b99"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"async-trait",
|
|
1539
|
+
"bytes",
|
|
1540
|
+
"http",
|
|
1541
|
+
"opentelemetry 0.26.0",
|
|
1542
|
+
"reqwest",
|
|
1543
|
+
]
|
|
1544
|
+
|
|
1497
1545
|
[[package]]
|
|
1498
1546
|
name = "opentelemetry-otlp"
|
|
1499
|
-
version = "0.
|
|
1547
|
+
version = "0.26.0"
|
|
1500
1548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
-
checksum = "
|
|
1549
|
+
checksum = "29e1f9c8b032d4f635c730c0efcf731d5e2530ea13fa8bef7939ddc8420696bd"
|
|
1502
1550
|
dependencies = [
|
|
1503
1551
|
"async-trait",
|
|
1504
1552
|
"futures-core",
|
|
1505
1553
|
"http",
|
|
1506
|
-
"opentelemetry",
|
|
1554
|
+
"opentelemetry 0.26.0",
|
|
1555
|
+
"opentelemetry-http",
|
|
1507
1556
|
"opentelemetry-proto",
|
|
1508
1557
|
"opentelemetry_sdk",
|
|
1509
1558
|
"prost",
|
|
1559
|
+
"reqwest",
|
|
1510
1560
|
"thiserror 1.0.69",
|
|
1511
1561
|
"tokio",
|
|
1512
1562
|
"tonic",
|
|
@@ -1515,11 +1565,10 @@ dependencies = [
|
|
|
1515
1565
|
[[package]]
|
|
1516
1566
|
name = "opentelemetry-prometheus"
|
|
1517
1567
|
version = "0.17.0"
|
|
1518
|
-
source = "
|
|
1519
|
-
checksum = "cc4191ce34aa274621861a7a9d68dbcf618d5b6c66b10081631b61fd81fbc015"
|
|
1568
|
+
source = "git+https://github.com/open-telemetry/opentelemetry-rust.git?rev=e911383#e91138351a689cd21923c15eb48f5fbc95ded807"
|
|
1520
1569
|
dependencies = [
|
|
1521
1570
|
"once_cell",
|
|
1522
|
-
"opentelemetry",
|
|
1571
|
+
"opentelemetry 0.26.0",
|
|
1523
1572
|
"opentelemetry_sdk",
|
|
1524
1573
|
"prometheus",
|
|
1525
1574
|
"protobuf",
|
|
@@ -1527,11 +1576,11 @@ dependencies = [
|
|
|
1527
1576
|
|
|
1528
1577
|
[[package]]
|
|
1529
1578
|
name = "opentelemetry-proto"
|
|
1530
|
-
version = "0.
|
|
1579
|
+
version = "0.26.1"
|
|
1531
1580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
-
checksum = "
|
|
1581
|
+
checksum = "c9d3968ce3aefdcca5c27e3c4ea4391b37547726a70893aab52d3de95d5f8b34"
|
|
1533
1582
|
dependencies = [
|
|
1534
|
-
"opentelemetry",
|
|
1583
|
+
"opentelemetry 0.26.0",
|
|
1535
1584
|
"opentelemetry_sdk",
|
|
1536
1585
|
"prost",
|
|
1537
1586
|
"tonic",
|
|
@@ -1539,9 +1588,9 @@ dependencies = [
|
|
|
1539
1588
|
|
|
1540
1589
|
[[package]]
|
|
1541
1590
|
name = "opentelemetry_sdk"
|
|
1542
|
-
version = "0.
|
|
1591
|
+
version = "0.26.0"
|
|
1543
1592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
-
checksum = "
|
|
1593
|
+
checksum = "d2c627d9f4c9cdc1f21a29ee4bfbd6028fcb8bcf2a857b43f3abdf72c9c862f3"
|
|
1545
1594
|
dependencies = [
|
|
1546
1595
|
"async-trait",
|
|
1547
1596
|
"futures-channel",
|
|
@@ -1549,9 +1598,9 @@ dependencies = [
|
|
|
1549
1598
|
"futures-util",
|
|
1550
1599
|
"glob",
|
|
1551
1600
|
"once_cell",
|
|
1552
|
-
"opentelemetry",
|
|
1601
|
+
"opentelemetry 0.26.0",
|
|
1553
1602
|
"percent-encoding",
|
|
1554
|
-
"rand",
|
|
1603
|
+
"rand 0.8.5",
|
|
1555
1604
|
"serde_json",
|
|
1556
1605
|
"thiserror 1.0.69",
|
|
1557
1606
|
"tokio",
|
|
@@ -1584,7 +1633,7 @@ dependencies = [
|
|
|
1584
1633
|
"libc",
|
|
1585
1634
|
"redox_syscall",
|
|
1586
1635
|
"smallvec",
|
|
1587
|
-
"windows-targets",
|
|
1636
|
+
"windows-targets 0.52.6",
|
|
1588
1637
|
]
|
|
1589
1638
|
|
|
1590
1639
|
[[package]]
|
|
@@ -1605,12 +1654,12 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1605
1654
|
|
|
1606
1655
|
[[package]]
|
|
1607
1656
|
name = "petgraph"
|
|
1608
|
-
version = "0.
|
|
1657
|
+
version = "0.7.1"
|
|
1609
1658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
-
checksum = "
|
|
1659
|
+
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
|
|
1611
1660
|
dependencies = [
|
|
1612
1661
|
"fixedbitset",
|
|
1613
|
-
"indexmap 2.
|
|
1662
|
+
"indexmap 2.9.0",
|
|
1614
1663
|
]
|
|
1615
1664
|
|
|
1616
1665
|
[[package]]
|
|
@@ -1624,18 +1673,18 @@ dependencies = [
|
|
|
1624
1673
|
|
|
1625
1674
|
[[package]]
|
|
1626
1675
|
name = "pin-project"
|
|
1627
|
-
version = "1.1.
|
|
1676
|
+
version = "1.1.10"
|
|
1628
1677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
-
checksum = "
|
|
1678
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
1630
1679
|
dependencies = [
|
|
1631
1680
|
"pin-project-internal",
|
|
1632
1681
|
]
|
|
1633
1682
|
|
|
1634
1683
|
[[package]]
|
|
1635
1684
|
name = "pin-project-internal"
|
|
1636
|
-
version = "1.1.
|
|
1685
|
+
version = "1.1.10"
|
|
1637
1686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
|
-
checksum = "
|
|
1687
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
1639
1688
|
dependencies = [
|
|
1640
1689
|
"proc-macro2",
|
|
1641
1690
|
"quote",
|
|
@@ -1656,15 +1705,24 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1656
1705
|
|
|
1657
1706
|
[[package]]
|
|
1658
1707
|
name = "pkg-config"
|
|
1659
|
-
version = "0.3.
|
|
1708
|
+
version = "0.3.32"
|
|
1660
1709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1661
|
-
checksum = "
|
|
1710
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1662
1711
|
|
|
1663
1712
|
[[package]]
|
|
1664
1713
|
name = "portable-atomic"
|
|
1665
|
-
version = "1.
|
|
1714
|
+
version = "1.11.0"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "portable-atomic-util"
|
|
1720
|
+
version = "0.2.4"
|
|
1666
1721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1667
|
-
checksum = "
|
|
1722
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
1723
|
+
dependencies = [
|
|
1724
|
+
"portable-atomic",
|
|
1725
|
+
]
|
|
1668
1726
|
|
|
1669
1727
|
[[package]]
|
|
1670
1728
|
name = "powerfmt"
|
|
@@ -1674,9 +1732,9 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
1674
1732
|
|
|
1675
1733
|
[[package]]
|
|
1676
1734
|
name = "ppv-lite86"
|
|
1677
|
-
version = "0.2.
|
|
1735
|
+
version = "0.2.21"
|
|
1678
1736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
-
checksum = "
|
|
1737
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1680
1738
|
dependencies = [
|
|
1681
1739
|
"zerocopy",
|
|
1682
1740
|
]
|
|
@@ -1709,9 +1767,9 @@ dependencies = [
|
|
|
1709
1767
|
|
|
1710
1768
|
[[package]]
|
|
1711
1769
|
name = "prettyplease"
|
|
1712
|
-
version = "0.2.
|
|
1770
|
+
version = "0.2.32"
|
|
1713
1771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1714
|
-
checksum = "
|
|
1772
|
+
checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
|
|
1715
1773
|
dependencies = [
|
|
1716
1774
|
"proc-macro2",
|
|
1717
1775
|
"syn",
|
|
@@ -1719,9 +1777,9 @@ dependencies = [
|
|
|
1719
1777
|
|
|
1720
1778
|
[[package]]
|
|
1721
1779
|
name = "proc-macro2"
|
|
1722
|
-
version = "1.0.
|
|
1780
|
+
version = "1.0.95"
|
|
1723
1781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
-
checksum = "
|
|
1782
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
1725
1783
|
dependencies = [
|
|
1726
1784
|
"unicode-ident",
|
|
1727
1785
|
]
|
|
@@ -1743,9 +1801,9 @@ dependencies = [
|
|
|
1743
1801
|
|
|
1744
1802
|
[[package]]
|
|
1745
1803
|
name = "prost"
|
|
1746
|
-
version = "0.13.
|
|
1804
|
+
version = "0.13.5"
|
|
1747
1805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1748
|
-
checksum = "
|
|
1806
|
+
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
|
|
1749
1807
|
dependencies = [
|
|
1750
1808
|
"bytes",
|
|
1751
1809
|
"prost-derive",
|
|
@@ -1753,9 +1811,9 @@ dependencies = [
|
|
|
1753
1811
|
|
|
1754
1812
|
[[package]]
|
|
1755
1813
|
name = "prost-build"
|
|
1756
|
-
version = "0.13.
|
|
1814
|
+
version = "0.13.5"
|
|
1757
1815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
-
checksum = "
|
|
1816
|
+
checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
|
|
1759
1817
|
dependencies = [
|
|
1760
1818
|
"heck",
|
|
1761
1819
|
"itertools",
|
|
@@ -1773,9 +1831,9 @@ dependencies = [
|
|
|
1773
1831
|
|
|
1774
1832
|
[[package]]
|
|
1775
1833
|
name = "prost-derive"
|
|
1776
|
-
version = "0.13.
|
|
1834
|
+
version = "0.13.5"
|
|
1777
1835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1778
|
-
checksum = "
|
|
1836
|
+
checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
|
|
1779
1837
|
dependencies = [
|
|
1780
1838
|
"anyhow",
|
|
1781
1839
|
"itertools",
|
|
@@ -1786,9 +1844,9 @@ dependencies = [
|
|
|
1786
1844
|
|
|
1787
1845
|
[[package]]
|
|
1788
1846
|
name = "prost-types"
|
|
1789
|
-
version = "0.13.
|
|
1847
|
+
version = "0.13.5"
|
|
1790
1848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
-
checksum = "
|
|
1849
|
+
checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
|
|
1792
1850
|
dependencies = [
|
|
1793
1851
|
"prost",
|
|
1794
1852
|
]
|
|
@@ -1855,44 +1913,46 @@ dependencies = [
|
|
|
1855
1913
|
"libc",
|
|
1856
1914
|
"once_cell",
|
|
1857
1915
|
"raw-cpuid",
|
|
1858
|
-
"wasi",
|
|
1916
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1859
1917
|
"web-sys",
|
|
1860
1918
|
"winapi",
|
|
1861
1919
|
]
|
|
1862
1920
|
|
|
1863
1921
|
[[package]]
|
|
1864
1922
|
name = "quinn"
|
|
1865
|
-
version = "0.11.
|
|
1923
|
+
version = "0.11.7"
|
|
1866
1924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
-
checksum = "
|
|
1925
|
+
checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
|
|
1868
1926
|
dependencies = [
|
|
1869
1927
|
"bytes",
|
|
1928
|
+
"cfg_aliases",
|
|
1870
1929
|
"pin-project-lite",
|
|
1871
1930
|
"quinn-proto",
|
|
1872
1931
|
"quinn-udp",
|
|
1873
1932
|
"rustc-hash",
|
|
1874
1933
|
"rustls",
|
|
1875
1934
|
"socket2",
|
|
1876
|
-
"thiserror 2.0.
|
|
1935
|
+
"thiserror 2.0.12",
|
|
1877
1936
|
"tokio",
|
|
1878
1937
|
"tracing",
|
|
1938
|
+
"web-time",
|
|
1879
1939
|
]
|
|
1880
1940
|
|
|
1881
1941
|
[[package]]
|
|
1882
1942
|
name = "quinn-proto"
|
|
1883
|
-
version = "0.11.
|
|
1943
|
+
version = "0.11.11"
|
|
1884
1944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1885
|
-
checksum = "
|
|
1945
|
+
checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b"
|
|
1886
1946
|
dependencies = [
|
|
1887
1947
|
"bytes",
|
|
1888
|
-
"getrandom",
|
|
1889
|
-
"rand",
|
|
1948
|
+
"getrandom 0.3.2",
|
|
1949
|
+
"rand 0.9.1",
|
|
1890
1950
|
"ring",
|
|
1891
1951
|
"rustc-hash",
|
|
1892
1952
|
"rustls",
|
|
1893
1953
|
"rustls-pki-types",
|
|
1894
1954
|
"slab",
|
|
1895
|
-
"thiserror 2.0.
|
|
1955
|
+
"thiserror 2.0.12",
|
|
1896
1956
|
"tinyvec",
|
|
1897
1957
|
"tracing",
|
|
1898
1958
|
"web-time",
|
|
@@ -1900,9 +1960,9 @@ dependencies = [
|
|
|
1900
1960
|
|
|
1901
1961
|
[[package]]
|
|
1902
1962
|
name = "quinn-udp"
|
|
1903
|
-
version = "0.5.
|
|
1963
|
+
version = "0.5.11"
|
|
1904
1964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
-
checksum = "
|
|
1965
|
+
checksum = "541d0f57c6ec747a90738a52741d3221f7960e8ac2f0ff4b1a63680e033b4ab5"
|
|
1906
1966
|
dependencies = [
|
|
1907
1967
|
"cfg_aliases",
|
|
1908
1968
|
"libc",
|
|
@@ -1914,13 +1974,19 @@ dependencies = [
|
|
|
1914
1974
|
|
|
1915
1975
|
[[package]]
|
|
1916
1976
|
name = "quote"
|
|
1917
|
-
version = "1.0.
|
|
1977
|
+
version = "1.0.40"
|
|
1918
1978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1919
|
-
checksum = "
|
|
1979
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
1920
1980
|
dependencies = [
|
|
1921
1981
|
"proc-macro2",
|
|
1922
1982
|
]
|
|
1923
1983
|
|
|
1984
|
+
[[package]]
|
|
1985
|
+
name = "r-efi"
|
|
1986
|
+
version = "5.2.0"
|
|
1987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
1989
|
+
|
|
1924
1990
|
[[package]]
|
|
1925
1991
|
name = "rand"
|
|
1926
1992
|
version = "0.8.5"
|
|
@@ -1928,8 +1994,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1928
1994
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1929
1995
|
dependencies = [
|
|
1930
1996
|
"libc",
|
|
1931
|
-
"rand_chacha",
|
|
1932
|
-
"rand_core",
|
|
1997
|
+
"rand_chacha 0.3.1",
|
|
1998
|
+
"rand_core 0.6.4",
|
|
1999
|
+
]
|
|
2000
|
+
|
|
2001
|
+
[[package]]
|
|
2002
|
+
name = "rand"
|
|
2003
|
+
version = "0.9.1"
|
|
2004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
|
2006
|
+
dependencies = [
|
|
2007
|
+
"rand_chacha 0.9.0",
|
|
2008
|
+
"rand_core 0.9.3",
|
|
1933
2009
|
]
|
|
1934
2010
|
|
|
1935
2011
|
[[package]]
|
|
@@ -1939,7 +2015,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1939
2015
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1940
2016
|
dependencies = [
|
|
1941
2017
|
"ppv-lite86",
|
|
1942
|
-
"rand_core",
|
|
2018
|
+
"rand_core 0.6.4",
|
|
2019
|
+
]
|
|
2020
|
+
|
|
2021
|
+
[[package]]
|
|
2022
|
+
name = "rand_chacha"
|
|
2023
|
+
version = "0.9.0"
|
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2026
|
+
dependencies = [
|
|
2027
|
+
"ppv-lite86",
|
|
2028
|
+
"rand_core 0.9.3",
|
|
1943
2029
|
]
|
|
1944
2030
|
|
|
1945
2031
|
[[package]]
|
|
@@ -1948,23 +2034,32 @@ version = "0.6.4"
|
|
|
1948
2034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1949
2035
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1950
2036
|
dependencies = [
|
|
1951
|
-
"getrandom",
|
|
2037
|
+
"getrandom 0.2.16",
|
|
2038
|
+
]
|
|
2039
|
+
|
|
2040
|
+
[[package]]
|
|
2041
|
+
name = "rand_core"
|
|
2042
|
+
version = "0.9.3"
|
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2045
|
+
dependencies = [
|
|
2046
|
+
"getrandom 0.3.2",
|
|
1952
2047
|
]
|
|
1953
2048
|
|
|
1954
2049
|
[[package]]
|
|
1955
2050
|
name = "raw-cpuid"
|
|
1956
|
-
version = "11.
|
|
2051
|
+
version = "11.5.0"
|
|
1957
2052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
-
checksum = "
|
|
2053
|
+
checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
|
|
1959
2054
|
dependencies = [
|
|
1960
2055
|
"bitflags",
|
|
1961
2056
|
]
|
|
1962
2057
|
|
|
1963
2058
|
[[package]]
|
|
1964
2059
|
name = "redox_syscall"
|
|
1965
|
-
version = "0.5.
|
|
2060
|
+
version = "0.5.11"
|
|
1966
2061
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
-
checksum = "
|
|
2062
|
+
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
|
1968
2063
|
dependencies = [
|
|
1969
2064
|
"bitflags",
|
|
1970
2065
|
]
|
|
@@ -2015,12 +2110,13 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
|
2015
2110
|
|
|
2016
2111
|
[[package]]
|
|
2017
2112
|
name = "reqwest"
|
|
2018
|
-
version = "0.12.
|
|
2113
|
+
version = "0.12.15"
|
|
2019
2114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
-
checksum = "
|
|
2115
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
|
2021
2116
|
dependencies = [
|
|
2022
2117
|
"base64",
|
|
2023
2118
|
"bytes",
|
|
2119
|
+
"futures-channel",
|
|
2024
2120
|
"futures-core",
|
|
2025
2121
|
"futures-util",
|
|
2026
2122
|
"http",
|
|
@@ -2060,27 +2156,27 @@ dependencies = [
|
|
|
2060
2156
|
|
|
2061
2157
|
[[package]]
|
|
2062
2158
|
name = "ring"
|
|
2063
|
-
version = "0.17.
|
|
2159
|
+
version = "0.17.14"
|
|
2064
2160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2065
|
-
checksum = "
|
|
2161
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2066
2162
|
dependencies = [
|
|
2067
2163
|
"cc",
|
|
2068
2164
|
"cfg-if",
|
|
2069
|
-
"getrandom",
|
|
2165
|
+
"getrandom 0.2.16",
|
|
2070
2166
|
"libc",
|
|
2071
|
-
"spin",
|
|
2072
2167
|
"untrusted",
|
|
2073
2168
|
"windows-sys 0.52.0",
|
|
2074
2169
|
]
|
|
2075
2170
|
|
|
2076
2171
|
[[package]]
|
|
2077
2172
|
name = "ringbuf"
|
|
2078
|
-
version = "0.4.
|
|
2173
|
+
version = "0.4.8"
|
|
2079
2174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
-
checksum = "
|
|
2175
|
+
checksum = "fe47b720588c8702e34b5979cb3271a8b1842c7cb6f57408efa70c779363488c"
|
|
2081
2176
|
dependencies = [
|
|
2082
2177
|
"crossbeam-utils",
|
|
2083
2178
|
"portable-atomic",
|
|
2179
|
+
"portable-atomic-util",
|
|
2084
2180
|
]
|
|
2085
2181
|
|
|
2086
2182
|
[[package]]
|
|
@@ -2091,9 +2187,9 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
|
2091
2187
|
|
|
2092
2188
|
[[package]]
|
|
2093
2189
|
name = "rustc-hash"
|
|
2094
|
-
version = "2.1.
|
|
2190
|
+
version = "2.1.1"
|
|
2095
2191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2096
|
-
checksum = "
|
|
2192
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2097
2193
|
|
|
2098
2194
|
[[package]]
|
|
2099
2195
|
name = "rustfsm"
|
|
@@ -2120,9 +2216,9 @@ version = "0.1.0"
|
|
|
2120
2216
|
|
|
2121
2217
|
[[package]]
|
|
2122
2218
|
name = "rustix"
|
|
2123
|
-
version = "0.
|
|
2219
|
+
version = "1.0.5"
|
|
2124
2220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
-
checksum = "
|
|
2221
|
+
checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
|
|
2126
2222
|
dependencies = [
|
|
2127
2223
|
"bitflags",
|
|
2128
2224
|
"errno",
|
|
@@ -2133,9 +2229,9 @@ dependencies = [
|
|
|
2133
2229
|
|
|
2134
2230
|
[[package]]
|
|
2135
2231
|
name = "rustls"
|
|
2136
|
-
version = "0.23.
|
|
2232
|
+
version = "0.23.26"
|
|
2137
2233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2138
|
-
checksum = "
|
|
2234
|
+
checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
|
|
2139
2235
|
dependencies = [
|
|
2140
2236
|
"log",
|
|
2141
2237
|
"once_cell",
|
|
@@ -2169,18 +2265,18 @@ dependencies = [
|
|
|
2169
2265
|
|
|
2170
2266
|
[[package]]
|
|
2171
2267
|
name = "rustls-pki-types"
|
|
2172
|
-
version = "1.
|
|
2268
|
+
version = "1.11.0"
|
|
2173
2269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
-
checksum = "
|
|
2270
|
+
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
2175
2271
|
dependencies = [
|
|
2176
2272
|
"web-time",
|
|
2177
2273
|
]
|
|
2178
2274
|
|
|
2179
2275
|
[[package]]
|
|
2180
2276
|
name = "rustls-webpki"
|
|
2181
|
-
version = "0.
|
|
2277
|
+
version = "0.103.1"
|
|
2182
2278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2183
|
-
checksum = "
|
|
2279
|
+
checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
|
|
2184
2280
|
dependencies = [
|
|
2185
2281
|
"ring",
|
|
2186
2282
|
"rustls-pki-types",
|
|
@@ -2189,15 +2285,15 @@ dependencies = [
|
|
|
2189
2285
|
|
|
2190
2286
|
[[package]]
|
|
2191
2287
|
name = "rustversion"
|
|
2192
|
-
version = "1.0.
|
|
2288
|
+
version = "1.0.20"
|
|
2193
2289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
-
checksum = "
|
|
2290
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
2195
2291
|
|
|
2196
2292
|
[[package]]
|
|
2197
2293
|
name = "ryu"
|
|
2198
|
-
version = "1.0.
|
|
2294
|
+
version = "1.0.20"
|
|
2199
2295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2200
|
-
checksum = "
|
|
2296
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2201
2297
|
|
|
2202
2298
|
[[package]]
|
|
2203
2299
|
name = "schannel"
|
|
@@ -2239,9 +2335,9 @@ dependencies = [
|
|
|
2239
2335
|
|
|
2240
2336
|
[[package]]
|
|
2241
2337
|
name = "semver"
|
|
2242
|
-
version = "1.0.
|
|
2338
|
+
version = "1.0.26"
|
|
2243
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2244
|
-
checksum = "
|
|
2340
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
2245
2341
|
|
|
2246
2342
|
[[package]]
|
|
2247
2343
|
name = "send_wrapper"
|
|
@@ -2251,18 +2347,18 @@ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
|
|
|
2251
2347
|
|
|
2252
2348
|
[[package]]
|
|
2253
2349
|
name = "serde"
|
|
2254
|
-
version = "1.0.
|
|
2350
|
+
version = "1.0.219"
|
|
2255
2351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
-
checksum = "
|
|
2352
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
2257
2353
|
dependencies = [
|
|
2258
2354
|
"serde_derive",
|
|
2259
2355
|
]
|
|
2260
2356
|
|
|
2261
2357
|
[[package]]
|
|
2262
2358
|
name = "serde_derive"
|
|
2263
|
-
version = "1.0.
|
|
2359
|
+
version = "1.0.219"
|
|
2264
2360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2265
|
-
checksum = "
|
|
2361
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
2266
2362
|
dependencies = [
|
|
2267
2363
|
"proc-macro2",
|
|
2268
2364
|
"quote",
|
|
@@ -2271,9 +2367,9 @@ dependencies = [
|
|
|
2271
2367
|
|
|
2272
2368
|
[[package]]
|
|
2273
2369
|
name = "serde_json"
|
|
2274
|
-
version = "1.0.
|
|
2370
|
+
version = "1.0.140"
|
|
2275
2371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2276
|
-
checksum = "
|
|
2372
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
2277
2373
|
dependencies = [
|
|
2278
2374
|
"itoa",
|
|
2279
2375
|
"memchr",
|
|
@@ -2321,9 +2417,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
2321
2417
|
|
|
2322
2418
|
[[package]]
|
|
2323
2419
|
name = "signal-hook-registry"
|
|
2324
|
-
version = "1.4.
|
|
2420
|
+
version = "1.4.5"
|
|
2325
2421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2326
|
-
checksum = "
|
|
2422
|
+
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
|
|
2327
2423
|
dependencies = [
|
|
2328
2424
|
"libc",
|
|
2329
2425
|
]
|
|
@@ -2360,26 +2456,20 @@ dependencies = [
|
|
|
2360
2456
|
|
|
2361
2457
|
[[package]]
|
|
2362
2458
|
name = "smallvec"
|
|
2363
|
-
version = "1.
|
|
2459
|
+
version = "1.15.0"
|
|
2364
2460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
-
checksum = "
|
|
2461
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
2366
2462
|
|
|
2367
2463
|
[[package]]
|
|
2368
2464
|
name = "socket2"
|
|
2369
|
-
version = "0.5.
|
|
2465
|
+
version = "0.5.9"
|
|
2370
2466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
-
checksum = "
|
|
2467
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
|
2372
2468
|
dependencies = [
|
|
2373
2469
|
"libc",
|
|
2374
2470
|
"windows-sys 0.52.0",
|
|
2375
2471
|
]
|
|
2376
2472
|
|
|
2377
|
-
[[package]]
|
|
2378
|
-
name = "spin"
|
|
2379
|
-
version = "0.9.8"
|
|
2380
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2381
|
-
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2382
|
-
|
|
2383
2473
|
[[package]]
|
|
2384
2474
|
name = "spinning_top"
|
|
2385
2475
|
version = "0.3.0"
|
|
@@ -2409,9 +2499,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
2409
2499
|
|
|
2410
2500
|
[[package]]
|
|
2411
2501
|
name = "syn"
|
|
2412
|
-
version = "2.0.
|
|
2502
|
+
version = "2.0.100"
|
|
2413
2503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2414
|
-
checksum = "
|
|
2504
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
2415
2505
|
dependencies = [
|
|
2416
2506
|
"proc-macro2",
|
|
2417
2507
|
"quote",
|
|
@@ -2451,9 +2541,9 @@ dependencies = [
|
|
|
2451
2541
|
|
|
2452
2542
|
[[package]]
|
|
2453
2543
|
name = "sysinfo"
|
|
2454
|
-
version = "0.
|
|
2544
|
+
version = "0.33.1"
|
|
2455
2545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2456
|
-
checksum = "
|
|
2546
|
+
checksum = "4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01"
|
|
2457
2547
|
dependencies = [
|
|
2458
2548
|
"core-foundation-sys",
|
|
2459
2549
|
"libc",
|
|
@@ -2464,9 +2554,9 @@ dependencies = [
|
|
|
2464
2554
|
|
|
2465
2555
|
[[package]]
|
|
2466
2556
|
name = "tar"
|
|
2467
|
-
version = "0.4.
|
|
2557
|
+
version = "0.4.44"
|
|
2468
2558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2469
|
-
checksum = "
|
|
2559
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
|
2470
2560
|
dependencies = [
|
|
2471
2561
|
"filetime",
|
|
2472
2562
|
"libc",
|
|
@@ -2475,13 +2565,12 @@ dependencies = [
|
|
|
2475
2565
|
|
|
2476
2566
|
[[package]]
|
|
2477
2567
|
name = "tempfile"
|
|
2478
|
-
version = "3.
|
|
2568
|
+
version = "3.19.1"
|
|
2479
2569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
|
-
checksum = "
|
|
2570
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
|
2481
2571
|
dependencies = [
|
|
2482
|
-
"cfg-if",
|
|
2483
2572
|
"fastrand",
|
|
2484
|
-
"getrandom",
|
|
2573
|
+
"getrandom 0.3.2",
|
|
2485
2574
|
"once_cell",
|
|
2486
2575
|
"rustix",
|
|
2487
2576
|
"windows-sys 0.59.0",
|
|
@@ -2504,11 +2593,10 @@ dependencies = [
|
|
|
2504
2593
|
"hyper",
|
|
2505
2594
|
"hyper-util",
|
|
2506
2595
|
"parking_lot",
|
|
2507
|
-
"prost-types",
|
|
2508
2596
|
"slotmap",
|
|
2509
2597
|
"temporal-sdk-core-api",
|
|
2510
2598
|
"temporal-sdk-core-protos",
|
|
2511
|
-
"thiserror
|
|
2599
|
+
"thiserror 2.0.12",
|
|
2512
2600
|
"tokio",
|
|
2513
2601
|
"tonic",
|
|
2514
2602
|
"tower 0.5.2",
|
|
@@ -2541,7 +2629,7 @@ dependencies = [
|
|
|
2541
2629
|
"itertools",
|
|
2542
2630
|
"lru",
|
|
2543
2631
|
"mockall",
|
|
2544
|
-
"opentelemetry",
|
|
2632
|
+
"opentelemetry 0.26.0",
|
|
2545
2633
|
"opentelemetry-otlp",
|
|
2546
2634
|
"opentelemetry-prometheus",
|
|
2547
2635
|
"opentelemetry_sdk",
|
|
@@ -2551,7 +2639,7 @@ dependencies = [
|
|
|
2551
2639
|
"prometheus",
|
|
2552
2640
|
"prost",
|
|
2553
2641
|
"prost-wkt-types",
|
|
2554
|
-
"rand",
|
|
2642
|
+
"rand 0.9.1",
|
|
2555
2643
|
"reqwest",
|
|
2556
2644
|
"ringbuf",
|
|
2557
2645
|
"rustfsm",
|
|
@@ -2564,12 +2652,11 @@ dependencies = [
|
|
|
2564
2652
|
"temporal-client",
|
|
2565
2653
|
"temporal-sdk-core-api",
|
|
2566
2654
|
"temporal-sdk-core-protos",
|
|
2567
|
-
"thiserror
|
|
2655
|
+
"thiserror 2.0.12",
|
|
2568
2656
|
"tokio",
|
|
2569
2657
|
"tokio-stream",
|
|
2570
2658
|
"tokio-util",
|
|
2571
2659
|
"tonic",
|
|
2572
|
-
"tonic-build",
|
|
2573
2660
|
"tracing",
|
|
2574
2661
|
"tracing-subscriber",
|
|
2575
2662
|
"url",
|
|
@@ -2584,12 +2671,11 @@ dependencies = [
|
|
|
2584
2671
|
"async-trait",
|
|
2585
2672
|
"derive_builder",
|
|
2586
2673
|
"derive_more",
|
|
2587
|
-
"opentelemetry",
|
|
2674
|
+
"opentelemetry 0.26.0",
|
|
2588
2675
|
"prost",
|
|
2589
|
-
"prost-types",
|
|
2590
2676
|
"serde_json",
|
|
2591
2677
|
"temporal-sdk-core-protos",
|
|
2592
|
-
"thiserror
|
|
2678
|
+
"thiserror 2.0.12",
|
|
2593
2679
|
"tonic",
|
|
2594
2680
|
"tracing-core",
|
|
2595
2681
|
"url",
|
|
@@ -2604,14 +2690,13 @@ dependencies = [
|
|
|
2604
2690
|
"derive_more",
|
|
2605
2691
|
"prost",
|
|
2606
2692
|
"prost-build",
|
|
2607
|
-
"prost-types",
|
|
2608
2693
|
"prost-wkt",
|
|
2609
2694
|
"prost-wkt-build",
|
|
2610
2695
|
"prost-wkt-types",
|
|
2611
|
-
"rand",
|
|
2696
|
+
"rand 0.9.1",
|
|
2612
2697
|
"serde",
|
|
2613
2698
|
"serde_json",
|
|
2614
|
-
"thiserror
|
|
2699
|
+
"thiserror 2.0.12",
|
|
2615
2700
|
"tonic",
|
|
2616
2701
|
"tonic-build",
|
|
2617
2702
|
"uuid",
|
|
@@ -2626,7 +2711,7 @@ dependencies = [
|
|
|
2626
2711
|
"log",
|
|
2627
2712
|
"neon",
|
|
2628
2713
|
"once_cell",
|
|
2629
|
-
"opentelemetry",
|
|
2714
|
+
"opentelemetry 0.24.0",
|
|
2630
2715
|
"parking_lot",
|
|
2631
2716
|
"prost",
|
|
2632
2717
|
"prost-types",
|
|
@@ -2654,11 +2739,11 @@ dependencies = [
|
|
|
2654
2739
|
|
|
2655
2740
|
[[package]]
|
|
2656
2741
|
name = "thiserror"
|
|
2657
|
-
version = "2.0.
|
|
2742
|
+
version = "2.0.12"
|
|
2658
2743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
-
checksum = "
|
|
2744
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
2660
2745
|
dependencies = [
|
|
2661
|
-
"thiserror-impl 2.0.
|
|
2746
|
+
"thiserror-impl 2.0.12",
|
|
2662
2747
|
]
|
|
2663
2748
|
|
|
2664
2749
|
[[package]]
|
|
@@ -2674,9 +2759,9 @@ dependencies = [
|
|
|
2674
2759
|
|
|
2675
2760
|
[[package]]
|
|
2676
2761
|
name = "thiserror-impl"
|
|
2677
|
-
version = "2.0.
|
|
2762
|
+
version = "2.0.12"
|
|
2678
2763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2679
|
-
checksum = "
|
|
2764
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
2680
2765
|
dependencies = [
|
|
2681
2766
|
"proc-macro2",
|
|
2682
2767
|
"quote",
|
|
@@ -2695,9 +2780,9 @@ dependencies = [
|
|
|
2695
2780
|
|
|
2696
2781
|
[[package]]
|
|
2697
2782
|
name = "time"
|
|
2698
|
-
version = "0.3.
|
|
2783
|
+
version = "0.3.41"
|
|
2699
2784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2700
|
-
checksum = "
|
|
2785
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
2701
2786
|
dependencies = [
|
|
2702
2787
|
"deranged",
|
|
2703
2788
|
"num-conv",
|
|
@@ -2708,9 +2793,9 @@ dependencies = [
|
|
|
2708
2793
|
|
|
2709
2794
|
[[package]]
|
|
2710
2795
|
name = "time-core"
|
|
2711
|
-
version = "0.1.
|
|
2796
|
+
version = "0.1.4"
|
|
2712
2797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2713
|
-
checksum = "
|
|
2798
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
2714
2799
|
|
|
2715
2800
|
[[package]]
|
|
2716
2801
|
name = "tinystr"
|
|
@@ -2724,9 +2809,9 @@ dependencies = [
|
|
|
2724
2809
|
|
|
2725
2810
|
[[package]]
|
|
2726
2811
|
name = "tinyvec"
|
|
2727
|
-
version = "1.
|
|
2812
|
+
version = "1.9.0"
|
|
2728
2813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2729
|
-
checksum = "
|
|
2814
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
2730
2815
|
dependencies = [
|
|
2731
2816
|
"tinyvec_macros",
|
|
2732
2817
|
]
|
|
@@ -2739,9 +2824,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2739
2824
|
|
|
2740
2825
|
[[package]]
|
|
2741
2826
|
name = "tokio"
|
|
2742
|
-
version = "1.
|
|
2827
|
+
version = "1.44.2"
|
|
2743
2828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2744
|
-
checksum = "
|
|
2829
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
|
2745
2830
|
dependencies = [
|
|
2746
2831
|
"backtrace",
|
|
2747
2832
|
"bytes",
|
|
@@ -2768,9 +2853,9 @@ dependencies = [
|
|
|
2768
2853
|
|
|
2769
2854
|
[[package]]
|
|
2770
2855
|
name = "tokio-rustls"
|
|
2771
|
-
version = "0.26.
|
|
2856
|
+
version = "0.26.2"
|
|
2772
2857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2773
|
-
checksum = "
|
|
2858
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
2774
2859
|
dependencies = [
|
|
2775
2860
|
"rustls",
|
|
2776
2861
|
"tokio",
|
|
@@ -2789,9 +2874,9 @@ dependencies = [
|
|
|
2789
2874
|
|
|
2790
2875
|
[[package]]
|
|
2791
2876
|
name = "tokio-util"
|
|
2792
|
-
version = "0.7.
|
|
2877
|
+
version = "0.7.15"
|
|
2793
2878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
-
checksum = "
|
|
2879
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
|
2795
2880
|
dependencies = [
|
|
2796
2881
|
"bytes",
|
|
2797
2882
|
"futures-core",
|
|
@@ -2858,7 +2943,7 @@ dependencies = [
|
|
|
2858
2943
|
"indexmap 1.9.3",
|
|
2859
2944
|
"pin-project",
|
|
2860
2945
|
"pin-project-lite",
|
|
2861
|
-
"rand",
|
|
2946
|
+
"rand 0.8.5",
|
|
2862
2947
|
"slab",
|
|
2863
2948
|
"tokio",
|
|
2864
2949
|
"tokio-util",
|
|
@@ -2926,17 +3011,6 @@ dependencies = [
|
|
|
2926
3011
|
"valuable",
|
|
2927
3012
|
]
|
|
2928
3013
|
|
|
2929
|
-
[[package]]
|
|
2930
|
-
name = "tracing-log"
|
|
2931
|
-
version = "0.2.0"
|
|
2932
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2933
|
-
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
2934
|
-
dependencies = [
|
|
2935
|
-
"log",
|
|
2936
|
-
"once_cell",
|
|
2937
|
-
"tracing-core",
|
|
2938
|
-
]
|
|
2939
|
-
|
|
2940
3014
|
[[package]]
|
|
2941
3015
|
name = "tracing-subscriber"
|
|
2942
3016
|
version = "0.3.19"
|
|
@@ -2949,11 +3023,9 @@ dependencies = [
|
|
|
2949
3023
|
"parking_lot",
|
|
2950
3024
|
"regex",
|
|
2951
3025
|
"sharded-slab",
|
|
2952
|
-
"smallvec",
|
|
2953
3026
|
"thread_local",
|
|
2954
3027
|
"tracing",
|
|
2955
3028
|
"tracing-core",
|
|
2956
|
-
"tracing-log",
|
|
2957
3029
|
]
|
|
2958
3030
|
|
|
2959
3031
|
[[package]]
|
|
@@ -2964,21 +3036,21 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
2964
3036
|
|
|
2965
3037
|
[[package]]
|
|
2966
3038
|
name = "typeid"
|
|
2967
|
-
version = "1.0.
|
|
3039
|
+
version = "1.0.3"
|
|
2968
3040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2969
|
-
checksum = "
|
|
3041
|
+
checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
|
2970
3042
|
|
|
2971
3043
|
[[package]]
|
|
2972
3044
|
name = "typenum"
|
|
2973
|
-
version = "1.
|
|
3045
|
+
version = "1.18.0"
|
|
2974
3046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2975
|
-
checksum = "
|
|
3047
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
2976
3048
|
|
|
2977
3049
|
[[package]]
|
|
2978
3050
|
name = "typetag"
|
|
2979
|
-
version = "0.2.
|
|
3051
|
+
version = "0.2.20"
|
|
2980
3052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2981
|
-
checksum = "
|
|
3053
|
+
checksum = "73f22b40dd7bfe8c14230cf9702081366421890435b2d625fa92b4acc4c3de6f"
|
|
2982
3054
|
dependencies = [
|
|
2983
3055
|
"erased-serde",
|
|
2984
3056
|
"inventory",
|
|
@@ -2989,9 +3061,9 @@ dependencies = [
|
|
|
2989
3061
|
|
|
2990
3062
|
[[package]]
|
|
2991
3063
|
name = "typetag-impl"
|
|
2992
|
-
version = "0.2.
|
|
3064
|
+
version = "0.2.20"
|
|
2993
3065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2994
|
-
checksum = "
|
|
3066
|
+
checksum = "35f5380909ffc31b4de4f4bdf96b877175a016aa2ca98cee39fcfd8c4d53d952"
|
|
2995
3067
|
dependencies = [
|
|
2996
3068
|
"proc-macro2",
|
|
2997
3069
|
"quote",
|
|
@@ -3000,9 +3072,9 @@ dependencies = [
|
|
|
3000
3072
|
|
|
3001
3073
|
[[package]]
|
|
3002
3074
|
name = "unicode-ident"
|
|
3003
|
-
version = "1.0.
|
|
3075
|
+
version = "1.0.18"
|
|
3004
3076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3005
|
-
checksum = "
|
|
3077
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
3006
3078
|
|
|
3007
3079
|
[[package]]
|
|
3008
3080
|
name = "unicode-xid"
|
|
@@ -3041,11 +3113,11 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
3041
3113
|
|
|
3042
3114
|
[[package]]
|
|
3043
3115
|
name = "uuid"
|
|
3044
|
-
version = "1.
|
|
3116
|
+
version = "1.16.0"
|
|
3045
3117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3046
|
-
checksum = "
|
|
3118
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
3047
3119
|
dependencies = [
|
|
3048
|
-
"getrandom",
|
|
3120
|
+
"getrandom 0.3.2",
|
|
3049
3121
|
]
|
|
3050
3122
|
|
|
3051
3123
|
[[package]]
|
|
@@ -3075,6 +3147,15 @@ version = "0.11.0+wasi-snapshot-preview1"
|
|
|
3075
3147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3076
3148
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3077
3149
|
|
|
3150
|
+
[[package]]
|
|
3151
|
+
name = "wasi"
|
|
3152
|
+
version = "0.14.2+wasi-0.2.4"
|
|
3153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
3155
|
+
dependencies = [
|
|
3156
|
+
"wit-bindgen-rt",
|
|
3157
|
+
]
|
|
3158
|
+
|
|
3078
3159
|
[[package]]
|
|
3079
3160
|
name = "wasm-bindgen"
|
|
3080
3161
|
version = "0.2.100"
|
|
@@ -3208,7 +3289,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3208
3289
|
checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
|
|
3209
3290
|
dependencies = [
|
|
3210
3291
|
"windows-core",
|
|
3211
|
-
"windows-targets",
|
|
3292
|
+
"windows-targets 0.52.6",
|
|
3212
3293
|
]
|
|
3213
3294
|
|
|
3214
3295
|
[[package]]
|
|
@@ -3220,7 +3301,7 @@ dependencies = [
|
|
|
3220
3301
|
"windows-implement",
|
|
3221
3302
|
"windows-interface",
|
|
3222
3303
|
"windows-result 0.1.2",
|
|
3223
|
-
"windows-targets",
|
|
3304
|
+
"windows-targets 0.52.6",
|
|
3224
3305
|
]
|
|
3225
3306
|
|
|
3226
3307
|
[[package]]
|
|
@@ -3245,15 +3326,21 @@ dependencies = [
|
|
|
3245
3326
|
"syn",
|
|
3246
3327
|
]
|
|
3247
3328
|
|
|
3329
|
+
[[package]]
|
|
3330
|
+
name = "windows-link"
|
|
3331
|
+
version = "0.1.1"
|
|
3332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3333
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
3334
|
+
|
|
3248
3335
|
[[package]]
|
|
3249
3336
|
name = "windows-registry"
|
|
3250
|
-
version = "0.
|
|
3337
|
+
version = "0.4.0"
|
|
3251
3338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3252
|
-
checksum = "
|
|
3339
|
+
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
|
3253
3340
|
dependencies = [
|
|
3254
|
-
"windows-result 0.2
|
|
3341
|
+
"windows-result 0.3.2",
|
|
3255
3342
|
"windows-strings",
|
|
3256
|
-
"windows-targets",
|
|
3343
|
+
"windows-targets 0.53.0",
|
|
3257
3344
|
]
|
|
3258
3345
|
|
|
3259
3346
|
[[package]]
|
|
@@ -3262,26 +3349,25 @@ version = "0.1.2"
|
|
|
3262
3349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3263
3350
|
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
|
|
3264
3351
|
dependencies = [
|
|
3265
|
-
"windows-targets",
|
|
3352
|
+
"windows-targets 0.52.6",
|
|
3266
3353
|
]
|
|
3267
3354
|
|
|
3268
3355
|
[[package]]
|
|
3269
3356
|
name = "windows-result"
|
|
3270
|
-
version = "0.2
|
|
3357
|
+
version = "0.3.2"
|
|
3271
3358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3272
|
-
checksum = "
|
|
3359
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
|
3273
3360
|
dependencies = [
|
|
3274
|
-
"windows-
|
|
3361
|
+
"windows-link",
|
|
3275
3362
|
]
|
|
3276
3363
|
|
|
3277
3364
|
[[package]]
|
|
3278
3365
|
name = "windows-strings"
|
|
3279
|
-
version = "0.1
|
|
3366
|
+
version = "0.3.1"
|
|
3280
3367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3281
|
-
checksum = "
|
|
3368
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
|
3282
3369
|
dependencies = [
|
|
3283
|
-
"windows-
|
|
3284
|
-
"windows-targets",
|
|
3370
|
+
"windows-link",
|
|
3285
3371
|
]
|
|
3286
3372
|
|
|
3287
3373
|
[[package]]
|
|
@@ -3290,7 +3376,7 @@ version = "0.52.0"
|
|
|
3290
3376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3291
3377
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3292
3378
|
dependencies = [
|
|
3293
|
-
"windows-targets",
|
|
3379
|
+
"windows-targets 0.52.6",
|
|
3294
3380
|
]
|
|
3295
3381
|
|
|
3296
3382
|
[[package]]
|
|
@@ -3299,7 +3385,7 @@ version = "0.59.0"
|
|
|
3299
3385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3300
3386
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3301
3387
|
dependencies = [
|
|
3302
|
-
"windows-targets",
|
|
3388
|
+
"windows-targets 0.52.6",
|
|
3303
3389
|
]
|
|
3304
3390
|
|
|
3305
3391
|
[[package]]
|
|
@@ -3308,14 +3394,30 @@ version = "0.52.6"
|
|
|
3308
3394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3309
3395
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3310
3396
|
dependencies = [
|
|
3311
|
-
"windows_aarch64_gnullvm",
|
|
3312
|
-
"windows_aarch64_msvc",
|
|
3313
|
-
"windows_i686_gnu",
|
|
3314
|
-
"windows_i686_gnullvm",
|
|
3315
|
-
"windows_i686_msvc",
|
|
3316
|
-
"windows_x86_64_gnu",
|
|
3317
|
-
"windows_x86_64_gnullvm",
|
|
3318
|
-
"windows_x86_64_msvc",
|
|
3397
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3398
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3399
|
+
"windows_i686_gnu 0.52.6",
|
|
3400
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3401
|
+
"windows_i686_msvc 0.52.6",
|
|
3402
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3403
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3404
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3405
|
+
]
|
|
3406
|
+
|
|
3407
|
+
[[package]]
|
|
3408
|
+
name = "windows-targets"
|
|
3409
|
+
version = "0.53.0"
|
|
3410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3411
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
|
3412
|
+
dependencies = [
|
|
3413
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
3414
|
+
"windows_aarch64_msvc 0.53.0",
|
|
3415
|
+
"windows_i686_gnu 0.53.0",
|
|
3416
|
+
"windows_i686_gnullvm 0.53.0",
|
|
3417
|
+
"windows_i686_msvc 0.53.0",
|
|
3418
|
+
"windows_x86_64_gnu 0.53.0",
|
|
3419
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
3420
|
+
"windows_x86_64_msvc 0.53.0",
|
|
3319
3421
|
]
|
|
3320
3422
|
|
|
3321
3423
|
[[package]]
|
|
@@ -3324,48 +3426,105 @@ version = "0.52.6"
|
|
|
3324
3426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3325
3427
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3326
3428
|
|
|
3429
|
+
[[package]]
|
|
3430
|
+
name = "windows_aarch64_gnullvm"
|
|
3431
|
+
version = "0.53.0"
|
|
3432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3433
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
3434
|
+
|
|
3327
3435
|
[[package]]
|
|
3328
3436
|
name = "windows_aarch64_msvc"
|
|
3329
3437
|
version = "0.52.6"
|
|
3330
3438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3331
3439
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3332
3440
|
|
|
3441
|
+
[[package]]
|
|
3442
|
+
name = "windows_aarch64_msvc"
|
|
3443
|
+
version = "0.53.0"
|
|
3444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3445
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
3446
|
+
|
|
3333
3447
|
[[package]]
|
|
3334
3448
|
name = "windows_i686_gnu"
|
|
3335
3449
|
version = "0.52.6"
|
|
3336
3450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3337
3451
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3338
3452
|
|
|
3453
|
+
[[package]]
|
|
3454
|
+
name = "windows_i686_gnu"
|
|
3455
|
+
version = "0.53.0"
|
|
3456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3457
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
3458
|
+
|
|
3339
3459
|
[[package]]
|
|
3340
3460
|
name = "windows_i686_gnullvm"
|
|
3341
3461
|
version = "0.52.6"
|
|
3342
3462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3343
3463
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3344
3464
|
|
|
3465
|
+
[[package]]
|
|
3466
|
+
name = "windows_i686_gnullvm"
|
|
3467
|
+
version = "0.53.0"
|
|
3468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3469
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
3470
|
+
|
|
3345
3471
|
[[package]]
|
|
3346
3472
|
name = "windows_i686_msvc"
|
|
3347
3473
|
version = "0.52.6"
|
|
3348
3474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3349
3475
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3350
3476
|
|
|
3477
|
+
[[package]]
|
|
3478
|
+
name = "windows_i686_msvc"
|
|
3479
|
+
version = "0.53.0"
|
|
3480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3481
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
3482
|
+
|
|
3351
3483
|
[[package]]
|
|
3352
3484
|
name = "windows_x86_64_gnu"
|
|
3353
3485
|
version = "0.52.6"
|
|
3354
3486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3355
3487
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3356
3488
|
|
|
3489
|
+
[[package]]
|
|
3490
|
+
name = "windows_x86_64_gnu"
|
|
3491
|
+
version = "0.53.0"
|
|
3492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3493
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
3494
|
+
|
|
3357
3495
|
[[package]]
|
|
3358
3496
|
name = "windows_x86_64_gnullvm"
|
|
3359
3497
|
version = "0.52.6"
|
|
3360
3498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3361
3499
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3362
3500
|
|
|
3501
|
+
[[package]]
|
|
3502
|
+
name = "windows_x86_64_gnullvm"
|
|
3503
|
+
version = "0.53.0"
|
|
3504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3505
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
3506
|
+
|
|
3363
3507
|
[[package]]
|
|
3364
3508
|
name = "windows_x86_64_msvc"
|
|
3365
3509
|
version = "0.52.6"
|
|
3366
3510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3367
3511
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3368
3512
|
|
|
3513
|
+
[[package]]
|
|
3514
|
+
name = "windows_x86_64_msvc"
|
|
3515
|
+
version = "0.53.0"
|
|
3516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3517
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
3518
|
+
|
|
3519
|
+
[[package]]
|
|
3520
|
+
name = "wit-bindgen-rt"
|
|
3521
|
+
version = "0.39.0"
|
|
3522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3523
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
3524
|
+
dependencies = [
|
|
3525
|
+
"bitflags",
|
|
3526
|
+
]
|
|
3527
|
+
|
|
3369
3528
|
[[package]]
|
|
3370
3529
|
name = "write16"
|
|
3371
3530
|
version = "1.0.0"
|
|
@@ -3380,15 +3539,23 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
|
3380
3539
|
|
|
3381
3540
|
[[package]]
|
|
3382
3541
|
name = "xattr"
|
|
3383
|
-
version = "1.
|
|
3542
|
+
version = "1.5.0"
|
|
3384
3543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3385
|
-
checksum = "
|
|
3544
|
+
checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
|
|
3386
3545
|
dependencies = [
|
|
3387
3546
|
"libc",
|
|
3388
|
-
"linux-raw-sys",
|
|
3389
3547
|
"rustix",
|
|
3390
3548
|
]
|
|
3391
3549
|
|
|
3550
|
+
[[package]]
|
|
3551
|
+
name = "xz2"
|
|
3552
|
+
version = "0.1.7"
|
|
3553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3554
|
+
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
3555
|
+
dependencies = [
|
|
3556
|
+
"lzma-sys",
|
|
3557
|
+
]
|
|
3558
|
+
|
|
3392
3559
|
[[package]]
|
|
3393
3560
|
name = "yoke"
|
|
3394
3561
|
version = "0.7.5"
|
|
@@ -3415,19 +3582,18 @@ dependencies = [
|
|
|
3415
3582
|
|
|
3416
3583
|
[[package]]
|
|
3417
3584
|
name = "zerocopy"
|
|
3418
|
-
version = "0.
|
|
3585
|
+
version = "0.8.24"
|
|
3419
3586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3420
|
-
checksum = "
|
|
3587
|
+
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
|
3421
3588
|
dependencies = [
|
|
3422
|
-
"byteorder",
|
|
3423
3589
|
"zerocopy-derive",
|
|
3424
3590
|
]
|
|
3425
3591
|
|
|
3426
3592
|
[[package]]
|
|
3427
3593
|
name = "zerocopy-derive"
|
|
3428
|
-
version = "0.
|
|
3594
|
+
version = "0.8.24"
|
|
3429
3595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3430
|
-
checksum = "
|
|
3596
|
+
checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
|
3431
3597
|
dependencies = [
|
|
3432
3598
|
"proc-macro2",
|
|
3433
3599
|
"quote",
|
|
@@ -3436,18 +3602,18 @@ dependencies = [
|
|
|
3436
3602
|
|
|
3437
3603
|
[[package]]
|
|
3438
3604
|
name = "zerofrom"
|
|
3439
|
-
version = "0.1.
|
|
3605
|
+
version = "0.1.6"
|
|
3440
3606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3441
|
-
checksum = "
|
|
3607
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
3442
3608
|
dependencies = [
|
|
3443
3609
|
"zerofrom-derive",
|
|
3444
3610
|
]
|
|
3445
3611
|
|
|
3446
3612
|
[[package]]
|
|
3447
3613
|
name = "zerofrom-derive"
|
|
3448
|
-
version = "0.1.
|
|
3614
|
+
version = "0.1.6"
|
|
3449
3615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3450
|
-
checksum = "
|
|
3616
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
3451
3617
|
dependencies = [
|
|
3452
3618
|
"proc-macro2",
|
|
3453
3619
|
"quote",
|
|
@@ -3499,9 +3665,9 @@ dependencies = [
|
|
|
3499
3665
|
|
|
3500
3666
|
[[package]]
|
|
3501
3667
|
name = "zip"
|
|
3502
|
-
version = "2.
|
|
3668
|
+
version = "2.6.1"
|
|
3503
3669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3504
|
-
checksum = "
|
|
3670
|
+
checksum = "1dcb24d0152526ae49b9b96c1dcf71850ca1e0b882e4e28ed898a93c41334744"
|
|
3505
3671
|
dependencies = [
|
|
3506
3672
|
"aes",
|
|
3507
3673
|
"arbitrary",
|
|
@@ -3510,17 +3676,16 @@ dependencies = [
|
|
|
3510
3676
|
"crc32fast",
|
|
3511
3677
|
"crossbeam-utils",
|
|
3512
3678
|
"deflate64",
|
|
3513
|
-
"displaydoc",
|
|
3514
3679
|
"flate2",
|
|
3680
|
+
"getrandom 0.3.2",
|
|
3515
3681
|
"hmac",
|
|
3516
|
-
"indexmap 2.
|
|
3682
|
+
"indexmap 2.9.0",
|
|
3517
3683
|
"lzma-rs",
|
|
3518
3684
|
"memchr",
|
|
3519
3685
|
"pbkdf2",
|
|
3520
|
-
"rand",
|
|
3521
3686
|
"sha1",
|
|
3522
|
-
"thiserror 2.0.11",
|
|
3523
3687
|
"time",
|
|
3688
|
+
"xz2",
|
|
3524
3689
|
"zeroize",
|
|
3525
3690
|
"zopfli",
|
|
3526
3691
|
"zstd",
|
|
@@ -3528,41 +3693,39 @@ dependencies = [
|
|
|
3528
3693
|
|
|
3529
3694
|
[[package]]
|
|
3530
3695
|
name = "zopfli"
|
|
3531
|
-
version = "0.8.
|
|
3696
|
+
version = "0.8.2"
|
|
3532
3697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3533
|
-
checksum = "
|
|
3698
|
+
checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7"
|
|
3534
3699
|
dependencies = [
|
|
3535
3700
|
"bumpalo",
|
|
3536
3701
|
"crc32fast",
|
|
3537
|
-
"lockfree-object-pool",
|
|
3538
3702
|
"log",
|
|
3539
|
-
"once_cell",
|
|
3540
3703
|
"simd-adler32",
|
|
3541
3704
|
]
|
|
3542
3705
|
|
|
3543
3706
|
[[package]]
|
|
3544
3707
|
name = "zstd"
|
|
3545
|
-
version = "0.13.
|
|
3708
|
+
version = "0.13.3"
|
|
3546
3709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3547
|
-
checksum = "
|
|
3710
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
3548
3711
|
dependencies = [
|
|
3549
3712
|
"zstd-safe",
|
|
3550
3713
|
]
|
|
3551
3714
|
|
|
3552
3715
|
[[package]]
|
|
3553
3716
|
name = "zstd-safe"
|
|
3554
|
-
version = "7.2.
|
|
3717
|
+
version = "7.2.4"
|
|
3555
3718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3556
|
-
checksum = "
|
|
3719
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3557
3720
|
dependencies = [
|
|
3558
3721
|
"zstd-sys",
|
|
3559
3722
|
]
|
|
3560
3723
|
|
|
3561
3724
|
[[package]]
|
|
3562
3725
|
name = "zstd-sys"
|
|
3563
|
-
version = "2.0.
|
|
3726
|
+
version = "2.0.15+zstd.1.5.7"
|
|
3564
3727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3565
|
-
checksum = "
|
|
3728
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
3566
3729
|
dependencies = [
|
|
3567
3730
|
"cc",
|
|
3568
3731
|
"pkg-config",
|