@temporalio/core-bridge 1.4.4 → 1.5.1
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 +327 -419
- package/Cargo.toml +1 -1
- package/index.js +25 -2
- package/lib/errors.d.ts +22 -0
- package/lib/errors.js +65 -0
- package/lib/errors.js.map +1 -0
- package/lib/index.d.ts +440 -0
- package/lib/index.js +8 -0
- package/lib/index.js.map +1 -0
- package/package.json +11 -5
- 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/.buildkite/docker/Dockerfile +1 -1
- package/sdk-core/.buildkite/docker/docker-compose.yaml +2 -2
- package/sdk-core/bridge-ffi/Cargo.toml +1 -1
- package/sdk-core/bridge-ffi/include/sdk-core-bridge.h +0 -25
- package/sdk-core/bridge-ffi/src/lib.rs +29 -108
- package/sdk-core/bridge-ffi/src/wrappers.rs +35 -25
- package/sdk-core/client/Cargo.toml +1 -1
- package/sdk-core/client/src/lib.rs +12 -20
- package/sdk-core/client/src/raw.rs +9 -8
- package/sdk-core/client/src/retry.rs +100 -23
- package/sdk-core/core/Cargo.toml +5 -5
- package/sdk-core/core/benches/workflow_replay.rs +13 -10
- package/sdk-core/core/src/abstractions.rs +22 -22
- package/sdk-core/core/src/core_tests/activity_tasks.rs +1 -1
- package/sdk-core/core/src/core_tests/local_activities.rs +228 -6
- package/sdk-core/core/src/core_tests/queries.rs +247 -89
- package/sdk-core/core/src/core_tests/workers.rs +2 -2
- package/sdk-core/core/src/core_tests/workflow_cancels.rs +1 -1
- package/sdk-core/core/src/core_tests/workflow_tasks.rs +46 -27
- package/sdk-core/core/src/lib.rs +139 -32
- package/sdk-core/core/src/replay/mod.rs +185 -41
- package/sdk-core/core/src/telemetry/log_export.rs +190 -0
- package/sdk-core/core/src/telemetry/metrics.rs +184 -139
- package/sdk-core/core/src/telemetry/mod.rs +296 -318
- package/sdk-core/core/src/telemetry/prometheus_server.rs +4 -3
- package/sdk-core/core/src/test_help/mod.rs +9 -7
- package/sdk-core/core/src/worker/activities/local_activities.rs +2 -1
- package/sdk-core/core/src/worker/activities.rs +40 -23
- package/sdk-core/core/src/worker/client/mocks.rs +1 -1
- package/sdk-core/core/src/worker/client.rs +30 -4
- package/sdk-core/core/src/worker/mod.rs +22 -18
- package/sdk-core/core/src/worker/workflow/driven_workflow.rs +10 -19
- package/sdk-core/core/src/worker/workflow/history_update.rs +99 -25
- package/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +1 -5
- package/sdk-core/core/src/worker/workflow/machines/cancel_external_state_machine.rs +1 -5
- package/sdk-core/core/src/worker/workflow/machines/cancel_workflow_state_machine.rs +1 -5
- package/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +1 -5
- package/sdk-core/core/src/worker/workflow/machines/complete_workflow_state_machine.rs +1 -5
- package/sdk-core/core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs +2 -6
- package/sdk-core/core/src/worker/workflow/machines/fail_workflow_state_machine.rs +1 -5
- package/sdk-core/core/src/worker/workflow/machines/local_activity_state_machine.rs +18 -21
- package/sdk-core/core/src/worker/workflow/machines/mod.rs +12 -38
- package/sdk-core/core/src/worker/workflow/machines/modify_workflow_properties_state_machine.rs +178 -0
- package/sdk-core/core/src/worker/workflow/machines/patch_state_machine.rs +1 -5
- package/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +1 -5
- package/sdk-core/core/src/worker/workflow/machines/timer_state_machine.rs +1 -5
- package/sdk-core/core/src/worker/workflow/machines/transition_coverage.rs +8 -2
- package/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +1 -5
- package/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +232 -216
- package/sdk-core/core/src/worker/workflow/machines/workflow_task_state_machine.rs +1 -6
- package/sdk-core/core/src/worker/workflow/managed_run/managed_wf_test.rs +4 -4
- package/sdk-core/core/src/worker/workflow/managed_run.rs +13 -5
- package/sdk-core/core/src/worker/workflow/mod.rs +61 -9
- package/sdk-core/core/src/worker/workflow/wft_poller.rs +2 -2
- package/sdk-core/core/src/worker/workflow/workflow_stream.rs +56 -11
- package/sdk-core/core-api/Cargo.toml +4 -3
- package/sdk-core/core-api/src/lib.rs +1 -43
- package/sdk-core/core-api/src/telemetry.rs +147 -0
- package/sdk-core/core-api/src/worker.rs +13 -0
- package/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.stderr +1 -1
- package/sdk-core/histories/evict_while_la_running_no_interference-23_history.bin +0 -0
- package/sdk-core/histories/evict_while_la_running_no_interference-85_history.bin +0 -0
- package/sdk-core/protos/api_upstream/.github/CODEOWNERS +1 -1
- package/sdk-core/protos/api_upstream/buf.yaml +0 -3
- package/sdk-core/protos/api_upstream/temporal/api/batch/v1/message.proto +3 -7
- package/sdk-core/protos/api_upstream/temporal/api/command/v1/message.proto +8 -0
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/command_type.proto +1 -2
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/event_type.proto +2 -0
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +3 -0
- package/sdk-core/protos/api_upstream/temporal/api/history/v1/message.proto +13 -0
- package/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +19 -59
- package/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +0 -19
- package/sdk-core/protos/api_upstream/temporal/api/schedule/v1/message.proto +108 -29
- package/sdk-core/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +2 -2
- 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 +47 -8
- package/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +15 -1
- package/sdk-core/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +2 -0
- package/sdk-core/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +8 -1
- package/sdk-core/sdk/src/interceptors.rs +36 -3
- package/sdk-core/sdk/src/lib.rs +7 -4
- package/sdk-core/sdk/src/workflow_context.rs +13 -2
- package/sdk-core/sdk-core-protos/src/history_builder.rs +47 -1
- package/sdk-core/sdk-core-protos/src/history_info.rs +22 -22
- package/sdk-core/sdk-core-protos/src/lib.rs +49 -27
- package/sdk-core/test-utils/Cargo.toml +1 -0
- package/sdk-core/test-utils/src/lib.rs +81 -29
- package/sdk-core/tests/integ_tests/metrics_tests.rs +37 -0
- package/sdk-core/tests/integ_tests/polling_tests.rs +0 -13
- package/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +145 -4
- package/sdk-core/tests/integ_tests/workflow_tests/modify_wf_properties.rs +53 -0
- package/sdk-core/tests/integ_tests/workflow_tests/replay.rs +106 -20
- package/sdk-core/tests/integ_tests/workflow_tests.rs +18 -8
- package/sdk-core/tests/main.rs +6 -4
- package/src/conversions.rs +52 -47
- package/src/errors.rs +28 -86
- package/src/helpers.rs +3 -4
- package/src/lib.rs +2 -2
- package/src/runtime.rs +132 -61
- package/src/testing.rs +7 -4
- package/src/worker.rs +67 -50
- package/ts/errors.ts +55 -0
- package/{index.d.ts → ts/index.ts} +121 -15
- package/sdk-core/core/src/log_export.rs +0 -62
- package/sdk-core/core/src/worker/workflow/machines/mutable_side_effect_state_machine.rs +0 -127
- package/sdk-core/core/src/worker/workflow/machines/side_effect_state_machine.rs +0 -71
- package/sdk-core/protos/api_upstream/temporal/api/cluster/v1/message.proto +0 -83
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/cluster.proto +0 -40
package/Cargo.lock
CHANGED
|
@@ -33,39 +33,30 @@ dependencies = [
|
|
|
33
33
|
|
|
34
34
|
[[package]]
|
|
35
35
|
name = "aho-corasick"
|
|
36
|
-
version = "0.7.
|
|
36
|
+
version = "0.7.19"
|
|
37
37
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
-
checksum = "
|
|
38
|
+
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
|
|
39
39
|
dependencies = [
|
|
40
40
|
"memchr",
|
|
41
41
|
]
|
|
42
42
|
|
|
43
|
-
[[package]]
|
|
44
|
-
name = "ansi_term"
|
|
45
|
-
version = "0.12.1"
|
|
46
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
-
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
|
|
48
|
-
dependencies = [
|
|
49
|
-
"winapi",
|
|
50
|
-
]
|
|
51
|
-
|
|
52
43
|
[[package]]
|
|
53
44
|
name = "anyhow"
|
|
54
|
-
version = "1.0.
|
|
45
|
+
version = "1.0.65"
|
|
55
46
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
-
checksum = "
|
|
47
|
+
checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602"
|
|
57
48
|
|
|
58
49
|
[[package]]
|
|
59
50
|
name = "arc-swap"
|
|
60
|
-
version = "1.5.
|
|
51
|
+
version = "1.5.1"
|
|
61
52
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
-
checksum = "
|
|
53
|
+
checksum = "983cd8b9d4b02a6dc6ffa557262eb5858a27a0038ffffe21a0f133eaa819a164"
|
|
63
54
|
|
|
64
55
|
[[package]]
|
|
65
56
|
name = "async-channel"
|
|
66
|
-
version = "1.
|
|
57
|
+
version = "1.7.1"
|
|
67
58
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
-
checksum = "
|
|
59
|
+
checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28"
|
|
69
60
|
dependencies = [
|
|
70
61
|
"concurrent-queue",
|
|
71
62
|
"event-listener",
|
|
@@ -95,9 +86,9 @@ dependencies = [
|
|
|
95
86
|
|
|
96
87
|
[[package]]
|
|
97
88
|
name = "async-trait"
|
|
98
|
-
version = "0.1.
|
|
89
|
+
version = "0.1.57"
|
|
99
90
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
-
checksum = "
|
|
91
|
+
checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
|
|
101
92
|
dependencies = [
|
|
102
93
|
"proc-macro2",
|
|
103
94
|
"quote",
|
|
@@ -112,9 +103,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
|
112
103
|
|
|
113
104
|
[[package]]
|
|
114
105
|
name = "axum"
|
|
115
|
-
version = "0.5.
|
|
106
|
+
version = "0.5.16"
|
|
116
107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
-
checksum = "
|
|
108
|
+
checksum = "c9e3356844c4d6a6d6467b8da2cffb4a2820be256f50a3a386c9d152bab31043"
|
|
118
109
|
dependencies = [
|
|
119
110
|
"async-trait",
|
|
120
111
|
"axum-core",
|
|
@@ -141,9 +132,9 @@ dependencies = [
|
|
|
141
132
|
|
|
142
133
|
[[package]]
|
|
143
134
|
name = "axum-core"
|
|
144
|
-
version = "0.2.
|
|
135
|
+
version = "0.2.8"
|
|
145
136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
-
checksum = "
|
|
137
|
+
checksum = "d9f0c0a60006f2a293d82d571f635042a72edf927539b7685bd62d361963839b"
|
|
147
138
|
dependencies = [
|
|
148
139
|
"async-trait",
|
|
149
140
|
"bytes",
|
|
@@ -151,6 +142,8 @@ dependencies = [
|
|
|
151
142
|
"http",
|
|
152
143
|
"http-body",
|
|
153
144
|
"mime",
|
|
145
|
+
"tower-layer",
|
|
146
|
+
"tower-service",
|
|
154
147
|
]
|
|
155
148
|
|
|
156
149
|
[[package]]
|
|
@@ -193,9 +186,9 @@ dependencies = [
|
|
|
193
186
|
|
|
194
187
|
[[package]]
|
|
195
188
|
name = "bumpalo"
|
|
196
|
-
version = "3.
|
|
189
|
+
version = "3.11.0"
|
|
197
190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
-
checksum = "
|
|
191
|
+
checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d"
|
|
199
192
|
|
|
200
193
|
[[package]]
|
|
201
194
|
name = "byteorder"
|
|
@@ -205,9 +198,9 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
|
|
205
198
|
|
|
206
199
|
[[package]]
|
|
207
200
|
name = "bytes"
|
|
208
|
-
version = "1.1
|
|
201
|
+
version = "1.2.1"
|
|
209
202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
-
checksum = "
|
|
203
|
+
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
|
|
211
204
|
|
|
212
205
|
[[package]]
|
|
213
206
|
name = "bzip2"
|
|
@@ -262,9 +255,9 @@ dependencies = [
|
|
|
262
255
|
|
|
263
256
|
[[package]]
|
|
264
257
|
name = "concurrent-queue"
|
|
265
|
-
version = "1.2.
|
|
258
|
+
version = "1.2.4"
|
|
266
259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
-
checksum = "
|
|
260
|
+
checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c"
|
|
268
261
|
dependencies = [
|
|
269
262
|
"cache-padded",
|
|
270
263
|
]
|
|
@@ -317,9 +310,9 @@ dependencies = [
|
|
|
317
310
|
|
|
318
311
|
[[package]]
|
|
319
312
|
name = "crossbeam"
|
|
320
|
-
version = "0.8.
|
|
313
|
+
version = "0.8.2"
|
|
321
314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
-
checksum = "
|
|
315
|
+
checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c"
|
|
323
316
|
dependencies = [
|
|
324
317
|
"cfg-if",
|
|
325
318
|
"crossbeam-channel",
|
|
@@ -331,9 +324,9 @@ dependencies = [
|
|
|
331
324
|
|
|
332
325
|
[[package]]
|
|
333
326
|
name = "crossbeam-channel"
|
|
334
|
-
version = "0.5.
|
|
327
|
+
version = "0.5.6"
|
|
335
328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
-
checksum = "
|
|
329
|
+
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
|
|
337
330
|
dependencies = [
|
|
338
331
|
"cfg-if",
|
|
339
332
|
"crossbeam-utils",
|
|
@@ -341,9 +334,9 @@ dependencies = [
|
|
|
341
334
|
|
|
342
335
|
[[package]]
|
|
343
336
|
name = "crossbeam-deque"
|
|
344
|
-
version = "0.8.
|
|
337
|
+
version = "0.8.2"
|
|
345
338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
-
checksum = "
|
|
339
|
+
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
|
|
347
340
|
dependencies = [
|
|
348
341
|
"cfg-if",
|
|
349
342
|
"crossbeam-epoch",
|
|
@@ -352,23 +345,22 @@ dependencies = [
|
|
|
352
345
|
|
|
353
346
|
[[package]]
|
|
354
347
|
name = "crossbeam-epoch"
|
|
355
|
-
version = "0.9.
|
|
348
|
+
version = "0.9.11"
|
|
356
349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "
|
|
350
|
+
checksum = "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348"
|
|
358
351
|
dependencies = [
|
|
359
352
|
"autocfg",
|
|
360
353
|
"cfg-if",
|
|
361
354
|
"crossbeam-utils",
|
|
362
|
-
"
|
|
363
|
-
"memoffset",
|
|
355
|
+
"memoffset 0.6.5",
|
|
364
356
|
"scopeguard",
|
|
365
357
|
]
|
|
366
358
|
|
|
367
359
|
[[package]]
|
|
368
360
|
name = "crossbeam-queue"
|
|
369
|
-
version = "0.3.
|
|
361
|
+
version = "0.3.6"
|
|
370
362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
-
checksum = "
|
|
363
|
+
checksum = "1cd42583b04998a5363558e5f9291ee5a5ff6b49944332103f251e7479a82aa7"
|
|
372
364
|
dependencies = [
|
|
373
365
|
"cfg-if",
|
|
374
366
|
"crossbeam-utils",
|
|
@@ -376,12 +368,11 @@ dependencies = [
|
|
|
376
368
|
|
|
377
369
|
[[package]]
|
|
378
370
|
name = "crossbeam-utils"
|
|
379
|
-
version = "0.8.
|
|
371
|
+
version = "0.8.12"
|
|
380
372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
-
checksum = "
|
|
373
|
+
checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
|
|
382
374
|
dependencies = [
|
|
383
375
|
"cfg-if",
|
|
384
|
-
"lazy_static",
|
|
385
376
|
]
|
|
386
377
|
|
|
387
378
|
[[package]]
|
|
@@ -396,9 +387,9 @@ dependencies = [
|
|
|
396
387
|
|
|
397
388
|
[[package]]
|
|
398
389
|
name = "darling"
|
|
399
|
-
version = "0.14.
|
|
390
|
+
version = "0.14.1"
|
|
400
391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
-
checksum = "
|
|
392
|
+
checksum = "4529658bdda7fd6769b8614be250cdcfc3aeb0ee72fe66f9e41e5e5eb73eac02"
|
|
402
393
|
dependencies = [
|
|
403
394
|
"darling_core",
|
|
404
395
|
"darling_macro",
|
|
@@ -406,9 +397,9 @@ dependencies = [
|
|
|
406
397
|
|
|
407
398
|
[[package]]
|
|
408
399
|
name = "darling_core"
|
|
409
|
-
version = "0.14.
|
|
400
|
+
version = "0.14.1"
|
|
410
401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
-
checksum = "
|
|
402
|
+
checksum = "649c91bc01e8b1eac09fb91e8dbc7d517684ca6be8ebc75bb9cafc894f9fdb6f"
|
|
412
403
|
dependencies = [
|
|
413
404
|
"fnv",
|
|
414
405
|
"ident_case",
|
|
@@ -420,9 +411,9 @@ dependencies = [
|
|
|
420
411
|
|
|
421
412
|
[[package]]
|
|
422
413
|
name = "darling_macro"
|
|
423
|
-
version = "0.14.
|
|
414
|
+
version = "0.14.1"
|
|
424
415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
-
checksum = "
|
|
416
|
+
checksum = "ddfc69c5bfcbd2fc09a0f38451d2daf0e372e367986a83906d1b0dbc88134fb5"
|
|
426
417
|
dependencies = [
|
|
427
418
|
"darling_core",
|
|
428
419
|
"quote",
|
|
@@ -431,29 +422,31 @@ dependencies = [
|
|
|
431
422
|
|
|
432
423
|
[[package]]
|
|
433
424
|
name = "dashmap"
|
|
434
|
-
version = "5.
|
|
425
|
+
version = "5.4.0"
|
|
435
426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
-
checksum = "
|
|
427
|
+
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
|
|
437
428
|
dependencies = [
|
|
438
429
|
"cfg-if",
|
|
439
|
-
"
|
|
440
|
-
"
|
|
430
|
+
"hashbrown",
|
|
431
|
+
"lock_api",
|
|
432
|
+
"once_cell",
|
|
433
|
+
"parking_lot_core",
|
|
441
434
|
]
|
|
442
435
|
|
|
443
436
|
[[package]]
|
|
444
437
|
name = "derive_builder"
|
|
445
|
-
version = "0.
|
|
438
|
+
version = "0.12.0"
|
|
446
439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
-
checksum = "
|
|
440
|
+
checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8"
|
|
448
441
|
dependencies = [
|
|
449
442
|
"derive_builder_macro",
|
|
450
443
|
]
|
|
451
444
|
|
|
452
445
|
[[package]]
|
|
453
446
|
name = "derive_builder_core"
|
|
454
|
-
version = "0.
|
|
447
|
+
version = "0.12.0"
|
|
455
448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
-
checksum = "
|
|
449
|
+
checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f"
|
|
457
450
|
dependencies = [
|
|
458
451
|
"darling",
|
|
459
452
|
"proc-macro2",
|
|
@@ -463,9 +456,9 @@ dependencies = [
|
|
|
463
456
|
|
|
464
457
|
[[package]]
|
|
465
458
|
name = "derive_builder_macro"
|
|
466
|
-
version = "0.
|
|
459
|
+
version = "0.12.0"
|
|
467
460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
-
checksum = "
|
|
461
|
+
checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e"
|
|
469
462
|
dependencies = [
|
|
470
463
|
"derive_builder_core",
|
|
471
464
|
"syn",
|
|
@@ -492,9 +485,9 @@ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
|
492
485
|
|
|
493
486
|
[[package]]
|
|
494
487
|
name = "digest"
|
|
495
|
-
version = "0.10.
|
|
488
|
+
version = "0.10.5"
|
|
496
489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
-
checksum = "
|
|
490
|
+
checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
|
|
498
491
|
dependencies = [
|
|
499
492
|
"block-buffer",
|
|
500
493
|
"crypto-common",
|
|
@@ -509,9 +502,9 @@ checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
|
|
|
509
502
|
|
|
510
503
|
[[package]]
|
|
511
504
|
name = "either"
|
|
512
|
-
version = "1.
|
|
505
|
+
version = "1.8.0"
|
|
513
506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
-
checksum = "
|
|
507
|
+
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
|
|
515
508
|
|
|
516
509
|
[[package]]
|
|
517
510
|
name = "encoding_rs"
|
|
@@ -536,15 +529,15 @@ dependencies = [
|
|
|
536
529
|
|
|
537
530
|
[[package]]
|
|
538
531
|
name = "event-listener"
|
|
539
|
-
version = "2.5.
|
|
532
|
+
version = "2.5.3"
|
|
540
533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
-
checksum = "
|
|
534
|
+
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
|
542
535
|
|
|
543
536
|
[[package]]
|
|
544
537
|
name = "fastrand"
|
|
545
|
-
version = "1.
|
|
538
|
+
version = "1.8.0"
|
|
546
539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
-
checksum = "
|
|
540
|
+
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
|
|
548
541
|
dependencies = [
|
|
549
542
|
"instant",
|
|
550
543
|
]
|
|
@@ -558,14 +551,14 @@ dependencies = [
|
|
|
558
551
|
"cfg-if",
|
|
559
552
|
"libc",
|
|
560
553
|
"redox_syscall",
|
|
561
|
-
"windows-sys
|
|
554
|
+
"windows-sys",
|
|
562
555
|
]
|
|
563
556
|
|
|
564
557
|
[[package]]
|
|
565
558
|
name = "fixedbitset"
|
|
566
|
-
version = "0.4.
|
|
559
|
+
version = "0.4.2"
|
|
567
560
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
-
checksum = "
|
|
561
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
569
562
|
|
|
570
563
|
[[package]]
|
|
571
564
|
name = "flate2"
|
|
@@ -594,25 +587,24 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
594
587
|
|
|
595
588
|
[[package]]
|
|
596
589
|
name = "form_urlencoded"
|
|
597
|
-
version = "1.0
|
|
590
|
+
version = "1.1.0"
|
|
598
591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
-
checksum = "
|
|
592
|
+
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
|
|
600
593
|
dependencies = [
|
|
601
|
-
"matches",
|
|
602
594
|
"percent-encoding",
|
|
603
595
|
]
|
|
604
596
|
|
|
605
597
|
[[package]]
|
|
606
598
|
name = "fragile"
|
|
607
|
-
version = "1.2.
|
|
599
|
+
version = "1.2.1"
|
|
608
600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
-
checksum = "
|
|
601
|
+
checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab"
|
|
610
602
|
|
|
611
603
|
[[package]]
|
|
612
604
|
name = "futures"
|
|
613
|
-
version = "0.3.
|
|
605
|
+
version = "0.3.24"
|
|
614
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
-
checksum = "
|
|
607
|
+
checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
|
|
616
608
|
dependencies = [
|
|
617
609
|
"futures-channel",
|
|
618
610
|
"futures-core",
|
|
@@ -625,9 +617,9 @@ dependencies = [
|
|
|
625
617
|
|
|
626
618
|
[[package]]
|
|
627
619
|
name = "futures-channel"
|
|
628
|
-
version = "0.3.
|
|
620
|
+
version = "0.3.24"
|
|
629
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
-
checksum = "
|
|
622
|
+
checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
|
|
631
623
|
dependencies = [
|
|
632
624
|
"futures-core",
|
|
633
625
|
"futures-sink",
|
|
@@ -635,15 +627,15 @@ dependencies = [
|
|
|
635
627
|
|
|
636
628
|
[[package]]
|
|
637
629
|
name = "futures-core"
|
|
638
|
-
version = "0.3.
|
|
630
|
+
version = "0.3.24"
|
|
639
631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
-
checksum = "
|
|
632
|
+
checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
|
|
641
633
|
|
|
642
634
|
[[package]]
|
|
643
635
|
name = "futures-executor"
|
|
644
|
-
version = "0.3.
|
|
636
|
+
version = "0.3.24"
|
|
645
637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
-
checksum = "
|
|
638
|
+
checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab"
|
|
647
639
|
dependencies = [
|
|
648
640
|
"futures-core",
|
|
649
641
|
"futures-task",
|
|
@@ -652,15 +644,15 @@ dependencies = [
|
|
|
652
644
|
|
|
653
645
|
[[package]]
|
|
654
646
|
name = "futures-io"
|
|
655
|
-
version = "0.3.
|
|
647
|
+
version = "0.3.24"
|
|
656
648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
-
checksum = "
|
|
649
|
+
checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
|
|
658
650
|
|
|
659
651
|
[[package]]
|
|
660
652
|
name = "futures-macro"
|
|
661
|
-
version = "0.3.
|
|
653
|
+
version = "0.3.24"
|
|
662
654
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
-
checksum = "
|
|
655
|
+
checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
|
|
664
656
|
dependencies = [
|
|
665
657
|
"proc-macro2",
|
|
666
658
|
"quote",
|
|
@@ -680,15 +672,15 @@ dependencies = [
|
|
|
680
672
|
|
|
681
673
|
[[package]]
|
|
682
674
|
name = "futures-sink"
|
|
683
|
-
version = "0.3.
|
|
675
|
+
version = "0.3.24"
|
|
684
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
-
checksum = "
|
|
677
|
+
checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
|
|
686
678
|
|
|
687
679
|
[[package]]
|
|
688
680
|
name = "futures-task"
|
|
689
|
-
version = "0.3.
|
|
681
|
+
version = "0.3.24"
|
|
690
682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
-
checksum = "
|
|
683
|
+
checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
|
|
692
684
|
|
|
693
685
|
[[package]]
|
|
694
686
|
name = "futures-timer"
|
|
@@ -698,9 +690,9 @@ checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
|
|
|
698
690
|
|
|
699
691
|
[[package]]
|
|
700
692
|
name = "futures-util"
|
|
701
|
-
version = "0.3.
|
|
693
|
+
version = "0.3.24"
|
|
702
694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
-
checksum = "
|
|
695
|
+
checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
|
|
704
696
|
dependencies = [
|
|
705
697
|
"futures-channel",
|
|
706
698
|
"futures-core",
|
|
@@ -726,13 +718,13 @@ dependencies = [
|
|
|
726
718
|
|
|
727
719
|
[[package]]
|
|
728
720
|
name = "getrandom"
|
|
729
|
-
version = "0.2.
|
|
721
|
+
version = "0.2.7"
|
|
730
722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
-
checksum = "
|
|
723
|
+
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
|
|
732
724
|
dependencies = [
|
|
733
725
|
"cfg-if",
|
|
734
726
|
"libc",
|
|
735
|
-
"wasi 0.
|
|
727
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
736
728
|
]
|
|
737
729
|
|
|
738
730
|
[[package]]
|
|
@@ -747,7 +739,7 @@ dependencies = [
|
|
|
747
739
|
"futures-timer",
|
|
748
740
|
"no-std-compat",
|
|
749
741
|
"nonzero_ext",
|
|
750
|
-
"parking_lot
|
|
742
|
+
"parking_lot",
|
|
751
743
|
"quanta",
|
|
752
744
|
"rand",
|
|
753
745
|
"smallvec",
|
|
@@ -755,9 +747,9 @@ dependencies = [
|
|
|
755
747
|
|
|
756
748
|
[[package]]
|
|
757
749
|
name = "h2"
|
|
758
|
-
version = "0.3.
|
|
750
|
+
version = "0.3.14"
|
|
759
751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
-
checksum = "
|
|
752
|
+
checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be"
|
|
761
753
|
dependencies = [
|
|
762
754
|
"bytes",
|
|
763
755
|
"fnv",
|
|
@@ -772,12 +764,6 @@ dependencies = [
|
|
|
772
764
|
"tracing",
|
|
773
765
|
]
|
|
774
766
|
|
|
775
|
-
[[package]]
|
|
776
|
-
name = "hashbrown"
|
|
777
|
-
version = "0.11.2"
|
|
778
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
-
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
|
|
780
|
-
|
|
781
767
|
[[package]]
|
|
782
768
|
name = "hashbrown"
|
|
783
769
|
version = "0.12.3"
|
|
@@ -813,9 +799,9 @@ dependencies = [
|
|
|
813
799
|
|
|
814
800
|
[[package]]
|
|
815
801
|
name = "http"
|
|
816
|
-
version = "0.2.
|
|
802
|
+
version = "0.2.8"
|
|
817
803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
-
checksum = "
|
|
804
|
+
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
|
|
819
805
|
dependencies = [
|
|
820
806
|
"bytes",
|
|
821
807
|
"fnv",
|
|
@@ -824,9 +810,9 @@ dependencies = [
|
|
|
824
810
|
|
|
825
811
|
[[package]]
|
|
826
812
|
name = "http-body"
|
|
827
|
-
version = "0.4.
|
|
813
|
+
version = "0.4.5"
|
|
828
814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
-
checksum = "
|
|
815
|
+
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
|
|
830
816
|
dependencies = [
|
|
831
817
|
"bytes",
|
|
832
818
|
"http",
|
|
@@ -841,9 +827,9 @@ checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
|
|
|
841
827
|
|
|
842
828
|
[[package]]
|
|
843
829
|
name = "httparse"
|
|
844
|
-
version = "1.
|
|
830
|
+
version = "1.8.0"
|
|
845
831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
-
checksum = "
|
|
832
|
+
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
|
847
833
|
|
|
848
834
|
[[package]]
|
|
849
835
|
name = "httpdate"
|
|
@@ -853,9 +839,9 @@ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
|
|
853
839
|
|
|
854
840
|
[[package]]
|
|
855
841
|
name = "hyper"
|
|
856
|
-
version = "0.14.
|
|
842
|
+
version = "0.14.20"
|
|
857
843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
-
checksum = "
|
|
844
|
+
checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac"
|
|
859
845
|
dependencies = [
|
|
860
846
|
"bytes",
|
|
861
847
|
"futures-channel",
|
|
@@ -908,23 +894,22 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
908
894
|
|
|
909
895
|
[[package]]
|
|
910
896
|
name = "idna"
|
|
911
|
-
version = "0.
|
|
897
|
+
version = "0.3.0"
|
|
912
898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
-
checksum = "
|
|
899
|
+
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
|
914
900
|
dependencies = [
|
|
915
|
-
"matches",
|
|
916
901
|
"unicode-bidi",
|
|
917
902
|
"unicode-normalization",
|
|
918
903
|
]
|
|
919
904
|
|
|
920
905
|
[[package]]
|
|
921
906
|
name = "indexmap"
|
|
922
|
-
version = "1.
|
|
907
|
+
version = "1.9.1"
|
|
923
908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
-
checksum = "
|
|
909
|
+
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
|
|
925
910
|
dependencies = [
|
|
926
911
|
"autocfg",
|
|
927
|
-
"hashbrown
|
|
912
|
+
"hashbrown",
|
|
928
913
|
]
|
|
929
914
|
|
|
930
915
|
[[package]]
|
|
@@ -944,33 +929,33 @@ checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
|
|
|
944
929
|
|
|
945
930
|
[[package]]
|
|
946
931
|
name = "itertools"
|
|
947
|
-
version = "0.10.
|
|
932
|
+
version = "0.10.5"
|
|
948
933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
-
checksum = "
|
|
934
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
950
935
|
dependencies = [
|
|
951
936
|
"either",
|
|
952
937
|
]
|
|
953
938
|
|
|
954
939
|
[[package]]
|
|
955
940
|
name = "itoa"
|
|
956
|
-
version = "1.0.
|
|
941
|
+
version = "1.0.4"
|
|
957
942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
-
checksum = "
|
|
943
|
+
checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
|
|
959
944
|
|
|
960
945
|
[[package]]
|
|
961
946
|
name = "jobserver"
|
|
962
|
-
version = "0.1.
|
|
947
|
+
version = "0.1.25"
|
|
963
948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
-
checksum = "
|
|
949
|
+
checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
|
|
965
950
|
dependencies = [
|
|
966
951
|
"libc",
|
|
967
952
|
]
|
|
968
953
|
|
|
969
954
|
[[package]]
|
|
970
955
|
name = "js-sys"
|
|
971
|
-
version = "0.3.
|
|
956
|
+
version = "0.3.60"
|
|
972
957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
-
checksum = "
|
|
958
|
+
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
|
|
974
959
|
dependencies = [
|
|
975
960
|
"wasm-bindgen",
|
|
976
961
|
]
|
|
@@ -983,9 +968,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
983
968
|
|
|
984
969
|
[[package]]
|
|
985
970
|
name = "libc"
|
|
986
|
-
version = "0.2.
|
|
971
|
+
version = "0.2.138"
|
|
987
972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
-
checksum = "
|
|
973
|
+
checksum = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8"
|
|
989
974
|
|
|
990
975
|
[[package]]
|
|
991
976
|
name = "libloading"
|
|
@@ -999,9 +984,9 @@ dependencies = [
|
|
|
999
984
|
|
|
1000
985
|
[[package]]
|
|
1001
986
|
name = "lock_api"
|
|
1002
|
-
version = "0.4.
|
|
987
|
+
version = "0.4.9"
|
|
1003
988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
-
checksum = "
|
|
989
|
+
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
|
|
1005
990
|
dependencies = [
|
|
1006
991
|
"autocfg",
|
|
1007
992
|
"scopeguard",
|
|
@@ -1018,11 +1003,11 @@ dependencies = [
|
|
|
1018
1003
|
|
|
1019
1004
|
[[package]]
|
|
1020
1005
|
name = "lru"
|
|
1021
|
-
version = "0.8.
|
|
1006
|
+
version = "0.8.1"
|
|
1022
1007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
-
checksum = "
|
|
1008
|
+
checksum = "b6e8aaa3f231bb4bd57b84b2d5dc3ae7f350265df8aa96492e0bc394a1571909"
|
|
1024
1009
|
dependencies = [
|
|
1025
|
-
"hashbrown
|
|
1010
|
+
"hashbrown",
|
|
1026
1011
|
]
|
|
1027
1012
|
|
|
1028
1013
|
[[package]]
|
|
@@ -1043,12 +1028,6 @@ dependencies = [
|
|
|
1043
1028
|
"regex-automata",
|
|
1044
1029
|
]
|
|
1045
1030
|
|
|
1046
|
-
[[package]]
|
|
1047
|
-
name = "matches"
|
|
1048
|
-
version = "0.1.9"
|
|
1049
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
-
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
|
|
1051
|
-
|
|
1052
1031
|
[[package]]
|
|
1053
1032
|
name = "matchit"
|
|
1054
1033
|
version = "0.5.0"
|
|
@@ -1057,9 +1036,9 @@ checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb"
|
|
|
1057
1036
|
|
|
1058
1037
|
[[package]]
|
|
1059
1038
|
name = "memchr"
|
|
1060
|
-
version = "2.
|
|
1039
|
+
version = "2.5.0"
|
|
1061
1040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
-
checksum = "
|
|
1041
|
+
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
1063
1042
|
|
|
1064
1043
|
[[package]]
|
|
1065
1044
|
name = "memoffset"
|
|
@@ -1070,6 +1049,15 @@ dependencies = [
|
|
|
1070
1049
|
"autocfg",
|
|
1071
1050
|
]
|
|
1072
1051
|
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "memoffset"
|
|
1054
|
+
version = "0.7.1"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
|
|
1057
|
+
dependencies = [
|
|
1058
|
+
"autocfg",
|
|
1059
|
+
]
|
|
1060
|
+
|
|
1073
1061
|
[[package]]
|
|
1074
1062
|
name = "mime"
|
|
1075
1063
|
version = "0.3.16"
|
|
@@ -1087,32 +1075,21 @@ dependencies = [
|
|
|
1087
1075
|
|
|
1088
1076
|
[[package]]
|
|
1089
1077
|
name = "mio"
|
|
1090
|
-
version = "0.8.
|
|
1078
|
+
version = "0.8.4"
|
|
1091
1079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
-
checksum = "
|
|
1080
|
+
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
|
|
1093
1081
|
dependencies = [
|
|
1094
1082
|
"libc",
|
|
1095
1083
|
"log",
|
|
1096
|
-
"miow",
|
|
1097
|
-
"ntapi",
|
|
1098
1084
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1099
|
-
"
|
|
1100
|
-
]
|
|
1101
|
-
|
|
1102
|
-
[[package]]
|
|
1103
|
-
name = "miow"
|
|
1104
|
-
version = "0.3.7"
|
|
1105
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
-
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
|
|
1107
|
-
dependencies = [
|
|
1108
|
-
"winapi",
|
|
1085
|
+
"windows-sys",
|
|
1109
1086
|
]
|
|
1110
1087
|
|
|
1111
1088
|
[[package]]
|
|
1112
1089
|
name = "mockall"
|
|
1113
|
-
version = "0.11.
|
|
1090
|
+
version = "0.11.2"
|
|
1114
1091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
-
checksum = "
|
|
1092
|
+
checksum = "e2be9a9090bc1cac2930688fa9478092a64c6a92ddc6ae0692d46b37d9cab709"
|
|
1116
1093
|
dependencies = [
|
|
1117
1094
|
"cfg-if",
|
|
1118
1095
|
"downcast",
|
|
@@ -1125,9 +1102,9 @@ dependencies = [
|
|
|
1125
1102
|
|
|
1126
1103
|
[[package]]
|
|
1127
1104
|
name = "mockall_derive"
|
|
1128
|
-
version = "0.11.
|
|
1105
|
+
version = "0.11.2"
|
|
1129
1106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
-
checksum = "
|
|
1107
|
+
checksum = "86d702a0530a0141cf4ed147cf5ec7be6f2c187d4e37fcbefc39cf34116bfe8f"
|
|
1131
1108
|
dependencies = [
|
|
1132
1109
|
"cfg-if",
|
|
1133
1110
|
"proc-macro2",
|
|
@@ -1184,16 +1161,16 @@ dependencies = [
|
|
|
1184
1161
|
|
|
1185
1162
|
[[package]]
|
|
1186
1163
|
name = "nix"
|
|
1187
|
-
version = "0.
|
|
1164
|
+
version = "0.26.1"
|
|
1188
1165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
-
checksum = "
|
|
1166
|
+
checksum = "46a58d1d356c6597d08cde02c2f09d785b09e28711837b1ed667dc652c08a694"
|
|
1190
1167
|
dependencies = [
|
|
1191
|
-
"autocfg",
|
|
1192
1168
|
"bitflags",
|
|
1193
1169
|
"cfg-if",
|
|
1194
1170
|
"libc",
|
|
1195
|
-
"memoffset",
|
|
1171
|
+
"memoffset 0.7.1",
|
|
1196
1172
|
"pin-utils",
|
|
1173
|
+
"static_assertions",
|
|
1197
1174
|
]
|
|
1198
1175
|
|
|
1199
1176
|
[[package]]
|
|
@@ -1215,19 +1192,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1215
1192
|
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
1216
1193
|
|
|
1217
1194
|
[[package]]
|
|
1218
|
-
name = "
|
|
1219
|
-
version = "0.
|
|
1195
|
+
name = "nu-ansi-term"
|
|
1196
|
+
version = "0.46.0"
|
|
1220
1197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
-
checksum = "
|
|
1198
|
+
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
|
1222
1199
|
dependencies = [
|
|
1200
|
+
"overload",
|
|
1223
1201
|
"winapi",
|
|
1224
1202
|
]
|
|
1225
1203
|
|
|
1226
1204
|
[[package]]
|
|
1227
1205
|
name = "num-traits"
|
|
1228
|
-
version = "0.2.
|
|
1206
|
+
version = "0.2.15"
|
|
1229
1207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
-
checksum = "
|
|
1208
|
+
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
|
|
1231
1209
|
dependencies = [
|
|
1232
1210
|
"autocfg",
|
|
1233
1211
|
]
|
|
@@ -1253,9 +1231,9 @@ dependencies = [
|
|
|
1253
1231
|
|
|
1254
1232
|
[[package]]
|
|
1255
1233
|
name = "once_cell"
|
|
1256
|
-
version = "1.
|
|
1234
|
+
version = "1.15.0"
|
|
1257
1235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
-
checksum = "
|
|
1236
|
+
checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
|
|
1259
1237
|
|
|
1260
1238
|
[[package]]
|
|
1261
1239
|
name = "opaque-debug"
|
|
@@ -1269,23 +1247,6 @@ version = "0.1.5"
|
|
|
1269
1247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
1248
|
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
1271
1249
|
|
|
1272
|
-
[[package]]
|
|
1273
|
-
name = "opentelemetry"
|
|
1274
|
-
version = "0.16.0"
|
|
1275
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
-
checksum = "e1cf9b1c4e9a6c4de793c632496fa490bdc0e1eea73f0c91394f7b6990935d22"
|
|
1277
|
-
dependencies = [
|
|
1278
|
-
"async-trait",
|
|
1279
|
-
"crossbeam-channel",
|
|
1280
|
-
"futures",
|
|
1281
|
-
"js-sys",
|
|
1282
|
-
"lazy_static",
|
|
1283
|
-
"percent-encoding",
|
|
1284
|
-
"pin-project",
|
|
1285
|
-
"rand",
|
|
1286
|
-
"thiserror",
|
|
1287
|
-
]
|
|
1288
|
-
|
|
1289
1250
|
[[package]]
|
|
1290
1251
|
name = "opentelemetry"
|
|
1291
1252
|
version = "0.18.0"
|
|
@@ -1306,7 +1267,7 @@ dependencies = [
|
|
|
1306
1267
|
"futures",
|
|
1307
1268
|
"futures-util",
|
|
1308
1269
|
"http",
|
|
1309
|
-
"opentelemetry
|
|
1270
|
+
"opentelemetry",
|
|
1310
1271
|
"opentelemetry-proto",
|
|
1311
1272
|
"prost",
|
|
1312
1273
|
"thiserror",
|
|
@@ -1320,7 +1281,7 @@ version = "0.11.0"
|
|
|
1320
1281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1321
1282
|
checksum = "06c3d833835a53cf91331d2cfb27e9121f5a95261f31f08a1f79ab31688b8da8"
|
|
1322
1283
|
dependencies = [
|
|
1323
|
-
"opentelemetry
|
|
1284
|
+
"opentelemetry",
|
|
1324
1285
|
"prometheus",
|
|
1325
1286
|
"protobuf",
|
|
1326
1287
|
]
|
|
@@ -1333,7 +1294,7 @@ checksum = "d61a2f56df5574508dd86aaca016c917489e589ece4141df1b5e349af8d66c28"
|
|
|
1333
1294
|
dependencies = [
|
|
1334
1295
|
"futures",
|
|
1335
1296
|
"futures-util",
|
|
1336
|
-
"opentelemetry
|
|
1297
|
+
"opentelemetry",
|
|
1337
1298
|
"prost",
|
|
1338
1299
|
"tonic",
|
|
1339
1300
|
"tonic-build",
|
|
@@ -1378,51 +1339,32 @@ dependencies = [
|
|
|
1378
1339
|
]
|
|
1379
1340
|
|
|
1380
1341
|
[[package]]
|
|
1381
|
-
name = "
|
|
1382
|
-
version = "0.
|
|
1342
|
+
name = "overload"
|
|
1343
|
+
version = "0.1.1"
|
|
1383
1344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
-
checksum = "
|
|
1385
|
-
dependencies = [
|
|
1386
|
-
"instant",
|
|
1387
|
-
"lock_api",
|
|
1388
|
-
"parking_lot_core 0.8.5",
|
|
1389
|
-
]
|
|
1345
|
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
1390
1346
|
|
|
1391
1347
|
[[package]]
|
|
1392
1348
|
name = "parking_lot"
|
|
1393
|
-
version = "0.12.
|
|
1349
|
+
version = "0.12.1"
|
|
1394
1350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
-
checksum = "
|
|
1351
|
+
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
|
1396
1352
|
dependencies = [
|
|
1397
1353
|
"lock_api",
|
|
1398
|
-
"parking_lot_core
|
|
1354
|
+
"parking_lot_core",
|
|
1399
1355
|
]
|
|
1400
1356
|
|
|
1401
1357
|
[[package]]
|
|
1402
1358
|
name = "parking_lot_core"
|
|
1403
|
-
version = "0.
|
|
1404
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
-
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
|
|
1406
|
-
dependencies = [
|
|
1407
|
-
"cfg-if",
|
|
1408
|
-
"instant",
|
|
1409
|
-
"libc",
|
|
1410
|
-
"redox_syscall",
|
|
1411
|
-
"smallvec",
|
|
1412
|
-
"winapi",
|
|
1413
|
-
]
|
|
1414
|
-
|
|
1415
|
-
[[package]]
|
|
1416
|
-
name = "parking_lot_core"
|
|
1417
|
-
version = "0.9.2"
|
|
1359
|
+
version = "0.9.3"
|
|
1418
1360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
-
checksum = "
|
|
1361
|
+
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
|
|
1420
1362
|
dependencies = [
|
|
1421
1363
|
"cfg-if",
|
|
1422
1364
|
"libc",
|
|
1423
1365
|
"redox_syscall",
|
|
1424
1366
|
"smallvec",
|
|
1425
|
-
"windows-sys
|
|
1367
|
+
"windows-sys",
|
|
1426
1368
|
]
|
|
1427
1369
|
|
|
1428
1370
|
[[package]]
|
|
@@ -1450,15 +1392,15 @@ dependencies = [
|
|
|
1450
1392
|
|
|
1451
1393
|
[[package]]
|
|
1452
1394
|
name = "percent-encoding"
|
|
1453
|
-
version = "2.
|
|
1395
|
+
version = "2.2.0"
|
|
1454
1396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
-
checksum = "
|
|
1397
|
+
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
|
|
1456
1398
|
|
|
1457
1399
|
[[package]]
|
|
1458
1400
|
name = "petgraph"
|
|
1459
|
-
version = "0.6.
|
|
1401
|
+
version = "0.6.2"
|
|
1460
1402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
|
-
checksum = "
|
|
1403
|
+
checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143"
|
|
1462
1404
|
dependencies = [
|
|
1463
1405
|
"fixedbitset",
|
|
1464
1406
|
"indexmap",
|
|
@@ -1466,18 +1408,18 @@ dependencies = [
|
|
|
1466
1408
|
|
|
1467
1409
|
[[package]]
|
|
1468
1410
|
name = "pin-project"
|
|
1469
|
-
version = "1.0.
|
|
1411
|
+
version = "1.0.12"
|
|
1470
1412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1471
|
-
checksum = "
|
|
1413
|
+
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
|
|
1472
1414
|
dependencies = [
|
|
1473
1415
|
"pin-project-internal",
|
|
1474
1416
|
]
|
|
1475
1417
|
|
|
1476
1418
|
[[package]]
|
|
1477
1419
|
name = "pin-project-internal"
|
|
1478
|
-
version = "1.0.
|
|
1420
|
+
version = "1.0.12"
|
|
1479
1421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
-
checksum = "
|
|
1422
|
+
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
|
|
1481
1423
|
dependencies = [
|
|
1482
1424
|
"proc-macro2",
|
|
1483
1425
|
"quote",
|
|
@@ -1540,9 +1482,9 @@ dependencies = [
|
|
|
1540
1482
|
|
|
1541
1483
|
[[package]]
|
|
1542
1484
|
name = "prettyplease"
|
|
1543
|
-
version = "0.1.
|
|
1485
|
+
version = "0.1.20"
|
|
1544
1486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
-
checksum = "
|
|
1487
|
+
checksum = "83fead41e178796ef8274dc612a7d8ce4c7e10ca35cd2c5b5ad24cac63aeb6c0"
|
|
1546
1488
|
dependencies = [
|
|
1547
1489
|
"proc-macro2",
|
|
1548
1490
|
"syn",
|
|
@@ -1550,24 +1492,24 @@ dependencies = [
|
|
|
1550
1492
|
|
|
1551
1493
|
[[package]]
|
|
1552
1494
|
name = "proc-macro2"
|
|
1553
|
-
version = "1.0.
|
|
1495
|
+
version = "1.0.46"
|
|
1554
1496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
-
checksum = "
|
|
1497
|
+
checksum = "94e2ef8dbfc347b10c094890f778ee2e36ca9bb4262e86dc99cd217e35f3470b"
|
|
1556
1498
|
dependencies = [
|
|
1557
|
-
"unicode-
|
|
1499
|
+
"unicode-ident",
|
|
1558
1500
|
]
|
|
1559
1501
|
|
|
1560
1502
|
[[package]]
|
|
1561
1503
|
name = "prometheus"
|
|
1562
|
-
version = "0.13.
|
|
1504
|
+
version = "0.13.2"
|
|
1563
1505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
-
checksum = "
|
|
1506
|
+
checksum = "45c8babc29389186697fe5a2a4859d697825496b83db5d0b65271cdc0488e88c"
|
|
1565
1507
|
dependencies = [
|
|
1566
1508
|
"cfg-if",
|
|
1567
1509
|
"fnv",
|
|
1568
1510
|
"lazy_static",
|
|
1569
1511
|
"memchr",
|
|
1570
|
-
"parking_lot
|
|
1512
|
+
"parking_lot",
|
|
1571
1513
|
"protobuf",
|
|
1572
1514
|
"thiserror",
|
|
1573
1515
|
]
|
|
@@ -1627,9 +1569,9 @@ dependencies = [
|
|
|
1627
1569
|
|
|
1628
1570
|
[[package]]
|
|
1629
1571
|
name = "protobuf"
|
|
1630
|
-
version = "2.
|
|
1572
|
+
version = "2.28.0"
|
|
1631
1573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
-
checksum = "
|
|
1574
|
+
checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
|
|
1633
1575
|
|
|
1634
1576
|
[[package]]
|
|
1635
1577
|
name = "quanta"
|
|
@@ -1649,9 +1591,9 @@ dependencies = [
|
|
|
1649
1591
|
|
|
1650
1592
|
[[package]]
|
|
1651
1593
|
name = "quote"
|
|
1652
|
-
version = "1.0.
|
|
1594
|
+
version = "1.0.21"
|
|
1653
1595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
-
checksum = "
|
|
1596
|
+
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
|
|
1655
1597
|
dependencies = [
|
|
1656
1598
|
"proc-macro2",
|
|
1657
1599
|
]
|
|
@@ -1679,36 +1621,36 @@ dependencies = [
|
|
|
1679
1621
|
|
|
1680
1622
|
[[package]]
|
|
1681
1623
|
name = "rand_core"
|
|
1682
|
-
version = "0.6.
|
|
1624
|
+
version = "0.6.4"
|
|
1683
1625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
-
checksum = "
|
|
1626
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1685
1627
|
dependencies = [
|
|
1686
1628
|
"getrandom",
|
|
1687
1629
|
]
|
|
1688
1630
|
|
|
1689
1631
|
[[package]]
|
|
1690
1632
|
name = "raw-cpuid"
|
|
1691
|
-
version = "10.
|
|
1633
|
+
version = "10.6.0"
|
|
1692
1634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
-
checksum = "
|
|
1635
|
+
checksum = "a6823ea29436221176fe662da99998ad3b4db2c7f31e7b6f5fe43adccd6320bb"
|
|
1694
1636
|
dependencies = [
|
|
1695
1637
|
"bitflags",
|
|
1696
1638
|
]
|
|
1697
1639
|
|
|
1698
1640
|
[[package]]
|
|
1699
1641
|
name = "redox_syscall"
|
|
1700
|
-
version = "0.2.
|
|
1642
|
+
version = "0.2.16"
|
|
1701
1643
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
-
checksum = "
|
|
1644
|
+
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
|
1703
1645
|
dependencies = [
|
|
1704
1646
|
"bitflags",
|
|
1705
1647
|
]
|
|
1706
1648
|
|
|
1707
1649
|
[[package]]
|
|
1708
1650
|
name = "regex"
|
|
1709
|
-
version = "1.
|
|
1651
|
+
version = "1.6.0"
|
|
1710
1652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
-
checksum = "
|
|
1653
|
+
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
|
|
1712
1654
|
dependencies = [
|
|
1713
1655
|
"aho-corasick",
|
|
1714
1656
|
"memchr",
|
|
@@ -1726,9 +1668,9 @@ dependencies = [
|
|
|
1726
1668
|
|
|
1727
1669
|
[[package]]
|
|
1728
1670
|
name = "regex-syntax"
|
|
1729
|
-
version = "0.6.
|
|
1671
|
+
version = "0.6.27"
|
|
1730
1672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
-
checksum = "
|
|
1673
|
+
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
|
|
1732
1674
|
|
|
1733
1675
|
[[package]]
|
|
1734
1676
|
name = "remove_dir_all"
|
|
@@ -1741,9 +1683,9 @@ dependencies = [
|
|
|
1741
1683
|
|
|
1742
1684
|
[[package]]
|
|
1743
1685
|
name = "reqwest"
|
|
1744
|
-
version = "0.11.
|
|
1686
|
+
version = "0.11.12"
|
|
1745
1687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
-
checksum = "
|
|
1688
|
+
checksum = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc"
|
|
1747
1689
|
dependencies = [
|
|
1748
1690
|
"base64",
|
|
1749
1691
|
"bytes",
|
|
@@ -1757,9 +1699,9 @@ dependencies = [
|
|
|
1757
1699
|
"hyper-rustls",
|
|
1758
1700
|
"ipnet",
|
|
1759
1701
|
"js-sys",
|
|
1760
|
-
"lazy_static",
|
|
1761
1702
|
"log",
|
|
1762
1703
|
"mime",
|
|
1704
|
+
"once_cell",
|
|
1763
1705
|
"percent-encoding",
|
|
1764
1706
|
"pin-project-lite",
|
|
1765
1707
|
"rustls",
|
|
@@ -1796,11 +1738,11 @@ dependencies = [
|
|
|
1796
1738
|
|
|
1797
1739
|
[[package]]
|
|
1798
1740
|
name = "ringbuf"
|
|
1799
|
-
version = "0.
|
|
1741
|
+
version = "0.3.1"
|
|
1800
1742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
-
checksum = "
|
|
1743
|
+
checksum = "89e68dd9c1d8f7bb0c664e1556b1521809bc6fa62d92bb3b813adf8611caa0eb"
|
|
1802
1744
|
dependencies = [
|
|
1803
|
-
"
|
|
1745
|
+
"crossbeam-utils",
|
|
1804
1746
|
]
|
|
1805
1747
|
|
|
1806
1748
|
[[package]]
|
|
@@ -1809,7 +1751,7 @@ version = "0.4.0"
|
|
|
1809
1751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
1752
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
1811
1753
|
dependencies = [
|
|
1812
|
-
"semver 1.0.
|
|
1754
|
+
"semver 1.0.14",
|
|
1813
1755
|
]
|
|
1814
1756
|
|
|
1815
1757
|
[[package]]
|
|
@@ -1870,18 +1812,18 @@ dependencies = [
|
|
|
1870
1812
|
|
|
1871
1813
|
[[package]]
|
|
1872
1814
|
name = "ryu"
|
|
1873
|
-
version = "1.0.
|
|
1815
|
+
version = "1.0.11"
|
|
1874
1816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1875
|
-
checksum = "
|
|
1817
|
+
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
|
|
1876
1818
|
|
|
1877
1819
|
[[package]]
|
|
1878
1820
|
name = "schannel"
|
|
1879
|
-
version = "0.1.
|
|
1821
|
+
version = "0.1.20"
|
|
1880
1822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1881
|
-
checksum = "
|
|
1823
|
+
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
|
|
1882
1824
|
dependencies = [
|
|
1883
1825
|
"lazy_static",
|
|
1884
|
-
"
|
|
1826
|
+
"windows-sys",
|
|
1885
1827
|
]
|
|
1886
1828
|
|
|
1887
1829
|
[[package]]
|
|
@@ -1902,9 +1844,9 @@ dependencies = [
|
|
|
1902
1844
|
|
|
1903
1845
|
[[package]]
|
|
1904
1846
|
name = "security-framework"
|
|
1905
|
-
version = "2.
|
|
1847
|
+
version = "2.7.0"
|
|
1906
1848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
-
checksum = "
|
|
1849
|
+
checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
|
|
1908
1850
|
dependencies = [
|
|
1909
1851
|
"bitflags",
|
|
1910
1852
|
"core-foundation",
|
|
@@ -1934,9 +1876,9 @@ dependencies = [
|
|
|
1934
1876
|
|
|
1935
1877
|
[[package]]
|
|
1936
1878
|
name = "semver"
|
|
1937
|
-
version = "1.0.
|
|
1879
|
+
version = "1.0.14"
|
|
1938
1880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
-
checksum = "
|
|
1881
|
+
checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
|
|
1940
1882
|
|
|
1941
1883
|
[[package]]
|
|
1942
1884
|
name = "semver-parser"
|
|
@@ -1946,18 +1888,18 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
|
1946
1888
|
|
|
1947
1889
|
[[package]]
|
|
1948
1890
|
name = "serde"
|
|
1949
|
-
version = "1.0.
|
|
1891
|
+
version = "1.0.145"
|
|
1950
1892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1951
|
-
checksum = "
|
|
1893
|
+
checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b"
|
|
1952
1894
|
dependencies = [
|
|
1953
1895
|
"serde_derive",
|
|
1954
1896
|
]
|
|
1955
1897
|
|
|
1956
1898
|
[[package]]
|
|
1957
1899
|
name = "serde_derive"
|
|
1958
|
-
version = "1.0.
|
|
1900
|
+
version = "1.0.145"
|
|
1959
1901
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
|
-
checksum = "
|
|
1902
|
+
checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c"
|
|
1961
1903
|
dependencies = [
|
|
1962
1904
|
"proc-macro2",
|
|
1963
1905
|
"quote",
|
|
@@ -1966,9 +1908,9 @@ dependencies = [
|
|
|
1966
1908
|
|
|
1967
1909
|
[[package]]
|
|
1968
1910
|
name = "serde_json"
|
|
1969
|
-
version = "1.0.
|
|
1911
|
+
version = "1.0.86"
|
|
1970
1912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
|
-
checksum = "
|
|
1913
|
+
checksum = "41feea4228a6f1cd09ec7a3593a682276702cd67b5273544757dae23c096f074"
|
|
1972
1914
|
dependencies = [
|
|
1973
1915
|
"itoa",
|
|
1974
1916
|
"ryu",
|
|
@@ -1989,9 +1931,9 @@ dependencies = [
|
|
|
1989
1931
|
|
|
1990
1932
|
[[package]]
|
|
1991
1933
|
name = "sha1"
|
|
1992
|
-
version = "0.10.
|
|
1934
|
+
version = "0.10.5"
|
|
1993
1935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1994
|
-
checksum = "
|
|
1936
|
+
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
|
|
1995
1937
|
dependencies = [
|
|
1996
1938
|
"cfg-if",
|
|
1997
1939
|
"cpufeatures",
|
|
@@ -2000,9 +1942,9 @@ dependencies = [
|
|
|
2000
1942
|
|
|
2001
1943
|
[[package]]
|
|
2002
1944
|
name = "sha2"
|
|
2003
|
-
version = "0.10.
|
|
1945
|
+
version = "0.10.6"
|
|
2004
1946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
-
checksum = "
|
|
1947
|
+
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
|
|
2006
1948
|
dependencies = [
|
|
2007
1949
|
"cfg-if",
|
|
2008
1950
|
"cpufeatures",
|
|
@@ -2035,9 +1977,12 @@ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
|
|
|
2035
1977
|
|
|
2036
1978
|
[[package]]
|
|
2037
1979
|
name = "slab"
|
|
2038
|
-
version = "0.4.
|
|
1980
|
+
version = "0.4.7"
|
|
2039
1981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
-
checksum = "
|
|
1982
|
+
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
|
|
1983
|
+
dependencies = [
|
|
1984
|
+
"autocfg",
|
|
1985
|
+
]
|
|
2041
1986
|
|
|
2042
1987
|
[[package]]
|
|
2043
1988
|
name = "slotmap"
|
|
@@ -2050,15 +1995,15 @@ dependencies = [
|
|
|
2050
1995
|
|
|
2051
1996
|
[[package]]
|
|
2052
1997
|
name = "smallvec"
|
|
2053
|
-
version = "1.
|
|
1998
|
+
version = "1.10.0"
|
|
2054
1999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2055
|
-
checksum = "
|
|
2000
|
+
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
|
2056
2001
|
|
|
2057
2002
|
[[package]]
|
|
2058
2003
|
name = "socket2"
|
|
2059
|
-
version = "0.4.
|
|
2004
|
+
version = "0.4.7"
|
|
2060
2005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
-
checksum = "
|
|
2006
|
+
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
|
|
2062
2007
|
dependencies = [
|
|
2063
2008
|
"libc",
|
|
2064
2009
|
"winapi",
|
|
@@ -2070,6 +2015,12 @@ version = "0.5.2"
|
|
|
2070
2015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2071
2016
|
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
|
2072
2017
|
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "static_assertions"
|
|
2020
|
+
version = "1.1.0"
|
|
2021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2023
|
+
|
|
2073
2024
|
[[package]]
|
|
2074
2025
|
name = "strsim"
|
|
2075
2026
|
version = "0.10.0"
|
|
@@ -2084,13 +2035,13 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
|
|
|
2084
2035
|
|
|
2085
2036
|
[[package]]
|
|
2086
2037
|
name = "syn"
|
|
2087
|
-
version = "1.0.
|
|
2038
|
+
version = "1.0.102"
|
|
2088
2039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2089
|
-
checksum = "
|
|
2040
|
+
checksum = "3fcd952facd492f9be3ef0d0b7032a6e442ee9b361d4acc2b1d0c4aaa5f613a1"
|
|
2090
2041
|
dependencies = [
|
|
2091
2042
|
"proc-macro2",
|
|
2092
2043
|
"quote",
|
|
2093
|
-
"unicode-
|
|
2044
|
+
"unicode-ident",
|
|
2094
2045
|
]
|
|
2095
2046
|
|
|
2096
2047
|
[[package]]
|
|
@@ -2148,8 +2099,8 @@ dependencies = [
|
|
|
2148
2099
|
"futures-retry",
|
|
2149
2100
|
"http",
|
|
2150
2101
|
"once_cell",
|
|
2151
|
-
"opentelemetry
|
|
2152
|
-
"parking_lot
|
|
2102
|
+
"opentelemetry",
|
|
2103
|
+
"parking_lot",
|
|
2153
2104
|
"prost-types",
|
|
2154
2105
|
"temporal-sdk-core-protos",
|
|
2155
2106
|
"thiserror",
|
|
@@ -2188,10 +2139,10 @@ dependencies = [
|
|
|
2188
2139
|
"mockall",
|
|
2189
2140
|
"nix",
|
|
2190
2141
|
"once_cell",
|
|
2191
|
-
"opentelemetry
|
|
2142
|
+
"opentelemetry",
|
|
2192
2143
|
"opentelemetry-otlp",
|
|
2193
2144
|
"opentelemetry-prometheus",
|
|
2194
|
-
"parking_lot
|
|
2145
|
+
"parking_lot",
|
|
2195
2146
|
"prometheus",
|
|
2196
2147
|
"prost",
|
|
2197
2148
|
"prost-types",
|
|
@@ -2226,16 +2177,17 @@ dependencies = [
|
|
|
2226
2177
|
name = "temporal-sdk-core-api"
|
|
2227
2178
|
version = "0.1.0"
|
|
2228
2179
|
dependencies = [
|
|
2229
|
-
"anyhow",
|
|
2230
2180
|
"async-trait",
|
|
2231
2181
|
"derive_builder",
|
|
2232
|
-
"
|
|
2233
|
-
"opentelemetry 0.18.0",
|
|
2182
|
+
"opentelemetry",
|
|
2234
2183
|
"prost-types",
|
|
2184
|
+
"serde_json",
|
|
2235
2185
|
"temporal-client",
|
|
2236
2186
|
"temporal-sdk-core-protos",
|
|
2237
2187
|
"thiserror",
|
|
2238
2188
|
"tonic",
|
|
2189
|
+
"tracing-core",
|
|
2190
|
+
"url",
|
|
2239
2191
|
]
|
|
2240
2192
|
|
|
2241
2193
|
[[package]]
|
|
@@ -2264,8 +2216,8 @@ dependencies = [
|
|
|
2264
2216
|
"log",
|
|
2265
2217
|
"neon",
|
|
2266
2218
|
"once_cell",
|
|
2267
|
-
"opentelemetry
|
|
2268
|
-
"parking_lot
|
|
2219
|
+
"opentelemetry",
|
|
2220
|
+
"parking_lot",
|
|
2269
2221
|
"prost",
|
|
2270
2222
|
"prost-types",
|
|
2271
2223
|
"temporal-client",
|
|
@@ -2282,18 +2234,18 @@ checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b"
|
|
|
2282
2234
|
|
|
2283
2235
|
[[package]]
|
|
2284
2236
|
name = "thiserror"
|
|
2285
|
-
version = "1.0.
|
|
2237
|
+
version = "1.0.37"
|
|
2286
2238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2287
|
-
checksum = "
|
|
2239
|
+
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
|
|
2288
2240
|
dependencies = [
|
|
2289
2241
|
"thiserror-impl",
|
|
2290
2242
|
]
|
|
2291
2243
|
|
|
2292
2244
|
[[package]]
|
|
2293
2245
|
name = "thiserror-impl"
|
|
2294
|
-
version = "1.0.
|
|
2246
|
+
version = "1.0.37"
|
|
2295
2247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2296
|
-
checksum = "
|
|
2248
|
+
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
|
|
2297
2249
|
dependencies = [
|
|
2298
2250
|
"proc-macro2",
|
|
2299
2251
|
"quote",
|
|
@@ -2311,9 +2263,9 @@ dependencies = [
|
|
|
2311
2263
|
|
|
2312
2264
|
[[package]]
|
|
2313
2265
|
name = "time"
|
|
2314
|
-
version = "0.3.
|
|
2266
|
+
version = "0.3.15"
|
|
2315
2267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
-
checksum = "
|
|
2268
|
+
checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c"
|
|
2317
2269
|
dependencies = [
|
|
2318
2270
|
"itoa",
|
|
2319
2271
|
"libc",
|
|
@@ -2329,9 +2281,9 @@ checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
|
|
|
2329
2281
|
|
|
2330
2282
|
[[package]]
|
|
2331
2283
|
name = "tinyvec"
|
|
2332
|
-
version = "1.
|
|
2284
|
+
version = "1.6.0"
|
|
2333
2285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2334
|
-
checksum = "
|
|
2286
|
+
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
|
2335
2287
|
dependencies = [
|
|
2336
2288
|
"tinyvec_macros",
|
|
2337
2289
|
]
|
|
@@ -2344,17 +2296,17 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
|
2344
2296
|
|
|
2345
2297
|
[[package]]
|
|
2346
2298
|
name = "tokio"
|
|
2347
|
-
version = "1.
|
|
2299
|
+
version = "1.21.2"
|
|
2348
2300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2349
|
-
checksum = "
|
|
2301
|
+
checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099"
|
|
2350
2302
|
dependencies = [
|
|
2303
|
+
"autocfg",
|
|
2351
2304
|
"bytes",
|
|
2352
2305
|
"libc",
|
|
2353
2306
|
"memchr",
|
|
2354
2307
|
"mio",
|
|
2355
2308
|
"num_cpus",
|
|
2356
|
-
"
|
|
2357
|
-
"parking_lot 0.12.0",
|
|
2309
|
+
"parking_lot",
|
|
2358
2310
|
"pin-project-lite",
|
|
2359
2311
|
"signal-hook-registry",
|
|
2360
2312
|
"socket2",
|
|
@@ -2374,9 +2326,9 @@ dependencies = [
|
|
|
2374
2326
|
|
|
2375
2327
|
[[package]]
|
|
2376
2328
|
name = "tokio-macros"
|
|
2377
|
-
version = "1.
|
|
2329
|
+
version = "1.8.0"
|
|
2378
2330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2379
|
-
checksum = "
|
|
2331
|
+
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
|
|
2380
2332
|
dependencies = [
|
|
2381
2333
|
"proc-macro2",
|
|
2382
2334
|
"quote",
|
|
@@ -2396,9 +2348,9 @@ dependencies = [
|
|
|
2396
2348
|
|
|
2397
2349
|
[[package]]
|
|
2398
2350
|
name = "tokio-stream"
|
|
2399
|
-
version = "0.1.
|
|
2351
|
+
version = "0.1.11"
|
|
2400
2352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
-
checksum = "
|
|
2353
|
+
checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
|
|
2402
2354
|
dependencies = [
|
|
2403
2355
|
"futures-core",
|
|
2404
2356
|
"pin-project-lite",
|
|
@@ -2407,9 +2359,9 @@ dependencies = [
|
|
|
2407
2359
|
|
|
2408
2360
|
[[package]]
|
|
2409
2361
|
name = "tokio-util"
|
|
2410
|
-
version = "0.7.
|
|
2362
|
+
version = "0.7.4"
|
|
2411
2363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2412
|
-
checksum = "
|
|
2364
|
+
checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
|
|
2413
2365
|
dependencies = [
|
|
2414
2366
|
"bytes",
|
|
2415
2367
|
"futures-core",
|
|
@@ -2421,9 +2373,9 @@ dependencies = [
|
|
|
2421
2373
|
|
|
2422
2374
|
[[package]]
|
|
2423
2375
|
name = "tonic"
|
|
2424
|
-
version = "0.8.
|
|
2376
|
+
version = "0.8.2"
|
|
2425
2377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
-
checksum = "
|
|
2378
|
+
checksum = "55b9af819e54b8f33d453655bef9b9acc171568fb49523078d0cc4e7484200ec"
|
|
2427
2379
|
dependencies = [
|
|
2428
2380
|
"async-stream",
|
|
2429
2381
|
"async-trait",
|
|
@@ -2456,9 +2408,9 @@ dependencies = [
|
|
|
2456
2408
|
|
|
2457
2409
|
[[package]]
|
|
2458
2410
|
name = "tonic-build"
|
|
2459
|
-
version = "0.8.
|
|
2411
|
+
version = "0.8.2"
|
|
2460
2412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
-
checksum = "
|
|
2413
|
+
checksum = "48c6fd7c2581e36d63388a9e04c350c21beb7a8b059580b2e93993c526899ddc"
|
|
2462
2414
|
dependencies = [
|
|
2463
2415
|
"prettyplease",
|
|
2464
2416
|
"proc-macro2",
|
|
@@ -2469,9 +2421,9 @@ dependencies = [
|
|
|
2469
2421
|
|
|
2470
2422
|
[[package]]
|
|
2471
2423
|
name = "tower"
|
|
2472
|
-
version = "0.4.
|
|
2424
|
+
version = "0.4.13"
|
|
2473
2425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2474
|
-
checksum = "
|
|
2426
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
2475
2427
|
dependencies = [
|
|
2476
2428
|
"futures-core",
|
|
2477
2429
|
"futures-util",
|
|
@@ -2489,9 +2441,9 @@ dependencies = [
|
|
|
2489
2441
|
|
|
2490
2442
|
[[package]]
|
|
2491
2443
|
name = "tower-http"
|
|
2492
|
-
version = "0.3.
|
|
2444
|
+
version = "0.3.4"
|
|
2493
2445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2494
|
-
checksum = "
|
|
2446
|
+
checksum = "3c530c8675c1dbf98facee631536fa116b5fb6382d7dd6dc1b118d970eafe3ba"
|
|
2495
2447
|
dependencies = [
|
|
2496
2448
|
"bitflags",
|
|
2497
2449
|
"bytes",
|
|
@@ -2508,21 +2460,21 @@ dependencies = [
|
|
|
2508
2460
|
|
|
2509
2461
|
[[package]]
|
|
2510
2462
|
name = "tower-layer"
|
|
2511
|
-
version = "0.3.
|
|
2463
|
+
version = "0.3.2"
|
|
2512
2464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2513
|
-
checksum = "
|
|
2465
|
+
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
|
|
2514
2466
|
|
|
2515
2467
|
[[package]]
|
|
2516
2468
|
name = "tower-service"
|
|
2517
|
-
version = "0.3.
|
|
2469
|
+
version = "0.3.2"
|
|
2518
2470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2519
|
-
checksum = "
|
|
2471
|
+
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
2520
2472
|
|
|
2521
2473
|
[[package]]
|
|
2522
2474
|
name = "tracing"
|
|
2523
|
-
version = "0.1.
|
|
2475
|
+
version = "0.1.37"
|
|
2524
2476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2525
|
-
checksum = "
|
|
2477
|
+
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
|
|
2526
2478
|
dependencies = [
|
|
2527
2479
|
"cfg-if",
|
|
2528
2480
|
"log",
|
|
@@ -2533,9 +2485,9 @@ dependencies = [
|
|
|
2533
2485
|
|
|
2534
2486
|
[[package]]
|
|
2535
2487
|
name = "tracing-attributes"
|
|
2536
|
-
version = "0.1.
|
|
2488
|
+
version = "0.1.23"
|
|
2537
2489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2538
|
-
checksum = "
|
|
2490
|
+
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
|
|
2539
2491
|
dependencies = [
|
|
2540
2492
|
"proc-macro2",
|
|
2541
2493
|
"quote",
|
|
@@ -2544,9 +2496,9 @@ dependencies = [
|
|
|
2544
2496
|
|
|
2545
2497
|
[[package]]
|
|
2546
2498
|
name = "tracing-core"
|
|
2547
|
-
version = "0.1.
|
|
2499
|
+
version = "0.1.30"
|
|
2548
2500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2549
|
-
checksum = "
|
|
2501
|
+
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
|
|
2550
2502
|
dependencies = [
|
|
2551
2503
|
"once_cell",
|
|
2552
2504
|
"valuable",
|
|
@@ -2580,7 +2532,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2580
2532
|
checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de"
|
|
2581
2533
|
dependencies = [
|
|
2582
2534
|
"once_cell",
|
|
2583
|
-
"opentelemetry
|
|
2535
|
+
"opentelemetry",
|
|
2584
2536
|
"tracing",
|
|
2585
2537
|
"tracing-core",
|
|
2586
2538
|
"tracing-log",
|
|
@@ -2589,14 +2541,14 @@ dependencies = [
|
|
|
2589
2541
|
|
|
2590
2542
|
[[package]]
|
|
2591
2543
|
name = "tracing-subscriber"
|
|
2592
|
-
version = "0.3.
|
|
2544
|
+
version = "0.3.16"
|
|
2593
2545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2594
|
-
checksum = "
|
|
2546
|
+
checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
|
|
2595
2547
|
dependencies = [
|
|
2596
|
-
"ansi_term",
|
|
2597
|
-
"lazy_static",
|
|
2598
2548
|
"matchers",
|
|
2599
|
-
"
|
|
2549
|
+
"nu-ansi-term",
|
|
2550
|
+
"once_cell",
|
|
2551
|
+
"parking_lot",
|
|
2600
2552
|
"regex",
|
|
2601
2553
|
"sharded-slab",
|
|
2602
2554
|
"smallvec",
|
|
@@ -2620,25 +2572,25 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
|
|
2620
2572
|
|
|
2621
2573
|
[[package]]
|
|
2622
2574
|
name = "unicode-bidi"
|
|
2623
|
-
version = "0.3.
|
|
2575
|
+
version = "0.3.8"
|
|
2624
2576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
|
-
checksum = "
|
|
2577
|
+
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
|
|
2578
|
+
|
|
2579
|
+
[[package]]
|
|
2580
|
+
name = "unicode-ident"
|
|
2581
|
+
version = "1.0.5"
|
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
+
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
|
|
2626
2584
|
|
|
2627
2585
|
[[package]]
|
|
2628
2586
|
name = "unicode-normalization"
|
|
2629
|
-
version = "0.1.
|
|
2587
|
+
version = "0.1.22"
|
|
2630
2588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
-
checksum = "
|
|
2589
|
+
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
|
|
2632
2590
|
dependencies = [
|
|
2633
2591
|
"tinyvec",
|
|
2634
2592
|
]
|
|
2635
2593
|
|
|
2636
|
-
[[package]]
|
|
2637
|
-
name = "unicode-xid"
|
|
2638
|
-
version = "0.2.2"
|
|
2639
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
-
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
|
|
2641
|
-
|
|
2642
2594
|
[[package]]
|
|
2643
2595
|
name = "untrusted"
|
|
2644
2596
|
version = "0.7.1"
|
|
@@ -2647,21 +2599,20 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|
|
2647
2599
|
|
|
2648
2600
|
[[package]]
|
|
2649
2601
|
name = "url"
|
|
2650
|
-
version = "2.
|
|
2602
|
+
version = "2.3.1"
|
|
2651
2603
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2652
|
-
checksum = "
|
|
2604
|
+
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
|
|
2653
2605
|
dependencies = [
|
|
2654
2606
|
"form_urlencoded",
|
|
2655
2607
|
"idna",
|
|
2656
|
-
"matches",
|
|
2657
2608
|
"percent-encoding",
|
|
2658
2609
|
]
|
|
2659
2610
|
|
|
2660
2611
|
[[package]]
|
|
2661
2612
|
name = "uuid"
|
|
2662
|
-
version = "1.1
|
|
2613
|
+
version = "1.2.1"
|
|
2663
2614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
-
checksum = "
|
|
2615
|
+
checksum = "feb41e78f93363bb2df8b0e86a2ca30eed7806ea16ea0c790d757cf93f79be83"
|
|
2665
2616
|
dependencies = [
|
|
2666
2617
|
"getrandom",
|
|
2667
2618
|
]
|
|
@@ -2702,9 +2653,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
2702
2653
|
|
|
2703
2654
|
[[package]]
|
|
2704
2655
|
name = "wasm-bindgen"
|
|
2705
|
-
version = "0.2.
|
|
2656
|
+
version = "0.2.83"
|
|
2706
2657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
-
checksum = "
|
|
2658
|
+
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
|
|
2708
2659
|
dependencies = [
|
|
2709
2660
|
"cfg-if",
|
|
2710
2661
|
"wasm-bindgen-macro",
|
|
@@ -2712,13 +2663,13 @@ dependencies = [
|
|
|
2712
2663
|
|
|
2713
2664
|
[[package]]
|
|
2714
2665
|
name = "wasm-bindgen-backend"
|
|
2715
|
-
version = "0.2.
|
|
2666
|
+
version = "0.2.83"
|
|
2716
2667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2717
|
-
checksum = "
|
|
2668
|
+
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
|
|
2718
2669
|
dependencies = [
|
|
2719
2670
|
"bumpalo",
|
|
2720
|
-
"lazy_static",
|
|
2721
2671
|
"log",
|
|
2672
|
+
"once_cell",
|
|
2722
2673
|
"proc-macro2",
|
|
2723
2674
|
"quote",
|
|
2724
2675
|
"syn",
|
|
@@ -2727,9 +2678,9 @@ dependencies = [
|
|
|
2727
2678
|
|
|
2728
2679
|
[[package]]
|
|
2729
2680
|
name = "wasm-bindgen-futures"
|
|
2730
|
-
version = "0.4.
|
|
2681
|
+
version = "0.4.33"
|
|
2731
2682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2732
|
-
checksum = "
|
|
2683
|
+
checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
|
|
2733
2684
|
dependencies = [
|
|
2734
2685
|
"cfg-if",
|
|
2735
2686
|
"js-sys",
|
|
@@ -2739,9 +2690,9 @@ dependencies = [
|
|
|
2739
2690
|
|
|
2740
2691
|
[[package]]
|
|
2741
2692
|
name = "wasm-bindgen-macro"
|
|
2742
|
-
version = "0.2.
|
|
2693
|
+
version = "0.2.83"
|
|
2743
2694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2744
|
-
checksum = "
|
|
2695
|
+
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
|
|
2745
2696
|
dependencies = [
|
|
2746
2697
|
"quote",
|
|
2747
2698
|
"wasm-bindgen-macro-support",
|
|
@@ -2749,9 +2700,9 @@ dependencies = [
|
|
|
2749
2700
|
|
|
2750
2701
|
[[package]]
|
|
2751
2702
|
name = "wasm-bindgen-macro-support"
|
|
2752
|
-
version = "0.2.
|
|
2703
|
+
version = "0.2.83"
|
|
2753
2704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2754
|
-
checksum = "
|
|
2705
|
+
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
|
|
2755
2706
|
dependencies = [
|
|
2756
2707
|
"proc-macro2",
|
|
2757
2708
|
"quote",
|
|
@@ -2762,15 +2713,15 @@ dependencies = [
|
|
|
2762
2713
|
|
|
2763
2714
|
[[package]]
|
|
2764
2715
|
name = "wasm-bindgen-shared"
|
|
2765
|
-
version = "0.2.
|
|
2716
|
+
version = "0.2.83"
|
|
2766
2717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2767
|
-
checksum = "
|
|
2718
|
+
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
|
|
2768
2719
|
|
|
2769
2720
|
[[package]]
|
|
2770
2721
|
name = "web-sys"
|
|
2771
|
-
version = "0.3.
|
|
2722
|
+
version = "0.3.60"
|
|
2772
2723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2773
|
-
checksum = "
|
|
2724
|
+
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
|
|
2774
2725
|
dependencies = [
|
|
2775
2726
|
"js-sys",
|
|
2776
2727
|
"wasm-bindgen",
|
|
@@ -2788,22 +2739,22 @@ dependencies = [
|
|
|
2788
2739
|
|
|
2789
2740
|
[[package]]
|
|
2790
2741
|
name = "webpki-roots"
|
|
2791
|
-
version = "0.22.
|
|
2742
|
+
version = "0.22.5"
|
|
2792
2743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
-
checksum = "
|
|
2744
|
+
checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be"
|
|
2794
2745
|
dependencies = [
|
|
2795
2746
|
"webpki",
|
|
2796
2747
|
]
|
|
2797
2748
|
|
|
2798
2749
|
[[package]]
|
|
2799
2750
|
name = "which"
|
|
2800
|
-
version = "4.
|
|
2751
|
+
version = "4.3.0"
|
|
2801
2752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2802
|
-
checksum = "
|
|
2753
|
+
checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
|
|
2803
2754
|
dependencies = [
|
|
2804
2755
|
"either",
|
|
2805
|
-
"lazy_static",
|
|
2806
2756
|
"libc",
|
|
2757
|
+
"once_cell",
|
|
2807
2758
|
]
|
|
2808
2759
|
|
|
2809
2760
|
[[package]]
|
|
@@ -2828,86 +2779,43 @@ version = "0.4.0"
|
|
|
2828
2779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2829
2780
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2830
2781
|
|
|
2831
|
-
[[package]]
|
|
2832
|
-
name = "windows-sys"
|
|
2833
|
-
version = "0.34.0"
|
|
2834
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2835
|
-
checksum = "5acdd78cb4ba54c0045ac14f62d8f94a03d10047904ae2a40afa1e99d8f70825"
|
|
2836
|
-
dependencies = [
|
|
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
2782
|
[[package]]
|
|
2845
2783
|
name = "windows-sys"
|
|
2846
2784
|
version = "0.36.1"
|
|
2847
2785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
2786
|
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
|
2849
2787
|
dependencies = [
|
|
2850
|
-
"windows_aarch64_msvc
|
|
2851
|
-
"windows_i686_gnu
|
|
2852
|
-
"windows_i686_msvc
|
|
2853
|
-
"windows_x86_64_gnu
|
|
2854
|
-
"windows_x86_64_msvc
|
|
2788
|
+
"windows_aarch64_msvc",
|
|
2789
|
+
"windows_i686_gnu",
|
|
2790
|
+
"windows_i686_msvc",
|
|
2791
|
+
"windows_x86_64_gnu",
|
|
2792
|
+
"windows_x86_64_msvc",
|
|
2855
2793
|
]
|
|
2856
2794
|
|
|
2857
|
-
[[package]]
|
|
2858
|
-
name = "windows_aarch64_msvc"
|
|
2859
|
-
version = "0.34.0"
|
|
2860
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2861
|
-
checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d"
|
|
2862
|
-
|
|
2863
2795
|
[[package]]
|
|
2864
2796
|
name = "windows_aarch64_msvc"
|
|
2865
2797
|
version = "0.36.1"
|
|
2866
2798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
2799
|
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
|
2868
2800
|
|
|
2869
|
-
[[package]]
|
|
2870
|
-
name = "windows_i686_gnu"
|
|
2871
|
-
version = "0.34.0"
|
|
2872
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2873
|
-
checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed"
|
|
2874
|
-
|
|
2875
2801
|
[[package]]
|
|
2876
2802
|
name = "windows_i686_gnu"
|
|
2877
2803
|
version = "0.36.1"
|
|
2878
2804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2879
2805
|
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
|
2880
2806
|
|
|
2881
|
-
[[package]]
|
|
2882
|
-
name = "windows_i686_msvc"
|
|
2883
|
-
version = "0.34.0"
|
|
2884
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2885
|
-
checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956"
|
|
2886
|
-
|
|
2887
2807
|
[[package]]
|
|
2888
2808
|
name = "windows_i686_msvc"
|
|
2889
2809
|
version = "0.36.1"
|
|
2890
2810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
2811
|
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
|
2892
2812
|
|
|
2893
|
-
[[package]]
|
|
2894
|
-
name = "windows_x86_64_gnu"
|
|
2895
|
-
version = "0.34.0"
|
|
2896
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
-
checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4"
|
|
2898
|
-
|
|
2899
2813
|
[[package]]
|
|
2900
2814
|
name = "windows_x86_64_gnu"
|
|
2901
2815
|
version = "0.36.1"
|
|
2902
2816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2903
2817
|
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
|
2904
2818
|
|
|
2905
|
-
[[package]]
|
|
2906
|
-
name = "windows_x86_64_msvc"
|
|
2907
|
-
version = "0.34.0"
|
|
2908
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2909
|
-
checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9"
|
|
2910
|
-
|
|
2911
2819
|
[[package]]
|
|
2912
2820
|
name = "windows_x86_64_msvc"
|
|
2913
2821
|
version = "0.36.1"
|