@temporalio/core-bridge 1.10.3 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.lock +563 -676
- package/Cargo.toml +3 -3
- package/lib/index.d.ts +16 -5
- package/lib/index.js.map +1 -1
- package/lib/worker-tuner.d.ts +57 -0
- package/lib/worker-tuner.js +3 -0
- package/lib/worker-tuner.js.map +1 -0
- 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/.github/workflows/heavy.yml +6 -11
- package/sdk-core/.github/workflows/per-pr.yml +23 -41
- package/sdk-core/Cargo.toml +5 -5
- package/sdk-core/README.md +2 -0
- package/sdk-core/client/Cargo.toml +4 -2
- package/sdk-core/client/src/lib.rs +60 -17
- package/sdk-core/client/src/metrics.rs +1 -1
- package/sdk-core/client/src/proxy.rs +17 -12
- package/sdk-core/client/src/raw.rs +218 -69
- package/sdk-core/client/src/retry.rs +19 -9
- package/sdk-core/core/Cargo.toml +12 -12
- package/sdk-core/core/src/abstractions.rs +3 -3
- package/sdk-core/core/src/core_tests/activity_tasks.rs +2 -1
- package/sdk-core/core/src/core_tests/determinism.rs +1 -1
- package/sdk-core/core/src/core_tests/local_activities.rs +73 -10
- package/sdk-core/core/src/core_tests/queries.rs +2 -1
- package/sdk-core/core/src/core_tests/updates.rs +162 -4
- package/sdk-core/core/src/core_tests/workers.rs +38 -2
- package/sdk-core/core/src/core_tests/workflow_tasks.rs +158 -27
- package/sdk-core/core/src/internal_flags.rs +17 -7
- package/sdk-core/core/src/lib.rs +9 -3
- package/sdk-core/core/src/pollers/poll_buffer.rs +1 -10
- package/sdk-core/core/src/protosext/mod.rs +0 -1
- package/sdk-core/core/src/protosext/protocol_messages.rs +105 -16
- package/sdk-core/core/src/retry_logic.rs +22 -2
- package/sdk-core/core/src/telemetry/otel.rs +44 -12
- package/sdk-core/core/src/test_help/mod.rs +65 -12
- package/sdk-core/core/src/worker/activities/local_activities.rs +1 -4
- package/sdk-core/core/src/worker/activities.rs +3 -4
- package/sdk-core/core/src/worker/client/mocks.rs +7 -6
- package/sdk-core/core/src/worker/client.rs +11 -2
- package/sdk-core/core/src/worker/mod.rs +49 -24
- package/sdk-core/core/src/worker/tuner/resource_based.rs +48 -48
- package/sdk-core/core/src/worker/tuner.rs +124 -4
- package/sdk-core/core/src/worker/workflow/driven_workflow.rs +1 -1
- package/sdk-core/core/src/worker/workflow/history_update.rs +11 -2
- package/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +18 -3
- package/sdk-core/core/src/worker/workflow/machines/cancel_external_state_machine.rs +1 -0
- package/sdk-core/core/src/worker/workflow/machines/cancel_workflow_state_machine.rs +1 -0
- package/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +1 -0
- package/sdk-core/core/src/worker/workflow/machines/complete_workflow_state_machine.rs +1 -0
- package/sdk-core/core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs +1 -0
- package/sdk-core/core/src/worker/workflow/machines/fail_workflow_state_machine.rs +1 -0
- package/sdk-core/core/src/worker/workflow/machines/local_activity_state_machine.rs +4 -4
- package/sdk-core/core/src/worker/workflow/machines/modify_workflow_properties_state_machine.rs +1 -0
- package/sdk-core/core/src/worker/workflow/machines/patch_state_machine.rs +1 -0
- package/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +1 -0
- package/sdk-core/core/src/worker/workflow/machines/timer_state_machine.rs +3 -1
- package/sdk-core/core/src/worker/workflow/machines/update_state_machine.rs +38 -28
- package/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +4 -2
- package/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +95 -71
- package/sdk-core/core/src/worker/workflow/machines/workflow_task_state_machine.rs +1 -1
- package/sdk-core/core/src/worker/workflow/managed_run.rs +214 -14
- package/sdk-core/core/src/worker/workflow/mod.rs +49 -36
- package/sdk-core/core/src/worker/workflow/workflow_stream.rs +1 -2
- package/sdk-core/core-api/src/errors.rs +13 -7
- package/sdk-core/core-api/src/lib.rs +9 -1
- package/sdk-core/sdk/Cargo.toml +1 -1
- package/sdk-core/sdk/src/activity_context.rs +3 -4
- package/sdk-core/sdk/src/lib.rs +96 -49
- package/sdk-core/sdk/src/workflow_context/options.rs +8 -4
- package/sdk-core/sdk/src/workflow_context.rs +53 -49
- package/sdk-core/sdk/src/workflow_future.rs +10 -4
- package/sdk-core/sdk-core-protos/Cargo.toml +4 -3
- package/sdk-core/sdk-core-protos/build.rs +2 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/.github/workflows/build.yaml +18 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/LICENSE +21 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/Makefile +59 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/README.md +25 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/VERSION +1 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/buf.gen.yaml +14 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/buf.lock +8 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/buf.yaml +9 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/cloudservice/v1/request_response.proto +520 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/cloudservice/v1/service.proto +263 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/identity/v1/message.proto +173 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/namespace/v1/message.proto +164 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/operation/v1/message.proto +36 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/region/v1/message.proto +22 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/.github/workflows/trigger-api-go-update.yml +50 -8
- package/sdk-core/sdk-core-protos/protos/api_upstream/.gitmodules +3 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/openapi/openapiv2.json +132 -54
- package/sdk-core/sdk-core-protos/protos/api_upstream/openapi/openapiv3.yaml +177 -81
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/command/v1/message.proto +13 -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/task_queue.proto +8 -3
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/history/v1/message.proto +10 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/nexus/v1/message.proto +3 -3
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +6 -6
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/sdk/v1/enhanced_stack_trace.proto +96 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/sdk/v1/user_metadata.proto +49 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/sdk/v1/workflow_metadata.proto +6 -7
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +55 -24
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflow/v1/message.proto +7 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +21 -4
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +64 -45
- package/sdk-core/sdk-core-protos/src/history_builder.rs +8 -1
- package/sdk-core/sdk-core-protos/src/lib.rs +40 -10
- package/sdk-core/test-utils/src/canned_histories.rs +1 -1
- package/sdk-core/tests/fuzzy_workflow.rs +4 -2
- package/sdk-core/tests/heavy_tests.rs +3 -3
- package/sdk-core/tests/integ_tests/activity_functions.rs +2 -2
- package/sdk-core/tests/integ_tests/client_tests.rs +234 -6
- package/sdk-core/tests/integ_tests/update_tests.rs +180 -47
- package/sdk-core/tests/integ_tests/worker_tests.rs +32 -0
- package/sdk-core/tests/integ_tests/workflow_tests/activities.rs +47 -3
- package/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +10 -10
- package/sdk-core/tests/main.rs +1 -0
- package/src/conversions.rs +84 -11
- package/src/runtime.rs +5 -17
- package/src/worker.rs +27 -6
- package/ts/index.ts +24 -5
- package/ts/worker-tuner.ts +71 -0
package/Cargo.lock
CHANGED
|
@@ -4,9 +4,9 @@ version = 3
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "addr2line"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.22.0"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"gimli",
|
|
12
12
|
]
|
|
@@ -51,21 +51,21 @@ dependencies = [
|
|
|
51
51
|
|
|
52
52
|
[[package]]
|
|
53
53
|
name = "allocator-api2"
|
|
54
|
-
version = "0.2.
|
|
54
|
+
version = "0.2.18"
|
|
55
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
-
checksum = "
|
|
56
|
+
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
|
|
57
57
|
|
|
58
58
|
[[package]]
|
|
59
59
|
name = "anstyle"
|
|
60
|
-
version = "1.0.
|
|
60
|
+
version = "1.0.8"
|
|
61
61
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
-
checksum = "
|
|
62
|
+
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
|
|
63
63
|
|
|
64
64
|
[[package]]
|
|
65
65
|
name = "anyhow"
|
|
66
|
-
version = "1.0.
|
|
66
|
+
version = "1.0.86"
|
|
67
67
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
-
checksum = "
|
|
68
|
+
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
|
|
69
69
|
|
|
70
70
|
[[package]]
|
|
71
71
|
name = "arbitrary"
|
|
@@ -95,40 +95,45 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
|
95
95
|
dependencies = [
|
|
96
96
|
"proc-macro2",
|
|
97
97
|
"quote",
|
|
98
|
-
"syn 2.0.
|
|
98
|
+
"syn 2.0.72",
|
|
99
99
|
]
|
|
100
100
|
|
|
101
101
|
[[package]]
|
|
102
102
|
name = "async-trait"
|
|
103
|
-
version = "0.1.
|
|
103
|
+
version = "0.1.81"
|
|
104
104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
-
checksum = "
|
|
105
|
+
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
|
|
106
106
|
dependencies = [
|
|
107
107
|
"proc-macro2",
|
|
108
108
|
"quote",
|
|
109
|
-
"syn 2.0.
|
|
109
|
+
"syn 2.0.72",
|
|
110
110
|
]
|
|
111
111
|
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "atomic-waker"
|
|
114
|
+
version = "1.1.2"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
117
|
+
|
|
112
118
|
[[package]]
|
|
113
119
|
name = "autocfg"
|
|
114
|
-
version = "1.
|
|
120
|
+
version = "1.3.0"
|
|
115
121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
-
checksum = "
|
|
122
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
117
123
|
|
|
118
124
|
[[package]]
|
|
119
125
|
name = "axum"
|
|
120
|
-
version = "0.
|
|
126
|
+
version = "0.7.5"
|
|
121
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
-
checksum = "
|
|
128
|
+
checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf"
|
|
123
129
|
dependencies = [
|
|
124
130
|
"async-trait",
|
|
125
131
|
"axum-core",
|
|
126
|
-
"bitflags 1.3.2",
|
|
127
132
|
"bytes",
|
|
128
133
|
"futures-util",
|
|
129
|
-
"http
|
|
130
|
-
"http-body
|
|
131
|
-
"
|
|
134
|
+
"http",
|
|
135
|
+
"http-body",
|
|
136
|
+
"http-body-util",
|
|
132
137
|
"itoa",
|
|
133
138
|
"matchit",
|
|
134
139
|
"memchr",
|
|
@@ -137,7 +142,7 @@ dependencies = [
|
|
|
137
142
|
"pin-project-lite",
|
|
138
143
|
"rustversion",
|
|
139
144
|
"serde",
|
|
140
|
-
"sync_wrapper",
|
|
145
|
+
"sync_wrapper 1.0.1",
|
|
141
146
|
"tower",
|
|
142
147
|
"tower-layer",
|
|
143
148
|
"tower-service",
|
|
@@ -145,17 +150,20 @@ dependencies = [
|
|
|
145
150
|
|
|
146
151
|
[[package]]
|
|
147
152
|
name = "axum-core"
|
|
148
|
-
version = "0.3
|
|
153
|
+
version = "0.4.3"
|
|
149
154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
-
checksum = "
|
|
155
|
+
checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3"
|
|
151
156
|
dependencies = [
|
|
152
157
|
"async-trait",
|
|
153
158
|
"bytes",
|
|
154
159
|
"futures-util",
|
|
155
|
-
"http
|
|
156
|
-
"http-body
|
|
160
|
+
"http",
|
|
161
|
+
"http-body",
|
|
162
|
+
"http-body-util",
|
|
157
163
|
"mime",
|
|
164
|
+
"pin-project-lite",
|
|
158
165
|
"rustversion",
|
|
166
|
+
"sync_wrapper 0.1.2",
|
|
159
167
|
"tower-layer",
|
|
160
168
|
"tower-service",
|
|
161
169
|
]
|
|
@@ -173,9 +181,9 @@ dependencies = [
|
|
|
173
181
|
|
|
174
182
|
[[package]]
|
|
175
183
|
name = "backtrace"
|
|
176
|
-
version = "0.3.
|
|
184
|
+
version = "0.3.73"
|
|
177
185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
-
checksum = "
|
|
186
|
+
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
|
|
179
187
|
dependencies = [
|
|
180
188
|
"addr2line",
|
|
181
189
|
"cc",
|
|
@@ -186,12 +194,6 @@ dependencies = [
|
|
|
186
194
|
"rustc-demangle",
|
|
187
195
|
]
|
|
188
196
|
|
|
189
|
-
[[package]]
|
|
190
|
-
name = "base64"
|
|
191
|
-
version = "0.21.7"
|
|
192
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
-
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
194
|
-
|
|
195
197
|
[[package]]
|
|
196
198
|
name = "base64"
|
|
197
199
|
version = "0.22.1"
|
|
@@ -206,9 +208,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
206
208
|
|
|
207
209
|
[[package]]
|
|
208
210
|
name = "bitflags"
|
|
209
|
-
version = "2.
|
|
211
|
+
version = "2.6.0"
|
|
210
212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
-
checksum = "
|
|
213
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
212
214
|
|
|
213
215
|
[[package]]
|
|
214
216
|
name = "block-buffer"
|
|
@@ -233,9 +235,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
233
235
|
|
|
234
236
|
[[package]]
|
|
235
237
|
name = "bytes"
|
|
236
|
-
version = "1.
|
|
238
|
+
version = "1.7.1"
|
|
237
239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
-
checksum = "
|
|
240
|
+
checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
|
|
239
241
|
|
|
240
242
|
[[package]]
|
|
241
243
|
name = "bzip2"
|
|
@@ -260,9 +262,9 @@ dependencies = [
|
|
|
260
262
|
|
|
261
263
|
[[package]]
|
|
262
264
|
name = "cc"
|
|
263
|
-
version = "1.
|
|
265
|
+
version = "1.1.8"
|
|
264
266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
-
checksum = "
|
|
267
|
+
checksum = "504bdec147f2cc13c8b57ed9401fd8a147cc66b67ad5cb241394244f2c947549"
|
|
266
268
|
dependencies = [
|
|
267
269
|
"jobserver",
|
|
268
270
|
"libc",
|
|
@@ -274,17 +276,11 @@ version = "1.0.0"
|
|
|
274
276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
277
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
276
278
|
|
|
277
|
-
[[package]]
|
|
278
|
-
name = "cfg_aliases"
|
|
279
|
-
version = "0.1.1"
|
|
280
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
-
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
|
|
282
|
-
|
|
283
279
|
[[package]]
|
|
284
280
|
name = "chrono"
|
|
285
|
-
version = "0.4.
|
|
281
|
+
version = "0.4.38"
|
|
286
282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
-
checksum = "
|
|
283
|
+
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
|
|
288
284
|
dependencies = [
|
|
289
285
|
"num-traits",
|
|
290
286
|
"serde",
|
|
@@ -300,15 +296,6 @@ dependencies = [
|
|
|
300
296
|
"inout",
|
|
301
297
|
]
|
|
302
298
|
|
|
303
|
-
[[package]]
|
|
304
|
-
name = "cmake"
|
|
305
|
-
version = "0.1.50"
|
|
306
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
-
checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
|
|
308
|
-
dependencies = [
|
|
309
|
-
"cc",
|
|
310
|
-
]
|
|
311
|
-
|
|
312
299
|
[[package]]
|
|
313
300
|
name = "constant_time_eq"
|
|
314
301
|
version = "0.3.0"
|
|
@@ -363,18 +350,18 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
|
|
|
363
350
|
|
|
364
351
|
[[package]]
|
|
365
352
|
name = "crc32fast"
|
|
366
|
-
version = "1.4.
|
|
353
|
+
version = "1.4.2"
|
|
367
354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
-
checksum = "
|
|
355
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
369
356
|
dependencies = [
|
|
370
357
|
"cfg-if",
|
|
371
358
|
]
|
|
372
359
|
|
|
373
360
|
[[package]]
|
|
374
361
|
name = "crossbeam-channel"
|
|
375
|
-
version = "0.5.
|
|
362
|
+
version = "0.5.13"
|
|
376
363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
-
checksum = "
|
|
364
|
+
checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
|
|
378
365
|
dependencies = [
|
|
379
366
|
"crossbeam-utils",
|
|
380
367
|
]
|
|
@@ -409,9 +396,9 @@ dependencies = [
|
|
|
409
396
|
|
|
410
397
|
[[package]]
|
|
411
398
|
name = "crossbeam-utils"
|
|
412
|
-
version = "0.8.
|
|
399
|
+
version = "0.8.20"
|
|
413
400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
-
checksum = "
|
|
401
|
+
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
|
415
402
|
|
|
416
403
|
[[package]]
|
|
417
404
|
name = "crypto-common"
|
|
@@ -425,9 +412,9 @@ dependencies = [
|
|
|
425
412
|
|
|
426
413
|
[[package]]
|
|
427
414
|
name = "darling"
|
|
428
|
-
version = "0.20.
|
|
415
|
+
version = "0.20.10"
|
|
429
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
-
checksum = "
|
|
417
|
+
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
|
|
431
418
|
dependencies = [
|
|
432
419
|
"darling_core",
|
|
433
420
|
"darling_macro",
|
|
@@ -435,27 +422,27 @@ dependencies = [
|
|
|
435
422
|
|
|
436
423
|
[[package]]
|
|
437
424
|
name = "darling_core"
|
|
438
|
-
version = "0.20.
|
|
425
|
+
version = "0.20.10"
|
|
439
426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
-
checksum = "
|
|
427
|
+
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
|
|
441
428
|
dependencies = [
|
|
442
429
|
"fnv",
|
|
443
430
|
"ident_case",
|
|
444
431
|
"proc-macro2",
|
|
445
432
|
"quote",
|
|
446
433
|
"strsim",
|
|
447
|
-
"syn 2.0.
|
|
434
|
+
"syn 2.0.72",
|
|
448
435
|
]
|
|
449
436
|
|
|
450
437
|
[[package]]
|
|
451
438
|
name = "darling_macro"
|
|
452
|
-
version = "0.20.
|
|
439
|
+
version = "0.20.10"
|
|
453
440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
-
checksum = "
|
|
441
|
+
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
455
442
|
dependencies = [
|
|
456
443
|
"darling_core",
|
|
457
444
|
"quote",
|
|
458
|
-
"syn 2.0.
|
|
445
|
+
"syn 2.0.72",
|
|
459
446
|
]
|
|
460
447
|
|
|
461
448
|
[[package]]
|
|
@@ -465,7 +452,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
465
452
|
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
466
453
|
dependencies = [
|
|
467
454
|
"cfg-if",
|
|
468
|
-
"hashbrown 0.14.
|
|
455
|
+
"hashbrown 0.14.5",
|
|
456
|
+
"lock_api",
|
|
457
|
+
"once_cell",
|
|
458
|
+
"parking_lot_core",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "dashmap"
|
|
463
|
+
version = "6.0.1"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "804c8821570c3f8b70230c2ba75ffa5c0f9a4189b9a432b6656c536712acae28"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"cfg-if",
|
|
468
|
+
"crossbeam-utils",
|
|
469
|
+
"hashbrown 0.14.5",
|
|
469
470
|
"lock_api",
|
|
470
471
|
"once_cell",
|
|
471
472
|
"parking_lot_core",
|
|
@@ -473,9 +474,9 @@ dependencies = [
|
|
|
473
474
|
|
|
474
475
|
[[package]]
|
|
475
476
|
name = "deflate64"
|
|
476
|
-
version = "0.1.
|
|
477
|
+
version = "0.1.9"
|
|
477
478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
-
checksum = "
|
|
479
|
+
checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
|
|
479
480
|
|
|
480
481
|
[[package]]
|
|
481
482
|
name = "deranged"
|
|
@@ -494,7 +495,7 @@ checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
|
|
|
494
495
|
dependencies = [
|
|
495
496
|
"proc-macro2",
|
|
496
497
|
"quote",
|
|
497
|
-
"syn 2.0.
|
|
498
|
+
"syn 2.0.72",
|
|
498
499
|
]
|
|
499
500
|
|
|
500
501
|
[[package]]
|
|
@@ -515,7 +516,7 @@ dependencies = [
|
|
|
515
516
|
"darling",
|
|
516
517
|
"proc-macro2",
|
|
517
518
|
"quote",
|
|
518
|
-
"syn 2.0.
|
|
519
|
+
"syn 2.0.72",
|
|
519
520
|
]
|
|
520
521
|
|
|
521
522
|
[[package]]
|
|
@@ -525,20 +526,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
525
526
|
checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b"
|
|
526
527
|
dependencies = [
|
|
527
528
|
"derive_builder_core",
|
|
528
|
-
"syn 2.0.
|
|
529
|
+
"syn 2.0.72",
|
|
529
530
|
]
|
|
530
531
|
|
|
531
532
|
[[package]]
|
|
532
533
|
name = "derive_more"
|
|
533
|
-
version = "0.99.
|
|
534
|
+
version = "0.99.18"
|
|
534
535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
-
checksum = "
|
|
536
|
+
checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
|
|
536
537
|
dependencies = [
|
|
537
538
|
"convert_case",
|
|
538
539
|
"proc-macro2",
|
|
539
540
|
"quote",
|
|
540
541
|
"rustc_version",
|
|
541
|
-
"syn
|
|
542
|
+
"syn 2.0.72",
|
|
542
543
|
]
|
|
543
544
|
|
|
544
545
|
[[package]]
|
|
@@ -554,13 +555,13 @@ dependencies = [
|
|
|
554
555
|
|
|
555
556
|
[[package]]
|
|
556
557
|
name = "displaydoc"
|
|
557
|
-
version = "0.2.
|
|
558
|
+
version = "0.2.5"
|
|
558
559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
-
checksum = "
|
|
560
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
560
561
|
dependencies = [
|
|
561
562
|
"proc-macro2",
|
|
562
563
|
"quote",
|
|
563
|
-
"syn 2.0.
|
|
564
|
+
"syn 2.0.72",
|
|
564
565
|
]
|
|
565
566
|
|
|
566
567
|
[[package]]
|
|
@@ -571,49 +572,40 @@ checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
|
|
|
571
572
|
|
|
572
573
|
[[package]]
|
|
573
574
|
name = "either"
|
|
574
|
-
version = "1.
|
|
575
|
+
version = "1.13.0"
|
|
575
576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
-
checksum = "
|
|
577
|
-
|
|
578
|
-
[[package]]
|
|
579
|
-
name = "encoding_rs"
|
|
580
|
-
version = "0.8.33"
|
|
581
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
-
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
|
|
583
|
-
dependencies = [
|
|
584
|
-
"cfg-if",
|
|
585
|
-
]
|
|
577
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
586
578
|
|
|
587
579
|
[[package]]
|
|
588
580
|
name = "enum-iterator"
|
|
589
|
-
version = "2.
|
|
581
|
+
version = "2.1.0"
|
|
590
582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
-
checksum = "
|
|
583
|
+
checksum = "c280b9e6b3ae19e152d8e31cf47f18389781e119d4013a2a2bb0180e5facc635"
|
|
592
584
|
dependencies = [
|
|
593
585
|
"enum-iterator-derive",
|
|
594
586
|
]
|
|
595
587
|
|
|
596
588
|
[[package]]
|
|
597
589
|
name = "enum-iterator-derive"
|
|
598
|
-
version = "1.
|
|
590
|
+
version = "1.4.0"
|
|
599
591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
-
checksum = "
|
|
592
|
+
checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
|
|
601
593
|
dependencies = [
|
|
602
594
|
"proc-macro2",
|
|
603
595
|
"quote",
|
|
604
|
-
"syn 2.0.
|
|
596
|
+
"syn 2.0.72",
|
|
605
597
|
]
|
|
606
598
|
|
|
607
599
|
[[package]]
|
|
608
600
|
name = "enum_dispatch"
|
|
609
|
-
version = "0.3.
|
|
601
|
+
version = "0.3.13"
|
|
610
602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
-
checksum = "
|
|
603
|
+
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
|
612
604
|
dependencies = [
|
|
613
605
|
"once_cell",
|
|
614
606
|
"proc-macro2",
|
|
615
607
|
"quote",
|
|
616
|
-
"syn 2.0.
|
|
608
|
+
"syn 2.0.72",
|
|
617
609
|
]
|
|
618
610
|
|
|
619
611
|
[[package]]
|
|
@@ -624,18 +616,19 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
624
616
|
|
|
625
617
|
[[package]]
|
|
626
618
|
name = "erased-serde"
|
|
627
|
-
version = "0.4.
|
|
619
|
+
version = "0.4.5"
|
|
628
620
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
-
checksum = "
|
|
621
|
+
checksum = "24e2389d65ab4fab27dc2a5de7b191e1f6617d1f1c8855c0dc569c94a4cbb18d"
|
|
630
622
|
dependencies = [
|
|
631
623
|
"serde",
|
|
624
|
+
"typeid",
|
|
632
625
|
]
|
|
633
626
|
|
|
634
627
|
[[package]]
|
|
635
628
|
name = "errno"
|
|
636
|
-
version = "0.3.
|
|
629
|
+
version = "0.3.9"
|
|
637
630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
-
checksum = "
|
|
631
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
639
632
|
dependencies = [
|
|
640
633
|
"libc",
|
|
641
634
|
"windows-sys 0.52.0",
|
|
@@ -643,9 +636,9 @@ dependencies = [
|
|
|
643
636
|
|
|
644
637
|
[[package]]
|
|
645
638
|
name = "fastrand"
|
|
646
|
-
version = "2.0
|
|
639
|
+
version = "2.1.0"
|
|
647
640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
-
checksum = "
|
|
641
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
649
642
|
|
|
650
643
|
[[package]]
|
|
651
644
|
name = "filetime"
|
|
@@ -655,7 +648,7 @@ checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
|
|
|
655
648
|
dependencies = [
|
|
656
649
|
"cfg-if",
|
|
657
650
|
"libc",
|
|
658
|
-
"redox_syscall",
|
|
651
|
+
"redox_syscall 0.4.1",
|
|
659
652
|
"windows-sys 0.52.0",
|
|
660
653
|
]
|
|
661
654
|
|
|
@@ -667,12 +660,11 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
667
660
|
|
|
668
661
|
[[package]]
|
|
669
662
|
name = "flate2"
|
|
670
|
-
version = "1.0.
|
|
663
|
+
version = "1.0.31"
|
|
671
664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
-
checksum = "
|
|
665
|
+
checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920"
|
|
673
666
|
dependencies = [
|
|
674
667
|
"crc32fast",
|
|
675
|
-
"libz-ng-sys",
|
|
676
668
|
"miniz_oxide",
|
|
677
669
|
]
|
|
678
670
|
|
|
@@ -753,7 +745,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
|
753
745
|
dependencies = [
|
|
754
746
|
"proc-macro2",
|
|
755
747
|
"quote",
|
|
756
|
-
"syn 2.0.
|
|
748
|
+
"syn 2.0.72",
|
|
757
749
|
]
|
|
758
750
|
|
|
759
751
|
[[package]]
|
|
@@ -815,9 +807,9 @@ dependencies = [
|
|
|
815
807
|
|
|
816
808
|
[[package]]
|
|
817
809
|
name = "getrandom"
|
|
818
|
-
version = "0.2.
|
|
810
|
+
version = "0.2.15"
|
|
819
811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
-
checksum = "
|
|
812
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
821
813
|
dependencies = [
|
|
822
814
|
"cfg-if",
|
|
823
815
|
"libc",
|
|
@@ -826,9 +818,9 @@ dependencies = [
|
|
|
826
818
|
|
|
827
819
|
[[package]]
|
|
828
820
|
name = "gimli"
|
|
829
|
-
version = "0.
|
|
821
|
+
version = "0.29.0"
|
|
830
822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
-
checksum = "
|
|
823
|
+
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
|
|
832
824
|
|
|
833
825
|
[[package]]
|
|
834
826
|
name = "glob"
|
|
@@ -843,7 +835,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
843
835
|
checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b"
|
|
844
836
|
dependencies = [
|
|
845
837
|
"cfg-if",
|
|
846
|
-
"dashmap",
|
|
838
|
+
"dashmap 5.5.3",
|
|
847
839
|
"futures",
|
|
848
840
|
"futures-timer",
|
|
849
841
|
"no-std-compat",
|
|
@@ -858,36 +850,17 @@ dependencies = [
|
|
|
858
850
|
|
|
859
851
|
[[package]]
|
|
860
852
|
name = "h2"
|
|
861
|
-
version = "0.
|
|
862
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
-
checksum = "4fbd2820c5e49886948654ab546d0688ff24530286bdcf8fca3cefb16d4618eb"
|
|
864
|
-
dependencies = [
|
|
865
|
-
"bytes",
|
|
866
|
-
"fnv",
|
|
867
|
-
"futures-core",
|
|
868
|
-
"futures-sink",
|
|
869
|
-
"futures-util",
|
|
870
|
-
"http 0.2.12",
|
|
871
|
-
"indexmap 2.2.6",
|
|
872
|
-
"slab",
|
|
873
|
-
"tokio",
|
|
874
|
-
"tokio-util",
|
|
875
|
-
"tracing",
|
|
876
|
-
]
|
|
877
|
-
|
|
878
|
-
[[package]]
|
|
879
|
-
name = "h2"
|
|
880
|
-
version = "0.4.3"
|
|
853
|
+
version = "0.4.5"
|
|
881
854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
-
checksum = "
|
|
855
|
+
checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab"
|
|
883
856
|
dependencies = [
|
|
857
|
+
"atomic-waker",
|
|
884
858
|
"bytes",
|
|
885
859
|
"fnv",
|
|
886
860
|
"futures-core",
|
|
887
861
|
"futures-sink",
|
|
888
|
-
"
|
|
889
|
-
"
|
|
890
|
-
"indexmap 2.2.6",
|
|
862
|
+
"http",
|
|
863
|
+
"indexmap 2.3.0",
|
|
891
864
|
"slab",
|
|
892
865
|
"tokio",
|
|
893
866
|
"tokio-util",
|
|
@@ -902,9 +875,9 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
|
902
875
|
|
|
903
876
|
[[package]]
|
|
904
877
|
name = "hashbrown"
|
|
905
|
-
version = "0.14.
|
|
878
|
+
version = "0.14.5"
|
|
906
879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
-
checksum = "
|
|
880
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
908
881
|
dependencies = [
|
|
909
882
|
"ahash",
|
|
910
883
|
"allocator-api2",
|
|
@@ -912,9 +885,9 @@ dependencies = [
|
|
|
912
885
|
|
|
913
886
|
[[package]]
|
|
914
887
|
name = "heck"
|
|
915
|
-
version = "0.
|
|
888
|
+
version = "0.5.0"
|
|
916
889
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
-
checksum = "
|
|
890
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
918
891
|
|
|
919
892
|
[[package]]
|
|
920
893
|
name = "hermit-abi"
|
|
@@ -931,26 +904,6 @@ dependencies = [
|
|
|
931
904
|
"digest",
|
|
932
905
|
]
|
|
933
906
|
|
|
934
|
-
[[package]]
|
|
935
|
-
name = "home"
|
|
936
|
-
version = "0.5.9"
|
|
937
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
-
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
|
939
|
-
dependencies = [
|
|
940
|
-
"windows-sys 0.52.0",
|
|
941
|
-
]
|
|
942
|
-
|
|
943
|
-
[[package]]
|
|
944
|
-
name = "http"
|
|
945
|
-
version = "0.2.12"
|
|
946
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
-
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
948
|
-
dependencies = [
|
|
949
|
-
"bytes",
|
|
950
|
-
"fnv",
|
|
951
|
-
"itoa",
|
|
952
|
-
]
|
|
953
|
-
|
|
954
907
|
[[package]]
|
|
955
908
|
name = "http"
|
|
956
909
|
version = "1.1.0"
|
|
@@ -964,43 +917,32 @@ dependencies = [
|
|
|
964
917
|
|
|
965
918
|
[[package]]
|
|
966
919
|
name = "http-body"
|
|
967
|
-
version = "0.
|
|
968
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
-
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
970
|
-
dependencies = [
|
|
971
|
-
"bytes",
|
|
972
|
-
"http 0.2.12",
|
|
973
|
-
"pin-project-lite",
|
|
974
|
-
]
|
|
975
|
-
|
|
976
|
-
[[package]]
|
|
977
|
-
name = "http-body"
|
|
978
|
-
version = "1.0.0"
|
|
920
|
+
version = "1.0.1"
|
|
979
921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
-
checksum = "
|
|
922
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
981
923
|
dependencies = [
|
|
982
924
|
"bytes",
|
|
983
|
-
"http
|
|
925
|
+
"http",
|
|
984
926
|
]
|
|
985
927
|
|
|
986
928
|
[[package]]
|
|
987
929
|
name = "http-body-util"
|
|
988
|
-
version = "0.1.
|
|
930
|
+
version = "0.1.2"
|
|
989
931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
-
checksum = "
|
|
932
|
+
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
|
|
991
933
|
dependencies = [
|
|
992
934
|
"bytes",
|
|
993
|
-
"futures-
|
|
994
|
-
"http
|
|
995
|
-
"http-body
|
|
935
|
+
"futures-util",
|
|
936
|
+
"http",
|
|
937
|
+
"http-body",
|
|
996
938
|
"pin-project-lite",
|
|
997
939
|
]
|
|
998
940
|
|
|
999
941
|
[[package]]
|
|
1000
942
|
name = "httparse"
|
|
1001
|
-
version = "1.
|
|
943
|
+
version = "1.9.4"
|
|
1002
944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
-
checksum = "
|
|
945
|
+
checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
|
|
1004
946
|
|
|
1005
947
|
[[package]]
|
|
1006
948
|
name = "httpdate"
|
|
@@ -1010,88 +952,74 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
1010
952
|
|
|
1011
953
|
[[package]]
|
|
1012
954
|
name = "hyper"
|
|
1013
|
-
version = "
|
|
1014
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
-
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
|
|
1016
|
-
dependencies = [
|
|
1017
|
-
"bytes",
|
|
1018
|
-
"futures-channel",
|
|
1019
|
-
"futures-core",
|
|
1020
|
-
"futures-util",
|
|
1021
|
-
"h2 0.3.25",
|
|
1022
|
-
"http 0.2.12",
|
|
1023
|
-
"http-body 0.4.6",
|
|
1024
|
-
"httparse",
|
|
1025
|
-
"httpdate",
|
|
1026
|
-
"itoa",
|
|
1027
|
-
"pin-project-lite",
|
|
1028
|
-
"socket2",
|
|
1029
|
-
"tokio",
|
|
1030
|
-
"tower-service",
|
|
1031
|
-
"tracing",
|
|
1032
|
-
"want",
|
|
1033
|
-
]
|
|
1034
|
-
|
|
1035
|
-
[[package]]
|
|
1036
|
-
name = "hyper"
|
|
1037
|
-
version = "1.2.0"
|
|
955
|
+
version = "1.4.1"
|
|
1038
956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
-
checksum = "
|
|
957
|
+
checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05"
|
|
1040
958
|
dependencies = [
|
|
1041
959
|
"bytes",
|
|
1042
960
|
"futures-channel",
|
|
1043
961
|
"futures-util",
|
|
1044
|
-
"h2
|
|
1045
|
-
"http
|
|
1046
|
-
"http-body
|
|
962
|
+
"h2",
|
|
963
|
+
"http",
|
|
964
|
+
"http-body",
|
|
1047
965
|
"httparse",
|
|
1048
966
|
"httpdate",
|
|
1049
967
|
"itoa",
|
|
1050
968
|
"pin-project-lite",
|
|
1051
969
|
"smallvec",
|
|
1052
970
|
"tokio",
|
|
971
|
+
"want",
|
|
1053
972
|
]
|
|
1054
973
|
|
|
1055
974
|
[[package]]
|
|
1056
975
|
name = "hyper-rustls"
|
|
1057
|
-
version = "0.
|
|
976
|
+
version = "0.27.2"
|
|
1058
977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
-
checksum = "
|
|
978
|
+
checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155"
|
|
1060
979
|
dependencies = [
|
|
1061
980
|
"futures-util",
|
|
1062
|
-
"http
|
|
1063
|
-
"hyper
|
|
1064
|
-
"
|
|
981
|
+
"http",
|
|
982
|
+
"hyper",
|
|
983
|
+
"hyper-util",
|
|
984
|
+
"rustls",
|
|
985
|
+
"rustls-pki-types",
|
|
1065
986
|
"tokio",
|
|
1066
|
-
"tokio-rustls
|
|
987
|
+
"tokio-rustls",
|
|
988
|
+
"tower-service",
|
|
989
|
+
"webpki-roots",
|
|
1067
990
|
]
|
|
1068
991
|
|
|
1069
992
|
[[package]]
|
|
1070
993
|
name = "hyper-timeout"
|
|
1071
|
-
version = "0.
|
|
994
|
+
version = "0.5.1"
|
|
1072
995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
-
checksum = "
|
|
996
|
+
checksum = "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793"
|
|
1074
997
|
dependencies = [
|
|
1075
|
-
"hyper
|
|
998
|
+
"hyper",
|
|
999
|
+
"hyper-util",
|
|
1076
1000
|
"pin-project-lite",
|
|
1077
1001
|
"tokio",
|
|
1078
|
-
"
|
|
1002
|
+
"tower-service",
|
|
1079
1003
|
]
|
|
1080
1004
|
|
|
1081
1005
|
[[package]]
|
|
1082
1006
|
name = "hyper-util"
|
|
1083
|
-
version = "0.1.
|
|
1007
|
+
version = "0.1.7"
|
|
1084
1008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
-
checksum = "
|
|
1009
|
+
checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9"
|
|
1086
1010
|
dependencies = [
|
|
1087
1011
|
"bytes",
|
|
1012
|
+
"futures-channel",
|
|
1088
1013
|
"futures-util",
|
|
1089
|
-
"http
|
|
1090
|
-
"http-body
|
|
1091
|
-
"hyper
|
|
1014
|
+
"http",
|
|
1015
|
+
"http-body",
|
|
1016
|
+
"hyper",
|
|
1092
1017
|
"pin-project-lite",
|
|
1093
1018
|
"socket2",
|
|
1094
1019
|
"tokio",
|
|
1020
|
+
"tower",
|
|
1021
|
+
"tower-service",
|
|
1022
|
+
"tracing",
|
|
1095
1023
|
]
|
|
1096
1024
|
|
|
1097
1025
|
[[package]]
|
|
@@ -1122,12 +1050,12 @@ dependencies = [
|
|
|
1122
1050
|
|
|
1123
1051
|
[[package]]
|
|
1124
1052
|
name = "indexmap"
|
|
1125
|
-
version = "2.
|
|
1053
|
+
version = "2.3.0"
|
|
1126
1054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
-
checksum = "
|
|
1055
|
+
checksum = "de3fc2e30ba82dd1b3911c8de1ffc143c74a914a14e99514d7637e3099df5ea0"
|
|
1128
1056
|
dependencies = [
|
|
1129
1057
|
"equivalent",
|
|
1130
|
-
"hashbrown 0.14.
|
|
1058
|
+
"hashbrown 0.14.5",
|
|
1131
1059
|
]
|
|
1132
1060
|
|
|
1133
1061
|
[[package]]
|
|
@@ -1141,9 +1069,9 @@ dependencies = [
|
|
|
1141
1069
|
|
|
1142
1070
|
[[package]]
|
|
1143
1071
|
name = "instant"
|
|
1144
|
-
version = "0.1.
|
|
1072
|
+
version = "0.1.13"
|
|
1145
1073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
-
checksum = "
|
|
1074
|
+
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
|
1147
1075
|
dependencies = [
|
|
1148
1076
|
"cfg-if",
|
|
1149
1077
|
]
|
|
@@ -1162,18 +1090,9 @@ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|
|
1162
1090
|
|
|
1163
1091
|
[[package]]
|
|
1164
1092
|
name = "itertools"
|
|
1165
|
-
version = "0.
|
|
1166
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
-
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
1168
|
-
dependencies = [
|
|
1169
|
-
"either",
|
|
1170
|
-
]
|
|
1171
|
-
|
|
1172
|
-
[[package]]
|
|
1173
|
-
name = "itertools"
|
|
1174
|
-
version = "0.12.1"
|
|
1093
|
+
version = "0.13.0"
|
|
1175
1094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
-
checksum = "
|
|
1095
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1177
1096
|
dependencies = [
|
|
1178
1097
|
"either",
|
|
1179
1098
|
]
|
|
@@ -1186,9 +1105,9 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
|
1186
1105
|
|
|
1187
1106
|
[[package]]
|
|
1188
1107
|
name = "jobserver"
|
|
1189
|
-
version = "0.1.
|
|
1108
|
+
version = "0.1.32"
|
|
1190
1109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
-
checksum = "
|
|
1110
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
|
1192
1111
|
dependencies = [
|
|
1193
1112
|
"libc",
|
|
1194
1113
|
]
|
|
@@ -1204,15 +1123,15 @@ dependencies = [
|
|
|
1204
1123
|
|
|
1205
1124
|
[[package]]
|
|
1206
1125
|
name = "lazy_static"
|
|
1207
|
-
version = "1.
|
|
1126
|
+
version = "1.5.0"
|
|
1208
1127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
-
checksum = "
|
|
1128
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1210
1129
|
|
|
1211
1130
|
[[package]]
|
|
1212
1131
|
name = "libc"
|
|
1213
|
-
version = "0.2.
|
|
1132
|
+
version = "0.2.155"
|
|
1214
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
-
checksum = "
|
|
1134
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
|
1216
1135
|
|
|
1217
1136
|
[[package]]
|
|
1218
1137
|
name = "libloading"
|
|
@@ -1224,27 +1143,17 @@ dependencies = [
|
|
|
1224
1143
|
"winapi",
|
|
1225
1144
|
]
|
|
1226
1145
|
|
|
1227
|
-
[[package]]
|
|
1228
|
-
name = "libz-ng-sys"
|
|
1229
|
-
version = "1.1.15"
|
|
1230
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
-
checksum = "c6409efc61b12687963e602df8ecf70e8ddacf95bc6576bcf16e3ac6328083c5"
|
|
1232
|
-
dependencies = [
|
|
1233
|
-
"cmake",
|
|
1234
|
-
"libc",
|
|
1235
|
-
]
|
|
1236
|
-
|
|
1237
1146
|
[[package]]
|
|
1238
1147
|
name = "linux-raw-sys"
|
|
1239
|
-
version = "0.4.
|
|
1148
|
+
version = "0.4.14"
|
|
1240
1149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
-
checksum = "
|
|
1150
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
1242
1151
|
|
|
1243
1152
|
[[package]]
|
|
1244
1153
|
name = "lock_api"
|
|
1245
|
-
version = "0.4.
|
|
1154
|
+
version = "0.4.12"
|
|
1246
1155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1247
|
-
checksum = "
|
|
1156
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
1248
1157
|
dependencies = [
|
|
1249
1158
|
"autocfg",
|
|
1250
1159
|
"scopeguard",
|
|
@@ -1258,17 +1167,17 @@ checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
|
|
|
1258
1167
|
|
|
1259
1168
|
[[package]]
|
|
1260
1169
|
name = "log"
|
|
1261
|
-
version = "0.4.
|
|
1170
|
+
version = "0.4.22"
|
|
1262
1171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
-
checksum = "
|
|
1172
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
1264
1173
|
|
|
1265
1174
|
[[package]]
|
|
1266
1175
|
name = "lru"
|
|
1267
|
-
version = "0.12.
|
|
1176
|
+
version = "0.12.4"
|
|
1268
1177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
-
checksum = "
|
|
1178
|
+
checksum = "37ee39891760e7d94734f6f63fedc29a2e4a152f836120753a72503f09fcf904"
|
|
1270
1179
|
dependencies = [
|
|
1271
|
-
"hashbrown 0.14.
|
|
1180
|
+
"hashbrown 0.14.5",
|
|
1272
1181
|
]
|
|
1273
1182
|
|
|
1274
1183
|
[[package]]
|
|
@@ -1298,9 +1207,9 @@ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
|
1298
1207
|
|
|
1299
1208
|
[[package]]
|
|
1300
1209
|
name = "memchr"
|
|
1301
|
-
version = "2.7.
|
|
1210
|
+
version = "2.7.4"
|
|
1302
1211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
-
checksum = "
|
|
1212
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
1304
1213
|
|
|
1305
1214
|
[[package]]
|
|
1306
1215
|
name = "mime"
|
|
@@ -1310,22 +1219,23 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
|
1310
1219
|
|
|
1311
1220
|
[[package]]
|
|
1312
1221
|
name = "miniz_oxide"
|
|
1313
|
-
version = "0.7.
|
|
1222
|
+
version = "0.7.4"
|
|
1314
1223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
-
checksum = "
|
|
1224
|
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
|
1316
1225
|
dependencies = [
|
|
1317
1226
|
"adler",
|
|
1318
1227
|
]
|
|
1319
1228
|
|
|
1320
1229
|
[[package]]
|
|
1321
1230
|
name = "mio"
|
|
1322
|
-
version = "0.
|
|
1231
|
+
version = "1.0.1"
|
|
1323
1232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
-
checksum = "
|
|
1233
|
+
checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4"
|
|
1325
1234
|
dependencies = [
|
|
1235
|
+
"hermit-abi",
|
|
1326
1236
|
"libc",
|
|
1327
1237
|
"wasi",
|
|
1328
|
-
"windows-sys 0.
|
|
1238
|
+
"windows-sys 0.52.0",
|
|
1329
1239
|
]
|
|
1330
1240
|
|
|
1331
1241
|
[[package]]
|
|
@@ -1352,14 +1262,14 @@ dependencies = [
|
|
|
1352
1262
|
"cfg-if",
|
|
1353
1263
|
"proc-macro2",
|
|
1354
1264
|
"quote",
|
|
1355
|
-
"syn 2.0.
|
|
1265
|
+
"syn 2.0.72",
|
|
1356
1266
|
]
|
|
1357
1267
|
|
|
1358
1268
|
[[package]]
|
|
1359
1269
|
name = "multimap"
|
|
1360
|
-
version = "0.
|
|
1270
|
+
version = "0.10.0"
|
|
1361
1271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
-
checksum = "
|
|
1272
|
+
checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
|
|
1363
1273
|
|
|
1364
1274
|
[[package]]
|
|
1365
1275
|
name = "neon"
|
|
@@ -1402,18 +1312,6 @@ dependencies = [
|
|
|
1402
1312
|
"smallvec",
|
|
1403
1313
|
]
|
|
1404
1314
|
|
|
1405
|
-
[[package]]
|
|
1406
|
-
name = "nix"
|
|
1407
|
-
version = "0.28.0"
|
|
1408
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
-
checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
|
|
1410
|
-
dependencies = [
|
|
1411
|
-
"bitflags 2.5.0",
|
|
1412
|
-
"cfg-if",
|
|
1413
|
-
"cfg_aliases",
|
|
1414
|
-
"libc",
|
|
1415
|
-
]
|
|
1416
|
-
|
|
1417
1315
|
[[package]]
|
|
1418
1316
|
name = "no-std-compat"
|
|
1419
1317
|
version = "0.4.1"
|
|
@@ -1453,28 +1351,18 @@ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
|
1453
1351
|
|
|
1454
1352
|
[[package]]
|
|
1455
1353
|
name = "num-traits"
|
|
1456
|
-
version = "0.2.
|
|
1354
|
+
version = "0.2.19"
|
|
1457
1355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1458
|
-
checksum = "
|
|
1356
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1459
1357
|
dependencies = [
|
|
1460
1358
|
"autocfg",
|
|
1461
1359
|
]
|
|
1462
1360
|
|
|
1463
|
-
[[package]]
|
|
1464
|
-
name = "num_cpus"
|
|
1465
|
-
version = "1.16.0"
|
|
1466
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
-
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
1468
|
-
dependencies = [
|
|
1469
|
-
"hermit-abi",
|
|
1470
|
-
"libc",
|
|
1471
|
-
]
|
|
1472
|
-
|
|
1473
1361
|
[[package]]
|
|
1474
1362
|
name = "object"
|
|
1475
|
-
version = "0.
|
|
1363
|
+
version = "0.36.3"
|
|
1476
1364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
|
-
checksum = "
|
|
1365
|
+
checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9"
|
|
1478
1366
|
dependencies = [
|
|
1479
1367
|
"memchr",
|
|
1480
1368
|
]
|
|
@@ -1493,9 +1381,23 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
|
1493
1381
|
|
|
1494
1382
|
[[package]]
|
|
1495
1383
|
name = "opentelemetry"
|
|
1496
|
-
version = "0.
|
|
1384
|
+
version = "0.23.0"
|
|
1497
1385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
-
checksum = "
|
|
1386
|
+
checksum = "1b69a91d4893e713e06f724597ad630f1fa76057a5e1026c0ca67054a9032a76"
|
|
1387
|
+
dependencies = [
|
|
1388
|
+
"futures-core",
|
|
1389
|
+
"futures-sink",
|
|
1390
|
+
"js-sys",
|
|
1391
|
+
"once_cell",
|
|
1392
|
+
"pin-project-lite",
|
|
1393
|
+
"thiserror",
|
|
1394
|
+
]
|
|
1395
|
+
|
|
1396
|
+
[[package]]
|
|
1397
|
+
name = "opentelemetry"
|
|
1398
|
+
version = "0.24.0"
|
|
1399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
+
checksum = "4c365a63eec4f55b7efeceb724f1336f26a9cf3427b70e59e2cd2a5b947fba96"
|
|
1499
1401
|
dependencies = [
|
|
1500
1402
|
"futures-core",
|
|
1501
1403
|
"futures-sink",
|
|
@@ -1503,21 +1405,19 @@ dependencies = [
|
|
|
1503
1405
|
"once_cell",
|
|
1504
1406
|
"pin-project-lite",
|
|
1505
1407
|
"thiserror",
|
|
1506
|
-
"urlencoding",
|
|
1507
1408
|
]
|
|
1508
1409
|
|
|
1509
1410
|
[[package]]
|
|
1510
1411
|
name = "opentelemetry-otlp"
|
|
1511
|
-
version = "0.
|
|
1412
|
+
version = "0.17.0"
|
|
1512
1413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
-
checksum = "
|
|
1414
|
+
checksum = "6b925a602ffb916fb7421276b86756027b37ee708f9dce2dbdcc51739f07e727"
|
|
1514
1415
|
dependencies = [
|
|
1515
1416
|
"async-trait",
|
|
1516
1417
|
"futures-core",
|
|
1517
|
-
"http
|
|
1518
|
-
"opentelemetry",
|
|
1418
|
+
"http",
|
|
1419
|
+
"opentelemetry 0.24.0",
|
|
1519
1420
|
"opentelemetry-proto",
|
|
1520
|
-
"opentelemetry-semantic-conventions",
|
|
1521
1421
|
"opentelemetry_sdk",
|
|
1522
1422
|
"prost",
|
|
1523
1423
|
"thiserror",
|
|
@@ -1527,12 +1427,12 @@ dependencies = [
|
|
|
1527
1427
|
|
|
1528
1428
|
[[package]]
|
|
1529
1429
|
name = "opentelemetry-prometheus"
|
|
1530
|
-
version = "0.
|
|
1430
|
+
version = "0.17.0"
|
|
1531
1431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
-
checksum = "
|
|
1432
|
+
checksum = "cc4191ce34aa274621861a7a9d68dbcf618d5b6c66b10081631b61fd81fbc015"
|
|
1533
1433
|
dependencies = [
|
|
1534
1434
|
"once_cell",
|
|
1535
|
-
"opentelemetry",
|
|
1435
|
+
"opentelemetry 0.24.0",
|
|
1536
1436
|
"opentelemetry_sdk",
|
|
1537
1437
|
"prometheus",
|
|
1538
1438
|
"protobuf",
|
|
@@ -1540,53 +1440,37 @@ dependencies = [
|
|
|
1540
1440
|
|
|
1541
1441
|
[[package]]
|
|
1542
1442
|
name = "opentelemetry-proto"
|
|
1543
|
-
version = "0.
|
|
1443
|
+
version = "0.7.0"
|
|
1544
1444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
-
checksum = "
|
|
1445
|
+
checksum = "30ee9f20bff9c984511a02f082dc8ede839e4a9bf15cc2487c8d6fea5ad850d9"
|
|
1546
1446
|
dependencies = [
|
|
1547
|
-
"opentelemetry",
|
|
1447
|
+
"opentelemetry 0.24.0",
|
|
1548
1448
|
"opentelemetry_sdk",
|
|
1549
1449
|
"prost",
|
|
1550
1450
|
"tonic",
|
|
1551
1451
|
]
|
|
1552
1452
|
|
|
1553
|
-
[[package]]
|
|
1554
|
-
name = "opentelemetry-semantic-conventions"
|
|
1555
|
-
version = "0.14.0"
|
|
1556
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1557
|
-
checksum = "f9ab5bd6c42fb9349dcf28af2ba9a0667f697f9bdcca045d39f2cec5543e2910"
|
|
1558
|
-
|
|
1559
1453
|
[[package]]
|
|
1560
1454
|
name = "opentelemetry_sdk"
|
|
1561
|
-
version = "0.
|
|
1455
|
+
version = "0.24.1"
|
|
1562
1456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1563
|
-
checksum = "
|
|
1457
|
+
checksum = "692eac490ec80f24a17828d49b40b60f5aeaccdfe6a503f939713afd22bc28df"
|
|
1564
1458
|
dependencies = [
|
|
1565
1459
|
"async-trait",
|
|
1566
|
-
"crossbeam-channel",
|
|
1567
1460
|
"futures-channel",
|
|
1568
1461
|
"futures-executor",
|
|
1569
1462
|
"futures-util",
|
|
1570
1463
|
"glob",
|
|
1571
1464
|
"once_cell",
|
|
1572
|
-
"opentelemetry",
|
|
1573
|
-
"ordered-float",
|
|
1465
|
+
"opentelemetry 0.24.0",
|
|
1574
1466
|
"percent-encoding",
|
|
1575
1467
|
"rand",
|
|
1468
|
+
"serde_json",
|
|
1576
1469
|
"thiserror",
|
|
1577
1470
|
"tokio",
|
|
1578
1471
|
"tokio-stream",
|
|
1579
1472
|
]
|
|
1580
1473
|
|
|
1581
|
-
[[package]]
|
|
1582
|
-
name = "ordered-float"
|
|
1583
|
-
version = "4.2.0"
|
|
1584
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1585
|
-
checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e"
|
|
1586
|
-
dependencies = [
|
|
1587
|
-
"num-traits",
|
|
1588
|
-
]
|
|
1589
|
-
|
|
1590
1474
|
[[package]]
|
|
1591
1475
|
name = "overload"
|
|
1592
1476
|
version = "0.1.1"
|
|
@@ -1595,9 +1479,9 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
|
1595
1479
|
|
|
1596
1480
|
[[package]]
|
|
1597
1481
|
name = "parking_lot"
|
|
1598
|
-
version = "0.12.
|
|
1482
|
+
version = "0.12.3"
|
|
1599
1483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
-
checksum = "
|
|
1484
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
1601
1485
|
dependencies = [
|
|
1602
1486
|
"lock_api",
|
|
1603
1487
|
"parking_lot_core",
|
|
@@ -1605,15 +1489,15 @@ dependencies = [
|
|
|
1605
1489
|
|
|
1606
1490
|
[[package]]
|
|
1607
1491
|
name = "parking_lot_core"
|
|
1608
|
-
version = "0.9.
|
|
1492
|
+
version = "0.9.10"
|
|
1609
1493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
-
checksum = "
|
|
1494
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
1611
1495
|
dependencies = [
|
|
1612
1496
|
"cfg-if",
|
|
1613
1497
|
"libc",
|
|
1614
|
-
"redox_syscall",
|
|
1498
|
+
"redox_syscall 0.5.3",
|
|
1615
1499
|
"smallvec",
|
|
1616
|
-
"windows-targets 0.
|
|
1500
|
+
"windows-targets 0.52.6",
|
|
1617
1501
|
]
|
|
1618
1502
|
|
|
1619
1503
|
[[package]]
|
|
@@ -1634,12 +1518,12 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1634
1518
|
|
|
1635
1519
|
[[package]]
|
|
1636
1520
|
name = "petgraph"
|
|
1637
|
-
version = "0.6.
|
|
1521
|
+
version = "0.6.5"
|
|
1638
1522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
-
checksum = "
|
|
1523
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
1640
1524
|
dependencies = [
|
|
1641
1525
|
"fixedbitset",
|
|
1642
|
-
"indexmap 2.
|
|
1526
|
+
"indexmap 2.3.0",
|
|
1643
1527
|
]
|
|
1644
1528
|
|
|
1645
1529
|
[[package]]
|
|
@@ -1668,14 +1552,14 @@ checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
|
|
1668
1552
|
dependencies = [
|
|
1669
1553
|
"proc-macro2",
|
|
1670
1554
|
"quote",
|
|
1671
|
-
"syn 2.0.
|
|
1555
|
+
"syn 2.0.72",
|
|
1672
1556
|
]
|
|
1673
1557
|
|
|
1674
1558
|
[[package]]
|
|
1675
1559
|
name = "pin-project-lite"
|
|
1676
|
-
version = "0.2.
|
|
1560
|
+
version = "0.2.14"
|
|
1677
1561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
-
checksum = "
|
|
1562
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
|
1679
1563
|
|
|
1680
1564
|
[[package]]
|
|
1681
1565
|
name = "pin-utils"
|
|
@@ -1691,9 +1575,9 @@ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
|
1691
1575
|
|
|
1692
1576
|
[[package]]
|
|
1693
1577
|
name = "portable-atomic"
|
|
1694
|
-
version = "1.
|
|
1578
|
+
version = "1.7.0"
|
|
1695
1579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
-
checksum = "
|
|
1580
|
+
checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
|
|
1697
1581
|
|
|
1698
1582
|
[[package]]
|
|
1699
1583
|
name = "powerfmt"
|
|
@@ -1703,15 +1587,18 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
1703
1587
|
|
|
1704
1588
|
[[package]]
|
|
1705
1589
|
name = "ppv-lite86"
|
|
1706
|
-
version = "0.2.
|
|
1590
|
+
version = "0.2.20"
|
|
1707
1591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
-
checksum = "
|
|
1592
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
|
1593
|
+
dependencies = [
|
|
1594
|
+
"zerocopy",
|
|
1595
|
+
]
|
|
1709
1596
|
|
|
1710
1597
|
[[package]]
|
|
1711
1598
|
name = "predicates"
|
|
1712
|
-
version = "3.1.
|
|
1599
|
+
version = "3.1.2"
|
|
1713
1600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1714
|
-
checksum = "
|
|
1601
|
+
checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97"
|
|
1715
1602
|
dependencies = [
|
|
1716
1603
|
"anstyle",
|
|
1717
1604
|
"predicates-core",
|
|
@@ -1719,15 +1606,15 @@ dependencies = [
|
|
|
1719
1606
|
|
|
1720
1607
|
[[package]]
|
|
1721
1608
|
name = "predicates-core"
|
|
1722
|
-
version = "1.0.
|
|
1609
|
+
version = "1.0.8"
|
|
1723
1610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
-
checksum = "
|
|
1611
|
+
checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931"
|
|
1725
1612
|
|
|
1726
1613
|
[[package]]
|
|
1727
1614
|
name = "predicates-tree"
|
|
1728
|
-
version = "1.0.
|
|
1615
|
+
version = "1.0.11"
|
|
1729
1616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
-
checksum = "
|
|
1617
|
+
checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13"
|
|
1731
1618
|
dependencies = [
|
|
1732
1619
|
"predicates-core",
|
|
1733
1620
|
"termtree",
|
|
@@ -1735,28 +1622,28 @@ dependencies = [
|
|
|
1735
1622
|
|
|
1736
1623
|
[[package]]
|
|
1737
1624
|
name = "prettyplease"
|
|
1738
|
-
version = "0.2.
|
|
1625
|
+
version = "0.2.20"
|
|
1739
1626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
-
checksum = "
|
|
1627
|
+
checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e"
|
|
1741
1628
|
dependencies = [
|
|
1742
1629
|
"proc-macro2",
|
|
1743
|
-
"syn 2.0.
|
|
1630
|
+
"syn 2.0.72",
|
|
1744
1631
|
]
|
|
1745
1632
|
|
|
1746
1633
|
[[package]]
|
|
1747
1634
|
name = "proc-macro2"
|
|
1748
|
-
version = "1.0.
|
|
1635
|
+
version = "1.0.86"
|
|
1749
1636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
-
checksum = "
|
|
1637
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
|
1751
1638
|
dependencies = [
|
|
1752
1639
|
"unicode-ident",
|
|
1753
1640
|
]
|
|
1754
1641
|
|
|
1755
1642
|
[[package]]
|
|
1756
1643
|
name = "prometheus"
|
|
1757
|
-
version = "0.13.
|
|
1644
|
+
version = "0.13.4"
|
|
1758
1645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1759
|
-
checksum = "
|
|
1646
|
+
checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
|
|
1760
1647
|
dependencies = [
|
|
1761
1648
|
"cfg-if",
|
|
1762
1649
|
"fnv",
|
|
@@ -1769,9 +1656,9 @@ dependencies = [
|
|
|
1769
1656
|
|
|
1770
1657
|
[[package]]
|
|
1771
1658
|
name = "prost"
|
|
1772
|
-
version = "0.
|
|
1659
|
+
version = "0.13.1"
|
|
1773
1660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
|
-
checksum = "
|
|
1661
|
+
checksum = "e13db3d3fde688c61e2446b4d843bc27a7e8af269a69440c0308021dc92333cc"
|
|
1775
1662
|
dependencies = [
|
|
1776
1663
|
"bytes",
|
|
1777
1664
|
"prost-derive",
|
|
@@ -1779,13 +1666,13 @@ dependencies = [
|
|
|
1779
1666
|
|
|
1780
1667
|
[[package]]
|
|
1781
1668
|
name = "prost-build"
|
|
1782
|
-
version = "0.
|
|
1669
|
+
version = "0.13.1"
|
|
1783
1670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
|
-
checksum = "
|
|
1671
|
+
checksum = "5bb182580f71dd070f88d01ce3de9f4da5021db7115d2e1c3605a754153b77c1"
|
|
1785
1672
|
dependencies = [
|
|
1786
1673
|
"bytes",
|
|
1787
1674
|
"heck",
|
|
1788
|
-
"itertools
|
|
1675
|
+
"itertools",
|
|
1789
1676
|
"log",
|
|
1790
1677
|
"multimap",
|
|
1791
1678
|
"once_cell",
|
|
@@ -1794,38 +1681,37 @@ dependencies = [
|
|
|
1794
1681
|
"prost",
|
|
1795
1682
|
"prost-types",
|
|
1796
1683
|
"regex",
|
|
1797
|
-
"syn 2.0.
|
|
1684
|
+
"syn 2.0.72",
|
|
1798
1685
|
"tempfile",
|
|
1799
|
-
"which",
|
|
1800
1686
|
]
|
|
1801
1687
|
|
|
1802
1688
|
[[package]]
|
|
1803
1689
|
name = "prost-derive"
|
|
1804
|
-
version = "0.
|
|
1690
|
+
version = "0.13.1"
|
|
1805
1691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
-
checksum = "
|
|
1692
|
+
checksum = "18bec9b0adc4eba778b33684b7ba3e7137789434769ee3ce3930463ef904cfca"
|
|
1807
1693
|
dependencies = [
|
|
1808
1694
|
"anyhow",
|
|
1809
|
-
"itertools
|
|
1695
|
+
"itertools",
|
|
1810
1696
|
"proc-macro2",
|
|
1811
1697
|
"quote",
|
|
1812
|
-
"syn 2.0.
|
|
1698
|
+
"syn 2.0.72",
|
|
1813
1699
|
]
|
|
1814
1700
|
|
|
1815
1701
|
[[package]]
|
|
1816
1702
|
name = "prost-types"
|
|
1817
|
-
version = "0.
|
|
1703
|
+
version = "0.13.1"
|
|
1818
1704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
-
checksum = "
|
|
1705
|
+
checksum = "cee5168b05f49d4b0ca581206eb14a7b22fafd963efe729ac48eb03266e25cc2"
|
|
1820
1706
|
dependencies = [
|
|
1821
1707
|
"prost",
|
|
1822
1708
|
]
|
|
1823
1709
|
|
|
1824
1710
|
[[package]]
|
|
1825
1711
|
name = "prost-wkt"
|
|
1826
|
-
version = "0.
|
|
1712
|
+
version = "0.6.0"
|
|
1827
1713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1828
|
-
checksum = "
|
|
1714
|
+
checksum = "a8d84e2bee181b04c2bac339f2bfe818c46a99750488cc6728ce4181d5aa8299"
|
|
1829
1715
|
dependencies = [
|
|
1830
1716
|
"chrono",
|
|
1831
1717
|
"inventory",
|
|
@@ -1838,9 +1724,9 @@ dependencies = [
|
|
|
1838
1724
|
|
|
1839
1725
|
[[package]]
|
|
1840
1726
|
name = "prost-wkt-build"
|
|
1841
|
-
version = "0.
|
|
1727
|
+
version = "0.6.0"
|
|
1842
1728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
-
checksum = "
|
|
1729
|
+
checksum = "8a669d5acbe719010c6f62a64e6d7d88fdedc1fe46e419747949ecb6312e9b14"
|
|
1844
1730
|
dependencies = [
|
|
1845
1731
|
"heck",
|
|
1846
1732
|
"prost",
|
|
@@ -1851,9 +1737,9 @@ dependencies = [
|
|
|
1851
1737
|
|
|
1852
1738
|
[[package]]
|
|
1853
1739
|
name = "prost-wkt-types"
|
|
1854
|
-
version = "0.
|
|
1740
|
+
version = "0.6.0"
|
|
1855
1741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
-
checksum = "
|
|
1742
|
+
checksum = "01ef068e9b82e654614b22e6b13699bd545b6c0e2e721736008b00b38aeb4f64"
|
|
1857
1743
|
dependencies = [
|
|
1858
1744
|
"chrono",
|
|
1859
1745
|
"prost",
|
|
@@ -1875,9 +1761,9 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
|
|
|
1875
1761
|
|
|
1876
1762
|
[[package]]
|
|
1877
1763
|
name = "quanta"
|
|
1878
|
-
version = "0.12.
|
|
1764
|
+
version = "0.12.3"
|
|
1879
1765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
-
checksum = "
|
|
1766
|
+
checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5"
|
|
1881
1767
|
dependencies = [
|
|
1882
1768
|
"crossbeam-utils",
|
|
1883
1769
|
"libc",
|
|
@@ -1888,11 +1774,59 @@ dependencies = [
|
|
|
1888
1774
|
"winapi",
|
|
1889
1775
|
]
|
|
1890
1776
|
|
|
1777
|
+
[[package]]
|
|
1778
|
+
name = "quinn"
|
|
1779
|
+
version = "0.11.3"
|
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
+
checksum = "b22d8e7369034b9a7132bc2008cac12f2013c8132b45e0554e6e20e2617f2156"
|
|
1782
|
+
dependencies = [
|
|
1783
|
+
"bytes",
|
|
1784
|
+
"pin-project-lite",
|
|
1785
|
+
"quinn-proto",
|
|
1786
|
+
"quinn-udp",
|
|
1787
|
+
"rustc-hash",
|
|
1788
|
+
"rustls",
|
|
1789
|
+
"socket2",
|
|
1790
|
+
"thiserror",
|
|
1791
|
+
"tokio",
|
|
1792
|
+
"tracing",
|
|
1793
|
+
]
|
|
1794
|
+
|
|
1795
|
+
[[package]]
|
|
1796
|
+
name = "quinn-proto"
|
|
1797
|
+
version = "0.11.6"
|
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
+
checksum = "ba92fb39ec7ad06ca2582c0ca834dfeadcaf06ddfc8e635c80aa7e1c05315fdd"
|
|
1800
|
+
dependencies = [
|
|
1801
|
+
"bytes",
|
|
1802
|
+
"rand",
|
|
1803
|
+
"ring",
|
|
1804
|
+
"rustc-hash",
|
|
1805
|
+
"rustls",
|
|
1806
|
+
"slab",
|
|
1807
|
+
"thiserror",
|
|
1808
|
+
"tinyvec",
|
|
1809
|
+
"tracing",
|
|
1810
|
+
]
|
|
1811
|
+
|
|
1812
|
+
[[package]]
|
|
1813
|
+
name = "quinn-udp"
|
|
1814
|
+
version = "0.5.4"
|
|
1815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
+
checksum = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285"
|
|
1817
|
+
dependencies = [
|
|
1818
|
+
"libc",
|
|
1819
|
+
"once_cell",
|
|
1820
|
+
"socket2",
|
|
1821
|
+
"tracing",
|
|
1822
|
+
"windows-sys 0.52.0",
|
|
1823
|
+
]
|
|
1824
|
+
|
|
1891
1825
|
[[package]]
|
|
1892
1826
|
name = "quote"
|
|
1893
|
-
version = "1.0.
|
|
1827
|
+
version = "1.0.36"
|
|
1894
1828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
-
checksum = "
|
|
1829
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
1896
1830
|
dependencies = [
|
|
1897
1831
|
"proc-macro2",
|
|
1898
1832
|
]
|
|
@@ -1929,11 +1863,11 @@ dependencies = [
|
|
|
1929
1863
|
|
|
1930
1864
|
[[package]]
|
|
1931
1865
|
name = "raw-cpuid"
|
|
1932
|
-
version = "11.0
|
|
1866
|
+
version = "11.1.0"
|
|
1933
1867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
-
checksum = "
|
|
1868
|
+
checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d"
|
|
1935
1869
|
dependencies = [
|
|
1936
|
-
"bitflags 2.
|
|
1870
|
+
"bitflags 2.6.0",
|
|
1937
1871
|
]
|
|
1938
1872
|
|
|
1939
1873
|
[[package]]
|
|
@@ -1965,16 +1899,25 @@ dependencies = [
|
|
|
1965
1899
|
"bitflags 1.3.2",
|
|
1966
1900
|
]
|
|
1967
1901
|
|
|
1902
|
+
[[package]]
|
|
1903
|
+
name = "redox_syscall"
|
|
1904
|
+
version = "0.5.3"
|
|
1905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1906
|
+
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
|
|
1907
|
+
dependencies = [
|
|
1908
|
+
"bitflags 2.6.0",
|
|
1909
|
+
]
|
|
1910
|
+
|
|
1968
1911
|
[[package]]
|
|
1969
1912
|
name = "regex"
|
|
1970
|
-
version = "1.10.
|
|
1913
|
+
version = "1.10.6"
|
|
1971
1914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
|
-
checksum = "
|
|
1915
|
+
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
|
|
1973
1916
|
dependencies = [
|
|
1974
1917
|
"aho-corasick",
|
|
1975
1918
|
"memchr",
|
|
1976
|
-
"regex-automata 0.4.
|
|
1977
|
-
"regex-syntax 0.8.
|
|
1919
|
+
"regex-automata 0.4.7",
|
|
1920
|
+
"regex-syntax 0.8.4",
|
|
1978
1921
|
]
|
|
1979
1922
|
|
|
1980
1923
|
[[package]]
|
|
@@ -1988,13 +1931,13 @@ dependencies = [
|
|
|
1988
1931
|
|
|
1989
1932
|
[[package]]
|
|
1990
1933
|
name = "regex-automata"
|
|
1991
|
-
version = "0.4.
|
|
1934
|
+
version = "0.4.7"
|
|
1992
1935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
|
-
checksum = "
|
|
1936
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
|
1994
1937
|
dependencies = [
|
|
1995
1938
|
"aho-corasick",
|
|
1996
1939
|
"memchr",
|
|
1997
|
-
"regex-syntax 0.8.
|
|
1940
|
+
"regex-syntax 0.8.4",
|
|
1998
1941
|
]
|
|
1999
1942
|
|
|
2000
1943
|
[[package]]
|
|
@@ -2005,26 +1948,26 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
|
2005
1948
|
|
|
2006
1949
|
[[package]]
|
|
2007
1950
|
name = "regex-syntax"
|
|
2008
|
-
version = "0.8.
|
|
1951
|
+
version = "0.8.4"
|
|
2009
1952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
-
checksum = "
|
|
1953
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
|
2011
1954
|
|
|
2012
1955
|
[[package]]
|
|
2013
1956
|
name = "reqwest"
|
|
2014
|
-
version = "0.
|
|
1957
|
+
version = "0.12.5"
|
|
2015
1958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
-
checksum = "
|
|
1959
|
+
checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37"
|
|
2017
1960
|
dependencies = [
|
|
2018
|
-
"base64
|
|
1961
|
+
"base64",
|
|
2019
1962
|
"bytes",
|
|
2020
|
-
"encoding_rs",
|
|
2021
1963
|
"futures-core",
|
|
2022
1964
|
"futures-util",
|
|
2023
|
-
"
|
|
2024
|
-
"http
|
|
2025
|
-
"http-body
|
|
2026
|
-
"hyper
|
|
1965
|
+
"http",
|
|
1966
|
+
"http-body",
|
|
1967
|
+
"http-body-util",
|
|
1968
|
+
"hyper",
|
|
2027
1969
|
"hyper-rustls",
|
|
1970
|
+
"hyper-util",
|
|
2028
1971
|
"ipnet",
|
|
2029
1972
|
"js-sys",
|
|
2030
1973
|
"log",
|
|
@@ -2032,15 +1975,16 @@ dependencies = [
|
|
|
2032
1975
|
"once_cell",
|
|
2033
1976
|
"percent-encoding",
|
|
2034
1977
|
"pin-project-lite",
|
|
2035
|
-
"
|
|
2036
|
-
"rustls
|
|
1978
|
+
"quinn",
|
|
1979
|
+
"rustls",
|
|
1980
|
+
"rustls-pemfile",
|
|
1981
|
+
"rustls-pki-types",
|
|
2037
1982
|
"serde",
|
|
2038
1983
|
"serde_json",
|
|
2039
1984
|
"serde_urlencoded",
|
|
2040
|
-
"sync_wrapper",
|
|
2041
|
-
"system-configuration",
|
|
1985
|
+
"sync_wrapper 1.0.1",
|
|
2042
1986
|
"tokio",
|
|
2043
|
-
"tokio-rustls
|
|
1987
|
+
"tokio-rustls",
|
|
2044
1988
|
"tokio-util",
|
|
2045
1989
|
"tower-service",
|
|
2046
1990
|
"url",
|
|
@@ -2078,9 +2022,15 @@ dependencies = [
|
|
|
2078
2022
|
|
|
2079
2023
|
[[package]]
|
|
2080
2024
|
name = "rustc-demangle"
|
|
2081
|
-
version = "0.1.
|
|
2025
|
+
version = "0.1.24"
|
|
2082
2026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
|
-
checksum = "
|
|
2027
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
2028
|
+
|
|
2029
|
+
[[package]]
|
|
2030
|
+
name = "rustc-hash"
|
|
2031
|
+
version = "2.0.0"
|
|
2032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
+
checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
|
|
2084
2034
|
|
|
2085
2035
|
[[package]]
|
|
2086
2036
|
name = "rustc_version"
|
|
@@ -2088,7 +2038,7 @@ version = "0.4.0"
|
|
|
2088
2038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2089
2039
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
2090
2040
|
dependencies = [
|
|
2091
|
-
"semver 1.0.
|
|
2041
|
+
"semver 1.0.23",
|
|
2092
2042
|
]
|
|
2093
2043
|
|
|
2094
2044
|
[[package]]
|
|
@@ -2107,7 +2057,7 @@ dependencies = [
|
|
|
2107
2057
|
"proc-macro2",
|
|
2108
2058
|
"quote",
|
|
2109
2059
|
"rustfsm_trait",
|
|
2110
|
-
"syn 2.0.
|
|
2060
|
+
"syn 2.0.72",
|
|
2111
2061
|
]
|
|
2112
2062
|
|
|
2113
2063
|
[[package]]
|
|
@@ -2116,11 +2066,11 @@ version = "0.1.0"
|
|
|
2116
2066
|
|
|
2117
2067
|
[[package]]
|
|
2118
2068
|
name = "rustix"
|
|
2119
|
-
version = "0.38.
|
|
2069
|
+
version = "0.38.34"
|
|
2120
2070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
-
checksum = "
|
|
2071
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
2122
2072
|
dependencies = [
|
|
2123
|
-
"bitflags 2.
|
|
2073
|
+
"bitflags 2.6.0",
|
|
2124
2074
|
"errno",
|
|
2125
2075
|
"libc",
|
|
2126
2076
|
"linux-raw-sys",
|
|
@@ -2129,38 +2079,27 @@ dependencies = [
|
|
|
2129
2079
|
|
|
2130
2080
|
[[package]]
|
|
2131
2081
|
name = "rustls"
|
|
2132
|
-
version = "0.
|
|
2133
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2134
|
-
checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
|
|
2135
|
-
dependencies = [
|
|
2136
|
-
"log",
|
|
2137
|
-
"ring",
|
|
2138
|
-
"rustls-webpki 0.101.7",
|
|
2139
|
-
"sct",
|
|
2140
|
-
]
|
|
2141
|
-
|
|
2142
|
-
[[package]]
|
|
2143
|
-
name = "rustls"
|
|
2144
|
-
version = "0.22.3"
|
|
2082
|
+
version = "0.23.12"
|
|
2145
2083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
-
checksum = "
|
|
2084
|
+
checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"
|
|
2147
2085
|
dependencies = [
|
|
2148
2086
|
"log",
|
|
2087
|
+
"once_cell",
|
|
2149
2088
|
"ring",
|
|
2150
2089
|
"rustls-pki-types",
|
|
2151
|
-
"rustls-webpki
|
|
2090
|
+
"rustls-webpki",
|
|
2152
2091
|
"subtle",
|
|
2153
2092
|
"zeroize",
|
|
2154
2093
|
]
|
|
2155
2094
|
|
|
2156
2095
|
[[package]]
|
|
2157
2096
|
name = "rustls-native-certs"
|
|
2158
|
-
version = "0.7.
|
|
2097
|
+
version = "0.7.1"
|
|
2159
2098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2160
|
-
checksum = "
|
|
2099
|
+
checksum = "a88d6d420651b496bdd98684116959239430022a115c1240e6c3993be0b15fba"
|
|
2161
2100
|
dependencies = [
|
|
2162
2101
|
"openssl-probe",
|
|
2163
|
-
"rustls-pemfile
|
|
2102
|
+
"rustls-pemfile",
|
|
2164
2103
|
"rustls-pki-types",
|
|
2165
2104
|
"schannel",
|
|
2166
2105
|
"security-framework",
|
|
@@ -2168,44 +2107,25 @@ dependencies = [
|
|
|
2168
2107
|
|
|
2169
2108
|
[[package]]
|
|
2170
2109
|
name = "rustls-pemfile"
|
|
2171
|
-
version = "1.
|
|
2172
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
-
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
2174
|
-
dependencies = [
|
|
2175
|
-
"base64 0.21.7",
|
|
2176
|
-
]
|
|
2177
|
-
|
|
2178
|
-
[[package]]
|
|
2179
|
-
name = "rustls-pemfile"
|
|
2180
|
-
version = "2.1.1"
|
|
2110
|
+
version = "2.1.3"
|
|
2181
2111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2182
|
-
checksum = "
|
|
2112
|
+
checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425"
|
|
2183
2113
|
dependencies = [
|
|
2184
|
-
"base64
|
|
2114
|
+
"base64",
|
|
2185
2115
|
"rustls-pki-types",
|
|
2186
2116
|
]
|
|
2187
2117
|
|
|
2188
2118
|
[[package]]
|
|
2189
2119
|
name = "rustls-pki-types"
|
|
2190
|
-
version = "1.
|
|
2191
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
-
checksum = "ecd36cc4259e3e4514335c4a138c6b43171a8d61d8f5c9348f9fc7529416f247"
|
|
2193
|
-
|
|
2194
|
-
[[package]]
|
|
2195
|
-
name = "rustls-webpki"
|
|
2196
|
-
version = "0.101.7"
|
|
2120
|
+
version = "1.8.0"
|
|
2197
2121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2198
|
-
checksum = "
|
|
2199
|
-
dependencies = [
|
|
2200
|
-
"ring",
|
|
2201
|
-
"untrusted",
|
|
2202
|
-
]
|
|
2122
|
+
checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0"
|
|
2203
2123
|
|
|
2204
2124
|
[[package]]
|
|
2205
2125
|
name = "rustls-webpki"
|
|
2206
|
-
version = "0.102.
|
|
2126
|
+
version = "0.102.6"
|
|
2207
2127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2208
|
-
checksum = "
|
|
2128
|
+
checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e"
|
|
2209
2129
|
dependencies = [
|
|
2210
2130
|
"ring",
|
|
2211
2131
|
"rustls-pki-types",
|
|
@@ -2214,15 +2134,15 @@ dependencies = [
|
|
|
2214
2134
|
|
|
2215
2135
|
[[package]]
|
|
2216
2136
|
name = "rustversion"
|
|
2217
|
-
version = "1.0.
|
|
2137
|
+
version = "1.0.17"
|
|
2218
2138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
|
-
checksum = "
|
|
2139
|
+
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
|
|
2220
2140
|
|
|
2221
2141
|
[[package]]
|
|
2222
2142
|
name = "ryu"
|
|
2223
|
-
version = "1.0.
|
|
2143
|
+
version = "1.0.18"
|
|
2224
2144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2225
|
-
checksum = "
|
|
2145
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
2226
2146
|
|
|
2227
2147
|
[[package]]
|
|
2228
2148
|
name = "schannel"
|
|
@@ -2239,23 +2159,13 @@ version = "1.2.0"
|
|
|
2239
2159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2240
2160
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2241
2161
|
|
|
2242
|
-
[[package]]
|
|
2243
|
-
name = "sct"
|
|
2244
|
-
version = "0.7.1"
|
|
2245
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
-
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
|
2247
|
-
dependencies = [
|
|
2248
|
-
"ring",
|
|
2249
|
-
"untrusted",
|
|
2250
|
-
]
|
|
2251
|
-
|
|
2252
2162
|
[[package]]
|
|
2253
2163
|
name = "security-framework"
|
|
2254
|
-
version = "2.
|
|
2164
|
+
version = "2.11.1"
|
|
2255
2165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
-
checksum = "
|
|
2166
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
2257
2167
|
dependencies = [
|
|
2258
|
-
"bitflags
|
|
2168
|
+
"bitflags 2.6.0",
|
|
2259
2169
|
"core-foundation",
|
|
2260
2170
|
"core-foundation-sys",
|
|
2261
2171
|
"libc",
|
|
@@ -2264,9 +2174,9 @@ dependencies = [
|
|
|
2264
2174
|
|
|
2265
2175
|
[[package]]
|
|
2266
2176
|
name = "security-framework-sys"
|
|
2267
|
-
version = "2.
|
|
2177
|
+
version = "2.11.1"
|
|
2268
2178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
-
checksum = "
|
|
2179
|
+
checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"
|
|
2270
2180
|
dependencies = [
|
|
2271
2181
|
"core-foundation-sys",
|
|
2272
2182
|
"libc",
|
|
@@ -2283,9 +2193,9 @@ dependencies = [
|
|
|
2283
2193
|
|
|
2284
2194
|
[[package]]
|
|
2285
2195
|
name = "semver"
|
|
2286
|
-
version = "1.0.
|
|
2196
|
+
version = "1.0.23"
|
|
2287
2197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2288
|
-
checksum = "
|
|
2198
|
+
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
|
2289
2199
|
|
|
2290
2200
|
[[package]]
|
|
2291
2201
|
name = "semver-parser"
|
|
@@ -2295,31 +2205,32 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
|
2295
2205
|
|
|
2296
2206
|
[[package]]
|
|
2297
2207
|
name = "serde"
|
|
2298
|
-
version = "1.0.
|
|
2208
|
+
version = "1.0.204"
|
|
2299
2209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2300
|
-
checksum = "
|
|
2210
|
+
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
|
|
2301
2211
|
dependencies = [
|
|
2302
2212
|
"serde_derive",
|
|
2303
2213
|
]
|
|
2304
2214
|
|
|
2305
2215
|
[[package]]
|
|
2306
2216
|
name = "serde_derive"
|
|
2307
|
-
version = "1.0.
|
|
2217
|
+
version = "1.0.204"
|
|
2308
2218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2309
|
-
checksum = "
|
|
2219
|
+
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
|
|
2310
2220
|
dependencies = [
|
|
2311
2221
|
"proc-macro2",
|
|
2312
2222
|
"quote",
|
|
2313
|
-
"syn 2.0.
|
|
2223
|
+
"syn 2.0.72",
|
|
2314
2224
|
]
|
|
2315
2225
|
|
|
2316
2226
|
[[package]]
|
|
2317
2227
|
name = "serde_json"
|
|
2318
|
-
version = "1.0.
|
|
2228
|
+
version = "1.0.122"
|
|
2319
2229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2320
|
-
checksum = "
|
|
2230
|
+
checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da"
|
|
2321
2231
|
dependencies = [
|
|
2322
2232
|
"itoa",
|
|
2233
|
+
"memchr",
|
|
2323
2234
|
"ryu",
|
|
2324
2235
|
"serde",
|
|
2325
2236
|
]
|
|
@@ -2358,9 +2269,9 @@ dependencies = [
|
|
|
2358
2269
|
|
|
2359
2270
|
[[package]]
|
|
2360
2271
|
name = "signal-hook-registry"
|
|
2361
|
-
version = "1.4.
|
|
2272
|
+
version = "1.4.2"
|
|
2362
2273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
-
checksum = "
|
|
2274
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
2364
2275
|
dependencies = [
|
|
2365
2276
|
"libc",
|
|
2366
2277
|
]
|
|
@@ -2403,9 +2314,9 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
|
2403
2314
|
|
|
2404
2315
|
[[package]]
|
|
2405
2316
|
name = "socket2"
|
|
2406
|
-
version = "0.5.
|
|
2317
|
+
version = "0.5.7"
|
|
2407
2318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2408
|
-
checksum = "
|
|
2319
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
|
2409
2320
|
dependencies = [
|
|
2410
2321
|
"libc",
|
|
2411
2322
|
"windows-sys 0.52.0",
|
|
@@ -2428,15 +2339,15 @@ dependencies = [
|
|
|
2428
2339
|
|
|
2429
2340
|
[[package]]
|
|
2430
2341
|
name = "strsim"
|
|
2431
|
-
version = "0.
|
|
2342
|
+
version = "0.11.1"
|
|
2432
2343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2433
|
-
checksum = "
|
|
2344
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2434
2345
|
|
|
2435
2346
|
[[package]]
|
|
2436
2347
|
name = "subtle"
|
|
2437
|
-
version = "2.
|
|
2348
|
+
version = "2.6.1"
|
|
2438
2349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2439
|
-
checksum = "
|
|
2350
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2440
2351
|
|
|
2441
2352
|
[[package]]
|
|
2442
2353
|
name = "syn"
|
|
@@ -2451,9 +2362,9 @@ dependencies = [
|
|
|
2451
2362
|
|
|
2452
2363
|
[[package]]
|
|
2453
2364
|
name = "syn"
|
|
2454
|
-
version = "2.0.
|
|
2365
|
+
version = "2.0.72"
|
|
2455
2366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2456
|
-
checksum = "
|
|
2367
|
+
checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
|
|
2457
2368
|
dependencies = [
|
|
2458
2369
|
"proc-macro2",
|
|
2459
2370
|
"quote",
|
|
@@ -2477,11 +2388,17 @@ version = "0.1.2"
|
|
|
2477
2388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
2389
|
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
2479
2390
|
|
|
2391
|
+
[[package]]
|
|
2392
|
+
name = "sync_wrapper"
|
|
2393
|
+
version = "1.0.1"
|
|
2394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
+
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
|
|
2396
|
+
|
|
2480
2397
|
[[package]]
|
|
2481
2398
|
name = "sysinfo"
|
|
2482
|
-
version = "0.30.
|
|
2399
|
+
version = "0.30.13"
|
|
2483
2400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2484
|
-
checksum = "
|
|
2401
|
+
checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3"
|
|
2485
2402
|
dependencies = [
|
|
2486
2403
|
"cfg-if",
|
|
2487
2404
|
"core-foundation-sys",
|
|
@@ -2492,32 +2409,11 @@ dependencies = [
|
|
|
2492
2409
|
"windows",
|
|
2493
2410
|
]
|
|
2494
2411
|
|
|
2495
|
-
[[package]]
|
|
2496
|
-
name = "system-configuration"
|
|
2497
|
-
version = "0.5.1"
|
|
2498
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2499
|
-
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
2500
|
-
dependencies = [
|
|
2501
|
-
"bitflags 1.3.2",
|
|
2502
|
-
"core-foundation",
|
|
2503
|
-
"system-configuration-sys",
|
|
2504
|
-
]
|
|
2505
|
-
|
|
2506
|
-
[[package]]
|
|
2507
|
-
name = "system-configuration-sys"
|
|
2508
|
-
version = "0.5.0"
|
|
2509
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2510
|
-
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
2511
|
-
dependencies = [
|
|
2512
|
-
"core-foundation-sys",
|
|
2513
|
-
"libc",
|
|
2514
|
-
]
|
|
2515
|
-
|
|
2516
2412
|
[[package]]
|
|
2517
2413
|
name = "tar"
|
|
2518
|
-
version = "0.4.
|
|
2414
|
+
version = "0.4.41"
|
|
2519
2415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
|
-
checksum = "
|
|
2416
|
+
checksum = "cb797dad5fb5b76fcf519e702f4a589483b5ef06567f160c392832c1f5e44909"
|
|
2521
2417
|
dependencies = [
|
|
2522
2418
|
"filetime",
|
|
2523
2419
|
"libc",
|
|
@@ -2526,14 +2422,15 @@ dependencies = [
|
|
|
2526
2422
|
|
|
2527
2423
|
[[package]]
|
|
2528
2424
|
name = "tempfile"
|
|
2529
|
-
version = "3.
|
|
2425
|
+
version = "3.12.0"
|
|
2530
2426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
-
checksum = "
|
|
2427
|
+
checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64"
|
|
2532
2428
|
dependencies = [
|
|
2533
2429
|
"cfg-if",
|
|
2534
2430
|
"fastrand",
|
|
2431
|
+
"once_cell",
|
|
2535
2432
|
"rustix",
|
|
2536
|
-
"windows-sys 0.
|
|
2433
|
+
"windows-sys 0.59.0",
|
|
2537
2434
|
]
|
|
2538
2435
|
|
|
2539
2436
|
[[package]]
|
|
@@ -2543,13 +2440,15 @@ dependencies = [
|
|
|
2543
2440
|
"anyhow",
|
|
2544
2441
|
"async-trait",
|
|
2545
2442
|
"backoff",
|
|
2546
|
-
"base64
|
|
2443
|
+
"base64",
|
|
2547
2444
|
"derive_builder",
|
|
2548
2445
|
"derive_more",
|
|
2549
2446
|
"futures",
|
|
2550
2447
|
"futures-retry",
|
|
2551
|
-
"http
|
|
2552
|
-
"
|
|
2448
|
+
"http",
|
|
2449
|
+
"http-body-util",
|
|
2450
|
+
"hyper",
|
|
2451
|
+
"hyper-util",
|
|
2553
2452
|
"once_cell",
|
|
2554
2453
|
"parking_lot",
|
|
2555
2454
|
"prost-types",
|
|
@@ -2574,7 +2473,7 @@ dependencies = [
|
|
|
2574
2473
|
"crossbeam-channel",
|
|
2575
2474
|
"crossbeam-queue",
|
|
2576
2475
|
"crossbeam-utils",
|
|
2577
|
-
"dashmap",
|
|
2476
|
+
"dashmap 6.0.1",
|
|
2578
2477
|
"derive_builder",
|
|
2579
2478
|
"derive_more",
|
|
2580
2479
|
"enum-iterator",
|
|
@@ -2584,14 +2483,13 @@ dependencies = [
|
|
|
2584
2483
|
"futures-util",
|
|
2585
2484
|
"governor",
|
|
2586
2485
|
"http-body-util",
|
|
2587
|
-
"hyper
|
|
2486
|
+
"hyper",
|
|
2588
2487
|
"hyper-util",
|
|
2589
|
-
"itertools
|
|
2488
|
+
"itertools",
|
|
2590
2489
|
"lru",
|
|
2591
2490
|
"mockall",
|
|
2592
|
-
"nix",
|
|
2593
2491
|
"once_cell",
|
|
2594
|
-
"opentelemetry",
|
|
2492
|
+
"opentelemetry 0.24.0",
|
|
2595
2493
|
"opentelemetry-otlp",
|
|
2596
2494
|
"opentelemetry-prometheus",
|
|
2597
2495
|
"opentelemetry_sdk",
|
|
@@ -2634,7 +2532,7 @@ dependencies = [
|
|
|
2634
2532
|
"async-trait",
|
|
2635
2533
|
"derive_builder",
|
|
2636
2534
|
"derive_more",
|
|
2637
|
-
"opentelemetry",
|
|
2535
|
+
"opentelemetry 0.24.0",
|
|
2638
2536
|
"prost-types",
|
|
2639
2537
|
"serde_json",
|
|
2640
2538
|
"temporal-sdk-core-protos",
|
|
@@ -2649,7 +2547,7 @@ name = "temporal-sdk-core-protos"
|
|
|
2649
2547
|
version = "0.1.0"
|
|
2650
2548
|
dependencies = [
|
|
2651
2549
|
"anyhow",
|
|
2652
|
-
"base64
|
|
2550
|
+
"base64",
|
|
2653
2551
|
"derive_more",
|
|
2654
2552
|
"prost",
|
|
2655
2553
|
"prost-wkt",
|
|
@@ -2672,7 +2570,7 @@ dependencies = [
|
|
|
2672
2570
|
"log",
|
|
2673
2571
|
"neon",
|
|
2674
2572
|
"once_cell",
|
|
2675
|
-
"opentelemetry",
|
|
2573
|
+
"opentelemetry 0.23.0",
|
|
2676
2574
|
"parking_lot",
|
|
2677
2575
|
"prost",
|
|
2678
2576
|
"prost-types",
|
|
@@ -2691,22 +2589,22 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
|
|
|
2691
2589
|
|
|
2692
2590
|
[[package]]
|
|
2693
2591
|
name = "thiserror"
|
|
2694
|
-
version = "1.0.
|
|
2592
|
+
version = "1.0.63"
|
|
2695
2593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2696
|
-
checksum = "
|
|
2594
|
+
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
|
2697
2595
|
dependencies = [
|
|
2698
2596
|
"thiserror-impl",
|
|
2699
2597
|
]
|
|
2700
2598
|
|
|
2701
2599
|
[[package]]
|
|
2702
2600
|
name = "thiserror-impl"
|
|
2703
|
-
version = "1.0.
|
|
2601
|
+
version = "1.0.63"
|
|
2704
2602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2705
|
-
checksum = "
|
|
2603
|
+
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
|
2706
2604
|
dependencies = [
|
|
2707
2605
|
"proc-macro2",
|
|
2708
2606
|
"quote",
|
|
2709
|
-
"syn 2.0.
|
|
2607
|
+
"syn 2.0.72",
|
|
2710
2608
|
]
|
|
2711
2609
|
|
|
2712
2610
|
[[package]]
|
|
@@ -2740,9 +2638,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
|
2740
2638
|
|
|
2741
2639
|
[[package]]
|
|
2742
2640
|
name = "tinyvec"
|
|
2743
|
-
version = "1.
|
|
2641
|
+
version = "1.8.0"
|
|
2744
2642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2745
|
-
checksum = "
|
|
2643
|
+
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
|
|
2746
2644
|
dependencies = [
|
|
2747
2645
|
"tinyvec_macros",
|
|
2748
2646
|
]
|
|
@@ -2755,61 +2653,40 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2755
2653
|
|
|
2756
2654
|
[[package]]
|
|
2757
2655
|
name = "tokio"
|
|
2758
|
-
version = "1.
|
|
2656
|
+
version = "1.39.2"
|
|
2759
2657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2760
|
-
checksum = "
|
|
2658
|
+
checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1"
|
|
2761
2659
|
dependencies = [
|
|
2762
2660
|
"backtrace",
|
|
2763
2661
|
"bytes",
|
|
2764
2662
|
"libc",
|
|
2765
2663
|
"mio",
|
|
2766
|
-
"num_cpus",
|
|
2767
2664
|
"parking_lot",
|
|
2768
2665
|
"pin-project-lite",
|
|
2769
2666
|
"signal-hook-registry",
|
|
2770
2667
|
"socket2",
|
|
2771
2668
|
"tokio-macros",
|
|
2772
|
-
"windows-sys 0.
|
|
2773
|
-
]
|
|
2774
|
-
|
|
2775
|
-
[[package]]
|
|
2776
|
-
name = "tokio-io-timeout"
|
|
2777
|
-
version = "1.2.0"
|
|
2778
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
|
-
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
|
|
2780
|
-
dependencies = [
|
|
2781
|
-
"pin-project-lite",
|
|
2782
|
-
"tokio",
|
|
2669
|
+
"windows-sys 0.52.0",
|
|
2783
2670
|
]
|
|
2784
2671
|
|
|
2785
2672
|
[[package]]
|
|
2786
2673
|
name = "tokio-macros"
|
|
2787
|
-
version = "2.
|
|
2674
|
+
version = "2.4.0"
|
|
2788
2675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2789
|
-
checksum = "
|
|
2676
|
+
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
|
|
2790
2677
|
dependencies = [
|
|
2791
2678
|
"proc-macro2",
|
|
2792
2679
|
"quote",
|
|
2793
|
-
"syn 2.0.
|
|
2680
|
+
"syn 2.0.72",
|
|
2794
2681
|
]
|
|
2795
2682
|
|
|
2796
2683
|
[[package]]
|
|
2797
2684
|
name = "tokio-rustls"
|
|
2798
|
-
version = "0.
|
|
2685
|
+
version = "0.26.0"
|
|
2799
2686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
-
checksum = "
|
|
2687
|
+
checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
|
|
2801
2688
|
dependencies = [
|
|
2802
|
-
"rustls
|
|
2803
|
-
"tokio",
|
|
2804
|
-
]
|
|
2805
|
-
|
|
2806
|
-
[[package]]
|
|
2807
|
-
name = "tokio-rustls"
|
|
2808
|
-
version = "0.25.0"
|
|
2809
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2810
|
-
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
|
|
2811
|
-
dependencies = [
|
|
2812
|
-
"rustls 0.22.3",
|
|
2689
|
+
"rustls",
|
|
2813
2690
|
"rustls-pki-types",
|
|
2814
2691
|
"tokio",
|
|
2815
2692
|
]
|
|
@@ -2827,42 +2704,43 @@ dependencies = [
|
|
|
2827
2704
|
|
|
2828
2705
|
[[package]]
|
|
2829
2706
|
name = "tokio-util"
|
|
2830
|
-
version = "0.7.
|
|
2707
|
+
version = "0.7.11"
|
|
2831
2708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2832
|
-
checksum = "
|
|
2709
|
+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
|
|
2833
2710
|
dependencies = [
|
|
2834
2711
|
"bytes",
|
|
2835
2712
|
"futures-core",
|
|
2836
2713
|
"futures-sink",
|
|
2837
2714
|
"pin-project-lite",
|
|
2838
2715
|
"tokio",
|
|
2839
|
-
"tracing",
|
|
2840
2716
|
]
|
|
2841
2717
|
|
|
2842
2718
|
[[package]]
|
|
2843
2719
|
name = "tonic"
|
|
2844
|
-
version = "0.
|
|
2720
|
+
version = "0.12.1"
|
|
2845
2721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2846
|
-
checksum = "
|
|
2722
|
+
checksum = "38659f4a91aba8598d27821589f5db7dddd94601e7a01b1e485a50e5484c7401"
|
|
2847
2723
|
dependencies = [
|
|
2848
2724
|
"async-stream",
|
|
2849
2725
|
"async-trait",
|
|
2850
2726
|
"axum",
|
|
2851
|
-
"base64
|
|
2727
|
+
"base64",
|
|
2852
2728
|
"bytes",
|
|
2853
|
-
"h2
|
|
2854
|
-
"http
|
|
2855
|
-
"http-body
|
|
2856
|
-
"
|
|
2729
|
+
"h2",
|
|
2730
|
+
"http",
|
|
2731
|
+
"http-body",
|
|
2732
|
+
"http-body-util",
|
|
2733
|
+
"hyper",
|
|
2857
2734
|
"hyper-timeout",
|
|
2735
|
+
"hyper-util",
|
|
2858
2736
|
"percent-encoding",
|
|
2859
2737
|
"pin-project",
|
|
2860
2738
|
"prost",
|
|
2861
2739
|
"rustls-native-certs",
|
|
2862
|
-
"rustls-pemfile
|
|
2863
|
-
"
|
|
2740
|
+
"rustls-pemfile",
|
|
2741
|
+
"socket2",
|
|
2864
2742
|
"tokio",
|
|
2865
|
-
"tokio-rustls
|
|
2743
|
+
"tokio-rustls",
|
|
2866
2744
|
"tokio-stream",
|
|
2867
2745
|
"tower",
|
|
2868
2746
|
"tower-layer",
|
|
@@ -2872,15 +2750,15 @@ dependencies = [
|
|
|
2872
2750
|
|
|
2873
2751
|
[[package]]
|
|
2874
2752
|
name = "tonic-build"
|
|
2875
|
-
version = "0.
|
|
2753
|
+
version = "0.12.1"
|
|
2876
2754
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2877
|
-
checksum = "
|
|
2755
|
+
checksum = "568392c5a2bd0020723e3f387891176aabafe36fd9fcd074ad309dfa0c8eb964"
|
|
2878
2756
|
dependencies = [
|
|
2879
2757
|
"prettyplease",
|
|
2880
2758
|
"proc-macro2",
|
|
2881
2759
|
"prost-build",
|
|
2882
2760
|
"quote",
|
|
2883
|
-
"syn 2.0.
|
|
2761
|
+
"syn 2.0.72",
|
|
2884
2762
|
]
|
|
2885
2763
|
|
|
2886
2764
|
[[package]]
|
|
@@ -2935,7 +2813,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
|
2935
2813
|
dependencies = [
|
|
2936
2814
|
"proc-macro2",
|
|
2937
2815
|
"quote",
|
|
2938
|
-
"syn 2.0.
|
|
2816
|
+
"syn 2.0.72",
|
|
2939
2817
|
]
|
|
2940
2818
|
|
|
2941
2819
|
[[package]]
|
|
@@ -2984,6 +2862,12 @@ version = "0.2.5"
|
|
|
2984
2862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2985
2863
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2986
2864
|
|
|
2865
|
+
[[package]]
|
|
2866
|
+
name = "typeid"
|
|
2867
|
+
version = "1.0.0"
|
|
2868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
+
checksum = "059d83cc991e7a42fc37bd50941885db0888e34209f8cfd9aab07ddec03bc9cf"
|
|
2870
|
+
|
|
2987
2871
|
[[package]]
|
|
2988
2872
|
name = "typenum"
|
|
2989
2873
|
version = "1.17.0"
|
|
@@ -2992,9 +2876,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
|
2992
2876
|
|
|
2993
2877
|
[[package]]
|
|
2994
2878
|
name = "typetag"
|
|
2995
|
-
version = "0.2.
|
|
2879
|
+
version = "0.2.17"
|
|
2996
2880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
-
checksum = "
|
|
2881
|
+
checksum = "1f7ec175048b96728c30152928c52161bfcc8ea2bd3fb7ed4ccb7dec060b2834"
|
|
2998
2882
|
dependencies = [
|
|
2999
2883
|
"erased-serde",
|
|
3000
2884
|
"inventory",
|
|
@@ -3005,13 +2889,13 @@ dependencies = [
|
|
|
3005
2889
|
|
|
3006
2890
|
[[package]]
|
|
3007
2891
|
name = "typetag-impl"
|
|
3008
|
-
version = "0.2.
|
|
2892
|
+
version = "0.2.17"
|
|
3009
2893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3010
|
-
checksum = "
|
|
2894
|
+
checksum = "84b5474fd169a5b02b6782b56bbbbff27e85947d4488e5501123687db3148647"
|
|
3011
2895
|
dependencies = [
|
|
3012
2896
|
"proc-macro2",
|
|
3013
2897
|
"quote",
|
|
3014
|
-
"syn 2.0.
|
|
2898
|
+
"syn 2.0.72",
|
|
3015
2899
|
]
|
|
3016
2900
|
|
|
3017
2901
|
[[package]]
|
|
@@ -3043,26 +2927,20 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
3043
2927
|
|
|
3044
2928
|
[[package]]
|
|
3045
2929
|
name = "url"
|
|
3046
|
-
version = "2.5.
|
|
2930
|
+
version = "2.5.2"
|
|
3047
2931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3048
|
-
checksum = "
|
|
2932
|
+
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
|
3049
2933
|
dependencies = [
|
|
3050
2934
|
"form_urlencoded",
|
|
3051
2935
|
"idna",
|
|
3052
2936
|
"percent-encoding",
|
|
3053
2937
|
]
|
|
3054
2938
|
|
|
3055
|
-
[[package]]
|
|
3056
|
-
name = "urlencoding"
|
|
3057
|
-
version = "2.1.3"
|
|
3058
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3059
|
-
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
3060
|
-
|
|
3061
2939
|
[[package]]
|
|
3062
2940
|
name = "uuid"
|
|
3063
|
-
version = "1.
|
|
2941
|
+
version = "1.10.0"
|
|
3064
2942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3065
|
-
checksum = "
|
|
2943
|
+
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
|
|
3066
2944
|
dependencies = [
|
|
3067
2945
|
"getrandom",
|
|
3068
2946
|
]
|
|
@@ -3075,9 +2953,9 @@ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
|
|
3075
2953
|
|
|
3076
2954
|
[[package]]
|
|
3077
2955
|
name = "version_check"
|
|
3078
|
-
version = "0.9.
|
|
2956
|
+
version = "0.9.5"
|
|
3079
2957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3080
|
-
checksum = "
|
|
2958
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3081
2959
|
|
|
3082
2960
|
[[package]]
|
|
3083
2961
|
name = "want"
|
|
@@ -3115,7 +2993,7 @@ dependencies = [
|
|
|
3115
2993
|
"once_cell",
|
|
3116
2994
|
"proc-macro2",
|
|
3117
2995
|
"quote",
|
|
3118
|
-
"syn 2.0.
|
|
2996
|
+
"syn 2.0.72",
|
|
3119
2997
|
"wasm-bindgen-shared",
|
|
3120
2998
|
]
|
|
3121
2999
|
|
|
@@ -3149,7 +3027,7 @@ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
|
3149
3027
|
dependencies = [
|
|
3150
3028
|
"proc-macro2",
|
|
3151
3029
|
"quote",
|
|
3152
|
-
"syn 2.0.
|
|
3030
|
+
"syn 2.0.72",
|
|
3153
3031
|
"wasm-bindgen-backend",
|
|
3154
3032
|
"wasm-bindgen-shared",
|
|
3155
3033
|
]
|
|
@@ -3185,20 +3063,11 @@ dependencies = [
|
|
|
3185
3063
|
|
|
3186
3064
|
[[package]]
|
|
3187
3065
|
name = "webpki-roots"
|
|
3188
|
-
version = "0.
|
|
3189
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3190
|
-
checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
|
|
3191
|
-
|
|
3192
|
-
[[package]]
|
|
3193
|
-
name = "which"
|
|
3194
|
-
version = "4.4.2"
|
|
3066
|
+
version = "0.26.3"
|
|
3195
3067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3196
|
-
checksum = "
|
|
3068
|
+
checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd"
|
|
3197
3069
|
dependencies = [
|
|
3198
|
-
"
|
|
3199
|
-
"home",
|
|
3200
|
-
"once_cell",
|
|
3201
|
-
"rustix",
|
|
3070
|
+
"rustls-pki-types",
|
|
3202
3071
|
]
|
|
3203
3072
|
|
|
3204
3073
|
[[package]]
|
|
@@ -3230,7 +3099,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3230
3099
|
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
|
|
3231
3100
|
dependencies = [
|
|
3232
3101
|
"windows-core",
|
|
3233
|
-
"windows-targets 0.52.
|
|
3102
|
+
"windows-targets 0.52.6",
|
|
3234
3103
|
]
|
|
3235
3104
|
|
|
3236
3105
|
[[package]]
|
|
@@ -3239,7 +3108,7 @@ version = "0.52.0"
|
|
|
3239
3108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3240
3109
|
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
3241
3110
|
dependencies = [
|
|
3242
|
-
"windows-targets 0.52.
|
|
3111
|
+
"windows-targets 0.52.6",
|
|
3243
3112
|
]
|
|
3244
3113
|
|
|
3245
3114
|
[[package]]
|
|
@@ -3257,7 +3126,16 @@ version = "0.52.0"
|
|
|
3257
3126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3258
3127
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3259
3128
|
dependencies = [
|
|
3260
|
-
"windows-targets 0.52.
|
|
3129
|
+
"windows-targets 0.52.6",
|
|
3130
|
+
]
|
|
3131
|
+
|
|
3132
|
+
[[package]]
|
|
3133
|
+
name = "windows-sys"
|
|
3134
|
+
version = "0.59.0"
|
|
3135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3136
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3137
|
+
dependencies = [
|
|
3138
|
+
"windows-targets 0.52.6",
|
|
3261
3139
|
]
|
|
3262
3140
|
|
|
3263
3141
|
[[package]]
|
|
@@ -3277,17 +3155,18 @@ dependencies = [
|
|
|
3277
3155
|
|
|
3278
3156
|
[[package]]
|
|
3279
3157
|
name = "windows-targets"
|
|
3280
|
-
version = "0.52.
|
|
3158
|
+
version = "0.52.6"
|
|
3281
3159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3282
|
-
checksum = "
|
|
3160
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3283
3161
|
dependencies = [
|
|
3284
|
-
"windows_aarch64_gnullvm 0.52.
|
|
3285
|
-
"windows_aarch64_msvc 0.52.
|
|
3286
|
-
"windows_i686_gnu 0.52.
|
|
3287
|
-
"
|
|
3288
|
-
"
|
|
3289
|
-
"
|
|
3290
|
-
"
|
|
3162
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3163
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3164
|
+
"windows_i686_gnu 0.52.6",
|
|
3165
|
+
"windows_i686_gnullvm",
|
|
3166
|
+
"windows_i686_msvc 0.52.6",
|
|
3167
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3168
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3169
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3291
3170
|
]
|
|
3292
3171
|
|
|
3293
3172
|
[[package]]
|
|
@@ -3298,9 +3177,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
|
3298
3177
|
|
|
3299
3178
|
[[package]]
|
|
3300
3179
|
name = "windows_aarch64_gnullvm"
|
|
3301
|
-
version = "0.52.
|
|
3180
|
+
version = "0.52.6"
|
|
3302
3181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
|
-
checksum = "
|
|
3182
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3304
3183
|
|
|
3305
3184
|
[[package]]
|
|
3306
3185
|
name = "windows_aarch64_msvc"
|
|
@@ -3310,9 +3189,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
|
3310
3189
|
|
|
3311
3190
|
[[package]]
|
|
3312
3191
|
name = "windows_aarch64_msvc"
|
|
3313
|
-
version = "0.52.
|
|
3192
|
+
version = "0.52.6"
|
|
3314
3193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3315
|
-
checksum = "
|
|
3194
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3316
3195
|
|
|
3317
3196
|
[[package]]
|
|
3318
3197
|
name = "windows_i686_gnu"
|
|
@@ -3322,9 +3201,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
|
3322
3201
|
|
|
3323
3202
|
[[package]]
|
|
3324
3203
|
name = "windows_i686_gnu"
|
|
3325
|
-
version = "0.52.
|
|
3204
|
+
version = "0.52.6"
|
|
3205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3206
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3207
|
+
|
|
3208
|
+
[[package]]
|
|
3209
|
+
name = "windows_i686_gnullvm"
|
|
3210
|
+
version = "0.52.6"
|
|
3326
3211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3327
|
-
checksum = "
|
|
3212
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3328
3213
|
|
|
3329
3214
|
[[package]]
|
|
3330
3215
|
name = "windows_i686_msvc"
|
|
@@ -3334,9 +3219,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
|
3334
3219
|
|
|
3335
3220
|
[[package]]
|
|
3336
3221
|
name = "windows_i686_msvc"
|
|
3337
|
-
version = "0.52.
|
|
3222
|
+
version = "0.52.6"
|
|
3338
3223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3339
|
-
checksum = "
|
|
3224
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3340
3225
|
|
|
3341
3226
|
[[package]]
|
|
3342
3227
|
name = "windows_x86_64_gnu"
|
|
@@ -3346,9 +3231,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
|
3346
3231
|
|
|
3347
3232
|
[[package]]
|
|
3348
3233
|
name = "windows_x86_64_gnu"
|
|
3349
|
-
version = "0.52.
|
|
3234
|
+
version = "0.52.6"
|
|
3350
3235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3351
|
-
checksum = "
|
|
3236
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3352
3237
|
|
|
3353
3238
|
[[package]]
|
|
3354
3239
|
name = "windows_x86_64_gnullvm"
|
|
@@ -3358,9 +3243,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
|
3358
3243
|
|
|
3359
3244
|
[[package]]
|
|
3360
3245
|
name = "windows_x86_64_gnullvm"
|
|
3361
|
-
version = "0.52.
|
|
3246
|
+
version = "0.52.6"
|
|
3362
3247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3363
|
-
checksum = "
|
|
3248
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3364
3249
|
|
|
3365
3250
|
[[package]]
|
|
3366
3251
|
name = "windows_x86_64_msvc"
|
|
@@ -3370,15 +3255,15 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
|
3370
3255
|
|
|
3371
3256
|
[[package]]
|
|
3372
3257
|
name = "windows_x86_64_msvc"
|
|
3373
|
-
version = "0.52.
|
|
3258
|
+
version = "0.52.6"
|
|
3374
3259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3375
|
-
checksum = "
|
|
3260
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3376
3261
|
|
|
3377
3262
|
[[package]]
|
|
3378
3263
|
name = "winreg"
|
|
3379
|
-
version = "0.
|
|
3264
|
+
version = "0.52.0"
|
|
3380
3265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3381
|
-
checksum = "
|
|
3266
|
+
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
|
|
3382
3267
|
dependencies = [
|
|
3383
3268
|
"cfg-if",
|
|
3384
3269
|
"windows-sys 0.48.0",
|
|
@@ -3397,29 +3282,30 @@ dependencies = [
|
|
|
3397
3282
|
|
|
3398
3283
|
[[package]]
|
|
3399
3284
|
name = "zerocopy"
|
|
3400
|
-
version = "0.7.
|
|
3285
|
+
version = "0.7.35"
|
|
3401
3286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3402
|
-
checksum = "
|
|
3287
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
3403
3288
|
dependencies = [
|
|
3289
|
+
"byteorder",
|
|
3404
3290
|
"zerocopy-derive",
|
|
3405
3291
|
]
|
|
3406
3292
|
|
|
3407
3293
|
[[package]]
|
|
3408
3294
|
name = "zerocopy-derive"
|
|
3409
|
-
version = "0.7.
|
|
3295
|
+
version = "0.7.35"
|
|
3410
3296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3411
|
-
checksum = "
|
|
3297
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
3412
3298
|
dependencies = [
|
|
3413
3299
|
"proc-macro2",
|
|
3414
3300
|
"quote",
|
|
3415
|
-
"syn 2.0.
|
|
3301
|
+
"syn 2.0.72",
|
|
3416
3302
|
]
|
|
3417
3303
|
|
|
3418
3304
|
[[package]]
|
|
3419
3305
|
name = "zeroize"
|
|
3420
|
-
version = "1.
|
|
3306
|
+
version = "1.8.1"
|
|
3421
3307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3422
|
-
checksum = "
|
|
3308
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
3423
3309
|
dependencies = [
|
|
3424
3310
|
"zeroize_derive",
|
|
3425
3311
|
]
|
|
@@ -3432,14 +3318,14 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
|
3432
3318
|
dependencies = [
|
|
3433
3319
|
"proc-macro2",
|
|
3434
3320
|
"quote",
|
|
3435
|
-
"syn 2.0.
|
|
3321
|
+
"syn 2.0.72",
|
|
3436
3322
|
]
|
|
3437
3323
|
|
|
3438
3324
|
[[package]]
|
|
3439
3325
|
name = "zip"
|
|
3440
|
-
version = "1.
|
|
3326
|
+
version = "2.1.6"
|
|
3441
3327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3442
|
-
checksum = "
|
|
3328
|
+
checksum = "40dd8c92efc296286ce1fbd16657c5dbefff44f1b4ca01cc5f517d8b7b3d3e2e"
|
|
3443
3329
|
dependencies = [
|
|
3444
3330
|
"aes",
|
|
3445
3331
|
"arbitrary",
|
|
@@ -3451,8 +3337,9 @@ dependencies = [
|
|
|
3451
3337
|
"displaydoc",
|
|
3452
3338
|
"flate2",
|
|
3453
3339
|
"hmac",
|
|
3454
|
-
"indexmap 2.
|
|
3340
|
+
"indexmap 2.3.0",
|
|
3455
3341
|
"lzma-rs",
|
|
3342
|
+
"memchr",
|
|
3456
3343
|
"pbkdf2",
|
|
3457
3344
|
"rand",
|
|
3458
3345
|
"sha1",
|
|
@@ -3479,27 +3366,27 @@ dependencies = [
|
|
|
3479
3366
|
|
|
3480
3367
|
[[package]]
|
|
3481
3368
|
name = "zstd"
|
|
3482
|
-
version = "0.13.
|
|
3369
|
+
version = "0.13.2"
|
|
3483
3370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3484
|
-
checksum = "
|
|
3371
|
+
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
|
3485
3372
|
dependencies = [
|
|
3486
3373
|
"zstd-safe",
|
|
3487
3374
|
]
|
|
3488
3375
|
|
|
3489
3376
|
[[package]]
|
|
3490
3377
|
name = "zstd-safe"
|
|
3491
|
-
version = "7.1
|
|
3378
|
+
version = "7.2.1"
|
|
3492
3379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3493
|
-
checksum = "
|
|
3380
|
+
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
|
3494
3381
|
dependencies = [
|
|
3495
3382
|
"zstd-sys",
|
|
3496
3383
|
]
|
|
3497
3384
|
|
|
3498
3385
|
[[package]]
|
|
3499
3386
|
name = "zstd-sys"
|
|
3500
|
-
version = "2.0.
|
|
3387
|
+
version = "2.0.13+zstd.1.5.6"
|
|
3501
3388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3502
|
-
checksum = "
|
|
3389
|
+
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
|
|
3503
3390
|
dependencies = [
|
|
3504
3391
|
"cc",
|
|
3505
3392
|
"pkg-config",
|