@temporalio/core-bridge 1.11.6 → 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 +902 -468
- 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"
|
|
@@ -39,9 +39,9 @@ dependencies = [
|
|
|
39
39
|
|
|
40
40
|
[[package]]
|
|
41
41
|
name = "allocator-api2"
|
|
42
|
-
version = "0.2.
|
|
42
|
+
version = "0.2.21"
|
|
43
43
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
-
checksum = "
|
|
44
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
45
45
|
|
|
46
46
|
[[package]]
|
|
47
47
|
name = "anstyle"
|
|
@@ -51,15 +51,15 @@ 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"
|
|
60
|
-
version = "1.
|
|
60
|
+
version = "1.4.1"
|
|
61
61
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
-
checksum = "
|
|
62
|
+
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
|
63
63
|
dependencies = [
|
|
64
64
|
"derive_arbitrary",
|
|
65
65
|
]
|
|
@@ -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",
|
|
@@ -111,9 +111,9 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
|
111
111
|
|
|
112
112
|
[[package]]
|
|
113
113
|
name = "axum"
|
|
114
|
-
version = "0.7.
|
|
114
|
+
version = "0.7.9"
|
|
115
115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
-
checksum = "
|
|
116
|
+
checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
|
|
117
117
|
dependencies = [
|
|
118
118
|
"async-trait",
|
|
119
119
|
"axum-core",
|
|
@@ -130,8 +130,8 @@ dependencies = [
|
|
|
130
130
|
"pin-project-lite",
|
|
131
131
|
"rustversion",
|
|
132
132
|
"serde",
|
|
133
|
-
"sync_wrapper
|
|
134
|
-
"tower 0.5.
|
|
133
|
+
"sync_wrapper",
|
|
134
|
+
"tower 0.5.2",
|
|
135
135
|
"tower-layer",
|
|
136
136
|
"tower-service",
|
|
137
137
|
]
|
|
@@ -151,7 +151,7 @@ dependencies = [
|
|
|
151
151
|
"mime",
|
|
152
152
|
"pin-project-lite",
|
|
153
153
|
"rustversion",
|
|
154
|
-
"sync_wrapper
|
|
154
|
+
"sync_wrapper",
|
|
155
155
|
"tower-layer",
|
|
156
156
|
"tower-service",
|
|
157
157
|
]
|
|
@@ -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.
|
|
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",
|
|
@@ -293,9 +291,9 @@ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
|
293
291
|
|
|
294
292
|
[[package]]
|
|
295
293
|
name = "core-foundation"
|
|
296
|
-
version = "0.
|
|
294
|
+
version = "0.10.0"
|
|
297
295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
-
checksum = "
|
|
296
|
+
checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
|
|
299
297
|
dependencies = [
|
|
300
298
|
"core-foundation-sys",
|
|
301
299
|
"libc",
|
|
@@ -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,27 +340,27 @@ 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
|
]
|
|
351
349
|
|
|
352
350
|
[[package]]
|
|
353
351
|
name = "crossbeam-queue"
|
|
354
|
-
version = "0.3.
|
|
352
|
+
version = "0.3.12"
|
|
355
353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
-
checksum = "
|
|
354
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
357
355
|
dependencies = [
|
|
358
356
|
"crossbeam-utils",
|
|
359
357
|
]
|
|
360
358
|
|
|
361
359
|
[[package]]
|
|
362
360
|
name = "crossbeam-utils"
|
|
363
|
-
version = "0.8.
|
|
361
|
+
version = "0.8.21"
|
|
364
362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
-
checksum = "
|
|
363
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
366
364
|
|
|
367
365
|
[[package]]
|
|
368
366
|
name = "crypto-common"
|
|
@@ -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,18 +429,18 @@ 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
|
]
|
|
440
438
|
|
|
441
439
|
[[package]]
|
|
442
440
|
name = "derive_arbitrary"
|
|
443
|
-
version = "1.
|
|
441
|
+
version = "1.4.1"
|
|
444
442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
-
checksum = "
|
|
443
|
+
checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
|
|
446
444
|
dependencies = [
|
|
447
445
|
"proc-macro2",
|
|
448
446
|
"quote",
|
|
@@ -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,19 +583,19 @@ 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
|
-
"windows-sys 0.
|
|
591
|
+
"windows-sys 0.59.0",
|
|
594
592
|
]
|
|
595
593
|
|
|
596
594
|
[[package]]
|
|
597
595
|
name = "fastrand"
|
|
598
|
-
version = "2.
|
|
596
|
+
version = "2.3.0"
|
|
599
597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
-
checksum = "
|
|
598
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
601
599
|
|
|
602
600
|
[[package]]
|
|
603
601
|
name = "filetime"
|
|
@@ -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,13 +770,29 @@ dependencies = [
|
|
|
772
770
|
|
|
773
771
|
[[package]]
|
|
774
772
|
name = "getrandom"
|
|
775
|
-
version = "0.2.
|
|
773
|
+
version = "0.2.16"
|
|
776
774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
-
checksum = "
|
|
775
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
778
776
|
dependencies = [
|
|
779
777
|
"cfg-if",
|
|
778
|
+
"js-sys",
|
|
780
779
|
"libc",
|
|
781
|
-
"wasi",
|
|
780
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
781
|
+
"wasm-bindgen",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "getrandom"
|
|
786
|
+
version = "0.3.2"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"cfg-if",
|
|
791
|
+
"js-sys",
|
|
792
|
+
"libc",
|
|
793
|
+
"r-efi",
|
|
794
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
795
|
+
"wasm-bindgen",
|
|
782
796
|
]
|
|
783
797
|
|
|
784
798
|
[[package]]
|
|
@@ -789,36 +803,38 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
|
789
803
|
|
|
790
804
|
[[package]]
|
|
791
805
|
name = "glob"
|
|
792
|
-
version = "0.3.
|
|
806
|
+
version = "0.3.2"
|
|
793
807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
-
checksum = "
|
|
808
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
795
809
|
|
|
796
810
|
[[package]]
|
|
797
811
|
name = "governor"
|
|
798
|
-
version = "0.
|
|
812
|
+
version = "0.8.1"
|
|
799
813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
-
checksum = "
|
|
814
|
+
checksum = "be93b4ec2e4710b04d9264c0c7350cdd62a8c20e5e4ac732552ebb8f0debe8eb"
|
|
801
815
|
dependencies = [
|
|
802
816
|
"cfg-if",
|
|
803
817
|
"dashmap",
|
|
804
818
|
"futures-sink",
|
|
805
819
|
"futures-timer",
|
|
806
820
|
"futures-util",
|
|
821
|
+
"getrandom 0.3.2",
|
|
807
822
|
"no-std-compat",
|
|
808
823
|
"nonzero_ext",
|
|
809
824
|
"parking_lot",
|
|
810
825
|
"portable-atomic",
|
|
811
826
|
"quanta",
|
|
812
|
-
"rand",
|
|
827
|
+
"rand 0.9.1",
|
|
813
828
|
"smallvec",
|
|
814
829
|
"spinning_top",
|
|
830
|
+
"web-time",
|
|
815
831
|
]
|
|
816
832
|
|
|
817
833
|
[[package]]
|
|
818
834
|
name = "h2"
|
|
819
|
-
version = "0.4.
|
|
835
|
+
version = "0.4.9"
|
|
820
836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
-
checksum = "
|
|
837
|
+
checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
|
|
822
838
|
dependencies = [
|
|
823
839
|
"atomic-waker",
|
|
824
840
|
"bytes",
|
|
@@ -826,7 +842,7 @@ dependencies = [
|
|
|
826
842
|
"futures-core",
|
|
827
843
|
"futures-sink",
|
|
828
844
|
"http",
|
|
829
|
-
"indexmap 2.
|
|
845
|
+
"indexmap 2.9.0",
|
|
830
846
|
"slab",
|
|
831
847
|
"tokio",
|
|
832
848
|
"tokio-util",
|
|
@@ -847,9 +863,9 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
|
847
863
|
|
|
848
864
|
[[package]]
|
|
849
865
|
name = "hashbrown"
|
|
850
|
-
version = "0.15.
|
|
866
|
+
version = "0.15.2"
|
|
851
867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
-
checksum = "
|
|
868
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
853
869
|
dependencies = [
|
|
854
870
|
"allocator-api2",
|
|
855
871
|
"equivalent",
|
|
@@ -862,12 +878,6 @@ version = "0.5.0"
|
|
|
862
878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
879
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
864
880
|
|
|
865
|
-
[[package]]
|
|
866
|
-
name = "hermit-abi"
|
|
867
|
-
version = "0.3.9"
|
|
868
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
-
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
870
|
-
|
|
871
881
|
[[package]]
|
|
872
882
|
name = "hmac"
|
|
873
883
|
version = "0.12.1"
|
|
@@ -879,9 +889,9 @@ dependencies = [
|
|
|
879
889
|
|
|
880
890
|
[[package]]
|
|
881
891
|
name = "http"
|
|
882
|
-
version = "1.1
|
|
892
|
+
version = "1.3.1"
|
|
883
893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
-
checksum = "
|
|
894
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
885
895
|
dependencies = [
|
|
886
896
|
"bytes",
|
|
887
897
|
"fnv",
|
|
@@ -900,12 +910,12 @@ dependencies = [
|
|
|
900
910
|
|
|
901
911
|
[[package]]
|
|
902
912
|
name = "http-body-util"
|
|
903
|
-
version = "0.1.
|
|
913
|
+
version = "0.1.3"
|
|
904
914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
-
checksum = "
|
|
915
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
906
916
|
dependencies = [
|
|
907
917
|
"bytes",
|
|
908
|
-
"futures-
|
|
918
|
+
"futures-core",
|
|
909
919
|
"http",
|
|
910
920
|
"http-body",
|
|
911
921
|
"pin-project-lite",
|
|
@@ -913,9 +923,9 @@ dependencies = [
|
|
|
913
923
|
|
|
914
924
|
[[package]]
|
|
915
925
|
name = "httparse"
|
|
916
|
-
version = "1.
|
|
926
|
+
version = "1.10.1"
|
|
917
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
-
checksum = "
|
|
928
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
919
929
|
|
|
920
930
|
[[package]]
|
|
921
931
|
name = "httpdate"
|
|
@@ -925,9 +935,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
925
935
|
|
|
926
936
|
[[package]]
|
|
927
937
|
name = "hyper"
|
|
928
|
-
version = "1.
|
|
938
|
+
version = "1.6.0"
|
|
929
939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
-
checksum = "
|
|
940
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
|
931
941
|
dependencies = [
|
|
932
942
|
"bytes",
|
|
933
943
|
"futures-channel",
|
|
@@ -946,9 +956,9 @@ dependencies = [
|
|
|
946
956
|
|
|
947
957
|
[[package]]
|
|
948
958
|
name = "hyper-rustls"
|
|
949
|
-
version = "0.27.
|
|
959
|
+
version = "0.27.5"
|
|
950
960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
-
checksum = "
|
|
961
|
+
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
|
952
962
|
dependencies = [
|
|
953
963
|
"futures-util",
|
|
954
964
|
"http",
|
|
@@ -964,9 +974,9 @@ dependencies = [
|
|
|
964
974
|
|
|
965
975
|
[[package]]
|
|
966
976
|
name = "hyper-timeout"
|
|
967
|
-
version = "0.5.
|
|
977
|
+
version = "0.5.2"
|
|
968
978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
-
checksum = "
|
|
979
|
+
checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
|
|
970
980
|
dependencies = [
|
|
971
981
|
"hyper",
|
|
972
982
|
"hyper-util",
|
|
@@ -977,9 +987,9 @@ dependencies = [
|
|
|
977
987
|
|
|
978
988
|
[[package]]
|
|
979
989
|
name = "hyper-util"
|
|
980
|
-
version = "0.1.
|
|
990
|
+
version = "0.1.11"
|
|
981
991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
-
checksum = "
|
|
992
|
+
checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
|
|
983
993
|
dependencies = [
|
|
984
994
|
"bytes",
|
|
985
995
|
"futures-channel",
|
|
@@ -987,6 +997,7 @@ dependencies = [
|
|
|
987
997
|
"http",
|
|
988
998
|
"http-body",
|
|
989
999
|
"hyper",
|
|
1000
|
+
"libc",
|
|
990
1001
|
"pin-project-lite",
|
|
991
1002
|
"socket2",
|
|
992
1003
|
"tokio",
|
|
@@ -994,6 +1005,124 @@ dependencies = [
|
|
|
994
1005
|
"tracing",
|
|
995
1006
|
]
|
|
996
1007
|
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "icu_collections"
|
|
1010
|
+
version = "1.5.0"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
1013
|
+
dependencies = [
|
|
1014
|
+
"displaydoc",
|
|
1015
|
+
"yoke",
|
|
1016
|
+
"zerofrom",
|
|
1017
|
+
"zerovec",
|
|
1018
|
+
]
|
|
1019
|
+
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "icu_locid"
|
|
1022
|
+
version = "1.5.0"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
1025
|
+
dependencies = [
|
|
1026
|
+
"displaydoc",
|
|
1027
|
+
"litemap",
|
|
1028
|
+
"tinystr",
|
|
1029
|
+
"writeable",
|
|
1030
|
+
"zerovec",
|
|
1031
|
+
]
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "icu_locid_transform"
|
|
1035
|
+
version = "1.5.0"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
1038
|
+
dependencies = [
|
|
1039
|
+
"displaydoc",
|
|
1040
|
+
"icu_locid",
|
|
1041
|
+
"icu_locid_transform_data",
|
|
1042
|
+
"icu_provider",
|
|
1043
|
+
"tinystr",
|
|
1044
|
+
"zerovec",
|
|
1045
|
+
]
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "icu_locid_transform_data"
|
|
1049
|
+
version = "1.5.1"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "icu_normalizer"
|
|
1055
|
+
version = "1.5.0"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
|
1058
|
+
dependencies = [
|
|
1059
|
+
"displaydoc",
|
|
1060
|
+
"icu_collections",
|
|
1061
|
+
"icu_normalizer_data",
|
|
1062
|
+
"icu_properties",
|
|
1063
|
+
"icu_provider",
|
|
1064
|
+
"smallvec",
|
|
1065
|
+
"utf16_iter",
|
|
1066
|
+
"utf8_iter",
|
|
1067
|
+
"write16",
|
|
1068
|
+
"zerovec",
|
|
1069
|
+
]
|
|
1070
|
+
|
|
1071
|
+
[[package]]
|
|
1072
|
+
name = "icu_normalizer_data"
|
|
1073
|
+
version = "1.5.1"
|
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "icu_properties"
|
|
1079
|
+
version = "1.5.1"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"displaydoc",
|
|
1084
|
+
"icu_collections",
|
|
1085
|
+
"icu_locid_transform",
|
|
1086
|
+
"icu_properties_data",
|
|
1087
|
+
"icu_provider",
|
|
1088
|
+
"tinystr",
|
|
1089
|
+
"zerovec",
|
|
1090
|
+
]
|
|
1091
|
+
|
|
1092
|
+
[[package]]
|
|
1093
|
+
name = "icu_properties_data"
|
|
1094
|
+
version = "1.5.1"
|
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
|
1097
|
+
|
|
1098
|
+
[[package]]
|
|
1099
|
+
name = "icu_provider"
|
|
1100
|
+
version = "1.5.0"
|
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
1103
|
+
dependencies = [
|
|
1104
|
+
"displaydoc",
|
|
1105
|
+
"icu_locid",
|
|
1106
|
+
"icu_provider_macros",
|
|
1107
|
+
"stable_deref_trait",
|
|
1108
|
+
"tinystr",
|
|
1109
|
+
"writeable",
|
|
1110
|
+
"yoke",
|
|
1111
|
+
"zerofrom",
|
|
1112
|
+
"zerovec",
|
|
1113
|
+
]
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "icu_provider_macros"
|
|
1117
|
+
version = "1.5.0"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1120
|
+
dependencies = [
|
|
1121
|
+
"proc-macro2",
|
|
1122
|
+
"quote",
|
|
1123
|
+
"syn",
|
|
1124
|
+
]
|
|
1125
|
+
|
|
997
1126
|
[[package]]
|
|
998
1127
|
name = "ident_case"
|
|
999
1128
|
version = "1.0.1"
|
|
@@ -1002,12 +1131,23 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
1002
1131
|
|
|
1003
1132
|
[[package]]
|
|
1004
1133
|
name = "idna"
|
|
1005
|
-
version = "0.
|
|
1134
|
+
version = "1.0.3"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
1137
|
+
dependencies = [
|
|
1138
|
+
"idna_adapter",
|
|
1139
|
+
"smallvec",
|
|
1140
|
+
"utf8_iter",
|
|
1141
|
+
]
|
|
1142
|
+
|
|
1143
|
+
[[package]]
|
|
1144
|
+
name = "idna_adapter"
|
|
1145
|
+
version = "1.2.0"
|
|
1006
1146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
-
checksum = "
|
|
1147
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
|
1008
1148
|
dependencies = [
|
|
1009
|
-
"
|
|
1010
|
-
"
|
|
1149
|
+
"icu_normalizer",
|
|
1150
|
+
"icu_properties",
|
|
1011
1151
|
]
|
|
1012
1152
|
|
|
1013
1153
|
[[package]]
|
|
@@ -1022,19 +1162,19 @@ dependencies = [
|
|
|
1022
1162
|
|
|
1023
1163
|
[[package]]
|
|
1024
1164
|
name = "indexmap"
|
|
1025
|
-
version = "2.
|
|
1165
|
+
version = "2.9.0"
|
|
1026
1166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
-
checksum = "
|
|
1167
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
1028
1168
|
dependencies = [
|
|
1029
1169
|
"equivalent",
|
|
1030
|
-
"hashbrown 0.15.
|
|
1170
|
+
"hashbrown 0.15.2",
|
|
1031
1171
|
]
|
|
1032
1172
|
|
|
1033
1173
|
[[package]]
|
|
1034
1174
|
name = "inout"
|
|
1035
|
-
version = "0.1.
|
|
1175
|
+
version = "0.1.4"
|
|
1036
1176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
-
checksum = "
|
|
1177
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1038
1178
|
dependencies = [
|
|
1039
1179
|
"generic-array",
|
|
1040
1180
|
]
|
|
@@ -1050,46 +1190,51 @@ dependencies = [
|
|
|
1050
1190
|
|
|
1051
1191
|
[[package]]
|
|
1052
1192
|
name = "inventory"
|
|
1053
|
-
version = "0.3.
|
|
1193
|
+
version = "0.3.20"
|
|
1054
1194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
-
checksum = "
|
|
1195
|
+
checksum = "ab08d7cd2c5897f2c949e5383ea7c7db03fb19130ffcfbf7eda795137ae3cb83"
|
|
1196
|
+
dependencies = [
|
|
1197
|
+
"rustversion",
|
|
1198
|
+
]
|
|
1056
1199
|
|
|
1057
1200
|
[[package]]
|
|
1058
1201
|
name = "ipnet"
|
|
1059
|
-
version = "2.
|
|
1202
|
+
version = "2.11.0"
|
|
1060
1203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
-
checksum = "
|
|
1204
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1062
1205
|
|
|
1063
1206
|
[[package]]
|
|
1064
1207
|
name = "itertools"
|
|
1065
|
-
version = "0.
|
|
1208
|
+
version = "0.14.0"
|
|
1066
1209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
-
checksum = "
|
|
1210
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1068
1211
|
dependencies = [
|
|
1069
1212
|
"either",
|
|
1070
1213
|
]
|
|
1071
1214
|
|
|
1072
1215
|
[[package]]
|
|
1073
1216
|
name = "itoa"
|
|
1074
|
-
version = "1.0.
|
|
1217
|
+
version = "1.0.15"
|
|
1075
1218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
-
checksum = "
|
|
1219
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1077
1220
|
|
|
1078
1221
|
[[package]]
|
|
1079
1222
|
name = "jobserver"
|
|
1080
|
-
version = "0.1.
|
|
1223
|
+
version = "0.1.33"
|
|
1081
1224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
-
checksum = "
|
|
1225
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
1083
1226
|
dependencies = [
|
|
1227
|
+
"getrandom 0.3.2",
|
|
1084
1228
|
"libc",
|
|
1085
1229
|
]
|
|
1086
1230
|
|
|
1087
1231
|
[[package]]
|
|
1088
1232
|
name = "js-sys"
|
|
1089
|
-
version = "0.3.
|
|
1233
|
+
version = "0.3.77"
|
|
1090
1234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
-
checksum = "
|
|
1235
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
1092
1236
|
dependencies = [
|
|
1237
|
+
"once_cell",
|
|
1093
1238
|
"wasm-bindgen",
|
|
1094
1239
|
]
|
|
1095
1240
|
|
|
@@ -1101,18 +1246,18 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
|
1101
1246
|
|
|
1102
1247
|
[[package]]
|
|
1103
1248
|
name = "libc"
|
|
1104
|
-
version = "0.2.
|
|
1249
|
+
version = "0.2.172"
|
|
1105
1250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
-
checksum = "
|
|
1251
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
1107
1252
|
|
|
1108
1253
|
[[package]]
|
|
1109
1254
|
name = "libloading"
|
|
1110
|
-
version = "0.8.
|
|
1255
|
+
version = "0.8.6"
|
|
1111
1256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
-
checksum = "
|
|
1257
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
|
1113
1258
|
dependencies = [
|
|
1114
1259
|
"cfg-if",
|
|
1115
|
-
"windows-targets",
|
|
1260
|
+
"windows-targets 0.52.6",
|
|
1116
1261
|
]
|
|
1117
1262
|
|
|
1118
1263
|
[[package]]
|
|
@@ -1128,9 +1273,15 @@ dependencies = [
|
|
|
1128
1273
|
|
|
1129
1274
|
[[package]]
|
|
1130
1275
|
name = "linux-raw-sys"
|
|
1131
|
-
version = "0.4
|
|
1276
|
+
version = "0.9.4"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "litemap"
|
|
1282
|
+
version = "0.7.5"
|
|
1132
1283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
-
checksum = "
|
|
1284
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
1134
1285
|
|
|
1135
1286
|
[[package]]
|
|
1136
1287
|
name = "lock_api"
|
|
@@ -1142,25 +1293,19 @@ dependencies = [
|
|
|
1142
1293
|
"scopeguard",
|
|
1143
1294
|
]
|
|
1144
1295
|
|
|
1145
|
-
[[package]]
|
|
1146
|
-
name = "lockfree-object-pool"
|
|
1147
|
-
version = "0.1.6"
|
|
1148
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
-
checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
|
|
1150
|
-
|
|
1151
1296
|
[[package]]
|
|
1152
1297
|
name = "log"
|
|
1153
|
-
version = "0.4.
|
|
1298
|
+
version = "0.4.27"
|
|
1154
1299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
-
checksum = "
|
|
1300
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1156
1301
|
|
|
1157
1302
|
[[package]]
|
|
1158
1303
|
name = "lru"
|
|
1159
|
-
version = "0.
|
|
1304
|
+
version = "0.13.0"
|
|
1160
1305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
-
checksum = "
|
|
1306
|
+
checksum = "227748d55f2f0ab4735d87fd623798cb6b664512fe979705f829c9f81c934465"
|
|
1162
1307
|
dependencies = [
|
|
1163
|
-
"hashbrown 0.15.
|
|
1308
|
+
"hashbrown 0.15.2",
|
|
1164
1309
|
]
|
|
1165
1310
|
|
|
1166
1311
|
[[package]]
|
|
@@ -1173,6 +1318,17 @@ dependencies = [
|
|
|
1173
1318
|
"crc",
|
|
1174
1319
|
]
|
|
1175
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
|
+
|
|
1176
1332
|
[[package]]
|
|
1177
1333
|
name = "matchers"
|
|
1178
1334
|
version = "0.1.0"
|
|
@@ -1202,30 +1358,29 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
|
1202
1358
|
|
|
1203
1359
|
[[package]]
|
|
1204
1360
|
name = "miniz_oxide"
|
|
1205
|
-
version = "0.8.
|
|
1361
|
+
version = "0.8.8"
|
|
1206
1362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
-
checksum = "
|
|
1363
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
1208
1364
|
dependencies = [
|
|
1209
1365
|
"adler2",
|
|
1210
1366
|
]
|
|
1211
1367
|
|
|
1212
1368
|
[[package]]
|
|
1213
1369
|
name = "mio"
|
|
1214
|
-
version = "1.0.
|
|
1370
|
+
version = "1.0.3"
|
|
1215
1371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
-
checksum = "
|
|
1372
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
1217
1373
|
dependencies = [
|
|
1218
|
-
"hermit-abi",
|
|
1219
1374
|
"libc",
|
|
1220
|
-
"wasi",
|
|
1375
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1221
1376
|
"windows-sys 0.52.0",
|
|
1222
1377
|
]
|
|
1223
1378
|
|
|
1224
1379
|
[[package]]
|
|
1225
1380
|
name = "mockall"
|
|
1226
|
-
version = "0.13.
|
|
1381
|
+
version = "0.13.1"
|
|
1227
1382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
-
checksum = "
|
|
1383
|
+
checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2"
|
|
1229
1384
|
dependencies = [
|
|
1230
1385
|
"cfg-if",
|
|
1231
1386
|
"downcast",
|
|
@@ -1237,9 +1392,9 @@ dependencies = [
|
|
|
1237
1392
|
|
|
1238
1393
|
[[package]]
|
|
1239
1394
|
name = "mockall_derive"
|
|
1240
|
-
version = "0.13.
|
|
1395
|
+
version = "0.13.1"
|
|
1241
1396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
-
checksum = "
|
|
1397
|
+
checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898"
|
|
1243
1398
|
dependencies = [
|
|
1244
1399
|
"cfg-if",
|
|
1245
1400
|
"proc-macro2",
|
|
@@ -1327,24 +1482,24 @@ dependencies = [
|
|
|
1327
1482
|
|
|
1328
1483
|
[[package]]
|
|
1329
1484
|
name = "object"
|
|
1330
|
-
version = "0.36.
|
|
1485
|
+
version = "0.36.7"
|
|
1331
1486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
-
checksum = "
|
|
1487
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
1333
1488
|
dependencies = [
|
|
1334
1489
|
"memchr",
|
|
1335
1490
|
]
|
|
1336
1491
|
|
|
1337
1492
|
[[package]]
|
|
1338
1493
|
name = "once_cell"
|
|
1339
|
-
version = "1.
|
|
1494
|
+
version = "1.21.3"
|
|
1340
1495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1341
|
-
checksum = "
|
|
1496
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1342
1497
|
|
|
1343
1498
|
[[package]]
|
|
1344
1499
|
name = "openssl-probe"
|
|
1345
|
-
version = "0.1.
|
|
1500
|
+
version = "0.1.6"
|
|
1346
1501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1347
|
-
checksum = "
|
|
1502
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1348
1503
|
|
|
1349
1504
|
[[package]]
|
|
1350
1505
|
name = "opentelemetry"
|
|
@@ -1357,23 +1512,52 @@ dependencies = [
|
|
|
1357
1512
|
"js-sys",
|
|
1358
1513
|
"once_cell",
|
|
1359
1514
|
"pin-project-lite",
|
|
1360
|
-
"thiserror",
|
|
1515
|
+
"thiserror 1.0.69",
|
|
1516
|
+
]
|
|
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",
|
|
1361
1543
|
]
|
|
1362
1544
|
|
|
1363
1545
|
[[package]]
|
|
1364
1546
|
name = "opentelemetry-otlp"
|
|
1365
|
-
version = "0.
|
|
1547
|
+
version = "0.26.0"
|
|
1366
1548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
-
checksum = "
|
|
1549
|
+
checksum = "29e1f9c8b032d4f635c730c0efcf731d5e2530ea13fa8bef7939ddc8420696bd"
|
|
1368
1550
|
dependencies = [
|
|
1369
1551
|
"async-trait",
|
|
1370
1552
|
"futures-core",
|
|
1371
1553
|
"http",
|
|
1372
|
-
"opentelemetry",
|
|
1554
|
+
"opentelemetry 0.26.0",
|
|
1555
|
+
"opentelemetry-http",
|
|
1373
1556
|
"opentelemetry-proto",
|
|
1374
1557
|
"opentelemetry_sdk",
|
|
1375
1558
|
"prost",
|
|
1376
|
-
"
|
|
1559
|
+
"reqwest",
|
|
1560
|
+
"thiserror 1.0.69",
|
|
1377
1561
|
"tokio",
|
|
1378
1562
|
"tonic",
|
|
1379
1563
|
]
|
|
@@ -1381,11 +1565,10 @@ dependencies = [
|
|
|
1381
1565
|
[[package]]
|
|
1382
1566
|
name = "opentelemetry-prometheus"
|
|
1383
1567
|
version = "0.17.0"
|
|
1384
|
-
source = "
|
|
1385
|
-
checksum = "cc4191ce34aa274621861a7a9d68dbcf618d5b6c66b10081631b61fd81fbc015"
|
|
1568
|
+
source = "git+https://github.com/open-telemetry/opentelemetry-rust.git?rev=e911383#e91138351a689cd21923c15eb48f5fbc95ded807"
|
|
1386
1569
|
dependencies = [
|
|
1387
1570
|
"once_cell",
|
|
1388
|
-
"opentelemetry",
|
|
1571
|
+
"opentelemetry 0.26.0",
|
|
1389
1572
|
"opentelemetry_sdk",
|
|
1390
1573
|
"prometheus",
|
|
1391
1574
|
"protobuf",
|
|
@@ -1393,11 +1576,11 @@ dependencies = [
|
|
|
1393
1576
|
|
|
1394
1577
|
[[package]]
|
|
1395
1578
|
name = "opentelemetry-proto"
|
|
1396
|
-
version = "0.
|
|
1579
|
+
version = "0.26.1"
|
|
1397
1580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
-
checksum = "
|
|
1581
|
+
checksum = "c9d3968ce3aefdcca5c27e3c4ea4391b37547726a70893aab52d3de95d5f8b34"
|
|
1399
1582
|
dependencies = [
|
|
1400
|
-
"opentelemetry",
|
|
1583
|
+
"opentelemetry 0.26.0",
|
|
1401
1584
|
"opentelemetry_sdk",
|
|
1402
1585
|
"prost",
|
|
1403
1586
|
"tonic",
|
|
@@ -1405,9 +1588,9 @@ dependencies = [
|
|
|
1405
1588
|
|
|
1406
1589
|
[[package]]
|
|
1407
1590
|
name = "opentelemetry_sdk"
|
|
1408
|
-
version = "0.
|
|
1591
|
+
version = "0.26.0"
|
|
1409
1592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
-
checksum = "
|
|
1593
|
+
checksum = "d2c627d9f4c9cdc1f21a29ee4bfbd6028fcb8bcf2a857b43f3abdf72c9c862f3"
|
|
1411
1594
|
dependencies = [
|
|
1412
1595
|
"async-trait",
|
|
1413
1596
|
"futures-channel",
|
|
@@ -1415,11 +1598,11 @@ dependencies = [
|
|
|
1415
1598
|
"futures-util",
|
|
1416
1599
|
"glob",
|
|
1417
1600
|
"once_cell",
|
|
1418
|
-
"opentelemetry",
|
|
1601
|
+
"opentelemetry 0.26.0",
|
|
1419
1602
|
"percent-encoding",
|
|
1420
|
-
"rand",
|
|
1603
|
+
"rand 0.8.5",
|
|
1421
1604
|
"serde_json",
|
|
1422
|
-
"thiserror",
|
|
1605
|
+
"thiserror 1.0.69",
|
|
1423
1606
|
"tokio",
|
|
1424
1607
|
"tokio-stream",
|
|
1425
1608
|
]
|
|
@@ -1450,7 +1633,7 @@ dependencies = [
|
|
|
1450
1633
|
"libc",
|
|
1451
1634
|
"redox_syscall",
|
|
1452
1635
|
"smallvec",
|
|
1453
|
-
"windows-targets",
|
|
1636
|
+
"windows-targets 0.52.6",
|
|
1454
1637
|
]
|
|
1455
1638
|
|
|
1456
1639
|
[[package]]
|
|
@@ -1471,12 +1654,12 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1471
1654
|
|
|
1472
1655
|
[[package]]
|
|
1473
1656
|
name = "petgraph"
|
|
1474
|
-
version = "0.
|
|
1657
|
+
version = "0.7.1"
|
|
1475
1658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1476
|
-
checksum = "
|
|
1659
|
+
checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
|
|
1477
1660
|
dependencies = [
|
|
1478
1661
|
"fixedbitset",
|
|
1479
|
-
"indexmap 2.
|
|
1662
|
+
"indexmap 2.9.0",
|
|
1480
1663
|
]
|
|
1481
1664
|
|
|
1482
1665
|
[[package]]
|
|
@@ -1490,18 +1673,18 @@ dependencies = [
|
|
|
1490
1673
|
|
|
1491
1674
|
[[package]]
|
|
1492
1675
|
name = "pin-project"
|
|
1493
|
-
version = "1.1.
|
|
1676
|
+
version = "1.1.10"
|
|
1494
1677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
-
checksum = "
|
|
1678
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
1496
1679
|
dependencies = [
|
|
1497
1680
|
"pin-project-internal",
|
|
1498
1681
|
]
|
|
1499
1682
|
|
|
1500
1683
|
[[package]]
|
|
1501
1684
|
name = "pin-project-internal"
|
|
1502
|
-
version = "1.1.
|
|
1685
|
+
version = "1.1.10"
|
|
1503
1686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
-
checksum = "
|
|
1687
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
1505
1688
|
dependencies = [
|
|
1506
1689
|
"proc-macro2",
|
|
1507
1690
|
"quote",
|
|
@@ -1510,9 +1693,9 @@ dependencies = [
|
|
|
1510
1693
|
|
|
1511
1694
|
[[package]]
|
|
1512
1695
|
name = "pin-project-lite"
|
|
1513
|
-
version = "0.2.
|
|
1696
|
+
version = "0.2.16"
|
|
1514
1697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
-
checksum = "
|
|
1698
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1516
1699
|
|
|
1517
1700
|
[[package]]
|
|
1518
1701
|
name = "pin-utils"
|
|
@@ -1522,15 +1705,24 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1522
1705
|
|
|
1523
1706
|
[[package]]
|
|
1524
1707
|
name = "pkg-config"
|
|
1525
|
-
version = "0.3.
|
|
1708
|
+
version = "0.3.32"
|
|
1526
1709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
-
checksum = "
|
|
1710
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1528
1711
|
|
|
1529
1712
|
[[package]]
|
|
1530
1713
|
name = "portable-atomic"
|
|
1531
|
-
version = "1.
|
|
1714
|
+
version = "1.11.0"
|
|
1532
1715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
-
checksum = "
|
|
1716
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "portable-atomic-util"
|
|
1720
|
+
version = "0.2.4"
|
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
1723
|
+
dependencies = [
|
|
1724
|
+
"portable-atomic",
|
|
1725
|
+
]
|
|
1534
1726
|
|
|
1535
1727
|
[[package]]
|
|
1536
1728
|
name = "powerfmt"
|
|
@@ -1540,18 +1732,18 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
1540
1732
|
|
|
1541
1733
|
[[package]]
|
|
1542
1734
|
name = "ppv-lite86"
|
|
1543
|
-
version = "0.2.
|
|
1735
|
+
version = "0.2.21"
|
|
1544
1736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
-
checksum = "
|
|
1737
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1546
1738
|
dependencies = [
|
|
1547
1739
|
"zerocopy",
|
|
1548
1740
|
]
|
|
1549
1741
|
|
|
1550
1742
|
[[package]]
|
|
1551
1743
|
name = "predicates"
|
|
1552
|
-
version = "3.1.
|
|
1744
|
+
version = "3.1.3"
|
|
1553
1745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
|
-
checksum = "
|
|
1746
|
+
checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
|
|
1555
1747
|
dependencies = [
|
|
1556
1748
|
"anstyle",
|
|
1557
1749
|
"predicates-core",
|
|
@@ -1559,15 +1751,15 @@ dependencies = [
|
|
|
1559
1751
|
|
|
1560
1752
|
[[package]]
|
|
1561
1753
|
name = "predicates-core"
|
|
1562
|
-
version = "1.0.
|
|
1754
|
+
version = "1.0.9"
|
|
1563
1755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
-
checksum = "
|
|
1756
|
+
checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
|
|
1565
1757
|
|
|
1566
1758
|
[[package]]
|
|
1567
1759
|
name = "predicates-tree"
|
|
1568
|
-
version = "1.0.
|
|
1760
|
+
version = "1.0.12"
|
|
1569
1761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
-
checksum = "
|
|
1762
|
+
checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
|
|
1571
1763
|
dependencies = [
|
|
1572
1764
|
"predicates-core",
|
|
1573
1765
|
"termtree",
|
|
@@ -1575,9 +1767,9 @@ dependencies = [
|
|
|
1575
1767
|
|
|
1576
1768
|
[[package]]
|
|
1577
1769
|
name = "prettyplease"
|
|
1578
|
-
version = "0.2.
|
|
1770
|
+
version = "0.2.32"
|
|
1579
1771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
-
checksum = "
|
|
1772
|
+
checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
|
|
1581
1773
|
dependencies = [
|
|
1582
1774
|
"proc-macro2",
|
|
1583
1775
|
"syn",
|
|
@@ -1585,9 +1777,9 @@ dependencies = [
|
|
|
1585
1777
|
|
|
1586
1778
|
[[package]]
|
|
1587
1779
|
name = "proc-macro2"
|
|
1588
|
-
version = "1.0.
|
|
1780
|
+
version = "1.0.95"
|
|
1589
1781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
-
checksum = "
|
|
1782
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
1591
1783
|
dependencies = [
|
|
1592
1784
|
"unicode-ident",
|
|
1593
1785
|
]
|
|
@@ -1604,14 +1796,14 @@ dependencies = [
|
|
|
1604
1796
|
"memchr",
|
|
1605
1797
|
"parking_lot",
|
|
1606
1798
|
"protobuf",
|
|
1607
|
-
"thiserror",
|
|
1799
|
+
"thiserror 1.0.69",
|
|
1608
1800
|
]
|
|
1609
1801
|
|
|
1610
1802
|
[[package]]
|
|
1611
1803
|
name = "prost"
|
|
1612
|
-
version = "0.13.
|
|
1804
|
+
version = "0.13.5"
|
|
1613
1805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
-
checksum = "
|
|
1806
|
+
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
|
|
1615
1807
|
dependencies = [
|
|
1616
1808
|
"bytes",
|
|
1617
1809
|
"prost-derive",
|
|
@@ -1619,11 +1811,10 @@ dependencies = [
|
|
|
1619
1811
|
|
|
1620
1812
|
[[package]]
|
|
1621
1813
|
name = "prost-build"
|
|
1622
|
-
version = "0.13.
|
|
1814
|
+
version = "0.13.5"
|
|
1623
1815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1624
|
-
checksum = "
|
|
1816
|
+
checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
|
|
1625
1817
|
dependencies = [
|
|
1626
|
-
"bytes",
|
|
1627
1818
|
"heck",
|
|
1628
1819
|
"itertools",
|
|
1629
1820
|
"log",
|
|
@@ -1640,9 +1831,9 @@ dependencies = [
|
|
|
1640
1831
|
|
|
1641
1832
|
[[package]]
|
|
1642
1833
|
name = "prost-derive"
|
|
1643
|
-
version = "0.13.
|
|
1834
|
+
version = "0.13.5"
|
|
1644
1835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
-
checksum = "
|
|
1836
|
+
checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
|
|
1646
1837
|
dependencies = [
|
|
1647
1838
|
"anyhow",
|
|
1648
1839
|
"itertools",
|
|
@@ -1653,9 +1844,9 @@ dependencies = [
|
|
|
1653
1844
|
|
|
1654
1845
|
[[package]]
|
|
1655
1846
|
name = "prost-types"
|
|
1656
|
-
version = "0.13.
|
|
1847
|
+
version = "0.13.5"
|
|
1657
1848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
-
checksum = "
|
|
1849
|
+
checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
|
|
1659
1850
|
dependencies = [
|
|
1660
1851
|
"prost",
|
|
1661
1852
|
]
|
|
@@ -1714,59 +1905,64 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
|
|
|
1714
1905
|
|
|
1715
1906
|
[[package]]
|
|
1716
1907
|
name = "quanta"
|
|
1717
|
-
version = "0.12.
|
|
1908
|
+
version = "0.12.5"
|
|
1718
1909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
-
checksum = "
|
|
1910
|
+
checksum = "3bd1fe6824cea6538803de3ff1bc0cf3949024db3d43c9643024bfb33a807c0e"
|
|
1720
1911
|
dependencies = [
|
|
1721
1912
|
"crossbeam-utils",
|
|
1722
1913
|
"libc",
|
|
1723
1914
|
"once_cell",
|
|
1724
1915
|
"raw-cpuid",
|
|
1725
|
-
"wasi",
|
|
1916
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1726
1917
|
"web-sys",
|
|
1727
1918
|
"winapi",
|
|
1728
1919
|
]
|
|
1729
1920
|
|
|
1730
1921
|
[[package]]
|
|
1731
1922
|
name = "quinn"
|
|
1732
|
-
version = "0.11.
|
|
1923
|
+
version = "0.11.7"
|
|
1733
1924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
-
checksum = "
|
|
1925
|
+
checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
|
|
1735
1926
|
dependencies = [
|
|
1736
1927
|
"bytes",
|
|
1928
|
+
"cfg_aliases",
|
|
1737
1929
|
"pin-project-lite",
|
|
1738
1930
|
"quinn-proto",
|
|
1739
1931
|
"quinn-udp",
|
|
1740
1932
|
"rustc-hash",
|
|
1741
1933
|
"rustls",
|
|
1742
1934
|
"socket2",
|
|
1743
|
-
"thiserror",
|
|
1935
|
+
"thiserror 2.0.12",
|
|
1744
1936
|
"tokio",
|
|
1745
1937
|
"tracing",
|
|
1938
|
+
"web-time",
|
|
1746
1939
|
]
|
|
1747
1940
|
|
|
1748
1941
|
[[package]]
|
|
1749
1942
|
name = "quinn-proto"
|
|
1750
|
-
version = "0.11.
|
|
1943
|
+
version = "0.11.11"
|
|
1751
1944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
-
checksum = "
|
|
1945
|
+
checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b"
|
|
1753
1946
|
dependencies = [
|
|
1754
1947
|
"bytes",
|
|
1755
|
-
"
|
|
1948
|
+
"getrandom 0.3.2",
|
|
1949
|
+
"rand 0.9.1",
|
|
1756
1950
|
"ring",
|
|
1757
1951
|
"rustc-hash",
|
|
1758
1952
|
"rustls",
|
|
1953
|
+
"rustls-pki-types",
|
|
1759
1954
|
"slab",
|
|
1760
|
-
"thiserror",
|
|
1955
|
+
"thiserror 2.0.12",
|
|
1761
1956
|
"tinyvec",
|
|
1762
1957
|
"tracing",
|
|
1958
|
+
"web-time",
|
|
1763
1959
|
]
|
|
1764
1960
|
|
|
1765
1961
|
[[package]]
|
|
1766
1962
|
name = "quinn-udp"
|
|
1767
|
-
version = "0.5.
|
|
1963
|
+
version = "0.5.11"
|
|
1768
1964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1769
|
-
checksum = "
|
|
1965
|
+
checksum = "541d0f57c6ec747a90738a52741d3221f7960e8ac2f0ff4b1a63680e033b4ab5"
|
|
1770
1966
|
dependencies = [
|
|
1771
1967
|
"cfg_aliases",
|
|
1772
1968
|
"libc",
|
|
@@ -1778,13 +1974,19 @@ dependencies = [
|
|
|
1778
1974
|
|
|
1779
1975
|
[[package]]
|
|
1780
1976
|
name = "quote"
|
|
1781
|
-
version = "1.0.
|
|
1977
|
+
version = "1.0.40"
|
|
1782
1978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
-
checksum = "
|
|
1979
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
1784
1980
|
dependencies = [
|
|
1785
1981
|
"proc-macro2",
|
|
1786
1982
|
]
|
|
1787
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
|
+
|
|
1788
1990
|
[[package]]
|
|
1789
1991
|
name = "rand"
|
|
1790
1992
|
version = "0.8.5"
|
|
@@ -1792,8 +1994,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1792
1994
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1793
1995
|
dependencies = [
|
|
1794
1996
|
"libc",
|
|
1795
|
-
"rand_chacha",
|
|
1796
|
-
"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",
|
|
1797
2009
|
]
|
|
1798
2010
|
|
|
1799
2011
|
[[package]]
|
|
@@ -1803,7 +2015,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1803
2015
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1804
2016
|
dependencies = [
|
|
1805
2017
|
"ppv-lite86",
|
|
1806
|
-
"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",
|
|
1807
2029
|
]
|
|
1808
2030
|
|
|
1809
2031
|
[[package]]
|
|
@@ -1812,23 +2034,32 @@ version = "0.6.4"
|
|
|
1812
2034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1813
2035
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1814
2036
|
dependencies = [
|
|
1815
|
-
"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",
|
|
1816
2047
|
]
|
|
1817
2048
|
|
|
1818
2049
|
[[package]]
|
|
1819
2050
|
name = "raw-cpuid"
|
|
1820
|
-
version = "11.
|
|
2051
|
+
version = "11.5.0"
|
|
1821
2052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1822
|
-
checksum = "
|
|
2053
|
+
checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
|
|
1823
2054
|
dependencies = [
|
|
1824
2055
|
"bitflags",
|
|
1825
2056
|
]
|
|
1826
2057
|
|
|
1827
2058
|
[[package]]
|
|
1828
2059
|
name = "redox_syscall"
|
|
1829
|
-
version = "0.5.
|
|
2060
|
+
version = "0.5.11"
|
|
1830
2061
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
-
checksum = "
|
|
2062
|
+
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
|
1832
2063
|
dependencies = [
|
|
1833
2064
|
"bitflags",
|
|
1834
2065
|
]
|
|
@@ -1841,7 +2072,7 @@ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
|
1841
2072
|
dependencies = [
|
|
1842
2073
|
"aho-corasick",
|
|
1843
2074
|
"memchr",
|
|
1844
|
-
"regex-automata 0.4.
|
|
2075
|
+
"regex-automata 0.4.9",
|
|
1845
2076
|
"regex-syntax 0.8.5",
|
|
1846
2077
|
]
|
|
1847
2078
|
|
|
@@ -1856,9 +2087,9 @@ dependencies = [
|
|
|
1856
2087
|
|
|
1857
2088
|
[[package]]
|
|
1858
2089
|
name = "regex-automata"
|
|
1859
|
-
version = "0.4.
|
|
2090
|
+
version = "0.4.9"
|
|
1860
2091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
-
checksum = "
|
|
2092
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
1862
2093
|
dependencies = [
|
|
1863
2094
|
"aho-corasick",
|
|
1864
2095
|
"memchr",
|
|
@@ -1879,12 +2110,13 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
|
1879
2110
|
|
|
1880
2111
|
[[package]]
|
|
1881
2112
|
name = "reqwest"
|
|
1882
|
-
version = "0.12.
|
|
2113
|
+
version = "0.12.15"
|
|
1883
2114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
-
checksum = "
|
|
2115
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
|
1885
2116
|
dependencies = [
|
|
1886
2117
|
"base64",
|
|
1887
2118
|
"bytes",
|
|
2119
|
+
"futures-channel",
|
|
1888
2120
|
"futures-core",
|
|
1889
2121
|
"futures-util",
|
|
1890
2122
|
"http",
|
|
@@ -1908,10 +2140,11 @@ dependencies = [
|
|
|
1908
2140
|
"serde",
|
|
1909
2141
|
"serde_json",
|
|
1910
2142
|
"serde_urlencoded",
|
|
1911
|
-
"sync_wrapper
|
|
2143
|
+
"sync_wrapper",
|
|
1912
2144
|
"tokio",
|
|
1913
2145
|
"tokio-rustls",
|
|
1914
2146
|
"tokio-util",
|
|
2147
|
+
"tower 0.5.2",
|
|
1915
2148
|
"tower-service",
|
|
1916
2149
|
"url",
|
|
1917
2150
|
"wasm-bindgen",
|
|
@@ -1923,27 +2156,27 @@ dependencies = [
|
|
|
1923
2156
|
|
|
1924
2157
|
[[package]]
|
|
1925
2158
|
name = "ring"
|
|
1926
|
-
version = "0.17.
|
|
2159
|
+
version = "0.17.14"
|
|
1927
2160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
-
checksum = "
|
|
2161
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1929
2162
|
dependencies = [
|
|
1930
2163
|
"cc",
|
|
1931
2164
|
"cfg-if",
|
|
1932
|
-
"getrandom",
|
|
2165
|
+
"getrandom 0.2.16",
|
|
1933
2166
|
"libc",
|
|
1934
|
-
"spin",
|
|
1935
2167
|
"untrusted",
|
|
1936
2168
|
"windows-sys 0.52.0",
|
|
1937
2169
|
]
|
|
1938
2170
|
|
|
1939
2171
|
[[package]]
|
|
1940
2172
|
name = "ringbuf"
|
|
1941
|
-
version = "0.4.
|
|
2173
|
+
version = "0.4.8"
|
|
1942
2174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
-
checksum = "
|
|
2175
|
+
checksum = "fe47b720588c8702e34b5979cb3271a8b1842c7cb6f57408efa70c779363488c"
|
|
1944
2176
|
dependencies = [
|
|
1945
2177
|
"crossbeam-utils",
|
|
1946
2178
|
"portable-atomic",
|
|
2179
|
+
"portable-atomic-util",
|
|
1947
2180
|
]
|
|
1948
2181
|
|
|
1949
2182
|
[[package]]
|
|
@@ -1954,9 +2187,9 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
|
1954
2187
|
|
|
1955
2188
|
[[package]]
|
|
1956
2189
|
name = "rustc-hash"
|
|
1957
|
-
version = "2.
|
|
2190
|
+
version = "2.1.1"
|
|
1958
2191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
-
checksum = "
|
|
2192
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1960
2193
|
|
|
1961
2194
|
[[package]]
|
|
1962
2195
|
name = "rustfsm"
|
|
@@ -1983,22 +2216,22 @@ version = "0.1.0"
|
|
|
1983
2216
|
|
|
1984
2217
|
[[package]]
|
|
1985
2218
|
name = "rustix"
|
|
1986
|
-
version = "0.
|
|
2219
|
+
version = "1.0.5"
|
|
1987
2220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
-
checksum = "
|
|
2221
|
+
checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
|
|
1989
2222
|
dependencies = [
|
|
1990
2223
|
"bitflags",
|
|
1991
2224
|
"errno",
|
|
1992
2225
|
"libc",
|
|
1993
2226
|
"linux-raw-sys",
|
|
1994
|
-
"windows-sys 0.
|
|
2227
|
+
"windows-sys 0.59.0",
|
|
1995
2228
|
]
|
|
1996
2229
|
|
|
1997
2230
|
[[package]]
|
|
1998
2231
|
name = "rustls"
|
|
1999
|
-
version = "0.23.
|
|
2232
|
+
version = "0.23.26"
|
|
2000
2233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
|
-
checksum = "
|
|
2234
|
+
checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
|
|
2002
2235
|
dependencies = [
|
|
2003
2236
|
"log",
|
|
2004
2237
|
"once_cell",
|
|
@@ -2011,12 +2244,11 @@ dependencies = [
|
|
|
2011
2244
|
|
|
2012
2245
|
[[package]]
|
|
2013
2246
|
name = "rustls-native-certs"
|
|
2014
|
-
version = "0.8.
|
|
2247
|
+
version = "0.8.1"
|
|
2015
2248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
-
checksum = "
|
|
2249
|
+
checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
|
|
2017
2250
|
dependencies = [
|
|
2018
2251
|
"openssl-probe",
|
|
2019
|
-
"rustls-pemfile",
|
|
2020
2252
|
"rustls-pki-types",
|
|
2021
2253
|
"schannel",
|
|
2022
2254
|
"security-framework",
|
|
@@ -2033,15 +2265,18 @@ dependencies = [
|
|
|
2033
2265
|
|
|
2034
2266
|
[[package]]
|
|
2035
2267
|
name = "rustls-pki-types"
|
|
2036
|
-
version = "1.
|
|
2268
|
+
version = "1.11.0"
|
|
2037
2269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
-
checksum = "
|
|
2270
|
+
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
2271
|
+
dependencies = [
|
|
2272
|
+
"web-time",
|
|
2273
|
+
]
|
|
2039
2274
|
|
|
2040
2275
|
[[package]]
|
|
2041
2276
|
name = "rustls-webpki"
|
|
2042
|
-
version = "0.
|
|
2277
|
+
version = "0.103.1"
|
|
2043
2278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
-
checksum = "
|
|
2279
|
+
checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
|
|
2045
2280
|
dependencies = [
|
|
2046
2281
|
"ring",
|
|
2047
2282
|
"rustls-pki-types",
|
|
@@ -2050,21 +2285,21 @@ dependencies = [
|
|
|
2050
2285
|
|
|
2051
2286
|
[[package]]
|
|
2052
2287
|
name = "rustversion"
|
|
2053
|
-
version = "1.0.
|
|
2288
|
+
version = "1.0.20"
|
|
2054
2289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2055
|
-
checksum = "
|
|
2290
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
2056
2291
|
|
|
2057
2292
|
[[package]]
|
|
2058
2293
|
name = "ryu"
|
|
2059
|
-
version = "1.0.
|
|
2294
|
+
version = "1.0.20"
|
|
2060
2295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
-
checksum = "
|
|
2296
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2062
2297
|
|
|
2063
2298
|
[[package]]
|
|
2064
2299
|
name = "schannel"
|
|
2065
|
-
version = "0.1.
|
|
2300
|
+
version = "0.1.27"
|
|
2066
2301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2067
|
-
checksum = "
|
|
2302
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
|
2068
2303
|
dependencies = [
|
|
2069
2304
|
"windows-sys 0.59.0",
|
|
2070
2305
|
]
|
|
@@ -2077,9 +2312,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
2077
2312
|
|
|
2078
2313
|
[[package]]
|
|
2079
2314
|
name = "security-framework"
|
|
2080
|
-
version = "2.
|
|
2315
|
+
version = "3.2.0"
|
|
2081
2316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
-
checksum = "
|
|
2317
|
+
checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
|
|
2083
2318
|
dependencies = [
|
|
2084
2319
|
"bitflags",
|
|
2085
2320
|
"core-foundation",
|
|
@@ -2090,9 +2325,9 @@ dependencies = [
|
|
|
2090
2325
|
|
|
2091
2326
|
[[package]]
|
|
2092
2327
|
name = "security-framework-sys"
|
|
2093
|
-
version = "2.
|
|
2328
|
+
version = "2.14.0"
|
|
2094
2329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
-
checksum = "
|
|
2330
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
|
2096
2331
|
dependencies = [
|
|
2097
2332
|
"core-foundation-sys",
|
|
2098
2333
|
"libc",
|
|
@@ -2100,9 +2335,9 @@ dependencies = [
|
|
|
2100
2335
|
|
|
2101
2336
|
[[package]]
|
|
2102
2337
|
name = "semver"
|
|
2103
|
-
version = "1.0.
|
|
2338
|
+
version = "1.0.26"
|
|
2104
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
-
checksum = "
|
|
2340
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
2106
2341
|
|
|
2107
2342
|
[[package]]
|
|
2108
2343
|
name = "send_wrapper"
|
|
@@ -2112,18 +2347,18 @@ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
|
|
|
2112
2347
|
|
|
2113
2348
|
[[package]]
|
|
2114
2349
|
name = "serde"
|
|
2115
|
-
version = "1.0.
|
|
2350
|
+
version = "1.0.219"
|
|
2116
2351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
-
checksum = "
|
|
2352
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
2118
2353
|
dependencies = [
|
|
2119
2354
|
"serde_derive",
|
|
2120
2355
|
]
|
|
2121
2356
|
|
|
2122
2357
|
[[package]]
|
|
2123
2358
|
name = "serde_derive"
|
|
2124
|
-
version = "1.0.
|
|
2359
|
+
version = "1.0.219"
|
|
2125
2360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
-
checksum = "
|
|
2361
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
2127
2362
|
dependencies = [
|
|
2128
2363
|
"proc-macro2",
|
|
2129
2364
|
"quote",
|
|
@@ -2132,9 +2367,9 @@ dependencies = [
|
|
|
2132
2367
|
|
|
2133
2368
|
[[package]]
|
|
2134
2369
|
name = "serde_json"
|
|
2135
|
-
version = "1.0.
|
|
2370
|
+
version = "1.0.140"
|
|
2136
2371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
-
checksum = "
|
|
2372
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
2138
2373
|
dependencies = [
|
|
2139
2374
|
"itoa",
|
|
2140
2375
|
"memchr",
|
|
@@ -2182,9 +2417,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
2182
2417
|
|
|
2183
2418
|
[[package]]
|
|
2184
2419
|
name = "signal-hook-registry"
|
|
2185
|
-
version = "1.4.
|
|
2420
|
+
version = "1.4.5"
|
|
2186
2421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2187
|
-
checksum = "
|
|
2422
|
+
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
|
|
2188
2423
|
dependencies = [
|
|
2189
2424
|
"libc",
|
|
2190
2425
|
]
|
|
@@ -2221,26 +2456,20 @@ dependencies = [
|
|
|
2221
2456
|
|
|
2222
2457
|
[[package]]
|
|
2223
2458
|
name = "smallvec"
|
|
2224
|
-
version = "1.
|
|
2459
|
+
version = "1.15.0"
|
|
2225
2460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2226
|
-
checksum = "
|
|
2461
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
2227
2462
|
|
|
2228
2463
|
[[package]]
|
|
2229
2464
|
name = "socket2"
|
|
2230
|
-
version = "0.5.
|
|
2465
|
+
version = "0.5.9"
|
|
2231
2466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
-
checksum = "
|
|
2467
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
|
2233
2468
|
dependencies = [
|
|
2234
2469
|
"libc",
|
|
2235
2470
|
"windows-sys 0.52.0",
|
|
2236
2471
|
]
|
|
2237
2472
|
|
|
2238
|
-
[[package]]
|
|
2239
|
-
name = "spin"
|
|
2240
|
-
version = "0.9.8"
|
|
2241
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2242
|
-
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2243
|
-
|
|
2244
2473
|
[[package]]
|
|
2245
2474
|
name = "spinning_top"
|
|
2246
2475
|
version = "0.3.0"
|
|
@@ -2250,6 +2479,12 @@ dependencies = [
|
|
|
2250
2479
|
"lock_api",
|
|
2251
2480
|
]
|
|
2252
2481
|
|
|
2482
|
+
[[package]]
|
|
2483
|
+
name = "stable_deref_trait"
|
|
2484
|
+
version = "1.2.0"
|
|
2485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2486
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
2487
|
+
|
|
2253
2488
|
[[package]]
|
|
2254
2489
|
name = "strsim"
|
|
2255
2490
|
version = "0.11.1"
|
|
@@ -2264,9 +2499,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
2264
2499
|
|
|
2265
2500
|
[[package]]
|
|
2266
2501
|
name = "syn"
|
|
2267
|
-
version = "2.0.
|
|
2502
|
+
version = "2.0.100"
|
|
2268
2503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
-
checksum = "
|
|
2504
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
2270
2505
|
dependencies = [
|
|
2271
2506
|
"proc-macro2",
|
|
2272
2507
|
"quote",
|
|
@@ -2286,24 +2521,29 @@ dependencies = [
|
|
|
2286
2521
|
|
|
2287
2522
|
[[package]]
|
|
2288
2523
|
name = "sync_wrapper"
|
|
2289
|
-
version = "0.
|
|
2524
|
+
version = "1.0.2"
|
|
2290
2525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2291
|
-
checksum = "
|
|
2526
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2527
|
+
dependencies = [
|
|
2528
|
+
"futures-core",
|
|
2529
|
+
]
|
|
2292
2530
|
|
|
2293
2531
|
[[package]]
|
|
2294
|
-
name = "
|
|
2295
|
-
version = "
|
|
2532
|
+
name = "synstructure"
|
|
2533
|
+
version = "0.13.1"
|
|
2296
2534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2297
|
-
checksum = "
|
|
2535
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
2298
2536
|
dependencies = [
|
|
2299
|
-
"
|
|
2537
|
+
"proc-macro2",
|
|
2538
|
+
"quote",
|
|
2539
|
+
"syn",
|
|
2300
2540
|
]
|
|
2301
2541
|
|
|
2302
2542
|
[[package]]
|
|
2303
2543
|
name = "sysinfo"
|
|
2304
|
-
version = "0.
|
|
2544
|
+
version = "0.33.1"
|
|
2305
2545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2306
|
-
checksum = "
|
|
2546
|
+
checksum = "4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01"
|
|
2307
2547
|
dependencies = [
|
|
2308
2548
|
"core-foundation-sys",
|
|
2309
2549
|
"libc",
|
|
@@ -2314,9 +2554,9 @@ dependencies = [
|
|
|
2314
2554
|
|
|
2315
2555
|
[[package]]
|
|
2316
2556
|
name = "tar"
|
|
2317
|
-
version = "0.4.
|
|
2557
|
+
version = "0.4.44"
|
|
2318
2558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2319
|
-
checksum = "
|
|
2559
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
|
2320
2560
|
dependencies = [
|
|
2321
2561
|
"filetime",
|
|
2322
2562
|
"libc",
|
|
@@ -2325,12 +2565,12 @@ dependencies = [
|
|
|
2325
2565
|
|
|
2326
2566
|
[[package]]
|
|
2327
2567
|
name = "tempfile"
|
|
2328
|
-
version = "3.
|
|
2568
|
+
version = "3.19.1"
|
|
2329
2569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2330
|
-
checksum = "
|
|
2570
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
|
2331
2571
|
dependencies = [
|
|
2332
|
-
"cfg-if",
|
|
2333
2572
|
"fastrand",
|
|
2573
|
+
"getrandom 0.3.2",
|
|
2334
2574
|
"once_cell",
|
|
2335
2575
|
"rustix",
|
|
2336
2576
|
"windows-sys 0.59.0",
|
|
@@ -2353,14 +2593,13 @@ dependencies = [
|
|
|
2353
2593
|
"hyper",
|
|
2354
2594
|
"hyper-util",
|
|
2355
2595
|
"parking_lot",
|
|
2356
|
-
"prost-types",
|
|
2357
2596
|
"slotmap",
|
|
2358
2597
|
"temporal-sdk-core-api",
|
|
2359
2598
|
"temporal-sdk-core-protos",
|
|
2360
|
-
"thiserror",
|
|
2599
|
+
"thiserror 2.0.12",
|
|
2361
2600
|
"tokio",
|
|
2362
2601
|
"tonic",
|
|
2363
|
-
"tower 0.5.
|
|
2602
|
+
"tower 0.5.2",
|
|
2364
2603
|
"tracing",
|
|
2365
2604
|
"url",
|
|
2366
2605
|
"uuid",
|
|
@@ -2390,7 +2629,7 @@ dependencies = [
|
|
|
2390
2629
|
"itertools",
|
|
2391
2630
|
"lru",
|
|
2392
2631
|
"mockall",
|
|
2393
|
-
"opentelemetry",
|
|
2632
|
+
"opentelemetry 0.26.0",
|
|
2394
2633
|
"opentelemetry-otlp",
|
|
2395
2634
|
"opentelemetry-prometheus",
|
|
2396
2635
|
"opentelemetry_sdk",
|
|
@@ -2400,7 +2639,7 @@ dependencies = [
|
|
|
2400
2639
|
"prometheus",
|
|
2401
2640
|
"prost",
|
|
2402
2641
|
"prost-wkt-types",
|
|
2403
|
-
"rand",
|
|
2642
|
+
"rand 0.9.1",
|
|
2404
2643
|
"reqwest",
|
|
2405
2644
|
"ringbuf",
|
|
2406
2645
|
"rustfsm",
|
|
@@ -2413,12 +2652,11 @@ dependencies = [
|
|
|
2413
2652
|
"temporal-client",
|
|
2414
2653
|
"temporal-sdk-core-api",
|
|
2415
2654
|
"temporal-sdk-core-protos",
|
|
2416
|
-
"thiserror",
|
|
2655
|
+
"thiserror 2.0.12",
|
|
2417
2656
|
"tokio",
|
|
2418
2657
|
"tokio-stream",
|
|
2419
2658
|
"tokio-util",
|
|
2420
2659
|
"tonic",
|
|
2421
|
-
"tonic-build",
|
|
2422
2660
|
"tracing",
|
|
2423
2661
|
"tracing-subscriber",
|
|
2424
2662
|
"url",
|
|
@@ -2433,12 +2671,11 @@ dependencies = [
|
|
|
2433
2671
|
"async-trait",
|
|
2434
2672
|
"derive_builder",
|
|
2435
2673
|
"derive_more",
|
|
2436
|
-
"opentelemetry",
|
|
2674
|
+
"opentelemetry 0.26.0",
|
|
2437
2675
|
"prost",
|
|
2438
|
-
"prost-types",
|
|
2439
2676
|
"serde_json",
|
|
2440
2677
|
"temporal-sdk-core-protos",
|
|
2441
|
-
"thiserror",
|
|
2678
|
+
"thiserror 2.0.12",
|
|
2442
2679
|
"tonic",
|
|
2443
2680
|
"tracing-core",
|
|
2444
2681
|
"url",
|
|
@@ -2453,14 +2690,13 @@ dependencies = [
|
|
|
2453
2690
|
"derive_more",
|
|
2454
2691
|
"prost",
|
|
2455
2692
|
"prost-build",
|
|
2456
|
-
"prost-types",
|
|
2457
2693
|
"prost-wkt",
|
|
2458
2694
|
"prost-wkt-build",
|
|
2459
2695
|
"prost-wkt-types",
|
|
2460
|
-
"rand",
|
|
2696
|
+
"rand 0.9.1",
|
|
2461
2697
|
"serde",
|
|
2462
2698
|
"serde_json",
|
|
2463
|
-
"thiserror",
|
|
2699
|
+
"thiserror 2.0.12",
|
|
2464
2700
|
"tonic",
|
|
2465
2701
|
"tonic-build",
|
|
2466
2702
|
"uuid",
|
|
@@ -2475,7 +2711,7 @@ dependencies = [
|
|
|
2475
2711
|
"log",
|
|
2476
2712
|
"neon",
|
|
2477
2713
|
"once_cell",
|
|
2478
|
-
"opentelemetry",
|
|
2714
|
+
"opentelemetry 0.24.0",
|
|
2479
2715
|
"parking_lot",
|
|
2480
2716
|
"prost",
|
|
2481
2717
|
"prost-types",
|
|
@@ -2488,24 +2724,44 @@ dependencies = [
|
|
|
2488
2724
|
|
|
2489
2725
|
[[package]]
|
|
2490
2726
|
name = "termtree"
|
|
2491
|
-
version = "0.
|
|
2727
|
+
version = "0.5.1"
|
|
2492
2728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2493
|
-
checksum = "
|
|
2729
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
2494
2730
|
|
|
2495
2731
|
[[package]]
|
|
2496
2732
|
name = "thiserror"
|
|
2497
|
-
version = "1.0.
|
|
2733
|
+
version = "1.0.69"
|
|
2498
2734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2499
|
-
checksum = "
|
|
2735
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2500
2736
|
dependencies = [
|
|
2501
|
-
"thiserror-impl",
|
|
2737
|
+
"thiserror-impl 1.0.69",
|
|
2738
|
+
]
|
|
2739
|
+
|
|
2740
|
+
[[package]]
|
|
2741
|
+
name = "thiserror"
|
|
2742
|
+
version = "2.0.12"
|
|
2743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2744
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
2745
|
+
dependencies = [
|
|
2746
|
+
"thiserror-impl 2.0.12",
|
|
2502
2747
|
]
|
|
2503
2748
|
|
|
2504
2749
|
[[package]]
|
|
2505
2750
|
name = "thiserror-impl"
|
|
2506
|
-
version = "1.0.
|
|
2751
|
+
version = "1.0.69"
|
|
2507
2752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2508
|
-
checksum = "
|
|
2753
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2754
|
+
dependencies = [
|
|
2755
|
+
"proc-macro2",
|
|
2756
|
+
"quote",
|
|
2757
|
+
"syn",
|
|
2758
|
+
]
|
|
2759
|
+
|
|
2760
|
+
[[package]]
|
|
2761
|
+
name = "thiserror-impl"
|
|
2762
|
+
version = "2.0.12"
|
|
2763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2764
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
2509
2765
|
dependencies = [
|
|
2510
2766
|
"proc-macro2",
|
|
2511
2767
|
"quote",
|
|
@@ -2524,9 +2780,9 @@ dependencies = [
|
|
|
2524
2780
|
|
|
2525
2781
|
[[package]]
|
|
2526
2782
|
name = "time"
|
|
2527
|
-
version = "0.3.
|
|
2783
|
+
version = "0.3.41"
|
|
2528
2784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2529
|
-
checksum = "
|
|
2785
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
2530
2786
|
dependencies = [
|
|
2531
2787
|
"deranged",
|
|
2532
2788
|
"num-conv",
|
|
@@ -2537,15 +2793,25 @@ dependencies = [
|
|
|
2537
2793
|
|
|
2538
2794
|
[[package]]
|
|
2539
2795
|
name = "time-core"
|
|
2540
|
-
version = "0.1.
|
|
2796
|
+
version = "0.1.4"
|
|
2797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2798
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
2799
|
+
|
|
2800
|
+
[[package]]
|
|
2801
|
+
name = "tinystr"
|
|
2802
|
+
version = "0.7.6"
|
|
2541
2803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2542
|
-
checksum = "
|
|
2804
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
2805
|
+
dependencies = [
|
|
2806
|
+
"displaydoc",
|
|
2807
|
+
"zerovec",
|
|
2808
|
+
]
|
|
2543
2809
|
|
|
2544
2810
|
[[package]]
|
|
2545
2811
|
name = "tinyvec"
|
|
2546
|
-
version = "1.
|
|
2812
|
+
version = "1.9.0"
|
|
2547
2813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2548
|
-
checksum = "
|
|
2814
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
2549
2815
|
dependencies = [
|
|
2550
2816
|
"tinyvec_macros",
|
|
2551
2817
|
]
|
|
@@ -2558,9 +2824,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2558
2824
|
|
|
2559
2825
|
[[package]]
|
|
2560
2826
|
name = "tokio"
|
|
2561
|
-
version = "1.
|
|
2827
|
+
version = "1.44.2"
|
|
2562
2828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
-
checksum = "
|
|
2829
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
|
2564
2830
|
dependencies = [
|
|
2565
2831
|
"backtrace",
|
|
2566
2832
|
"bytes",
|
|
@@ -2576,9 +2842,9 @@ dependencies = [
|
|
|
2576
2842
|
|
|
2577
2843
|
[[package]]
|
|
2578
2844
|
name = "tokio-macros"
|
|
2579
|
-
version = "2.
|
|
2845
|
+
version = "2.5.0"
|
|
2580
2846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2581
|
-
checksum = "
|
|
2847
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
2582
2848
|
dependencies = [
|
|
2583
2849
|
"proc-macro2",
|
|
2584
2850
|
"quote",
|
|
@@ -2587,20 +2853,19 @@ dependencies = [
|
|
|
2587
2853
|
|
|
2588
2854
|
[[package]]
|
|
2589
2855
|
name = "tokio-rustls"
|
|
2590
|
-
version = "0.26.
|
|
2856
|
+
version = "0.26.2"
|
|
2591
2857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
-
checksum = "
|
|
2858
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
2593
2859
|
dependencies = [
|
|
2594
2860
|
"rustls",
|
|
2595
|
-
"rustls-pki-types",
|
|
2596
2861
|
"tokio",
|
|
2597
2862
|
]
|
|
2598
2863
|
|
|
2599
2864
|
[[package]]
|
|
2600
2865
|
name = "tokio-stream"
|
|
2601
|
-
version = "0.1.
|
|
2866
|
+
version = "0.1.17"
|
|
2602
2867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2603
|
-
checksum = "
|
|
2868
|
+
checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
|
|
2604
2869
|
dependencies = [
|
|
2605
2870
|
"futures-core",
|
|
2606
2871
|
"pin-project-lite",
|
|
@@ -2609,9 +2874,9 @@ dependencies = [
|
|
|
2609
2874
|
|
|
2610
2875
|
[[package]]
|
|
2611
2876
|
name = "tokio-util"
|
|
2612
|
-
version = "0.7.
|
|
2877
|
+
version = "0.7.15"
|
|
2613
2878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2614
|
-
checksum = "
|
|
2879
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
|
2615
2880
|
dependencies = [
|
|
2616
2881
|
"bytes",
|
|
2617
2882
|
"futures-core",
|
|
@@ -2678,7 +2943,7 @@ dependencies = [
|
|
|
2678
2943
|
"indexmap 1.9.3",
|
|
2679
2944
|
"pin-project",
|
|
2680
2945
|
"pin-project-lite",
|
|
2681
|
-
"rand",
|
|
2946
|
+
"rand 0.8.5",
|
|
2682
2947
|
"slab",
|
|
2683
2948
|
"tokio",
|
|
2684
2949
|
"tokio-util",
|
|
@@ -2689,14 +2954,15 @@ dependencies = [
|
|
|
2689
2954
|
|
|
2690
2955
|
[[package]]
|
|
2691
2956
|
name = "tower"
|
|
2692
|
-
version = "0.5.
|
|
2957
|
+
version = "0.5.2"
|
|
2693
2958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
-
checksum = "
|
|
2959
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
2695
2960
|
dependencies = [
|
|
2696
2961
|
"futures-core",
|
|
2697
2962
|
"futures-util",
|
|
2698
2963
|
"pin-project-lite",
|
|
2699
|
-
"sync_wrapper
|
|
2964
|
+
"sync_wrapper",
|
|
2965
|
+
"tokio",
|
|
2700
2966
|
"tower-layer",
|
|
2701
2967
|
"tower-service",
|
|
2702
2968
|
]
|
|
@@ -2715,9 +2981,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
2715
2981
|
|
|
2716
2982
|
[[package]]
|
|
2717
2983
|
name = "tracing"
|
|
2718
|
-
version = "0.1.
|
|
2984
|
+
version = "0.1.41"
|
|
2719
2985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2720
|
-
checksum = "
|
|
2986
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
2721
2987
|
dependencies = [
|
|
2722
2988
|
"pin-project-lite",
|
|
2723
2989
|
"tracing-attributes",
|
|
@@ -2726,9 +2992,9 @@ dependencies = [
|
|
|
2726
2992
|
|
|
2727
2993
|
[[package]]
|
|
2728
2994
|
name = "tracing-attributes"
|
|
2729
|
-
version = "0.1.
|
|
2995
|
+
version = "0.1.28"
|
|
2730
2996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2731
|
-
checksum = "
|
|
2997
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
2732
2998
|
dependencies = [
|
|
2733
2999
|
"proc-macro2",
|
|
2734
3000
|
"quote",
|
|
@@ -2737,30 +3003,19 @@ dependencies = [
|
|
|
2737
3003
|
|
|
2738
3004
|
[[package]]
|
|
2739
3005
|
name = "tracing-core"
|
|
2740
|
-
version = "0.1.
|
|
3006
|
+
version = "0.1.33"
|
|
2741
3007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2742
|
-
checksum = "
|
|
3008
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
2743
3009
|
dependencies = [
|
|
2744
3010
|
"once_cell",
|
|
2745
3011
|
"valuable",
|
|
2746
3012
|
]
|
|
2747
3013
|
|
|
2748
|
-
[[package]]
|
|
2749
|
-
name = "tracing-log"
|
|
2750
|
-
version = "0.2.0"
|
|
2751
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2752
|
-
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
2753
|
-
dependencies = [
|
|
2754
|
-
"log",
|
|
2755
|
-
"once_cell",
|
|
2756
|
-
"tracing-core",
|
|
2757
|
-
]
|
|
2758
|
-
|
|
2759
3014
|
[[package]]
|
|
2760
3015
|
name = "tracing-subscriber"
|
|
2761
|
-
version = "0.3.
|
|
3016
|
+
version = "0.3.19"
|
|
2762
3017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2763
|
-
checksum = "
|
|
3018
|
+
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
|
|
2764
3019
|
dependencies = [
|
|
2765
3020
|
"matchers",
|
|
2766
3021
|
"nu-ansi-term",
|
|
@@ -2768,11 +3023,9 @@ dependencies = [
|
|
|
2768
3023
|
"parking_lot",
|
|
2769
3024
|
"regex",
|
|
2770
3025
|
"sharded-slab",
|
|
2771
|
-
"smallvec",
|
|
2772
3026
|
"thread_local",
|
|
2773
3027
|
"tracing",
|
|
2774
3028
|
"tracing-core",
|
|
2775
|
-
"tracing-log",
|
|
2776
3029
|
]
|
|
2777
3030
|
|
|
2778
3031
|
[[package]]
|
|
@@ -2783,21 +3036,21 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
2783
3036
|
|
|
2784
3037
|
[[package]]
|
|
2785
3038
|
name = "typeid"
|
|
2786
|
-
version = "1.0.
|
|
3039
|
+
version = "1.0.3"
|
|
2787
3040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2788
|
-
checksum = "
|
|
3041
|
+
checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
|
2789
3042
|
|
|
2790
3043
|
[[package]]
|
|
2791
3044
|
name = "typenum"
|
|
2792
|
-
version = "1.
|
|
3045
|
+
version = "1.18.0"
|
|
2793
3046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
-
checksum = "
|
|
3047
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
2795
3048
|
|
|
2796
3049
|
[[package]]
|
|
2797
3050
|
name = "typetag"
|
|
2798
|
-
version = "0.2.
|
|
3051
|
+
version = "0.2.20"
|
|
2799
3052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
-
checksum = "
|
|
3053
|
+
checksum = "73f22b40dd7bfe8c14230cf9702081366421890435b2d625fa92b4acc4c3de6f"
|
|
2801
3054
|
dependencies = [
|
|
2802
3055
|
"erased-serde",
|
|
2803
3056
|
"inventory",
|
|
@@ -2808,35 +3061,20 @@ dependencies = [
|
|
|
2808
3061
|
|
|
2809
3062
|
[[package]]
|
|
2810
3063
|
name = "typetag-impl"
|
|
2811
|
-
version = "0.2.
|
|
3064
|
+
version = "0.2.20"
|
|
2812
3065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2813
|
-
checksum = "
|
|
3066
|
+
checksum = "35f5380909ffc31b4de4f4bdf96b877175a016aa2ca98cee39fcfd8c4d53d952"
|
|
2814
3067
|
dependencies = [
|
|
2815
3068
|
"proc-macro2",
|
|
2816
3069
|
"quote",
|
|
2817
3070
|
"syn",
|
|
2818
3071
|
]
|
|
2819
3072
|
|
|
2820
|
-
[[package]]
|
|
2821
|
-
name = "unicode-bidi"
|
|
2822
|
-
version = "0.3.17"
|
|
2823
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2824
|
-
checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
|
|
2825
|
-
|
|
2826
3073
|
[[package]]
|
|
2827
3074
|
name = "unicode-ident"
|
|
2828
|
-
version = "1.0.
|
|
2829
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2830
|
-
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
|
2831
|
-
|
|
2832
|
-
[[package]]
|
|
2833
|
-
name = "unicode-normalization"
|
|
2834
|
-
version = "0.1.24"
|
|
3075
|
+
version = "1.0.18"
|
|
2835
3076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2836
|
-
checksum = "
|
|
2837
|
-
dependencies = [
|
|
2838
|
-
"tinyvec",
|
|
2839
|
-
]
|
|
3077
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
2840
3078
|
|
|
2841
3079
|
[[package]]
|
|
2842
3080
|
name = "unicode-xid"
|
|
@@ -2852,29 +3090,41 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
2852
3090
|
|
|
2853
3091
|
[[package]]
|
|
2854
3092
|
name = "url"
|
|
2855
|
-
version = "2.5.
|
|
3093
|
+
version = "2.5.4"
|
|
2856
3094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2857
|
-
checksum = "
|
|
3095
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
2858
3096
|
dependencies = [
|
|
2859
3097
|
"form_urlencoded",
|
|
2860
3098
|
"idna",
|
|
2861
3099
|
"percent-encoding",
|
|
2862
3100
|
]
|
|
2863
3101
|
|
|
3102
|
+
[[package]]
|
|
3103
|
+
name = "utf16_iter"
|
|
3104
|
+
version = "1.0.5"
|
|
3105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3106
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
3107
|
+
|
|
3108
|
+
[[package]]
|
|
3109
|
+
name = "utf8_iter"
|
|
3110
|
+
version = "1.0.4"
|
|
3111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3112
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3113
|
+
|
|
2864
3114
|
[[package]]
|
|
2865
3115
|
name = "uuid"
|
|
2866
|
-
version = "1.
|
|
3116
|
+
version = "1.16.0"
|
|
2867
3117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2868
|
-
checksum = "
|
|
3118
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
2869
3119
|
dependencies = [
|
|
2870
|
-
"getrandom",
|
|
3120
|
+
"getrandom 0.3.2",
|
|
2871
3121
|
]
|
|
2872
3122
|
|
|
2873
3123
|
[[package]]
|
|
2874
3124
|
name = "valuable"
|
|
2875
|
-
version = "0.1.
|
|
3125
|
+
version = "0.1.1"
|
|
2876
3126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2877
|
-
checksum = "
|
|
3127
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
2878
3128
|
|
|
2879
3129
|
[[package]]
|
|
2880
3130
|
name = "version_check"
|
|
@@ -2897,26 +3147,35 @@ version = "0.11.0+wasi-snapshot-preview1"
|
|
|
2897
3147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2898
3148
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2899
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
|
+
|
|
2900
3159
|
[[package]]
|
|
2901
3160
|
name = "wasm-bindgen"
|
|
2902
|
-
version = "0.2.
|
|
3161
|
+
version = "0.2.100"
|
|
2903
3162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2904
|
-
checksum = "
|
|
3163
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
2905
3164
|
dependencies = [
|
|
2906
3165
|
"cfg-if",
|
|
2907
3166
|
"once_cell",
|
|
3167
|
+
"rustversion",
|
|
2908
3168
|
"wasm-bindgen-macro",
|
|
2909
3169
|
]
|
|
2910
3170
|
|
|
2911
3171
|
[[package]]
|
|
2912
3172
|
name = "wasm-bindgen-backend"
|
|
2913
|
-
version = "0.2.
|
|
3173
|
+
version = "0.2.100"
|
|
2914
3174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2915
|
-
checksum = "
|
|
3175
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
2916
3176
|
dependencies = [
|
|
2917
3177
|
"bumpalo",
|
|
2918
3178
|
"log",
|
|
2919
|
-
"once_cell",
|
|
2920
3179
|
"proc-macro2",
|
|
2921
3180
|
"quote",
|
|
2922
3181
|
"syn",
|
|
@@ -2925,21 +3184,22 @@ dependencies = [
|
|
|
2925
3184
|
|
|
2926
3185
|
[[package]]
|
|
2927
3186
|
name = "wasm-bindgen-futures"
|
|
2928
|
-
version = "0.4.
|
|
3187
|
+
version = "0.4.50"
|
|
2929
3188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2930
|
-
checksum = "
|
|
3189
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
2931
3190
|
dependencies = [
|
|
2932
3191
|
"cfg-if",
|
|
2933
3192
|
"js-sys",
|
|
3193
|
+
"once_cell",
|
|
2934
3194
|
"wasm-bindgen",
|
|
2935
3195
|
"web-sys",
|
|
2936
3196
|
]
|
|
2937
3197
|
|
|
2938
3198
|
[[package]]
|
|
2939
3199
|
name = "wasm-bindgen-macro"
|
|
2940
|
-
version = "0.2.
|
|
3200
|
+
version = "0.2.100"
|
|
2941
3201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2942
|
-
checksum = "
|
|
3202
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
2943
3203
|
dependencies = [
|
|
2944
3204
|
"quote",
|
|
2945
3205
|
"wasm-bindgen-macro-support",
|
|
@@ -2947,9 +3207,9 @@ dependencies = [
|
|
|
2947
3207
|
|
|
2948
3208
|
[[package]]
|
|
2949
3209
|
name = "wasm-bindgen-macro-support"
|
|
2950
|
-
version = "0.2.
|
|
3210
|
+
version = "0.2.100"
|
|
2951
3211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
|
-
checksum = "
|
|
3212
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
2953
3213
|
dependencies = [
|
|
2954
3214
|
"proc-macro2",
|
|
2955
3215
|
"quote",
|
|
@@ -2960,9 +3220,12 @@ dependencies = [
|
|
|
2960
3220
|
|
|
2961
3221
|
[[package]]
|
|
2962
3222
|
name = "wasm-bindgen-shared"
|
|
2963
|
-
version = "0.2.
|
|
3223
|
+
version = "0.2.100"
|
|
2964
3224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2965
|
-
checksum = "
|
|
3225
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
3226
|
+
dependencies = [
|
|
3227
|
+
"unicode-ident",
|
|
3228
|
+
]
|
|
2966
3229
|
|
|
2967
3230
|
[[package]]
|
|
2968
3231
|
name = "wasm-streams"
|
|
@@ -2979,9 +3242,19 @@ dependencies = [
|
|
|
2979
3242
|
|
|
2980
3243
|
[[package]]
|
|
2981
3244
|
name = "web-sys"
|
|
2982
|
-
version = "0.3.
|
|
3245
|
+
version = "0.3.77"
|
|
3246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3247
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
3248
|
+
dependencies = [
|
|
3249
|
+
"js-sys",
|
|
3250
|
+
"wasm-bindgen",
|
|
3251
|
+
]
|
|
3252
|
+
|
|
3253
|
+
[[package]]
|
|
3254
|
+
name = "web-time"
|
|
3255
|
+
version = "1.1.0"
|
|
2983
3256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
-
checksum = "
|
|
3257
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
2985
3258
|
dependencies = [
|
|
2986
3259
|
"js-sys",
|
|
2987
3260
|
"wasm-bindgen",
|
|
@@ -3016,7 +3289,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3016
3289
|
checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
|
|
3017
3290
|
dependencies = [
|
|
3018
3291
|
"windows-core",
|
|
3019
|
-
"windows-targets",
|
|
3292
|
+
"windows-targets 0.52.6",
|
|
3020
3293
|
]
|
|
3021
3294
|
|
|
3022
3295
|
[[package]]
|
|
@@ -3028,7 +3301,7 @@ dependencies = [
|
|
|
3028
3301
|
"windows-implement",
|
|
3029
3302
|
"windows-interface",
|
|
3030
3303
|
"windows-result 0.1.2",
|
|
3031
|
-
"windows-targets",
|
|
3304
|
+
"windows-targets 0.52.6",
|
|
3032
3305
|
]
|
|
3033
3306
|
|
|
3034
3307
|
[[package]]
|
|
@@ -3053,15 +3326,21 @@ dependencies = [
|
|
|
3053
3326
|
"syn",
|
|
3054
3327
|
]
|
|
3055
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
|
+
|
|
3056
3335
|
[[package]]
|
|
3057
3336
|
name = "windows-registry"
|
|
3058
|
-
version = "0.
|
|
3337
|
+
version = "0.4.0"
|
|
3059
3338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3060
|
-
checksum = "
|
|
3339
|
+
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
|
3061
3340
|
dependencies = [
|
|
3062
|
-
"windows-result 0.2
|
|
3341
|
+
"windows-result 0.3.2",
|
|
3063
3342
|
"windows-strings",
|
|
3064
|
-
"windows-targets",
|
|
3343
|
+
"windows-targets 0.53.0",
|
|
3065
3344
|
]
|
|
3066
3345
|
|
|
3067
3346
|
[[package]]
|
|
@@ -3070,26 +3349,25 @@ version = "0.1.2"
|
|
|
3070
3349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3071
3350
|
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
|
|
3072
3351
|
dependencies = [
|
|
3073
|
-
"windows-targets",
|
|
3352
|
+
"windows-targets 0.52.6",
|
|
3074
3353
|
]
|
|
3075
3354
|
|
|
3076
3355
|
[[package]]
|
|
3077
3356
|
name = "windows-result"
|
|
3078
|
-
version = "0.2
|
|
3357
|
+
version = "0.3.2"
|
|
3079
3358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3080
|
-
checksum = "
|
|
3359
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
|
3081
3360
|
dependencies = [
|
|
3082
|
-
"windows-
|
|
3361
|
+
"windows-link",
|
|
3083
3362
|
]
|
|
3084
3363
|
|
|
3085
3364
|
[[package]]
|
|
3086
3365
|
name = "windows-strings"
|
|
3087
|
-
version = "0.1
|
|
3366
|
+
version = "0.3.1"
|
|
3088
3367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3089
|
-
checksum = "
|
|
3368
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
|
3090
3369
|
dependencies = [
|
|
3091
|
-
"windows-
|
|
3092
|
-
"windows-targets",
|
|
3370
|
+
"windows-link",
|
|
3093
3371
|
]
|
|
3094
3372
|
|
|
3095
3373
|
[[package]]
|
|
@@ -3098,7 +3376,7 @@ version = "0.52.0"
|
|
|
3098
3376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3099
3377
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3100
3378
|
dependencies = [
|
|
3101
|
-
"windows-targets",
|
|
3379
|
+
"windows-targets 0.52.6",
|
|
3102
3380
|
]
|
|
3103
3381
|
|
|
3104
3382
|
[[package]]
|
|
@@ -3107,7 +3385,7 @@ version = "0.59.0"
|
|
|
3107
3385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3108
3386
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3109
3387
|
dependencies = [
|
|
3110
|
-
"windows-targets",
|
|
3388
|
+
"windows-targets 0.52.6",
|
|
3111
3389
|
]
|
|
3112
3390
|
|
|
3113
3391
|
[[package]]
|
|
@@ -3116,14 +3394,30 @@ version = "0.52.6"
|
|
|
3116
3394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3117
3395
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3118
3396
|
dependencies = [
|
|
3119
|
-
"windows_aarch64_gnullvm",
|
|
3120
|
-
"windows_aarch64_msvc",
|
|
3121
|
-
"windows_i686_gnu",
|
|
3122
|
-
"windows_i686_gnullvm",
|
|
3123
|
-
"windows_i686_msvc",
|
|
3124
|
-
"windows_x86_64_gnu",
|
|
3125
|
-
"windows_x86_64_gnullvm",
|
|
3126
|
-
"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",
|
|
3127
3421
|
]
|
|
3128
3422
|
|
|
3129
3423
|
[[package]]
|
|
@@ -3132,80 +3426,201 @@ version = "0.52.6"
|
|
|
3132
3426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3133
3427
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3134
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
|
+
|
|
3135
3435
|
[[package]]
|
|
3136
3436
|
name = "windows_aarch64_msvc"
|
|
3137
3437
|
version = "0.52.6"
|
|
3138
3438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3139
3439
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3140
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
|
+
|
|
3141
3447
|
[[package]]
|
|
3142
3448
|
name = "windows_i686_gnu"
|
|
3143
3449
|
version = "0.52.6"
|
|
3144
3450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3145
3451
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3146
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
|
+
|
|
3147
3459
|
[[package]]
|
|
3148
3460
|
name = "windows_i686_gnullvm"
|
|
3149
3461
|
version = "0.52.6"
|
|
3150
3462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3151
3463
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3152
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
|
+
|
|
3153
3471
|
[[package]]
|
|
3154
3472
|
name = "windows_i686_msvc"
|
|
3155
3473
|
version = "0.52.6"
|
|
3156
3474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3157
3475
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3158
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
|
+
|
|
3159
3483
|
[[package]]
|
|
3160
3484
|
name = "windows_x86_64_gnu"
|
|
3161
3485
|
version = "0.52.6"
|
|
3162
3486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3163
3487
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3164
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
|
+
|
|
3165
3495
|
[[package]]
|
|
3166
3496
|
name = "windows_x86_64_gnullvm"
|
|
3167
3497
|
version = "0.52.6"
|
|
3168
3498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3169
3499
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3170
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
|
+
|
|
3171
3507
|
[[package]]
|
|
3172
3508
|
name = "windows_x86_64_msvc"
|
|
3173
3509
|
version = "0.52.6"
|
|
3174
3510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3175
3511
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3176
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
|
+
|
|
3528
|
+
[[package]]
|
|
3529
|
+
name = "write16"
|
|
3530
|
+
version = "1.0.0"
|
|
3531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3532
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
3533
|
+
|
|
3534
|
+
[[package]]
|
|
3535
|
+
name = "writeable"
|
|
3536
|
+
version = "0.5.5"
|
|
3537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3538
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
3539
|
+
|
|
3177
3540
|
[[package]]
|
|
3178
3541
|
name = "xattr"
|
|
3179
|
-
version = "1.
|
|
3542
|
+
version = "1.5.0"
|
|
3180
3543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3181
|
-
checksum = "
|
|
3544
|
+
checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
|
|
3182
3545
|
dependencies = [
|
|
3183
3546
|
"libc",
|
|
3184
|
-
"linux-raw-sys",
|
|
3185
3547
|
"rustix",
|
|
3186
3548
|
]
|
|
3187
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
|
+
|
|
3559
|
+
[[package]]
|
|
3560
|
+
name = "yoke"
|
|
3561
|
+
version = "0.7.5"
|
|
3562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3563
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
3564
|
+
dependencies = [
|
|
3565
|
+
"serde",
|
|
3566
|
+
"stable_deref_trait",
|
|
3567
|
+
"yoke-derive",
|
|
3568
|
+
"zerofrom",
|
|
3569
|
+
]
|
|
3570
|
+
|
|
3571
|
+
[[package]]
|
|
3572
|
+
name = "yoke-derive"
|
|
3573
|
+
version = "0.7.5"
|
|
3574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3575
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
3576
|
+
dependencies = [
|
|
3577
|
+
"proc-macro2",
|
|
3578
|
+
"quote",
|
|
3579
|
+
"syn",
|
|
3580
|
+
"synstructure",
|
|
3581
|
+
]
|
|
3582
|
+
|
|
3188
3583
|
[[package]]
|
|
3189
3584
|
name = "zerocopy"
|
|
3190
|
-
version = "0.
|
|
3585
|
+
version = "0.8.24"
|
|
3191
3586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3192
|
-
checksum = "
|
|
3587
|
+
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
|
3193
3588
|
dependencies = [
|
|
3194
|
-
"byteorder",
|
|
3195
3589
|
"zerocopy-derive",
|
|
3196
3590
|
]
|
|
3197
3591
|
|
|
3198
3592
|
[[package]]
|
|
3199
3593
|
name = "zerocopy-derive"
|
|
3200
|
-
version = "0.
|
|
3594
|
+
version = "0.8.24"
|
|
3201
3595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
-
checksum = "
|
|
3596
|
+
checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
|
3203
3597
|
dependencies = [
|
|
3204
3598
|
"proc-macro2",
|
|
3205
3599
|
"quote",
|
|
3206
3600
|
"syn",
|
|
3207
3601
|
]
|
|
3208
3602
|
|
|
3603
|
+
[[package]]
|
|
3604
|
+
name = "zerofrom"
|
|
3605
|
+
version = "0.1.6"
|
|
3606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3607
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
3608
|
+
dependencies = [
|
|
3609
|
+
"zerofrom-derive",
|
|
3610
|
+
]
|
|
3611
|
+
|
|
3612
|
+
[[package]]
|
|
3613
|
+
name = "zerofrom-derive"
|
|
3614
|
+
version = "0.1.6"
|
|
3615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
3617
|
+
dependencies = [
|
|
3618
|
+
"proc-macro2",
|
|
3619
|
+
"quote",
|
|
3620
|
+
"syn",
|
|
3621
|
+
"synstructure",
|
|
3622
|
+
]
|
|
3623
|
+
|
|
3209
3624
|
[[package]]
|
|
3210
3625
|
name = "zeroize"
|
|
3211
3626
|
version = "1.8.1"
|
|
@@ -3226,11 +3641,33 @@ dependencies = [
|
|
|
3226
3641
|
"syn",
|
|
3227
3642
|
]
|
|
3228
3643
|
|
|
3644
|
+
[[package]]
|
|
3645
|
+
name = "zerovec"
|
|
3646
|
+
version = "0.10.4"
|
|
3647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3648
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
3649
|
+
dependencies = [
|
|
3650
|
+
"yoke",
|
|
3651
|
+
"zerofrom",
|
|
3652
|
+
"zerovec-derive",
|
|
3653
|
+
]
|
|
3654
|
+
|
|
3655
|
+
[[package]]
|
|
3656
|
+
name = "zerovec-derive"
|
|
3657
|
+
version = "0.10.3"
|
|
3658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3659
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
3660
|
+
dependencies = [
|
|
3661
|
+
"proc-macro2",
|
|
3662
|
+
"quote",
|
|
3663
|
+
"syn",
|
|
3664
|
+
]
|
|
3665
|
+
|
|
3229
3666
|
[[package]]
|
|
3230
3667
|
name = "zip"
|
|
3231
|
-
version = "2.
|
|
3668
|
+
version = "2.6.1"
|
|
3232
3669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3233
|
-
checksum = "
|
|
3670
|
+
checksum = "1dcb24d0152526ae49b9b96c1dcf71850ca1e0b882e4e28ed898a93c41334744"
|
|
3234
3671
|
dependencies = [
|
|
3235
3672
|
"aes",
|
|
3236
3673
|
"arbitrary",
|
|
@@ -3239,17 +3676,16 @@ dependencies = [
|
|
|
3239
3676
|
"crc32fast",
|
|
3240
3677
|
"crossbeam-utils",
|
|
3241
3678
|
"deflate64",
|
|
3242
|
-
"displaydoc",
|
|
3243
3679
|
"flate2",
|
|
3680
|
+
"getrandom 0.3.2",
|
|
3244
3681
|
"hmac",
|
|
3245
|
-
"indexmap 2.
|
|
3682
|
+
"indexmap 2.9.0",
|
|
3246
3683
|
"lzma-rs",
|
|
3247
3684
|
"memchr",
|
|
3248
3685
|
"pbkdf2",
|
|
3249
|
-
"rand",
|
|
3250
3686
|
"sha1",
|
|
3251
|
-
"thiserror",
|
|
3252
3687
|
"time",
|
|
3688
|
+
"xz2",
|
|
3253
3689
|
"zeroize",
|
|
3254
3690
|
"zopfli",
|
|
3255
3691
|
"zstd",
|
|
@@ -3257,41 +3693,39 @@ dependencies = [
|
|
|
3257
3693
|
|
|
3258
3694
|
[[package]]
|
|
3259
3695
|
name = "zopfli"
|
|
3260
|
-
version = "0.8.
|
|
3696
|
+
version = "0.8.2"
|
|
3261
3697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3262
|
-
checksum = "
|
|
3698
|
+
checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7"
|
|
3263
3699
|
dependencies = [
|
|
3264
3700
|
"bumpalo",
|
|
3265
3701
|
"crc32fast",
|
|
3266
|
-
"lockfree-object-pool",
|
|
3267
3702
|
"log",
|
|
3268
|
-
"once_cell",
|
|
3269
3703
|
"simd-adler32",
|
|
3270
3704
|
]
|
|
3271
3705
|
|
|
3272
3706
|
[[package]]
|
|
3273
3707
|
name = "zstd"
|
|
3274
|
-
version = "0.13.
|
|
3708
|
+
version = "0.13.3"
|
|
3275
3709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3276
|
-
checksum = "
|
|
3710
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
3277
3711
|
dependencies = [
|
|
3278
3712
|
"zstd-safe",
|
|
3279
3713
|
]
|
|
3280
3714
|
|
|
3281
3715
|
[[package]]
|
|
3282
3716
|
name = "zstd-safe"
|
|
3283
|
-
version = "7.2.
|
|
3717
|
+
version = "7.2.4"
|
|
3284
3718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3285
|
-
checksum = "
|
|
3719
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3286
3720
|
dependencies = [
|
|
3287
3721
|
"zstd-sys",
|
|
3288
3722
|
]
|
|
3289
3723
|
|
|
3290
3724
|
[[package]]
|
|
3291
3725
|
name = "zstd-sys"
|
|
3292
|
-
version = "2.0.
|
|
3726
|
+
version = "2.0.15+zstd.1.5.7"
|
|
3293
3727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3294
|
-
checksum = "
|
|
3728
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
3295
3729
|
dependencies = [
|
|
3296
3730
|
"cc",
|
|
3297
3731
|
"pkg-config",
|