@temporalio/core-bridge 1.1.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.lock +765 -128
- package/Cargo.toml +2 -2
- package/common.js +7 -3
- package/index.d.ts +118 -5
- package/index.js +2 -6
- package/package.json +2 -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/scripts/build.js +4 -3
- package/sdk-core/.buildkite/docker/Dockerfile +2 -1
- package/sdk-core/.buildkite/pipeline.yml +2 -0
- package/sdk-core/.cargo/config.toml +1 -1
- package/sdk-core/ARCHITECTURE.md +2 -2
- package/sdk-core/README.md +12 -0
- package/sdk-core/bridge-ffi/Cargo.toml +2 -2
- package/sdk-core/bridge-ffi/src/lib.rs +2 -2
- package/sdk-core/client/Cargo.toml +7 -5
- package/sdk-core/client/src/lib.rs +354 -226
- package/sdk-core/client/src/metrics.rs +13 -11
- package/sdk-core/client/src/raw.rs +352 -107
- package/sdk-core/client/src/retry.rs +188 -147
- package/sdk-core/client/src/workflow_handle/mod.rs +1 -1
- package/sdk-core/core/Cargo.toml +28 -15
- package/sdk-core/core/src/core_tests/activity_tasks.rs +98 -33
- package/sdk-core/core/src/core_tests/child_workflows.rs +125 -3
- package/sdk-core/core/src/core_tests/local_activities.rs +6 -6
- package/sdk-core/core/src/core_tests/workers.rs +3 -2
- package/sdk-core/core/src/core_tests/workflow_tasks.rs +70 -2
- package/sdk-core/core/src/ephemeral_server/mod.rs +515 -0
- package/sdk-core/core/src/lib.rs +62 -28
- package/sdk-core/core/src/pollers/mod.rs +2 -0
- package/sdk-core/core/src/pollers/poll_buffer.rs +4 -4
- package/sdk-core/core/src/replay/mod.rs +3 -3
- package/sdk-core/core/src/retry_logic.rs +10 -9
- package/sdk-core/core/src/telemetry/metrics.rs +48 -39
- package/sdk-core/core/src/telemetry/mod.rs +46 -12
- package/sdk-core/core/src/telemetry/prometheus_server.rs +17 -13
- package/sdk-core/core/src/test_help/mod.rs +18 -8
- package/sdk-core/core/src/worker/activities/activity_heartbeat_manager.rs +10 -10
- package/sdk-core/core/src/worker/activities/local_activities.rs +13 -13
- package/sdk-core/core/src/worker/activities.rs +6 -12
- package/sdk-core/core/src/worker/client/mocks.rs +1 -0
- package/sdk-core/core/src/worker/client.rs +193 -64
- package/sdk-core/core/src/worker/mod.rs +14 -19
- package/sdk-core/core/src/worker/workflow/driven_workflow.rs +3 -0
- package/sdk-core/core/src/worker/workflow/history_update.rs +5 -5
- package/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +133 -85
- package/sdk-core/core/src/worker/workflow/machines/mod.rs +3 -2
- package/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +160 -105
- package/sdk-core/core/src/worker/workflow/managed_run.rs +2 -1
- package/sdk-core/core/src/worker/workflow/mod.rs +62 -58
- package/sdk-core/core/src/worker/workflow/run_cache.rs +5 -3
- package/sdk-core/core/src/worker/workflow/workflow_stream.rs +7 -5
- package/sdk-core/core-api/Cargo.toml +3 -3
- package/sdk-core/core-api/src/errors.rs +3 -11
- package/sdk-core/core-api/src/worker.rs +7 -0
- package/sdk-core/protos/api_upstream/.buildkite/Dockerfile +1 -1
- package/sdk-core/protos/api_upstream/.github/CODEOWNERS +1 -1
- package/sdk-core/protos/api_upstream/.github/PULL_REQUEST_TEMPLATE.md +2 -6
- package/sdk-core/protos/api_upstream/.github/workflows/trigger-api-go-update.yml +29 -0
- package/sdk-core/protos/api_upstream/Makefile +2 -2
- package/sdk-core/protos/api_upstream/buf.yaml +1 -0
- package/sdk-core/protos/api_upstream/temporal/api/batch/v1/message.proto +86 -0
- package/sdk-core/protos/api_upstream/temporal/api/command/v1/message.proto +26 -0
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/batch_operation.proto +46 -0
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/command_type.proto +7 -0
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/event_type.proto +14 -0
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/update.proto +51 -0
- package/sdk-core/protos/api_upstream/temporal/api/failure/v1/message.proto +18 -0
- package/sdk-core/protos/api_upstream/temporal/api/history/v1/message.proto +57 -1
- package/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +1 -3
- package/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +4 -2
- package/sdk-core/protos/api_upstream/temporal/api/replication/v1/message.proto +11 -0
- package/sdk-core/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +23 -0
- package/sdk-core/protos/api_upstream/temporal/api/update/v1/message.proto +46 -0
- package/sdk-core/protos/api_upstream/temporal/api/workflow/v1/message.proto +1 -0
- package/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +172 -0
- package/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +30 -0
- package/sdk-core/protos/grpc/health/v1/health.proto +63 -0
- package/sdk-core/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +18 -15
- package/sdk-core/protos/testsrv_upstream/Makefile +80 -0
- package/sdk-core/protos/testsrv_upstream/api-linter.yaml +38 -0
- package/sdk-core/protos/testsrv_upstream/buf.yaml +13 -0
- package/sdk-core/protos/testsrv_upstream/dependencies/gogoproto/gogo.proto +141 -0
- package/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/request_response.proto +63 -0
- package/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/service.proto +90 -0
- package/sdk-core/sdk/Cargo.toml +2 -2
- package/sdk-core/sdk/src/lib.rs +2 -2
- package/sdk-core/sdk/src/workflow_context/options.rs +36 -8
- package/sdk-core/sdk/src/workflow_context.rs +30 -6
- package/sdk-core/sdk/src/workflow_future.rs +4 -4
- package/sdk-core/sdk-core-protos/Cargo.toml +5 -5
- package/sdk-core/sdk-core-protos/build.rs +9 -1
- package/sdk-core/sdk-core-protos/src/history_builder.rs +6 -1
- package/sdk-core/sdk-core-protos/src/lib.rs +93 -32
- package/sdk-core/test-utils/Cargo.toml +3 -3
- package/sdk-core/test-utils/src/canned_histories.rs +58 -0
- package/sdk-core/test-utils/src/lib.rs +35 -12
- package/sdk-core/tests/integ_tests/ephemeral_server_tests.rs +128 -0
- package/sdk-core/tests/integ_tests/heartbeat_tests.rs +55 -5
- package/sdk-core/tests/integ_tests/polling_tests.rs +2 -1
- package/sdk-core/tests/integ_tests/queries_tests.rs +5 -5
- package/sdk-core/tests/integ_tests/visibility_tests.rs +93 -0
- package/sdk-core/tests/integ_tests/workflow_tests/activities.rs +93 -10
- package/sdk-core/tests/integ_tests/workflow_tests/cancel_wf.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +14 -14
- package/sdk-core/tests/integ_tests/workflow_tests/replay.rs +2 -6
- package/sdk-core/tests/integ_tests/workflow_tests/resets.rs +12 -12
- package/sdk-core/tests/integ_tests/workflow_tests/signals.rs +12 -1
- package/sdk-core/tests/integ_tests/workflow_tests/timers.rs +3 -3
- package/sdk-core/tests/integ_tests/workflow_tests/upsert_search_attrs.rs +8 -2
- package/sdk-core/tests/integ_tests/workflow_tests.rs +19 -4
- package/sdk-core/tests/load_tests.rs +2 -1
- package/sdk-core/tests/main.rs +17 -0
- package/sdk-core/tests/runner.rs +93 -0
- package/src/conversions.rs +157 -94
- package/src/helpers.rs +190 -0
- package/src/lib.rs +10 -912
- package/src/runtime.rs +436 -0
- package/src/testing.rs +67 -0
- package/src/worker.rs +465 -0
package/Cargo.lock
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 3
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler"
|
|
7
|
+
version = "1.0.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aes"
|
|
13
|
+
version = "0.7.5"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"cipher",
|
|
19
|
+
"cpufeatures",
|
|
20
|
+
"opaque-debug",
|
|
21
|
+
]
|
|
22
|
+
|
|
5
23
|
[[package]]
|
|
6
24
|
name = "ahash"
|
|
7
25
|
version = "0.7.6"
|
|
@@ -92,6 +110,49 @@ version = "1.1.0"
|
|
|
92
110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
111
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
94
112
|
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "axum"
|
|
115
|
+
version = "0.5.4"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "f4af7447fc1214c1f3a1ace861d0216a6c8bb13965b64bbad9650f375b67689a"
|
|
118
|
+
dependencies = [
|
|
119
|
+
"async-trait",
|
|
120
|
+
"axum-core",
|
|
121
|
+
"bitflags",
|
|
122
|
+
"bytes",
|
|
123
|
+
"futures-util",
|
|
124
|
+
"http",
|
|
125
|
+
"http-body",
|
|
126
|
+
"hyper",
|
|
127
|
+
"itoa",
|
|
128
|
+
"matchit",
|
|
129
|
+
"memchr",
|
|
130
|
+
"mime",
|
|
131
|
+
"percent-encoding",
|
|
132
|
+
"pin-project-lite",
|
|
133
|
+
"serde",
|
|
134
|
+
"sync_wrapper",
|
|
135
|
+
"tokio",
|
|
136
|
+
"tower",
|
|
137
|
+
"tower-http",
|
|
138
|
+
"tower-layer",
|
|
139
|
+
"tower-service",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "axum-core"
|
|
144
|
+
version = "0.2.3"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "3bdc19781b16e32f8a7200368a336fa4509d4b72ef15dd4e41df5290855ee1e6"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"async-trait",
|
|
149
|
+
"bytes",
|
|
150
|
+
"futures-util",
|
|
151
|
+
"http",
|
|
152
|
+
"http-body",
|
|
153
|
+
"mime",
|
|
154
|
+
]
|
|
155
|
+
|
|
95
156
|
[[package]]
|
|
96
157
|
name = "backoff"
|
|
97
158
|
version = "0.4.0"
|
|
@@ -109,24 +170,66 @@ version = "0.13.0"
|
|
|
109
170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
171
|
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
|
|
111
172
|
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "base64ct"
|
|
175
|
+
version = "1.0.1"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "8a32fd6af2b5827bce66c29053ba0e7c42b9dcab01835835058558c10851a46b"
|
|
178
|
+
|
|
112
179
|
[[package]]
|
|
113
180
|
name = "bitflags"
|
|
114
181
|
version = "1.3.2"
|
|
115
182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
183
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
117
184
|
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "block-buffer"
|
|
187
|
+
version = "0.10.3"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"generic-array",
|
|
192
|
+
]
|
|
193
|
+
|
|
118
194
|
[[package]]
|
|
119
195
|
name = "bumpalo"
|
|
120
196
|
version = "3.9.1"
|
|
121
197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
198
|
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
|
|
123
199
|
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "byteorder"
|
|
202
|
+
version = "1.4.3"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
|
205
|
+
|
|
124
206
|
[[package]]
|
|
125
207
|
name = "bytes"
|
|
126
208
|
version = "1.1.0"
|
|
127
209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
210
|
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
|
|
129
211
|
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "bzip2"
|
|
214
|
+
version = "0.4.3"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"bzip2-sys",
|
|
219
|
+
"libc",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "bzip2-sys"
|
|
224
|
+
version = "0.1.11+1.0.8"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"cc",
|
|
229
|
+
"libc",
|
|
230
|
+
"pkg-config",
|
|
231
|
+
]
|
|
232
|
+
|
|
130
233
|
[[package]]
|
|
131
234
|
name = "cache-padded"
|
|
132
235
|
version = "1.2.0"
|
|
@@ -138,6 +241,9 @@ name = "cc"
|
|
|
138
241
|
version = "1.0.73"
|
|
139
242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
243
|
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"jobserver",
|
|
246
|
+
]
|
|
141
247
|
|
|
142
248
|
[[package]]
|
|
143
249
|
name = "cfg-if"
|
|
@@ -145,6 +251,15 @@ version = "1.0.0"
|
|
|
145
251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
252
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
147
253
|
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "cipher"
|
|
256
|
+
version = "0.3.0"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"generic-array",
|
|
261
|
+
]
|
|
262
|
+
|
|
148
263
|
[[package]]
|
|
149
264
|
name = "concurrent-queue"
|
|
150
265
|
version = "1.2.2"
|
|
@@ -154,6 +269,12 @@ dependencies = [
|
|
|
154
269
|
"cache-padded",
|
|
155
270
|
]
|
|
156
271
|
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "constant_time_eq"
|
|
274
|
+
version = "0.1.5"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
|
277
|
+
|
|
157
278
|
[[package]]
|
|
158
279
|
name = "convert_case"
|
|
159
280
|
version = "0.4.0"
|
|
@@ -176,6 +297,24 @@ version = "0.8.3"
|
|
|
176
297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
298
|
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
|
|
178
299
|
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "cpufeatures"
|
|
302
|
+
version = "0.2.5"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
|
|
305
|
+
dependencies = [
|
|
306
|
+
"libc",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "crc32fast"
|
|
311
|
+
version = "1.3.2"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"cfg-if",
|
|
316
|
+
]
|
|
317
|
+
|
|
179
318
|
[[package]]
|
|
180
319
|
name = "crossbeam"
|
|
181
320
|
version = "0.8.1"
|
|
@@ -245,6 +384,16 @@ dependencies = [
|
|
|
245
384
|
"lazy_static",
|
|
246
385
|
]
|
|
247
386
|
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "crypto-common"
|
|
389
|
+
version = "0.1.6"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"generic-array",
|
|
394
|
+
"typenum",
|
|
395
|
+
]
|
|
396
|
+
|
|
248
397
|
[[package]]
|
|
249
398
|
name = "darling"
|
|
250
399
|
version = "0.14.0"
|
|
@@ -280,16 +429,6 @@ dependencies = [
|
|
|
280
429
|
"syn",
|
|
281
430
|
]
|
|
282
431
|
|
|
283
|
-
[[package]]
|
|
284
|
-
name = "dashmap"
|
|
285
|
-
version = "4.0.2"
|
|
286
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
-
checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c"
|
|
288
|
-
dependencies = [
|
|
289
|
-
"cfg-if",
|
|
290
|
-
"num_cpus",
|
|
291
|
-
]
|
|
292
|
-
|
|
293
432
|
[[package]]
|
|
294
433
|
name = "dashmap"
|
|
295
434
|
version = "5.2.0"
|
|
@@ -351,6 +490,17 @@ version = "0.4.0"
|
|
|
351
490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
491
|
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
353
492
|
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "digest"
|
|
495
|
+
version = "0.10.3"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
|
|
498
|
+
dependencies = [
|
|
499
|
+
"block-buffer",
|
|
500
|
+
"crypto-common",
|
|
501
|
+
"subtle",
|
|
502
|
+
]
|
|
503
|
+
|
|
354
504
|
[[package]]
|
|
355
505
|
name = "downcast"
|
|
356
506
|
version = "0.11.0"
|
|
@@ -363,6 +513,15 @@ version = "1.6.1"
|
|
|
363
513
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
514
|
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
|
|
365
515
|
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "encoding_rs"
|
|
518
|
+
version = "0.8.31"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"cfg-if",
|
|
523
|
+
]
|
|
524
|
+
|
|
366
525
|
[[package]]
|
|
367
526
|
name = "enum_dispatch"
|
|
368
527
|
version = "0.3.8"
|
|
@@ -390,12 +549,34 @@ dependencies = [
|
|
|
390
549
|
"instant",
|
|
391
550
|
]
|
|
392
551
|
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "filetime"
|
|
554
|
+
version = "0.2.17"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"cfg-if",
|
|
559
|
+
"libc",
|
|
560
|
+
"redox_syscall",
|
|
561
|
+
"windows-sys 0.36.1",
|
|
562
|
+
]
|
|
563
|
+
|
|
393
564
|
[[package]]
|
|
394
565
|
name = "fixedbitset"
|
|
395
566
|
version = "0.4.1"
|
|
396
567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
568
|
checksum = "279fb028e20b3c4c320317955b77c5e0c9701f05a1d309905d6fc702cdc5053e"
|
|
398
569
|
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "flate2"
|
|
572
|
+
version = "1.0.24"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"crc32fast",
|
|
577
|
+
"miniz_oxide",
|
|
578
|
+
]
|
|
579
|
+
|
|
399
580
|
[[package]]
|
|
400
581
|
name = "float-cmp"
|
|
401
582
|
version = "0.9.0"
|
|
@@ -533,6 +714,16 @@ dependencies = [
|
|
|
533
714
|
"slab",
|
|
534
715
|
]
|
|
535
716
|
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "generic-array"
|
|
719
|
+
version = "0.14.6"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"typenum",
|
|
724
|
+
"version_check",
|
|
725
|
+
]
|
|
726
|
+
|
|
536
727
|
[[package]]
|
|
537
728
|
name = "getrandom"
|
|
538
729
|
version = "0.2.6"
|
|
@@ -546,11 +737,12 @@ dependencies = [
|
|
|
546
737
|
|
|
547
738
|
[[package]]
|
|
548
739
|
name = "governor"
|
|
549
|
-
version = "0.
|
|
740
|
+
version = "0.5.0"
|
|
550
741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
-
checksum = "
|
|
742
|
+
checksum = "de1b4626e87b9eb1d603ed23067ba1e29ec1d0b35325a2b96c3fe1cf20871f56"
|
|
552
743
|
dependencies = [
|
|
553
|
-
"
|
|
744
|
+
"cfg-if",
|
|
745
|
+
"dashmap",
|
|
554
746
|
"futures",
|
|
555
747
|
"futures-timer",
|
|
556
748
|
"no-std-compat",
|
|
@@ -576,7 +768,7 @@ dependencies = [
|
|
|
576
768
|
"indexmap",
|
|
577
769
|
"slab",
|
|
578
770
|
"tokio",
|
|
579
|
-
"tokio-util
|
|
771
|
+
"tokio-util",
|
|
580
772
|
"tracing",
|
|
581
773
|
]
|
|
582
774
|
|
|
@@ -585,18 +777,21 @@ name = "hashbrown"
|
|
|
585
777
|
version = "0.11.2"
|
|
586
778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
779
|
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "hashbrown"
|
|
783
|
+
version = "0.12.3"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
588
786
|
dependencies = [
|
|
589
787
|
"ahash",
|
|
590
788
|
]
|
|
591
789
|
|
|
592
790
|
[[package]]
|
|
593
791
|
name = "heck"
|
|
594
|
-
version = "0.
|
|
792
|
+
version = "0.4.0"
|
|
595
793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
-
checksum = "
|
|
597
|
-
dependencies = [
|
|
598
|
-
"unicode-segmentation",
|
|
599
|
-
]
|
|
794
|
+
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
|
|
600
795
|
|
|
601
796
|
[[package]]
|
|
602
797
|
name = "hermit-abi"
|
|
@@ -607,6 +802,15 @@ dependencies = [
|
|
|
607
802
|
"libc",
|
|
608
803
|
]
|
|
609
804
|
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "hmac"
|
|
807
|
+
version = "0.12.1"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
810
|
+
dependencies = [
|
|
811
|
+
"digest",
|
|
812
|
+
]
|
|
813
|
+
|
|
610
814
|
[[package]]
|
|
611
815
|
name = "http"
|
|
612
816
|
version = "0.2.6"
|
|
@@ -629,6 +833,12 @@ dependencies = [
|
|
|
629
833
|
"pin-project-lite",
|
|
630
834
|
]
|
|
631
835
|
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "http-range-header"
|
|
838
|
+
version = "0.3.0"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
|
|
841
|
+
|
|
632
842
|
[[package]]
|
|
633
843
|
name = "httparse"
|
|
634
844
|
version = "1.7.0"
|
|
@@ -665,6 +875,19 @@ dependencies = [
|
|
|
665
875
|
"want",
|
|
666
876
|
]
|
|
667
877
|
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "hyper-rustls"
|
|
880
|
+
version = "0.23.0"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac"
|
|
883
|
+
dependencies = [
|
|
884
|
+
"http",
|
|
885
|
+
"hyper",
|
|
886
|
+
"rustls",
|
|
887
|
+
"tokio",
|
|
888
|
+
"tokio-rustls",
|
|
889
|
+
]
|
|
890
|
+
|
|
668
891
|
[[package]]
|
|
669
892
|
name = "hyper-timeout"
|
|
670
893
|
version = "0.4.1"
|
|
@@ -701,7 +924,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
701
924
|
checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
|
|
702
925
|
dependencies = [
|
|
703
926
|
"autocfg",
|
|
704
|
-
"hashbrown",
|
|
927
|
+
"hashbrown 0.11.2",
|
|
705
928
|
]
|
|
706
929
|
|
|
707
930
|
[[package]]
|
|
@@ -713,6 +936,12 @@ dependencies = [
|
|
|
713
936
|
"cfg-if",
|
|
714
937
|
]
|
|
715
938
|
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "ipnet"
|
|
941
|
+
version = "2.5.0"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
|
|
944
|
+
|
|
716
945
|
[[package]]
|
|
717
946
|
name = "itertools"
|
|
718
947
|
version = "0.10.3"
|
|
@@ -728,6 +957,15 @@ version = "1.0.1"
|
|
|
728
957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
958
|
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
|
|
730
959
|
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "jobserver"
|
|
962
|
+
version = "0.1.24"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"libc",
|
|
967
|
+
]
|
|
968
|
+
|
|
731
969
|
[[package]]
|
|
732
970
|
name = "js-sys"
|
|
733
971
|
version = "0.3.57"
|
|
@@ -745,9 +983,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
745
983
|
|
|
746
984
|
[[package]]
|
|
747
985
|
name = "libc"
|
|
748
|
-
version = "0.2.
|
|
986
|
+
version = "0.2.132"
|
|
749
987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
-
checksum = "
|
|
988
|
+
checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5"
|
|
751
989
|
|
|
752
990
|
[[package]]
|
|
753
991
|
name = "libloading"
|
|
@@ -771,20 +1009,20 @@ dependencies = [
|
|
|
771
1009
|
|
|
772
1010
|
[[package]]
|
|
773
1011
|
name = "log"
|
|
774
|
-
version = "0.4.
|
|
1012
|
+
version = "0.4.17"
|
|
775
1013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
-
checksum = "
|
|
1014
|
+
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
|
777
1015
|
dependencies = [
|
|
778
1016
|
"cfg-if",
|
|
779
1017
|
]
|
|
780
1018
|
|
|
781
1019
|
[[package]]
|
|
782
1020
|
name = "lru"
|
|
783
|
-
version = "0.
|
|
1021
|
+
version = "0.8.0"
|
|
784
1022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
-
checksum = "
|
|
1023
|
+
checksum = "936d98d2ddd79c18641c6709e7bb09981449694e402d1a0f0f657ea8d61f4a51"
|
|
786
1024
|
dependencies = [
|
|
787
|
-
"hashbrown",
|
|
1025
|
+
"hashbrown 0.12.3",
|
|
788
1026
|
]
|
|
789
1027
|
|
|
790
1028
|
[[package]]
|
|
@@ -811,6 +1049,12 @@ version = "0.1.9"
|
|
|
811
1049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
1050
|
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
|
|
813
1051
|
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "matchit"
|
|
1054
|
+
version = "0.5.0"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb"
|
|
1057
|
+
|
|
814
1058
|
[[package]]
|
|
815
1059
|
name = "memchr"
|
|
816
1060
|
version = "2.4.1"
|
|
@@ -826,6 +1070,21 @@ dependencies = [
|
|
|
826
1070
|
"autocfg",
|
|
827
1071
|
]
|
|
828
1072
|
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "mime"
|
|
1075
|
+
version = "0.3.16"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "miniz_oxide"
|
|
1081
|
+
version = "0.5.4"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"adler",
|
|
1086
|
+
]
|
|
1087
|
+
|
|
829
1088
|
[[package]]
|
|
830
1089
|
name = "mio"
|
|
831
1090
|
version = "0.8.2"
|
|
@@ -923,6 +1182,20 @@ dependencies = [
|
|
|
923
1182
|
"smallvec",
|
|
924
1183
|
]
|
|
925
1184
|
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "nix"
|
|
1187
|
+
version = "0.25.0"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb"
|
|
1190
|
+
dependencies = [
|
|
1191
|
+
"autocfg",
|
|
1192
|
+
"bitflags",
|
|
1193
|
+
"cfg-if",
|
|
1194
|
+
"libc",
|
|
1195
|
+
"memoffset",
|
|
1196
|
+
"pin-utils",
|
|
1197
|
+
]
|
|
1198
|
+
|
|
926
1199
|
[[package]]
|
|
927
1200
|
name = "no-std-compat"
|
|
928
1201
|
version = "0.4.1"
|
|
@@ -969,11 +1242,26 @@ dependencies = [
|
|
|
969
1242
|
"libc",
|
|
970
1243
|
]
|
|
971
1244
|
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "num_threads"
|
|
1247
|
+
version = "0.1.6"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
|
|
1250
|
+
dependencies = [
|
|
1251
|
+
"libc",
|
|
1252
|
+
]
|
|
1253
|
+
|
|
972
1254
|
[[package]]
|
|
973
1255
|
name = "once_cell"
|
|
974
|
-
version = "1.
|
|
1256
|
+
version = "1.14.0"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0"
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "opaque-debug"
|
|
1262
|
+
version = "0.3.0"
|
|
975
1263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
-
checksum = "
|
|
1264
|
+
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
|
|
977
1265
|
|
|
978
1266
|
[[package]]
|
|
979
1267
|
name = "openssl-probe"
|
|
@@ -1000,54 +1288,93 @@ dependencies = [
|
|
|
1000
1288
|
|
|
1001
1289
|
[[package]]
|
|
1002
1290
|
name = "opentelemetry"
|
|
1003
|
-
version = "0.
|
|
1291
|
+
version = "0.18.0"
|
|
1004
1292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
-
checksum = "
|
|
1293
|
+
checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e"
|
|
1006
1294
|
dependencies = [
|
|
1007
|
-
"
|
|
1008
|
-
"
|
|
1009
|
-
"dashmap 4.0.2",
|
|
1010
|
-
"fnv",
|
|
1011
|
-
"futures-channel",
|
|
1012
|
-
"futures-executor",
|
|
1013
|
-
"futures-util",
|
|
1014
|
-
"js-sys",
|
|
1015
|
-
"lazy_static",
|
|
1016
|
-
"percent-encoding",
|
|
1017
|
-
"pin-project",
|
|
1018
|
-
"rand",
|
|
1019
|
-
"thiserror",
|
|
1020
|
-
"tokio",
|
|
1021
|
-
"tokio-stream",
|
|
1295
|
+
"opentelemetry_api",
|
|
1296
|
+
"opentelemetry_sdk",
|
|
1022
1297
|
]
|
|
1023
1298
|
|
|
1024
1299
|
[[package]]
|
|
1025
1300
|
name = "opentelemetry-otlp"
|
|
1026
|
-
version = "0.
|
|
1301
|
+
version = "0.11.0"
|
|
1027
1302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
-
checksum = "
|
|
1303
|
+
checksum = "d1c928609d087790fc936a1067bdc310ae702bdf3b090c3f281b713622c8bbde"
|
|
1029
1304
|
dependencies = [
|
|
1030
1305
|
"async-trait",
|
|
1031
1306
|
"futures",
|
|
1032
1307
|
"futures-util",
|
|
1033
1308
|
"http",
|
|
1034
|
-
"opentelemetry 0.
|
|
1309
|
+
"opentelemetry 0.18.0",
|
|
1310
|
+
"opentelemetry-proto",
|
|
1035
1311
|
"prost",
|
|
1036
1312
|
"thiserror",
|
|
1037
1313
|
"tokio",
|
|
1038
1314
|
"tonic",
|
|
1039
|
-
"tonic-build",
|
|
1040
1315
|
]
|
|
1041
1316
|
|
|
1042
1317
|
[[package]]
|
|
1043
1318
|
name = "opentelemetry-prometheus"
|
|
1044
|
-
version = "0.
|
|
1319
|
+
version = "0.11.0"
|
|
1320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1321
|
+
checksum = "06c3d833835a53cf91331d2cfb27e9121f5a95261f31f08a1f79ab31688b8da8"
|
|
1322
|
+
dependencies = [
|
|
1323
|
+
"opentelemetry 0.18.0",
|
|
1324
|
+
"prometheus",
|
|
1325
|
+
"protobuf",
|
|
1326
|
+
]
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "opentelemetry-proto"
|
|
1330
|
+
version = "0.1.0"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "d61a2f56df5574508dd86aaca016c917489e589ece4141df1b5e349af8d66c28"
|
|
1333
|
+
dependencies = [
|
|
1334
|
+
"futures",
|
|
1335
|
+
"futures-util",
|
|
1336
|
+
"opentelemetry 0.18.0",
|
|
1337
|
+
"prost",
|
|
1338
|
+
"tonic",
|
|
1339
|
+
"tonic-build",
|
|
1340
|
+
]
|
|
1341
|
+
|
|
1342
|
+
[[package]]
|
|
1343
|
+
name = "opentelemetry_api"
|
|
1344
|
+
version = "0.18.0"
|
|
1345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
+
checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22"
|
|
1347
|
+
dependencies = [
|
|
1348
|
+
"fnv",
|
|
1349
|
+
"futures-channel",
|
|
1350
|
+
"futures-util",
|
|
1351
|
+
"indexmap",
|
|
1352
|
+
"js-sys",
|
|
1353
|
+
"once_cell",
|
|
1354
|
+
"pin-project-lite",
|
|
1355
|
+
"thiserror",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "opentelemetry_sdk"
|
|
1360
|
+
version = "0.18.0"
|
|
1045
1361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
-
checksum = "
|
|
1362
|
+
checksum = "1ca41c4933371b61c2a2f214bf16931499af4ec90543604ec828f7a625c09113"
|
|
1047
1363
|
dependencies = [
|
|
1048
|
-
"
|
|
1049
|
-
"
|
|
1050
|
-
"
|
|
1364
|
+
"async-trait",
|
|
1365
|
+
"crossbeam-channel",
|
|
1366
|
+
"dashmap",
|
|
1367
|
+
"fnv",
|
|
1368
|
+
"futures-channel",
|
|
1369
|
+
"futures-executor",
|
|
1370
|
+
"futures-util",
|
|
1371
|
+
"once_cell",
|
|
1372
|
+
"opentelemetry_api",
|
|
1373
|
+
"percent-encoding",
|
|
1374
|
+
"rand",
|
|
1375
|
+
"thiserror",
|
|
1376
|
+
"tokio",
|
|
1377
|
+
"tokio-stream",
|
|
1051
1378
|
]
|
|
1052
1379
|
|
|
1053
1380
|
[[package]]
|
|
@@ -1095,7 +1422,30 @@ dependencies = [
|
|
|
1095
1422
|
"libc",
|
|
1096
1423
|
"redox_syscall",
|
|
1097
1424
|
"smallvec",
|
|
1098
|
-
"windows-sys",
|
|
1425
|
+
"windows-sys 0.34.0",
|
|
1426
|
+
]
|
|
1427
|
+
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "password-hash"
|
|
1430
|
+
version = "0.3.2"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "1d791538a6dcc1e7cb7fe6f6b58aca40e7f79403c45b2bc274008b5e647af1d8"
|
|
1433
|
+
dependencies = [
|
|
1434
|
+
"base64ct",
|
|
1435
|
+
"rand_core",
|
|
1436
|
+
"subtle",
|
|
1437
|
+
]
|
|
1438
|
+
|
|
1439
|
+
[[package]]
|
|
1440
|
+
name = "pbkdf2"
|
|
1441
|
+
version = "0.10.1"
|
|
1442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1443
|
+
checksum = "271779f35b581956db91a3e55737327a03aa051e90b1c47aeb189508533adfd7"
|
|
1444
|
+
dependencies = [
|
|
1445
|
+
"digest",
|
|
1446
|
+
"hmac",
|
|
1447
|
+
"password-hash",
|
|
1448
|
+
"sha2",
|
|
1099
1449
|
]
|
|
1100
1450
|
|
|
1101
1451
|
[[package]]
|
|
@@ -1136,9 +1486,9 @@ dependencies = [
|
|
|
1136
1486
|
|
|
1137
1487
|
[[package]]
|
|
1138
1488
|
name = "pin-project-lite"
|
|
1139
|
-
version = "0.2.
|
|
1489
|
+
version = "0.2.9"
|
|
1140
1490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
-
checksum = "
|
|
1491
|
+
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
|
1142
1492
|
|
|
1143
1493
|
[[package]]
|
|
1144
1494
|
name = "pin-utils"
|
|
@@ -1146,6 +1496,12 @@ version = "0.1.0"
|
|
|
1146
1496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
1497
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1148
1498
|
|
|
1499
|
+
[[package]]
|
|
1500
|
+
name = "pkg-config"
|
|
1501
|
+
version = "0.3.25"
|
|
1502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
+
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
|
|
1504
|
+
|
|
1149
1505
|
[[package]]
|
|
1150
1506
|
name = "ppv-lite86"
|
|
1151
1507
|
version = "0.2.16"
|
|
@@ -1182,6 +1538,16 @@ dependencies = [
|
|
|
1182
1538
|
"termtree",
|
|
1183
1539
|
]
|
|
1184
1540
|
|
|
1541
|
+
[[package]]
|
|
1542
|
+
name = "prettyplease"
|
|
1543
|
+
version = "0.1.19"
|
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
+
checksum = "a49e86d2c26a24059894a3afa13fd17d063419b05dfb83f06d9c3566060c3f5a"
|
|
1546
|
+
dependencies = [
|
|
1547
|
+
"proc-macro2",
|
|
1548
|
+
"syn",
|
|
1549
|
+
]
|
|
1550
|
+
|
|
1185
1551
|
[[package]]
|
|
1186
1552
|
name = "proc-macro2"
|
|
1187
1553
|
version = "1.0.37"
|
|
@@ -1208,9 +1574,9 @@ dependencies = [
|
|
|
1208
1574
|
|
|
1209
1575
|
[[package]]
|
|
1210
1576
|
name = "prost"
|
|
1211
|
-
version = "0.
|
|
1577
|
+
version = "0.11.0"
|
|
1212
1578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
-
checksum = "
|
|
1579
|
+
checksum = "399c3c31cdec40583bb68f0b18403400d01ec4289c383aa047560439952c4dd7"
|
|
1214
1580
|
dependencies = [
|
|
1215
1581
|
"bytes",
|
|
1216
1582
|
"prost-derive",
|
|
@@ -1218,9 +1584,9 @@ dependencies = [
|
|
|
1218
1584
|
|
|
1219
1585
|
[[package]]
|
|
1220
1586
|
name = "prost-build"
|
|
1221
|
-
version = "0.
|
|
1587
|
+
version = "0.11.1"
|
|
1222
1588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
-
checksum = "
|
|
1589
|
+
checksum = "7f835c582e6bd972ba8347313300219fed5bfa52caf175298d860b61ff6069bb"
|
|
1224
1590
|
dependencies = [
|
|
1225
1591
|
"bytes",
|
|
1226
1592
|
"heck",
|
|
@@ -1238,9 +1604,9 @@ dependencies = [
|
|
|
1238
1604
|
|
|
1239
1605
|
[[package]]
|
|
1240
1606
|
name = "prost-derive"
|
|
1241
|
-
version = "0.
|
|
1607
|
+
version = "0.11.0"
|
|
1242
1608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
-
checksum = "
|
|
1609
|
+
checksum = "7345d5f0e08c0536d7ac7229952590239e77abf0a0100a1b1d890add6ea96364"
|
|
1244
1610
|
dependencies = [
|
|
1245
1611
|
"anyhow",
|
|
1246
1612
|
"itertools",
|
|
@@ -1251,9 +1617,9 @@ dependencies = [
|
|
|
1251
1617
|
|
|
1252
1618
|
[[package]]
|
|
1253
1619
|
name = "prost-types"
|
|
1254
|
-
version = "0.
|
|
1620
|
+
version = "0.11.1"
|
|
1255
1621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
-
checksum = "
|
|
1622
|
+
checksum = "4dfaa718ad76a44b3415e6c4d53b17c8f99160dcb3a99b10470fce8ad43f6e3e"
|
|
1257
1623
|
dependencies = [
|
|
1258
1624
|
"bytes",
|
|
1259
1625
|
"prost",
|
|
@@ -1373,6 +1739,46 @@ dependencies = [
|
|
|
1373
1739
|
"winapi",
|
|
1374
1740
|
]
|
|
1375
1741
|
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "reqwest"
|
|
1744
|
+
version = "0.11.11"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92"
|
|
1747
|
+
dependencies = [
|
|
1748
|
+
"base64",
|
|
1749
|
+
"bytes",
|
|
1750
|
+
"encoding_rs",
|
|
1751
|
+
"futures-core",
|
|
1752
|
+
"futures-util",
|
|
1753
|
+
"h2",
|
|
1754
|
+
"http",
|
|
1755
|
+
"http-body",
|
|
1756
|
+
"hyper",
|
|
1757
|
+
"hyper-rustls",
|
|
1758
|
+
"ipnet",
|
|
1759
|
+
"js-sys",
|
|
1760
|
+
"lazy_static",
|
|
1761
|
+
"log",
|
|
1762
|
+
"mime",
|
|
1763
|
+
"percent-encoding",
|
|
1764
|
+
"pin-project-lite",
|
|
1765
|
+
"rustls",
|
|
1766
|
+
"rustls-pemfile",
|
|
1767
|
+
"serde",
|
|
1768
|
+
"serde_json",
|
|
1769
|
+
"serde_urlencoded",
|
|
1770
|
+
"tokio",
|
|
1771
|
+
"tokio-rustls",
|
|
1772
|
+
"tokio-util",
|
|
1773
|
+
"tower-service",
|
|
1774
|
+
"url",
|
|
1775
|
+
"wasm-bindgen",
|
|
1776
|
+
"wasm-bindgen-futures",
|
|
1777
|
+
"web-sys",
|
|
1778
|
+
"webpki-roots",
|
|
1779
|
+
"winreg",
|
|
1780
|
+
]
|
|
1781
|
+
|
|
1376
1782
|
[[package]]
|
|
1377
1783
|
name = "ring"
|
|
1378
1784
|
version = "0.16.20"
|
|
@@ -1431,11 +1837,10 @@ version = "0.1.0"
|
|
|
1431
1837
|
|
|
1432
1838
|
[[package]]
|
|
1433
1839
|
name = "rustls"
|
|
1434
|
-
version = "0.
|
|
1840
|
+
version = "0.20.6"
|
|
1435
1841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
-
checksum = "
|
|
1842
|
+
checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
|
|
1437
1843
|
dependencies = [
|
|
1438
|
-
"base64",
|
|
1439
1844
|
"log",
|
|
1440
1845
|
"ring",
|
|
1441
1846
|
"sct",
|
|
@@ -1444,16 +1849,25 @@ dependencies = [
|
|
|
1444
1849
|
|
|
1445
1850
|
[[package]]
|
|
1446
1851
|
name = "rustls-native-certs"
|
|
1447
|
-
version = "0.
|
|
1852
|
+
version = "0.6.2"
|
|
1448
1853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
-
checksum = "
|
|
1854
|
+
checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
|
|
1450
1855
|
dependencies = [
|
|
1451
1856
|
"openssl-probe",
|
|
1452
|
-
"rustls",
|
|
1857
|
+
"rustls-pemfile",
|
|
1453
1858
|
"schannel",
|
|
1454
1859
|
"security-framework",
|
|
1455
1860
|
]
|
|
1456
1861
|
|
|
1862
|
+
[[package]]
|
|
1863
|
+
name = "rustls-pemfile"
|
|
1864
|
+
version = "1.0.1"
|
|
1865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
|
+
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
|
|
1867
|
+
dependencies = [
|
|
1868
|
+
"base64",
|
|
1869
|
+
]
|
|
1870
|
+
|
|
1457
1871
|
[[package]]
|
|
1458
1872
|
name = "ryu"
|
|
1459
1873
|
version = "1.0.9"
|
|
@@ -1478,9 +1892,9 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
|
1478
1892
|
|
|
1479
1893
|
[[package]]
|
|
1480
1894
|
name = "sct"
|
|
1481
|
-
version = "0.
|
|
1895
|
+
version = "0.7.0"
|
|
1482
1896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
-
checksum = "
|
|
1897
|
+
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
|
|
1484
1898
|
dependencies = [
|
|
1485
1899
|
"ring",
|
|
1486
1900
|
"untrusted",
|
|
@@ -1561,6 +1975,40 @@ dependencies = [
|
|
|
1561
1975
|
"serde",
|
|
1562
1976
|
]
|
|
1563
1977
|
|
|
1978
|
+
[[package]]
|
|
1979
|
+
name = "serde_urlencoded"
|
|
1980
|
+
version = "0.7.1"
|
|
1981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1983
|
+
dependencies = [
|
|
1984
|
+
"form_urlencoded",
|
|
1985
|
+
"itoa",
|
|
1986
|
+
"ryu",
|
|
1987
|
+
"serde",
|
|
1988
|
+
]
|
|
1989
|
+
|
|
1990
|
+
[[package]]
|
|
1991
|
+
name = "sha1"
|
|
1992
|
+
version = "0.10.4"
|
|
1993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1994
|
+
checksum = "006769ba83e921b3085caa8334186b00cf92b4cb1a6cf4632fbccc8eff5c7549"
|
|
1995
|
+
dependencies = [
|
|
1996
|
+
"cfg-if",
|
|
1997
|
+
"cpufeatures",
|
|
1998
|
+
"digest",
|
|
1999
|
+
]
|
|
2000
|
+
|
|
2001
|
+
[[package]]
|
|
2002
|
+
name = "sha2"
|
|
2003
|
+
version = "0.10.5"
|
|
2004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
+
checksum = "cf9db03534dff993187064c4e0c05a5708d2a9728ace9a8959b77bedf415dac5"
|
|
2006
|
+
dependencies = [
|
|
2007
|
+
"cfg-if",
|
|
2008
|
+
"cpufeatures",
|
|
2009
|
+
"digest",
|
|
2010
|
+
]
|
|
2011
|
+
|
|
1564
2012
|
[[package]]
|
|
1565
2013
|
name = "sharded-slab"
|
|
1566
2014
|
version = "0.1.4"
|
|
@@ -1628,6 +2076,12 @@ version = "0.10.0"
|
|
|
1628
2076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
2077
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
1630
2078
|
|
|
2079
|
+
[[package]]
|
|
2080
|
+
name = "subtle"
|
|
2081
|
+
version = "2.4.1"
|
|
2082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
|
+
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
|
|
2084
|
+
|
|
1631
2085
|
[[package]]
|
|
1632
2086
|
name = "syn"
|
|
1633
2087
|
version = "1.0.91"
|
|
@@ -1650,6 +2104,23 @@ dependencies = [
|
|
|
1650
2104
|
"syn",
|
|
1651
2105
|
]
|
|
1652
2106
|
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "sync_wrapper"
|
|
2109
|
+
version = "0.1.1"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "20518fe4a4c9acf048008599e464deb21beeae3d3578418951a189c235a7a9a8"
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "tar"
|
|
2115
|
+
version = "0.4.38"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
|
|
2118
|
+
dependencies = [
|
|
2119
|
+
"filetime",
|
|
2120
|
+
"libc",
|
|
2121
|
+
"xattr",
|
|
2122
|
+
]
|
|
2123
|
+
|
|
1653
2124
|
[[package]]
|
|
1654
2125
|
name = "tempfile"
|
|
1655
2126
|
version = "3.3.0"
|
|
@@ -1676,7 +2147,8 @@ dependencies = [
|
|
|
1676
2147
|
"futures",
|
|
1677
2148
|
"futures-retry",
|
|
1678
2149
|
"http",
|
|
1679
|
-
"
|
|
2150
|
+
"once_cell",
|
|
2151
|
+
"opentelemetry 0.18.0",
|
|
1680
2152
|
"parking_lot 0.12.0",
|
|
1681
2153
|
"prost-types",
|
|
1682
2154
|
"temporal-sdk-core-protos",
|
|
@@ -1699,11 +2171,13 @@ dependencies = [
|
|
|
1699
2171
|
"async-trait",
|
|
1700
2172
|
"base64",
|
|
1701
2173
|
"crossbeam",
|
|
1702
|
-
"dashmap
|
|
2174
|
+
"dashmap",
|
|
1703
2175
|
"derive_builder",
|
|
1704
2176
|
"derive_more",
|
|
1705
2177
|
"enum_dispatch",
|
|
2178
|
+
"flate2",
|
|
1706
2179
|
"futures",
|
|
2180
|
+
"futures-util",
|
|
1707
2181
|
"governor",
|
|
1708
2182
|
"http",
|
|
1709
2183
|
"hyper",
|
|
@@ -1712,8 +2186,9 @@ dependencies = [
|
|
|
1712
2186
|
"log",
|
|
1713
2187
|
"lru",
|
|
1714
2188
|
"mockall",
|
|
2189
|
+
"nix",
|
|
1715
2190
|
"once_cell",
|
|
1716
|
-
"opentelemetry 0.
|
|
2191
|
+
"opentelemetry 0.18.0",
|
|
1717
2192
|
"opentelemetry-otlp",
|
|
1718
2193
|
"opentelemetry-prometheus",
|
|
1719
2194
|
"parking_lot 0.12.0",
|
|
@@ -1721,18 +2196,21 @@ dependencies = [
|
|
|
1721
2196
|
"prost",
|
|
1722
2197
|
"prost-types",
|
|
1723
2198
|
"rand",
|
|
2199
|
+
"reqwest",
|
|
1724
2200
|
"ringbuf",
|
|
1725
2201
|
"rustfsm",
|
|
1726
2202
|
"serde",
|
|
2203
|
+
"serde_json",
|
|
1727
2204
|
"siphasher",
|
|
1728
2205
|
"slotmap",
|
|
2206
|
+
"tar",
|
|
1729
2207
|
"temporal-client",
|
|
1730
2208
|
"temporal-sdk-core-api",
|
|
1731
2209
|
"temporal-sdk-core-protos",
|
|
1732
2210
|
"thiserror",
|
|
1733
2211
|
"tokio",
|
|
1734
2212
|
"tokio-stream",
|
|
1735
|
-
"tokio-util
|
|
2213
|
+
"tokio-util",
|
|
1736
2214
|
"tonic",
|
|
1737
2215
|
"tonic-build",
|
|
1738
2216
|
"tracing",
|
|
@@ -1741,6 +2219,7 @@ dependencies = [
|
|
|
1741
2219
|
"tracing-subscriber",
|
|
1742
2220
|
"url",
|
|
1743
2221
|
"uuid",
|
|
2222
|
+
"zip",
|
|
1744
2223
|
]
|
|
1745
2224
|
|
|
1746
2225
|
[[package]]
|
|
@@ -1751,7 +2230,7 @@ dependencies = [
|
|
|
1751
2230
|
"async-trait",
|
|
1752
2231
|
"derive_builder",
|
|
1753
2232
|
"log",
|
|
1754
|
-
"opentelemetry 0.
|
|
2233
|
+
"opentelemetry 0.18.0",
|
|
1755
2234
|
"prost-types",
|
|
1756
2235
|
"temporal-client",
|
|
1757
2236
|
"temporal-sdk-core-protos",
|
|
@@ -1830,6 +2309,24 @@ dependencies = [
|
|
|
1830
2309
|
"once_cell",
|
|
1831
2310
|
]
|
|
1832
2311
|
|
|
2312
|
+
[[package]]
|
|
2313
|
+
name = "time"
|
|
2314
|
+
version = "0.3.14"
|
|
2315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
+
checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b"
|
|
2317
|
+
dependencies = [
|
|
2318
|
+
"itoa",
|
|
2319
|
+
"libc",
|
|
2320
|
+
"num_threads",
|
|
2321
|
+
"time-macros",
|
|
2322
|
+
]
|
|
2323
|
+
|
|
2324
|
+
[[package]]
|
|
2325
|
+
name = "time-macros"
|
|
2326
|
+
version = "0.2.4"
|
|
2327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2328
|
+
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
|
|
2329
|
+
|
|
1833
2330
|
[[package]]
|
|
1834
2331
|
name = "tinyvec"
|
|
1835
2332
|
version = "1.5.1"
|
|
@@ -1888,9 +2385,9 @@ dependencies = [
|
|
|
1888
2385
|
|
|
1889
2386
|
[[package]]
|
|
1890
2387
|
name = "tokio-rustls"
|
|
1891
|
-
version = "0.
|
|
2388
|
+
version = "0.23.4"
|
|
1892
2389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1893
|
-
checksum = "
|
|
2390
|
+
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
|
|
1894
2391
|
dependencies = [
|
|
1895
2392
|
"rustls",
|
|
1896
2393
|
"tokio",
|
|
@@ -1908,20 +2405,6 @@ dependencies = [
|
|
|
1908
2405
|
"tokio",
|
|
1909
2406
|
]
|
|
1910
2407
|
|
|
1911
|
-
[[package]]
|
|
1912
|
-
name = "tokio-util"
|
|
1913
|
-
version = "0.6.9"
|
|
1914
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
-
checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
|
|
1916
|
-
dependencies = [
|
|
1917
|
-
"bytes",
|
|
1918
|
-
"futures-core",
|
|
1919
|
-
"futures-sink",
|
|
1920
|
-
"log",
|
|
1921
|
-
"pin-project-lite",
|
|
1922
|
-
"tokio",
|
|
1923
|
-
]
|
|
1924
|
-
|
|
1925
2408
|
[[package]]
|
|
1926
2409
|
name = "tokio-util"
|
|
1927
2410
|
version = "0.7.1"
|
|
@@ -1938,12 +2421,13 @@ dependencies = [
|
|
|
1938
2421
|
|
|
1939
2422
|
[[package]]
|
|
1940
2423
|
name = "tonic"
|
|
1941
|
-
version = "0.
|
|
2424
|
+
version = "0.8.1"
|
|
1942
2425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
-
checksum = "
|
|
2426
|
+
checksum = "11cd56bdb54ef93935a6a79dbd1d91f1ebd4c64150fd61654031fd6b8b775c91"
|
|
1944
2427
|
dependencies = [
|
|
1945
2428
|
"async-stream",
|
|
1946
2429
|
"async-trait",
|
|
2430
|
+
"axum",
|
|
1947
2431
|
"base64",
|
|
1948
2432
|
"bytes",
|
|
1949
2433
|
"futures-core",
|
|
@@ -1958,10 +2442,11 @@ dependencies = [
|
|
|
1958
2442
|
"prost",
|
|
1959
2443
|
"prost-derive",
|
|
1960
2444
|
"rustls-native-certs",
|
|
2445
|
+
"rustls-pemfile",
|
|
1961
2446
|
"tokio",
|
|
1962
2447
|
"tokio-rustls",
|
|
1963
2448
|
"tokio-stream",
|
|
1964
|
-
"tokio-util
|
|
2449
|
+
"tokio-util",
|
|
1965
2450
|
"tower",
|
|
1966
2451
|
"tower-layer",
|
|
1967
2452
|
"tower-service",
|
|
@@ -1971,10 +2456,11 @@ dependencies = [
|
|
|
1971
2456
|
|
|
1972
2457
|
[[package]]
|
|
1973
2458
|
name = "tonic-build"
|
|
1974
|
-
version = "0.
|
|
2459
|
+
version = "0.8.0"
|
|
1975
2460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1976
|
-
checksum = "
|
|
2461
|
+
checksum = "2fbcd2800e34e743b9ae795867d5f77b535d3a3be69fd731e39145719752df8c"
|
|
1977
2462
|
dependencies = [
|
|
2463
|
+
"prettyplease",
|
|
1978
2464
|
"proc-macro2",
|
|
1979
2465
|
"prost-build",
|
|
1980
2466
|
"quote",
|
|
@@ -1995,12 +2481,31 @@ dependencies = [
|
|
|
1995
2481
|
"rand",
|
|
1996
2482
|
"slab",
|
|
1997
2483
|
"tokio",
|
|
1998
|
-
"tokio-util
|
|
2484
|
+
"tokio-util",
|
|
1999
2485
|
"tower-layer",
|
|
2000
2486
|
"tower-service",
|
|
2001
2487
|
"tracing",
|
|
2002
2488
|
]
|
|
2003
2489
|
|
|
2490
|
+
[[package]]
|
|
2491
|
+
name = "tower-http"
|
|
2492
|
+
version = "0.3.3"
|
|
2493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2494
|
+
checksum = "7d342c6d58709c0a6d48d48dabbb62d4ef955cf5f0f3bbfd845838e7ae88dbae"
|
|
2495
|
+
dependencies = [
|
|
2496
|
+
"bitflags",
|
|
2497
|
+
"bytes",
|
|
2498
|
+
"futures-core",
|
|
2499
|
+
"futures-util",
|
|
2500
|
+
"http",
|
|
2501
|
+
"http-body",
|
|
2502
|
+
"http-range-header",
|
|
2503
|
+
"pin-project-lite",
|
|
2504
|
+
"tower",
|
|
2505
|
+
"tower-layer",
|
|
2506
|
+
"tower-service",
|
|
2507
|
+
]
|
|
2508
|
+
|
|
2004
2509
|
[[package]]
|
|
2005
2510
|
name = "tower-layer"
|
|
2006
2511
|
version = "0.3.1"
|
|
@@ -2015,9 +2520,9 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
|
|
|
2015
2520
|
|
|
2016
2521
|
[[package]]
|
|
2017
2522
|
name = "tracing"
|
|
2018
|
-
version = "0.1.
|
|
2523
|
+
version = "0.1.36"
|
|
2019
2524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
-
checksum = "
|
|
2525
|
+
checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
|
|
2021
2526
|
dependencies = [
|
|
2022
2527
|
"cfg-if",
|
|
2023
2528
|
"log",
|
|
@@ -2028,9 +2533,9 @@ dependencies = [
|
|
|
2028
2533
|
|
|
2029
2534
|
[[package]]
|
|
2030
2535
|
name = "tracing-attributes"
|
|
2031
|
-
version = "0.1.
|
|
2536
|
+
version = "0.1.22"
|
|
2032
2537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
-
checksum = "
|
|
2538
|
+
checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
|
|
2034
2539
|
dependencies = [
|
|
2035
2540
|
"proc-macro2",
|
|
2036
2541
|
"quote",
|
|
@@ -2039,11 +2544,11 @@ dependencies = [
|
|
|
2039
2544
|
|
|
2040
2545
|
[[package]]
|
|
2041
2546
|
name = "tracing-core"
|
|
2042
|
-
version = "0.1.
|
|
2547
|
+
version = "0.1.29"
|
|
2043
2548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
-
checksum = "
|
|
2549
|
+
checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
|
|
2045
2550
|
dependencies = [
|
|
2046
|
-
"
|
|
2551
|
+
"once_cell",
|
|
2047
2552
|
"valuable",
|
|
2048
2553
|
]
|
|
2049
2554
|
|
|
@@ -2059,9 +2564,9 @@ dependencies = [
|
|
|
2059
2564
|
|
|
2060
2565
|
[[package]]
|
|
2061
2566
|
name = "tracing-log"
|
|
2062
|
-
version = "0.1.
|
|
2567
|
+
version = "0.1.3"
|
|
2063
2568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2064
|
-
checksum = "
|
|
2569
|
+
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
|
|
2065
2570
|
dependencies = [
|
|
2066
2571
|
"lazy_static",
|
|
2067
2572
|
"log",
|
|
@@ -2070,11 +2575,12 @@ dependencies = [
|
|
|
2070
2575
|
|
|
2071
2576
|
[[package]]
|
|
2072
2577
|
name = "tracing-opentelemetry"
|
|
2073
|
-
version = "0.
|
|
2578
|
+
version = "0.18.0"
|
|
2074
2579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2075
|
-
checksum = "
|
|
2580
|
+
checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de"
|
|
2076
2581
|
dependencies = [
|
|
2077
|
-
"
|
|
2582
|
+
"once_cell",
|
|
2583
|
+
"opentelemetry 0.18.0",
|
|
2078
2584
|
"tracing",
|
|
2079
2585
|
"tracing-core",
|
|
2080
2586
|
"tracing-log",
|
|
@@ -2106,6 +2612,12 @@ version = "0.2.3"
|
|
|
2106
2612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2107
2613
|
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
|
|
2108
2614
|
|
|
2615
|
+
[[package]]
|
|
2616
|
+
name = "typenum"
|
|
2617
|
+
version = "1.15.0"
|
|
2618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2619
|
+
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
|
2620
|
+
|
|
2109
2621
|
[[package]]
|
|
2110
2622
|
name = "unicode-bidi"
|
|
2111
2623
|
version = "0.3.7"
|
|
@@ -2121,12 +2633,6 @@ dependencies = [
|
|
|
2121
2633
|
"tinyvec",
|
|
2122
2634
|
]
|
|
2123
2635
|
|
|
2124
|
-
[[package]]
|
|
2125
|
-
name = "unicode-segmentation"
|
|
2126
|
-
version = "1.9.0"
|
|
2127
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2128
|
-
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
|
|
2129
|
-
|
|
2130
2636
|
[[package]]
|
|
2131
2637
|
name = "unicode-xid"
|
|
2132
2638
|
version = "0.2.2"
|
|
@@ -2153,9 +2659,9 @@ dependencies = [
|
|
|
2153
2659
|
|
|
2154
2660
|
[[package]]
|
|
2155
2661
|
name = "uuid"
|
|
2156
|
-
version = "
|
|
2662
|
+
version = "1.1.2"
|
|
2157
2663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
-
checksum = "
|
|
2664
|
+
checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
|
|
2159
2665
|
dependencies = [
|
|
2160
2666
|
"getrandom",
|
|
2161
2667
|
]
|
|
@@ -2219,6 +2725,18 @@ dependencies = [
|
|
|
2219
2725
|
"wasm-bindgen-shared",
|
|
2220
2726
|
]
|
|
2221
2727
|
|
|
2728
|
+
[[package]]
|
|
2729
|
+
name = "wasm-bindgen-futures"
|
|
2730
|
+
version = "0.4.30"
|
|
2731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2732
|
+
checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2"
|
|
2733
|
+
dependencies = [
|
|
2734
|
+
"cfg-if",
|
|
2735
|
+
"js-sys",
|
|
2736
|
+
"wasm-bindgen",
|
|
2737
|
+
"web-sys",
|
|
2738
|
+
]
|
|
2739
|
+
|
|
2222
2740
|
[[package]]
|
|
2223
2741
|
name = "wasm-bindgen-macro"
|
|
2224
2742
|
version = "0.2.80"
|
|
@@ -2260,14 +2778,23 @@ dependencies = [
|
|
|
2260
2778
|
|
|
2261
2779
|
[[package]]
|
|
2262
2780
|
name = "webpki"
|
|
2263
|
-
version = "0.
|
|
2781
|
+
version = "0.22.0"
|
|
2264
2782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2265
|
-
checksum = "
|
|
2783
|
+
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
|
|
2266
2784
|
dependencies = [
|
|
2267
2785
|
"ring",
|
|
2268
2786
|
"untrusted",
|
|
2269
2787
|
]
|
|
2270
2788
|
|
|
2789
|
+
[[package]]
|
|
2790
|
+
name = "webpki-roots"
|
|
2791
|
+
version = "0.22.4"
|
|
2792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
+
checksum = "f1c760f0d366a6c24a02ed7816e23e691f5d92291f94d15e836006fd11b04daf"
|
|
2794
|
+
dependencies = [
|
|
2795
|
+
"webpki",
|
|
2796
|
+
]
|
|
2797
|
+
|
|
2271
2798
|
[[package]]
|
|
2272
2799
|
name = "which"
|
|
2273
2800
|
version = "4.2.5"
|
|
@@ -2307,11 +2834,24 @@ version = "0.34.0"
|
|
|
2307
2834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
2835
|
checksum = "5acdd78cb4ba54c0045ac14f62d8f94a03d10047904ae2a40afa1e99d8f70825"
|
|
2309
2836
|
dependencies = [
|
|
2310
|
-
"windows_aarch64_msvc",
|
|
2311
|
-
"windows_i686_gnu",
|
|
2312
|
-
"windows_i686_msvc",
|
|
2313
|
-
"windows_x86_64_gnu",
|
|
2314
|
-
"windows_x86_64_msvc",
|
|
2837
|
+
"windows_aarch64_msvc 0.34.0",
|
|
2838
|
+
"windows_i686_gnu 0.34.0",
|
|
2839
|
+
"windows_i686_msvc 0.34.0",
|
|
2840
|
+
"windows_x86_64_gnu 0.34.0",
|
|
2841
|
+
"windows_x86_64_msvc 0.34.0",
|
|
2842
|
+
]
|
|
2843
|
+
|
|
2844
|
+
[[package]]
|
|
2845
|
+
name = "windows-sys"
|
|
2846
|
+
version = "0.36.1"
|
|
2847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
|
+
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
|
2849
|
+
dependencies = [
|
|
2850
|
+
"windows_aarch64_msvc 0.36.1",
|
|
2851
|
+
"windows_i686_gnu 0.36.1",
|
|
2852
|
+
"windows_i686_msvc 0.36.1",
|
|
2853
|
+
"windows_x86_64_gnu 0.36.1",
|
|
2854
|
+
"windows_x86_64_msvc 0.36.1",
|
|
2315
2855
|
]
|
|
2316
2856
|
|
|
2317
2857
|
[[package]]
|
|
@@ -2320,26 +2860,123 @@ version = "0.34.0"
|
|
|
2320
2860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2321
2861
|
checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d"
|
|
2322
2862
|
|
|
2863
|
+
[[package]]
|
|
2864
|
+
name = "windows_aarch64_msvc"
|
|
2865
|
+
version = "0.36.1"
|
|
2866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
|
+
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
|
2868
|
+
|
|
2323
2869
|
[[package]]
|
|
2324
2870
|
name = "windows_i686_gnu"
|
|
2325
2871
|
version = "0.34.0"
|
|
2326
2872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
2873
|
checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed"
|
|
2328
2874
|
|
|
2875
|
+
[[package]]
|
|
2876
|
+
name = "windows_i686_gnu"
|
|
2877
|
+
version = "0.36.1"
|
|
2878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2879
|
+
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
|
2880
|
+
|
|
2329
2881
|
[[package]]
|
|
2330
2882
|
name = "windows_i686_msvc"
|
|
2331
2883
|
version = "0.34.0"
|
|
2332
2884
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2333
2885
|
checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956"
|
|
2334
2886
|
|
|
2887
|
+
[[package]]
|
|
2888
|
+
name = "windows_i686_msvc"
|
|
2889
|
+
version = "0.36.1"
|
|
2890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
+
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
|
2892
|
+
|
|
2335
2893
|
[[package]]
|
|
2336
2894
|
name = "windows_x86_64_gnu"
|
|
2337
2895
|
version = "0.34.0"
|
|
2338
2896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2339
2897
|
checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4"
|
|
2340
2898
|
|
|
2899
|
+
[[package]]
|
|
2900
|
+
name = "windows_x86_64_gnu"
|
|
2901
|
+
version = "0.36.1"
|
|
2902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2903
|
+
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
|
2904
|
+
|
|
2341
2905
|
[[package]]
|
|
2342
2906
|
name = "windows_x86_64_msvc"
|
|
2343
2907
|
version = "0.34.0"
|
|
2344
2908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2345
2909
|
checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9"
|
|
2910
|
+
|
|
2911
|
+
[[package]]
|
|
2912
|
+
name = "windows_x86_64_msvc"
|
|
2913
|
+
version = "0.36.1"
|
|
2914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2915
|
+
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
|
|
2916
|
+
|
|
2917
|
+
[[package]]
|
|
2918
|
+
name = "winreg"
|
|
2919
|
+
version = "0.10.1"
|
|
2920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2921
|
+
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
|
|
2922
|
+
dependencies = [
|
|
2923
|
+
"winapi",
|
|
2924
|
+
]
|
|
2925
|
+
|
|
2926
|
+
[[package]]
|
|
2927
|
+
name = "xattr"
|
|
2928
|
+
version = "0.2.3"
|
|
2929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2930
|
+
checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
|
|
2931
|
+
dependencies = [
|
|
2932
|
+
"libc",
|
|
2933
|
+
]
|
|
2934
|
+
|
|
2935
|
+
[[package]]
|
|
2936
|
+
name = "zip"
|
|
2937
|
+
version = "0.6.2"
|
|
2938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2939
|
+
checksum = "bf225bcf73bb52cbb496e70475c7bd7a3f769df699c0020f6c7bd9a96dcf0b8d"
|
|
2940
|
+
dependencies = [
|
|
2941
|
+
"aes",
|
|
2942
|
+
"byteorder",
|
|
2943
|
+
"bzip2",
|
|
2944
|
+
"constant_time_eq",
|
|
2945
|
+
"crc32fast",
|
|
2946
|
+
"crossbeam-utils",
|
|
2947
|
+
"flate2",
|
|
2948
|
+
"hmac",
|
|
2949
|
+
"pbkdf2",
|
|
2950
|
+
"sha1",
|
|
2951
|
+
"time",
|
|
2952
|
+
"zstd",
|
|
2953
|
+
]
|
|
2954
|
+
|
|
2955
|
+
[[package]]
|
|
2956
|
+
name = "zstd"
|
|
2957
|
+
version = "0.10.2+zstd.1.5.2"
|
|
2958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2959
|
+
checksum = "5f4a6bd64f22b5e3e94b4e238669ff9f10815c27a5180108b849d24174a83847"
|
|
2960
|
+
dependencies = [
|
|
2961
|
+
"zstd-safe",
|
|
2962
|
+
]
|
|
2963
|
+
|
|
2964
|
+
[[package]]
|
|
2965
|
+
name = "zstd-safe"
|
|
2966
|
+
version = "4.1.6+zstd.1.5.2"
|
|
2967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2968
|
+
checksum = "94b61c51bb270702d6167b8ce67340d2754b088d0c091b06e593aa772c3ee9bb"
|
|
2969
|
+
dependencies = [
|
|
2970
|
+
"libc",
|
|
2971
|
+
"zstd-sys",
|
|
2972
|
+
]
|
|
2973
|
+
|
|
2974
|
+
[[package]]
|
|
2975
|
+
name = "zstd-sys"
|
|
2976
|
+
version = "1.6.3+zstd.1.5.2"
|
|
2977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2978
|
+
checksum = "fc49afa5c8d634e75761feda8c592051e7eeb4683ba827211eb0d731d3402ea8"
|
|
2979
|
+
dependencies = [
|
|
2980
|
+
"cc",
|
|
2981
|
+
"libc",
|
|
2982
|
+
]
|