@temporalio/core-bridge 1.5.2 → 1.7.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 +304 -112
- package/lib/index.d.ts +8 -6
- package/lib/index.js.map +1 -1
- package/package.json +9 -4
- 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 +2 -2
- package/sdk-core/.buildkite/docker/docker-compose.yaml +1 -1
- package/sdk-core/.buildkite/pipeline.yml +2 -4
- package/sdk-core/.cargo/config.toml +5 -2
- package/sdk-core/.github/workflows/heavy.yml +29 -0
- package/sdk-core/Cargo.toml +1 -1
- package/sdk-core/README.md +20 -10
- package/sdk-core/client/src/lib.rs +215 -39
- package/sdk-core/client/src/metrics.rs +17 -8
- package/sdk-core/client/src/raw.rs +4 -4
- package/sdk-core/client/src/retry.rs +32 -20
- package/sdk-core/core/Cargo.toml +25 -12
- package/sdk-core/core/src/abstractions/take_cell.rs +28 -0
- package/sdk-core/core/src/abstractions.rs +204 -14
- package/sdk-core/core/src/core_tests/activity_tasks.rs +143 -50
- package/sdk-core/core/src/core_tests/child_workflows.rs +6 -5
- package/sdk-core/core/src/core_tests/determinism.rs +165 -2
- package/sdk-core/core/src/core_tests/local_activities.rs +431 -43
- package/sdk-core/core/src/core_tests/queries.rs +34 -16
- package/sdk-core/core/src/core_tests/workers.rs +8 -5
- package/sdk-core/core/src/core_tests/workflow_tasks.rs +588 -55
- package/sdk-core/core/src/ephemeral_server/mod.rs +113 -12
- package/sdk-core/core/src/internal_flags.rs +155 -0
- package/sdk-core/core/src/lib.rs +16 -9
- package/sdk-core/core/src/protosext/mod.rs +1 -1
- package/sdk-core/core/src/replay/mod.rs +16 -27
- package/sdk-core/core/src/telemetry/log_export.rs +1 -1
- package/sdk-core/core/src/telemetry/metrics.rs +69 -35
- package/sdk-core/core/src/telemetry/mod.rs +60 -21
- package/sdk-core/core/src/telemetry/prometheus_server.rs +19 -13
- package/sdk-core/core/src/test_help/mod.rs +73 -14
- package/sdk-core/core/src/worker/activities/activity_heartbeat_manager.rs +119 -160
- package/sdk-core/core/src/worker/activities/activity_task_poller_stream.rs +89 -0
- package/sdk-core/core/src/worker/activities/local_activities.rs +379 -129
- package/sdk-core/core/src/worker/activities.rs +350 -175
- package/sdk-core/core/src/worker/client/mocks.rs +22 -2
- package/sdk-core/core/src/worker/client.rs +18 -2
- package/sdk-core/core/src/worker/mod.rs +183 -64
- package/sdk-core/core/src/worker/workflow/bridge.rs +1 -3
- package/sdk-core/core/src/worker/workflow/driven_workflow.rs +3 -5
- package/sdk-core/core/src/worker/workflow/history_update.rs +916 -277
- package/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +216 -183
- package/sdk-core/core/src/worker/workflow/machines/cancel_external_state_machine.rs +9 -12
- package/sdk-core/core/src/worker/workflow/machines/cancel_workflow_state_machine.rs +7 -9
- package/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +160 -87
- package/sdk-core/core/src/worker/workflow/machines/complete_workflow_state_machine.rs +13 -14
- package/sdk-core/core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs +7 -9
- package/sdk-core/core/src/worker/workflow/machines/fail_workflow_state_machine.rs +14 -17
- package/sdk-core/core/src/worker/workflow/machines/local_activity_state_machine.rs +242 -110
- package/sdk-core/core/src/worker/workflow/machines/mod.rs +27 -19
- package/sdk-core/core/src/worker/workflow/machines/modify_workflow_properties_state_machine.rs +9 -11
- package/sdk-core/core/src/worker/workflow/machines/patch_state_machine.rs +321 -206
- package/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +13 -18
- package/sdk-core/core/src/worker/workflow/machines/timer_state_machine.rs +20 -29
- package/sdk-core/core/src/worker/workflow/machines/transition_coverage.rs +2 -2
- package/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +257 -51
- package/sdk-core/core/src/worker/workflow/machines/workflow_machines/local_acts.rs +6 -17
- package/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +310 -150
- package/sdk-core/core/src/worker/workflow/machines/workflow_task_state_machine.rs +17 -20
- package/sdk-core/core/src/worker/workflow/managed_run/managed_wf_test.rs +31 -15
- package/sdk-core/core/src/worker/workflow/managed_run.rs +1052 -380
- package/sdk-core/core/src/worker/workflow/mod.rs +598 -390
- package/sdk-core/core/src/worker/workflow/run_cache.rs +40 -57
- package/sdk-core/core/src/worker/workflow/wft_extraction.rs +137 -0
- package/sdk-core/core/src/worker/workflow/wft_poller.rs +1 -4
- package/sdk-core/core/src/worker/workflow/workflow_stream/saved_wf_inputs.rs +117 -0
- package/sdk-core/core/src/worker/workflow/workflow_stream/tonic_status_serde.rs +24 -0
- package/sdk-core/core/src/worker/workflow/workflow_stream.rs +469 -718
- package/sdk-core/core-api/Cargo.toml +2 -1
- package/sdk-core/core-api/src/errors.rs +1 -34
- package/sdk-core/core-api/src/lib.rs +19 -9
- package/sdk-core/core-api/src/telemetry.rs +4 -6
- package/sdk-core/core-api/src/worker.rs +19 -1
- package/sdk-core/etc/deps.svg +115 -140
- package/sdk-core/etc/regen-depgraph.sh +5 -0
- package/sdk-core/fsm/rustfsm_procmacro/src/lib.rs +86 -61
- package/sdk-core/fsm/rustfsm_trait/src/lib.rs +29 -71
- package/sdk-core/histories/ends_empty_wft_complete.bin +0 -0
- package/sdk-core/histories/evict_while_la_running_no_interference-16_history.bin +0 -0
- package/sdk-core/histories/old_change_marker_format.bin +0 -0
- package/sdk-core/protos/api_upstream/.github/CODEOWNERS +2 -1
- package/sdk-core/protos/api_upstream/Makefile +6 -6
- package/sdk-core/protos/api_upstream/build/go.mod +7 -0
- package/sdk-core/protos/api_upstream/build/go.sum +5 -0
- package/sdk-core/protos/api_upstream/build/tools.go +29 -0
- package/sdk-core/protos/api_upstream/go.mod +6 -0
- package/sdk-core/protos/api_upstream/temporal/api/batch/v1/message.proto +9 -2
- package/sdk-core/protos/api_upstream/temporal/api/command/v1/message.proto +7 -26
- package/sdk-core/protos/api_upstream/temporal/api/common/v1/message.proto +13 -2
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/batch_operation.proto +3 -2
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/command_type.proto +3 -7
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/common.proto +3 -2
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/event_type.proto +8 -8
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +25 -2
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/namespace.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/query.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/reset.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/schedule.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/task_queue.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/update.proto +24 -19
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/workflow.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/errordetails/v1/message.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/failure/v1/message.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/filter/v1/message.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/history/v1/message.proto +49 -26
- package/sdk-core/protos/api_upstream/temporal/api/namespace/v1/message.proto +4 -2
- package/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +5 -2
- package/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/protocol/v1/message.proto +57 -0
- package/sdk-core/protos/api_upstream/temporal/api/query/v1/message.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/replication/v1/message.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/schedule/v1/message.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/sdk/v1/task_complete_metadata.proto +63 -0
- package/sdk-core/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/update/v1/message.proto +71 -6
- package/sdk-core/protos/api_upstream/temporal/api/version/v1/message.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/workflow/v1/message.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +64 -28
- package/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +4 -4
- package/sdk-core/protos/local/temporal/sdk/core/activity_result/activity_result.proto +7 -8
- package/sdk-core/protos/local/temporal/sdk/core/activity_task/activity_task.proto +10 -7
- package/sdk-core/protos/local/temporal/sdk/core/child_workflow/child_workflow.proto +19 -30
- package/sdk-core/protos/local/temporal/sdk/core/common/common.proto +1 -0
- package/sdk-core/protos/local/temporal/sdk/core/core_interface.proto +1 -0
- package/sdk-core/protos/local/temporal/sdk/core/external_data/external_data.proto +8 -0
- package/sdk-core/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +67 -60
- package/sdk-core/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +85 -84
- package/sdk-core/protos/local/temporal/sdk/core/workflow_completion/workflow_completion.proto +9 -3
- package/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/request_response.proto +2 -2
- package/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/service.proto +2 -2
- package/sdk-core/sdk/Cargo.toml +5 -4
- package/sdk-core/sdk/src/lib.rs +108 -26
- package/sdk-core/sdk/src/workflow_context/options.rs +7 -1
- package/sdk-core/sdk/src/workflow_context.rs +24 -17
- package/sdk-core/sdk/src/workflow_future.rs +16 -15
- package/sdk-core/sdk-core-protos/Cargo.toml +5 -2
- package/sdk-core/sdk-core-protos/build.rs +36 -2
- package/sdk-core/sdk-core-protos/src/history_builder.rs +138 -106
- package/sdk-core/sdk-core-protos/src/history_info.rs +10 -1
- package/sdk-core/sdk-core-protos/src/lib.rs +272 -87
- package/sdk-core/sdk-core-protos/src/task_token.rs +12 -2
- package/sdk-core/test-utils/Cargo.toml +3 -1
- package/sdk-core/test-utils/src/canned_histories.rs +106 -296
- package/sdk-core/test-utils/src/histfetch.rs +1 -1
- package/sdk-core/test-utils/src/lib.rs +82 -23
- package/sdk-core/test-utils/src/wf_input_saver.rs +50 -0
- package/sdk-core/test-utils/src/workflows.rs +29 -0
- package/sdk-core/tests/fuzzy_workflow.rs +130 -0
- package/sdk-core/tests/{load_tests.rs → heavy_tests.rs} +125 -51
- package/sdk-core/tests/integ_tests/ephemeral_server_tests.rs +25 -3
- package/sdk-core/tests/integ_tests/heartbeat_tests.rs +10 -5
- package/sdk-core/tests/integ_tests/metrics_tests.rs +218 -16
- package/sdk-core/tests/integ_tests/polling_tests.rs +4 -47
- package/sdk-core/tests/integ_tests/queries_tests.rs +5 -128
- package/sdk-core/tests/integ_tests/visibility_tests.rs +83 -25
- package/sdk-core/tests/integ_tests/workflow_tests/activities.rs +161 -72
- package/sdk-core/tests/integ_tests/workflow_tests/cancel_external.rs +1 -0
- package/sdk-core/tests/integ_tests/workflow_tests/cancel_wf.rs +6 -13
- package/sdk-core/tests/integ_tests/workflow_tests/child_workflows.rs +80 -3
- package/sdk-core/tests/integ_tests/workflow_tests/continue_as_new.rs +6 -2
- package/sdk-core/tests/integ_tests/workflow_tests/determinism.rs +3 -10
- package/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +94 -200
- package/sdk-core/tests/integ_tests/workflow_tests/modify_wf_properties.rs +2 -4
- package/sdk-core/tests/integ_tests/workflow_tests/patches.rs +34 -28
- package/sdk-core/tests/integ_tests/workflow_tests/replay.rs +76 -7
- package/sdk-core/tests/integ_tests/workflow_tests/resets.rs +1 -0
- package/sdk-core/tests/integ_tests/workflow_tests/signals.rs +18 -14
- package/sdk-core/tests/integ_tests/workflow_tests/stickyness.rs +6 -20
- package/sdk-core/tests/integ_tests/workflow_tests/timers.rs +10 -21
- package/sdk-core/tests/integ_tests/workflow_tests/upsert_search_attrs.rs +7 -8
- package/sdk-core/tests/integ_tests/workflow_tests.rs +13 -14
- package/sdk-core/tests/main.rs +3 -13
- package/sdk-core/tests/runner.rs +75 -36
- package/sdk-core/tests/wf_input_replay.rs +32 -0
- package/src/conversions.rs +14 -8
- package/src/runtime.rs +9 -8
- package/ts/index.ts +8 -6
- package/sdk-core/bridge-ffi/Cargo.toml +0 -24
- package/sdk-core/bridge-ffi/LICENSE.txt +0 -23
- package/sdk-core/bridge-ffi/build.rs +0 -25
- package/sdk-core/bridge-ffi/include/sdk-core-bridge.h +0 -224
- package/sdk-core/bridge-ffi/src/lib.rs +0 -746
- package/sdk-core/bridge-ffi/src/wrappers.rs +0 -221
- package/sdk-core/protos/local/temporal/sdk/core/bridge/bridge.proto +0 -210
- package/sdk-core/sdk/src/conversions.rs +0 -8
package/Cargo.lock
CHANGED
|
@@ -22,11 +22,11 @@ dependencies = [
|
|
|
22
22
|
|
|
23
23
|
[[package]]
|
|
24
24
|
name = "ahash"
|
|
25
|
-
version = "0.
|
|
25
|
+
version = "0.8.3"
|
|
26
26
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
-
checksum = "
|
|
27
|
+
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
|
|
28
28
|
dependencies = [
|
|
29
|
-
"
|
|
29
|
+
"cfg-if",
|
|
30
30
|
"once_cell",
|
|
31
31
|
"version_check",
|
|
32
32
|
]
|
|
@@ -52,17 +52,6 @@ version = "1.5.1"
|
|
|
52
52
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
53
|
checksum = "983cd8b9d4b02a6dc6ffa557262eb5858a27a0038ffffe21a0f133eaa819a164"
|
|
54
54
|
|
|
55
|
-
[[package]]
|
|
56
|
-
name = "async-channel"
|
|
57
|
-
version = "1.7.1"
|
|
58
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
-
checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28"
|
|
60
|
-
dependencies = [
|
|
61
|
-
"concurrent-queue",
|
|
62
|
-
"event-listener",
|
|
63
|
-
"futures-core",
|
|
64
|
-
]
|
|
65
|
-
|
|
66
55
|
[[package]]
|
|
67
56
|
name = "async-stream"
|
|
68
57
|
version = "0.3.3"
|
|
@@ -81,7 +70,7 @@ checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
|
|
|
81
70
|
dependencies = [
|
|
82
71
|
"proc-macro2",
|
|
83
72
|
"quote",
|
|
84
|
-
"syn",
|
|
73
|
+
"syn 1.0.102",
|
|
85
74
|
]
|
|
86
75
|
|
|
87
76
|
[[package]]
|
|
@@ -92,7 +81,7 @@ checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
|
|
|
92
81
|
dependencies = [
|
|
93
82
|
"proc-macro2",
|
|
94
83
|
"quote",
|
|
95
|
-
"syn",
|
|
84
|
+
"syn 1.0.102",
|
|
96
85
|
]
|
|
97
86
|
|
|
98
87
|
[[package]]
|
|
@@ -163,6 +152,12 @@ version = "0.13.0"
|
|
|
163
152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
153
|
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
|
|
165
154
|
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "base64"
|
|
157
|
+
version = "0.21.0"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
|
|
160
|
+
|
|
166
161
|
[[package]]
|
|
167
162
|
name = "base64ct"
|
|
168
163
|
version = "1.0.1"
|
|
@@ -223,12 +218,6 @@ dependencies = [
|
|
|
223
218
|
"pkg-config",
|
|
224
219
|
]
|
|
225
220
|
|
|
226
|
-
[[package]]
|
|
227
|
-
name = "cache-padded"
|
|
228
|
-
version = "1.2.0"
|
|
229
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
-
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
|
|
231
|
-
|
|
232
221
|
[[package]]
|
|
233
222
|
name = "cc"
|
|
234
223
|
version = "1.0.73"
|
|
@@ -245,21 +234,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
245
234
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
246
235
|
|
|
247
236
|
[[package]]
|
|
248
|
-
name = "
|
|
249
|
-
version = "0.
|
|
237
|
+
name = "chrono"
|
|
238
|
+
version = "0.4.23"
|
|
250
239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
-
checksum = "
|
|
240
|
+
checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
|
|
252
241
|
dependencies = [
|
|
253
|
-
"
|
|
242
|
+
"num-integer",
|
|
243
|
+
"num-traits",
|
|
244
|
+
"serde",
|
|
254
245
|
]
|
|
255
246
|
|
|
256
247
|
[[package]]
|
|
257
|
-
name = "
|
|
258
|
-
version = "
|
|
248
|
+
name = "cipher"
|
|
249
|
+
version = "0.3.0"
|
|
259
250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
-
checksum = "
|
|
251
|
+
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
|
|
261
252
|
dependencies = [
|
|
262
|
-
"
|
|
253
|
+
"generic-array",
|
|
263
254
|
]
|
|
264
255
|
|
|
265
256
|
[[package]]
|
|
@@ -385,6 +376,16 @@ dependencies = [
|
|
|
385
376
|
"typenum",
|
|
386
377
|
]
|
|
387
378
|
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "ctor"
|
|
381
|
+
version = "0.1.26"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
|
|
384
|
+
dependencies = [
|
|
385
|
+
"quote",
|
|
386
|
+
"syn 1.0.102",
|
|
387
|
+
]
|
|
388
|
+
|
|
388
389
|
[[package]]
|
|
389
390
|
name = "darling"
|
|
390
391
|
version = "0.14.1"
|
|
@@ -406,7 +407,7 @@ dependencies = [
|
|
|
406
407
|
"proc-macro2",
|
|
407
408
|
"quote",
|
|
408
409
|
"strsim",
|
|
409
|
-
"syn",
|
|
410
|
+
"syn 1.0.102",
|
|
410
411
|
]
|
|
411
412
|
|
|
412
413
|
[[package]]
|
|
@@ -417,7 +418,7 @@ checksum = "ddfc69c5bfcbd2fc09a0f38451d2daf0e372e367986a83906d1b0dbc88134fb5"
|
|
|
417
418
|
dependencies = [
|
|
418
419
|
"darling_core",
|
|
419
420
|
"quote",
|
|
420
|
-
"syn",
|
|
421
|
+
"syn 1.0.102",
|
|
421
422
|
]
|
|
422
423
|
|
|
423
424
|
[[package]]
|
|
@@ -427,7 +428,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
427
428
|
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
|
|
428
429
|
dependencies = [
|
|
429
430
|
"cfg-if",
|
|
430
|
-
"hashbrown",
|
|
431
|
+
"hashbrown 0.12.3",
|
|
431
432
|
"lock_api",
|
|
432
433
|
"once_cell",
|
|
433
434
|
"parking_lot_core",
|
|
@@ -451,7 +452,7 @@ dependencies = [
|
|
|
451
452
|
"darling",
|
|
452
453
|
"proc-macro2",
|
|
453
454
|
"quote",
|
|
454
|
-
"syn",
|
|
455
|
+
"syn 1.0.102",
|
|
455
456
|
]
|
|
456
457
|
|
|
457
458
|
[[package]]
|
|
@@ -461,7 +462,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
461
462
|
checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e"
|
|
462
463
|
dependencies = [
|
|
463
464
|
"derive_builder_core",
|
|
464
|
-
"syn",
|
|
465
|
+
"syn 1.0.102",
|
|
465
466
|
]
|
|
466
467
|
|
|
467
468
|
[[package]]
|
|
@@ -474,7 +475,7 @@ dependencies = [
|
|
|
474
475
|
"proc-macro2",
|
|
475
476
|
"quote",
|
|
476
477
|
"rustc_version",
|
|
477
|
-
"syn",
|
|
478
|
+
"syn 1.0.102",
|
|
478
479
|
]
|
|
479
480
|
|
|
480
481
|
[[package]]
|
|
@@ -524,14 +525,17 @@ dependencies = [
|
|
|
524
525
|
"once_cell",
|
|
525
526
|
"proc-macro2",
|
|
526
527
|
"quote",
|
|
527
|
-
"syn",
|
|
528
|
+
"syn 1.0.102",
|
|
528
529
|
]
|
|
529
530
|
|
|
530
531
|
[[package]]
|
|
531
|
-
name = "
|
|
532
|
-
version = "
|
|
532
|
+
name = "erased-serde"
|
|
533
|
+
version = "0.3.24"
|
|
533
534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
-
checksum = "
|
|
535
|
+
checksum = "e4ca605381c017ec7a5fef5e548f1cfaa419ed0f6df6367339300db74c92aa7d"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"serde",
|
|
538
|
+
]
|
|
535
539
|
|
|
536
540
|
[[package]]
|
|
537
541
|
name = "fastrand"
|
|
@@ -551,7 +555,7 @@ dependencies = [
|
|
|
551
555
|
"cfg-if",
|
|
552
556
|
"libc",
|
|
553
557
|
"redox_syscall",
|
|
554
|
-
"windows-sys",
|
|
558
|
+
"windows-sys 0.36.1",
|
|
555
559
|
]
|
|
556
560
|
|
|
557
561
|
[[package]]
|
|
@@ -656,7 +660,7 @@ checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
|
|
|
656
660
|
dependencies = [
|
|
657
661
|
"proc-macro2",
|
|
658
662
|
"quote",
|
|
659
|
-
"syn",
|
|
663
|
+
"syn 1.0.102",
|
|
660
664
|
]
|
|
661
665
|
|
|
662
666
|
[[package]]
|
|
@@ -727,6 +731,17 @@ dependencies = [
|
|
|
727
731
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
728
732
|
]
|
|
729
733
|
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "ghost"
|
|
736
|
+
version = "0.1.7"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "41973d4c45f7a35af8753ba3457cc99d406d863941fd7f52663cff54a5ab99b3"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"proc-macro2",
|
|
741
|
+
"quote",
|
|
742
|
+
"syn 1.0.102",
|
|
743
|
+
]
|
|
744
|
+
|
|
730
745
|
[[package]]
|
|
731
746
|
name = "governor"
|
|
732
747
|
version = "0.5.0"
|
|
@@ -769,6 +784,12 @@ name = "hashbrown"
|
|
|
769
784
|
version = "0.12.3"
|
|
770
785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
786
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "hashbrown"
|
|
790
|
+
version = "0.13.2"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
|
772
793
|
dependencies = [
|
|
773
794
|
"ahash",
|
|
774
795
|
]
|
|
@@ -909,7 +930,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
909
930
|
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
|
|
910
931
|
dependencies = [
|
|
911
932
|
"autocfg",
|
|
912
|
-
"hashbrown",
|
|
933
|
+
"hashbrown 0.12.3",
|
|
913
934
|
]
|
|
914
935
|
|
|
915
936
|
[[package]]
|
|
@@ -921,6 +942,16 @@ dependencies = [
|
|
|
921
942
|
"cfg-if",
|
|
922
943
|
]
|
|
923
944
|
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "inventory"
|
|
947
|
+
version = "0.3.3"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "16fe3b35d64bd1f72917f06425e7573a2f63f74f42c8f56e53ea6826dde3a2b5"
|
|
950
|
+
dependencies = [
|
|
951
|
+
"ctor",
|
|
952
|
+
"ghost",
|
|
953
|
+
]
|
|
954
|
+
|
|
924
955
|
[[package]]
|
|
925
956
|
name = "ipnet"
|
|
926
957
|
version = "2.5.0"
|
|
@@ -968,9 +999,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
968
999
|
|
|
969
1000
|
[[package]]
|
|
970
1001
|
name = "libc"
|
|
971
|
-
version = "0.2.
|
|
1002
|
+
version = "0.2.140"
|
|
972
1003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
-
checksum = "
|
|
1004
|
+
checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
|
|
974
1005
|
|
|
975
1006
|
[[package]]
|
|
976
1007
|
name = "libloading"
|
|
@@ -1003,11 +1034,11 @@ dependencies = [
|
|
|
1003
1034
|
|
|
1004
1035
|
[[package]]
|
|
1005
1036
|
name = "lru"
|
|
1006
|
-
version = "0.
|
|
1037
|
+
version = "0.10.0"
|
|
1007
1038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
-
checksum = "
|
|
1039
|
+
checksum = "03f1160296536f10c833a82dca22267d5486734230d47bf00bf435885814ba1e"
|
|
1009
1040
|
dependencies = [
|
|
1010
|
-
"hashbrown",
|
|
1041
|
+
"hashbrown 0.13.2",
|
|
1011
1042
|
]
|
|
1012
1043
|
|
|
1013
1044
|
[[package]]
|
|
@@ -1082,7 +1113,7 @@ dependencies = [
|
|
|
1082
1113
|
"libc",
|
|
1083
1114
|
"log",
|
|
1084
1115
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1085
|
-
"windows-sys",
|
|
1116
|
+
"windows-sys 0.36.1",
|
|
1086
1117
|
]
|
|
1087
1118
|
|
|
1088
1119
|
[[package]]
|
|
@@ -1109,7 +1140,7 @@ dependencies = [
|
|
|
1109
1140
|
"cfg-if",
|
|
1110
1141
|
"proc-macro2",
|
|
1111
1142
|
"quote",
|
|
1112
|
-
"syn",
|
|
1143
|
+
"syn 1.0.102",
|
|
1113
1144
|
]
|
|
1114
1145
|
|
|
1115
1146
|
[[package]]
|
|
@@ -1144,7 +1175,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1144
1175
|
checksum = "b7288eac8b54af7913c60e0eb0e2a7683020dffa342ab3fd15e28f035ba897cf"
|
|
1145
1176
|
dependencies = [
|
|
1146
1177
|
"quote",
|
|
1147
|
-
"syn",
|
|
1178
|
+
"syn 1.0.102",
|
|
1148
1179
|
"syn-mid",
|
|
1149
1180
|
]
|
|
1150
1181
|
|
|
@@ -1201,6 +1232,16 @@ dependencies = [
|
|
|
1201
1232
|
"winapi",
|
|
1202
1233
|
]
|
|
1203
1234
|
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "num-integer"
|
|
1237
|
+
version = "0.1.45"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
|
1240
|
+
dependencies = [
|
|
1241
|
+
"autocfg",
|
|
1242
|
+
"num-traits",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1204
1245
|
[[package]]
|
|
1205
1246
|
name = "num-traits"
|
|
1206
1247
|
version = "0.2.15"
|
|
@@ -1364,14 +1405,14 @@ dependencies = [
|
|
|
1364
1405
|
"libc",
|
|
1365
1406
|
"redox_syscall",
|
|
1366
1407
|
"smallvec",
|
|
1367
|
-
"windows-sys",
|
|
1408
|
+
"windows-sys 0.36.1",
|
|
1368
1409
|
]
|
|
1369
1410
|
|
|
1370
1411
|
[[package]]
|
|
1371
1412
|
name = "password-hash"
|
|
1372
|
-
version = "0.
|
|
1413
|
+
version = "0.4.2"
|
|
1373
1414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
-
checksum = "
|
|
1415
|
+
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
|
|
1375
1416
|
dependencies = [
|
|
1376
1417
|
"base64ct",
|
|
1377
1418
|
"rand_core",
|
|
@@ -1380,9 +1421,9 @@ dependencies = [
|
|
|
1380
1421
|
|
|
1381
1422
|
[[package]]
|
|
1382
1423
|
name = "pbkdf2"
|
|
1383
|
-
version = "0.
|
|
1424
|
+
version = "0.11.0"
|
|
1384
1425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
-
checksum = "
|
|
1426
|
+
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
|
|
1386
1427
|
dependencies = [
|
|
1387
1428
|
"digest",
|
|
1388
1429
|
"hmac",
|
|
@@ -1423,7 +1464,7 @@ checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
|
|
|
1423
1464
|
dependencies = [
|
|
1424
1465
|
"proc-macro2",
|
|
1425
1466
|
"quote",
|
|
1426
|
-
"syn",
|
|
1467
|
+
"syn 1.0.102",
|
|
1427
1468
|
]
|
|
1428
1469
|
|
|
1429
1470
|
[[package]]
|
|
@@ -1487,14 +1528,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1487
1528
|
checksum = "83fead41e178796ef8274dc612a7d8ce4c7e10ca35cd2c5b5ad24cac63aeb6c0"
|
|
1488
1529
|
dependencies = [
|
|
1489
1530
|
"proc-macro2",
|
|
1490
|
-
"syn",
|
|
1531
|
+
"syn 1.0.102",
|
|
1491
1532
|
]
|
|
1492
1533
|
|
|
1493
1534
|
[[package]]
|
|
1494
1535
|
name = "proc-macro2"
|
|
1495
|
-
version = "1.0.
|
|
1536
|
+
version = "1.0.54"
|
|
1496
1537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1497
|
-
checksum = "
|
|
1538
|
+
checksum = "e472a104799c74b514a57226160104aa483546de37e839ec50e3c2e41dd87534"
|
|
1498
1539
|
dependencies = [
|
|
1499
1540
|
"unicode-ident",
|
|
1500
1541
|
]
|
|
@@ -1516,9 +1557,9 @@ dependencies = [
|
|
|
1516
1557
|
|
|
1517
1558
|
[[package]]
|
|
1518
1559
|
name = "prost"
|
|
1519
|
-
version = "0.11.
|
|
1560
|
+
version = "0.11.6"
|
|
1520
1561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
-
checksum = "
|
|
1562
|
+
checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698"
|
|
1522
1563
|
dependencies = [
|
|
1523
1564
|
"bytes",
|
|
1524
1565
|
"prost-derive",
|
|
@@ -1526,9 +1567,9 @@ dependencies = [
|
|
|
1526
1567
|
|
|
1527
1568
|
[[package]]
|
|
1528
1569
|
name = "prost-build"
|
|
1529
|
-
version = "0.11.
|
|
1570
|
+
version = "0.11.6"
|
|
1530
1571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
-
checksum = "
|
|
1572
|
+
checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e"
|
|
1532
1573
|
dependencies = [
|
|
1533
1574
|
"bytes",
|
|
1534
1575
|
"heck",
|
|
@@ -1537,36 +1578,84 @@ dependencies = [
|
|
|
1537
1578
|
"log",
|
|
1538
1579
|
"multimap",
|
|
1539
1580
|
"petgraph",
|
|
1581
|
+
"prettyplease",
|
|
1540
1582
|
"prost",
|
|
1541
1583
|
"prost-types",
|
|
1542
1584
|
"regex",
|
|
1585
|
+
"syn 1.0.102",
|
|
1543
1586
|
"tempfile",
|
|
1544
1587
|
"which",
|
|
1545
1588
|
]
|
|
1546
1589
|
|
|
1547
1590
|
[[package]]
|
|
1548
1591
|
name = "prost-derive"
|
|
1549
|
-
version = "0.11.
|
|
1592
|
+
version = "0.11.6"
|
|
1550
1593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
-
checksum = "
|
|
1594
|
+
checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d"
|
|
1552
1595
|
dependencies = [
|
|
1553
1596
|
"anyhow",
|
|
1554
1597
|
"itertools",
|
|
1555
1598
|
"proc-macro2",
|
|
1556
1599
|
"quote",
|
|
1557
|
-
"syn",
|
|
1600
|
+
"syn 1.0.102",
|
|
1558
1601
|
]
|
|
1559
1602
|
|
|
1560
1603
|
[[package]]
|
|
1561
1604
|
name = "prost-types"
|
|
1562
|
-
version = "0.11.
|
|
1605
|
+
version = "0.11.6"
|
|
1563
1606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
-
checksum = "
|
|
1607
|
+
checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788"
|
|
1565
1608
|
dependencies = [
|
|
1566
1609
|
"bytes",
|
|
1567
1610
|
"prost",
|
|
1568
1611
|
]
|
|
1569
1612
|
|
|
1613
|
+
[[package]]
|
|
1614
|
+
name = "prost-wkt"
|
|
1615
|
+
version = "0.4.0"
|
|
1616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
+
checksum = "81d27933a63f4fa7586c2eac76179e7a9b782a7165aa309028adbec626a33100"
|
|
1618
|
+
dependencies = [
|
|
1619
|
+
"chrono",
|
|
1620
|
+
"inventory",
|
|
1621
|
+
"prost",
|
|
1622
|
+
"serde",
|
|
1623
|
+
"serde_derive",
|
|
1624
|
+
"serde_json",
|
|
1625
|
+
"typetag",
|
|
1626
|
+
]
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "prost-wkt-build"
|
|
1630
|
+
version = "0.4.0"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "edf268948bef41c2f9bb879e8868c155412d28d6ba4295c5b8d6d6639e47f9cf"
|
|
1633
|
+
dependencies = [
|
|
1634
|
+
"heck",
|
|
1635
|
+
"prost",
|
|
1636
|
+
"prost-build",
|
|
1637
|
+
"prost-types",
|
|
1638
|
+
"quote",
|
|
1639
|
+
]
|
|
1640
|
+
|
|
1641
|
+
[[package]]
|
|
1642
|
+
name = "prost-wkt-types"
|
|
1643
|
+
version = "0.4.0"
|
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
+
checksum = "4e240034fe46986ab9f84d669ed9bd46ad0c6adb8777ef28f5c44b94b43a3743"
|
|
1646
|
+
dependencies = [
|
|
1647
|
+
"chrono",
|
|
1648
|
+
"prost",
|
|
1649
|
+
"prost-build",
|
|
1650
|
+
"prost-types",
|
|
1651
|
+
"prost-wkt",
|
|
1652
|
+
"prost-wkt-build",
|
|
1653
|
+
"regex",
|
|
1654
|
+
"serde",
|
|
1655
|
+
"serde_derive",
|
|
1656
|
+
"serde_json",
|
|
1657
|
+
]
|
|
1658
|
+
|
|
1570
1659
|
[[package]]
|
|
1571
1660
|
name = "protobuf"
|
|
1572
1661
|
version = "2.28.0"
|
|
@@ -1591,9 +1680,9 @@ dependencies = [
|
|
|
1591
1680
|
|
|
1592
1681
|
[[package]]
|
|
1593
1682
|
name = "quote"
|
|
1594
|
-
version = "1.0.
|
|
1683
|
+
version = "1.0.26"
|
|
1595
1684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
-
checksum = "
|
|
1685
|
+
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
|
|
1597
1686
|
dependencies = [
|
|
1598
1687
|
"proc-macro2",
|
|
1599
1688
|
]
|
|
@@ -1687,7 +1776,7 @@ version = "0.11.12"
|
|
|
1687
1776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
1777
|
checksum = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc"
|
|
1689
1778
|
dependencies = [
|
|
1690
|
-
"base64",
|
|
1779
|
+
"base64 0.13.0",
|
|
1691
1780
|
"bytes",
|
|
1692
1781
|
"encoding_rs",
|
|
1693
1782
|
"futures-core",
|
|
@@ -1770,7 +1859,7 @@ dependencies = [
|
|
|
1770
1859
|
"proc-macro2",
|
|
1771
1860
|
"quote",
|
|
1772
1861
|
"rustfsm_trait",
|
|
1773
|
-
"syn",
|
|
1862
|
+
"syn 1.0.102",
|
|
1774
1863
|
]
|
|
1775
1864
|
|
|
1776
1865
|
[[package]]
|
|
@@ -1807,7 +1896,7 @@ version = "1.0.1"
|
|
|
1807
1896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
1897
|
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
|
|
1809
1898
|
dependencies = [
|
|
1810
|
-
"base64",
|
|
1899
|
+
"base64 0.13.0",
|
|
1811
1900
|
]
|
|
1812
1901
|
|
|
1813
1902
|
[[package]]
|
|
@@ -1823,7 +1912,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1823
1912
|
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
|
|
1824
1913
|
dependencies = [
|
|
1825
1914
|
"lazy_static",
|
|
1826
|
-
"windows-sys",
|
|
1915
|
+
"windows-sys 0.36.1",
|
|
1827
1916
|
]
|
|
1828
1917
|
|
|
1829
1918
|
[[package]]
|
|
@@ -1903,7 +1992,7 @@ checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c"
|
|
|
1903
1992
|
dependencies = [
|
|
1904
1993
|
"proc-macro2",
|
|
1905
1994
|
"quote",
|
|
1906
|
-
"syn",
|
|
1995
|
+
"syn 1.0.102",
|
|
1907
1996
|
]
|
|
1908
1997
|
|
|
1909
1998
|
[[package]]
|
|
@@ -2001,9 +2090,9 @@ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
|
|
2001
2090
|
|
|
2002
2091
|
[[package]]
|
|
2003
2092
|
name = "socket2"
|
|
2004
|
-
version = "0.4.
|
|
2093
|
+
version = "0.4.9"
|
|
2005
2094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2006
|
-
checksum = "
|
|
2095
|
+
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
|
|
2007
2096
|
dependencies = [
|
|
2008
2097
|
"libc",
|
|
2009
2098
|
"winapi",
|
|
@@ -2044,6 +2133,17 @@ dependencies = [
|
|
|
2044
2133
|
"unicode-ident",
|
|
2045
2134
|
]
|
|
2046
2135
|
|
|
2136
|
+
[[package]]
|
|
2137
|
+
name = "syn"
|
|
2138
|
+
version = "2.0.11"
|
|
2139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
+
checksum = "21e3787bb71465627110e7d87ed4faaa36c1f61042ee67badb9e2ef173accc40"
|
|
2141
|
+
dependencies = [
|
|
2142
|
+
"proc-macro2",
|
|
2143
|
+
"quote",
|
|
2144
|
+
"unicode-ident",
|
|
2145
|
+
]
|
|
2146
|
+
|
|
2047
2147
|
[[package]]
|
|
2048
2148
|
name = "syn-mid"
|
|
2049
2149
|
version = "0.5.3"
|
|
@@ -2052,7 +2152,7 @@ checksum = "baa8e7560a164edb1621a55d18a0c59abf49d360f47aa7b821061dd7eea7fac9"
|
|
|
2052
2152
|
dependencies = [
|
|
2053
2153
|
"proc-macro2",
|
|
2054
2154
|
"quote",
|
|
2055
|
-
"syn",
|
|
2155
|
+
"syn 1.0.102",
|
|
2056
2156
|
]
|
|
2057
2157
|
|
|
2058
2158
|
[[package]]
|
|
@@ -2118,9 +2218,8 @@ version = "0.1.0"
|
|
|
2118
2218
|
dependencies = [
|
|
2119
2219
|
"anyhow",
|
|
2120
2220
|
"arc-swap",
|
|
2121
|
-
"async-channel",
|
|
2122
2221
|
"async-trait",
|
|
2123
|
-
"base64",
|
|
2222
|
+
"base64 0.21.0",
|
|
2124
2223
|
"crossbeam",
|
|
2125
2224
|
"dashmap",
|
|
2126
2225
|
"derive_builder",
|
|
@@ -2134,7 +2233,6 @@ dependencies = [
|
|
|
2134
2233
|
"hyper",
|
|
2135
2234
|
"itertools",
|
|
2136
2235
|
"lazy_static",
|
|
2137
|
-
"log",
|
|
2138
2236
|
"lru",
|
|
2139
2237
|
"mockall",
|
|
2140
2238
|
"nix",
|
|
@@ -2143,9 +2241,10 @@ dependencies = [
|
|
|
2143
2241
|
"opentelemetry-otlp",
|
|
2144
2242
|
"opentelemetry-prometheus",
|
|
2145
2243
|
"parking_lot",
|
|
2244
|
+
"pin-project",
|
|
2146
2245
|
"prometheus",
|
|
2147
2246
|
"prost",
|
|
2148
|
-
"prost-types",
|
|
2247
|
+
"prost-wkt-types",
|
|
2149
2248
|
"rand",
|
|
2150
2249
|
"reqwest",
|
|
2151
2250
|
"ringbuf",
|
|
@@ -2179,12 +2278,13 @@ version = "0.1.0"
|
|
|
2179
2278
|
dependencies = [
|
|
2180
2279
|
"async-trait",
|
|
2181
2280
|
"derive_builder",
|
|
2182
|
-
"opentelemetry",
|
|
2183
2281
|
"prost-types",
|
|
2282
|
+
"serde",
|
|
2184
2283
|
"serde_json",
|
|
2185
2284
|
"temporal-client",
|
|
2186
2285
|
"temporal-sdk-core-protos",
|
|
2187
2286
|
"thiserror",
|
|
2287
|
+
"tokio",
|
|
2188
2288
|
"tonic",
|
|
2189
2289
|
"tracing-core",
|
|
2190
2290
|
"url",
|
|
@@ -2195,10 +2295,12 @@ name = "temporal-sdk-core-protos"
|
|
|
2195
2295
|
version = "0.1.0"
|
|
2196
2296
|
dependencies = [
|
|
2197
2297
|
"anyhow",
|
|
2198
|
-
"base64",
|
|
2298
|
+
"base64 0.21.0",
|
|
2199
2299
|
"derive_more",
|
|
2200
2300
|
"prost",
|
|
2201
|
-
"prost-
|
|
2301
|
+
"prost-wkt",
|
|
2302
|
+
"prost-wkt-build",
|
|
2303
|
+
"prost-wkt-types",
|
|
2202
2304
|
"rand",
|
|
2203
2305
|
"serde",
|
|
2204
2306
|
"serde_json",
|
|
@@ -2249,7 +2351,7 @@ checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
|
|
|
2249
2351
|
dependencies = [
|
|
2250
2352
|
"proc-macro2",
|
|
2251
2353
|
"quote",
|
|
2252
|
-
"syn",
|
|
2354
|
+
"syn 1.0.102",
|
|
2253
2355
|
]
|
|
2254
2356
|
|
|
2255
2357
|
[[package]]
|
|
@@ -2296,14 +2398,13 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
|
2296
2398
|
|
|
2297
2399
|
[[package]]
|
|
2298
2400
|
name = "tokio"
|
|
2299
|
-
version = "1.
|
|
2401
|
+
version = "1.27.0"
|
|
2300
2402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2301
|
-
checksum = "
|
|
2403
|
+
checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001"
|
|
2302
2404
|
dependencies = [
|
|
2303
2405
|
"autocfg",
|
|
2304
2406
|
"bytes",
|
|
2305
2407
|
"libc",
|
|
2306
|
-
"memchr",
|
|
2307
2408
|
"mio",
|
|
2308
2409
|
"num_cpus",
|
|
2309
2410
|
"parking_lot",
|
|
@@ -2311,7 +2412,7 @@ dependencies = [
|
|
|
2311
2412
|
"signal-hook-registry",
|
|
2312
2413
|
"socket2",
|
|
2313
2414
|
"tokio-macros",
|
|
2314
|
-
"
|
|
2415
|
+
"windows-sys 0.45.0",
|
|
2315
2416
|
]
|
|
2316
2417
|
|
|
2317
2418
|
[[package]]
|
|
@@ -2326,13 +2427,13 @@ dependencies = [
|
|
|
2326
2427
|
|
|
2327
2428
|
[[package]]
|
|
2328
2429
|
name = "tokio-macros"
|
|
2329
|
-
version = "
|
|
2430
|
+
version = "2.0.0"
|
|
2330
2431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
-
checksum = "
|
|
2432
|
+
checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce"
|
|
2332
2433
|
dependencies = [
|
|
2333
2434
|
"proc-macro2",
|
|
2334
2435
|
"quote",
|
|
2335
|
-
"syn",
|
|
2436
|
+
"syn 2.0.11",
|
|
2336
2437
|
]
|
|
2337
2438
|
|
|
2338
2439
|
[[package]]
|
|
@@ -2380,7 +2481,7 @@ dependencies = [
|
|
|
2380
2481
|
"async-stream",
|
|
2381
2482
|
"async-trait",
|
|
2382
2483
|
"axum",
|
|
2383
|
-
"base64",
|
|
2484
|
+
"base64 0.13.0",
|
|
2384
2485
|
"bytes",
|
|
2385
2486
|
"futures-core",
|
|
2386
2487
|
"futures-util",
|
|
@@ -2416,7 +2517,7 @@ dependencies = [
|
|
|
2416
2517
|
"proc-macro2",
|
|
2417
2518
|
"prost-build",
|
|
2418
2519
|
"quote",
|
|
2419
|
-
"syn",
|
|
2520
|
+
"syn 1.0.102",
|
|
2420
2521
|
]
|
|
2421
2522
|
|
|
2422
2523
|
[[package]]
|
|
@@ -2491,7 +2592,7 @@ checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
|
|
|
2491
2592
|
dependencies = [
|
|
2492
2593
|
"proc-macro2",
|
|
2493
2594
|
"quote",
|
|
2494
|
-
"syn",
|
|
2595
|
+
"syn 1.0.102",
|
|
2495
2596
|
]
|
|
2496
2597
|
|
|
2497
2598
|
[[package]]
|
|
@@ -2570,6 +2671,30 @@ version = "1.15.0"
|
|
|
2570
2671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2571
2672
|
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
|
2572
2673
|
|
|
2674
|
+
[[package]]
|
|
2675
|
+
name = "typetag"
|
|
2676
|
+
version = "0.2.5"
|
|
2677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
|
+
checksum = "8eecd98403ae5ea2813689125cf5b3f99c40b8abed46c0a8945c81eadb673b31"
|
|
2679
|
+
dependencies = [
|
|
2680
|
+
"erased-serde",
|
|
2681
|
+
"inventory",
|
|
2682
|
+
"once_cell",
|
|
2683
|
+
"serde",
|
|
2684
|
+
"typetag-impl",
|
|
2685
|
+
]
|
|
2686
|
+
|
|
2687
|
+
[[package]]
|
|
2688
|
+
name = "typetag-impl"
|
|
2689
|
+
version = "0.2.5"
|
|
2690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2691
|
+
checksum = "8f9568611f0de5e83e0993b85c54679cd0afd659adcfcb0233f16280b980492e"
|
|
2692
|
+
dependencies = [
|
|
2693
|
+
"proc-macro2",
|
|
2694
|
+
"quote",
|
|
2695
|
+
"syn 1.0.102",
|
|
2696
|
+
]
|
|
2697
|
+
|
|
2573
2698
|
[[package]]
|
|
2574
2699
|
name = "unicode-bidi"
|
|
2575
2700
|
version = "0.3.8"
|
|
@@ -2672,7 +2797,7 @@ dependencies = [
|
|
|
2672
2797
|
"once_cell",
|
|
2673
2798
|
"proc-macro2",
|
|
2674
2799
|
"quote",
|
|
2675
|
-
"syn",
|
|
2800
|
+
"syn 1.0.102",
|
|
2676
2801
|
"wasm-bindgen-shared",
|
|
2677
2802
|
]
|
|
2678
2803
|
|
|
@@ -2706,7 +2831,7 @@ checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
|
|
|
2706
2831
|
dependencies = [
|
|
2707
2832
|
"proc-macro2",
|
|
2708
2833
|
"quote",
|
|
2709
|
-
"syn",
|
|
2834
|
+
"syn 1.0.102",
|
|
2710
2835
|
"wasm-bindgen-backend",
|
|
2711
2836
|
"wasm-bindgen-shared",
|
|
2712
2837
|
]
|
|
@@ -2785,43 +2910,109 @@ version = "0.36.1"
|
|
|
2785
2910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2786
2911
|
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
|
2787
2912
|
dependencies = [
|
|
2788
|
-
"windows_aarch64_msvc",
|
|
2789
|
-
"windows_i686_gnu",
|
|
2790
|
-
"windows_i686_msvc",
|
|
2791
|
-
"windows_x86_64_gnu",
|
|
2792
|
-
"windows_x86_64_msvc",
|
|
2913
|
+
"windows_aarch64_msvc 0.36.1",
|
|
2914
|
+
"windows_i686_gnu 0.36.1",
|
|
2915
|
+
"windows_i686_msvc 0.36.1",
|
|
2916
|
+
"windows_x86_64_gnu 0.36.1",
|
|
2917
|
+
"windows_x86_64_msvc 0.36.1",
|
|
2918
|
+
]
|
|
2919
|
+
|
|
2920
|
+
[[package]]
|
|
2921
|
+
name = "windows-sys"
|
|
2922
|
+
version = "0.45.0"
|
|
2923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2924
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
2925
|
+
dependencies = [
|
|
2926
|
+
"windows-targets",
|
|
2793
2927
|
]
|
|
2794
2928
|
|
|
2929
|
+
[[package]]
|
|
2930
|
+
name = "windows-targets"
|
|
2931
|
+
version = "0.42.2"
|
|
2932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2933
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
2934
|
+
dependencies = [
|
|
2935
|
+
"windows_aarch64_gnullvm",
|
|
2936
|
+
"windows_aarch64_msvc 0.42.2",
|
|
2937
|
+
"windows_i686_gnu 0.42.2",
|
|
2938
|
+
"windows_i686_msvc 0.42.2",
|
|
2939
|
+
"windows_x86_64_gnu 0.42.2",
|
|
2940
|
+
"windows_x86_64_gnullvm",
|
|
2941
|
+
"windows_x86_64_msvc 0.42.2",
|
|
2942
|
+
]
|
|
2943
|
+
|
|
2944
|
+
[[package]]
|
|
2945
|
+
name = "windows_aarch64_gnullvm"
|
|
2946
|
+
version = "0.42.2"
|
|
2947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2948
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
2949
|
+
|
|
2795
2950
|
[[package]]
|
|
2796
2951
|
name = "windows_aarch64_msvc"
|
|
2797
2952
|
version = "0.36.1"
|
|
2798
2953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2799
2954
|
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
|
2800
2955
|
|
|
2956
|
+
[[package]]
|
|
2957
|
+
name = "windows_aarch64_msvc"
|
|
2958
|
+
version = "0.42.2"
|
|
2959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2960
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
2961
|
+
|
|
2801
2962
|
[[package]]
|
|
2802
2963
|
name = "windows_i686_gnu"
|
|
2803
2964
|
version = "0.36.1"
|
|
2804
2965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2805
2966
|
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
|
2806
2967
|
|
|
2968
|
+
[[package]]
|
|
2969
|
+
name = "windows_i686_gnu"
|
|
2970
|
+
version = "0.42.2"
|
|
2971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2972
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
2973
|
+
|
|
2807
2974
|
[[package]]
|
|
2808
2975
|
name = "windows_i686_msvc"
|
|
2809
2976
|
version = "0.36.1"
|
|
2810
2977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2811
2978
|
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
|
2812
2979
|
|
|
2980
|
+
[[package]]
|
|
2981
|
+
name = "windows_i686_msvc"
|
|
2982
|
+
version = "0.42.2"
|
|
2983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
2985
|
+
|
|
2813
2986
|
[[package]]
|
|
2814
2987
|
name = "windows_x86_64_gnu"
|
|
2815
2988
|
version = "0.36.1"
|
|
2816
2989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2817
2990
|
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
|
2818
2991
|
|
|
2992
|
+
[[package]]
|
|
2993
|
+
name = "windows_x86_64_gnu"
|
|
2994
|
+
version = "0.42.2"
|
|
2995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2996
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
2997
|
+
|
|
2998
|
+
[[package]]
|
|
2999
|
+
name = "windows_x86_64_gnullvm"
|
|
3000
|
+
version = "0.42.2"
|
|
3001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3002
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
3003
|
+
|
|
2819
3004
|
[[package]]
|
|
2820
3005
|
name = "windows_x86_64_msvc"
|
|
2821
3006
|
version = "0.36.1"
|
|
2822
3007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2823
3008
|
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
|
|
2824
3009
|
|
|
3010
|
+
[[package]]
|
|
3011
|
+
name = "windows_x86_64_msvc"
|
|
3012
|
+
version = "0.42.2"
|
|
3013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
3015
|
+
|
|
2825
3016
|
[[package]]
|
|
2826
3017
|
name = "winreg"
|
|
2827
3018
|
version = "0.10.1"
|
|
@@ -2842,9 +3033,9 @@ dependencies = [
|
|
|
2842
3033
|
|
|
2843
3034
|
[[package]]
|
|
2844
3035
|
name = "zip"
|
|
2845
|
-
version = "0.6.
|
|
3036
|
+
version = "0.6.3"
|
|
2846
3037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2847
|
-
checksum = "
|
|
3038
|
+
checksum = "537ce7411d25e54e8ae21a7ce0b15840e7bfcff15b51d697ec3266cc76bdf080"
|
|
2848
3039
|
dependencies = [
|
|
2849
3040
|
"aes",
|
|
2850
3041
|
"byteorder",
|
|
@@ -2862,18 +3053,18 @@ dependencies = [
|
|
|
2862
3053
|
|
|
2863
3054
|
[[package]]
|
|
2864
3055
|
name = "zstd"
|
|
2865
|
-
version = "0.
|
|
3056
|
+
version = "0.11.2+zstd.1.5.2"
|
|
2866
3057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
|
-
checksum = "
|
|
3058
|
+
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
|
2868
3059
|
dependencies = [
|
|
2869
3060
|
"zstd-safe",
|
|
2870
3061
|
]
|
|
2871
3062
|
|
|
2872
3063
|
[[package]]
|
|
2873
3064
|
name = "zstd-safe"
|
|
2874
|
-
version = "
|
|
3065
|
+
version = "5.0.2+zstd.1.5.2"
|
|
2875
3066
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2876
|
-
checksum = "
|
|
3067
|
+
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
|
|
2877
3068
|
dependencies = [
|
|
2878
3069
|
"libc",
|
|
2879
3070
|
"zstd-sys",
|
|
@@ -2881,10 +3072,11 @@ dependencies = [
|
|
|
2881
3072
|
|
|
2882
3073
|
[[package]]
|
|
2883
3074
|
name = "zstd-sys"
|
|
2884
|
-
version = "
|
|
3075
|
+
version = "2.0.5+zstd.1.5.2"
|
|
2885
3076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2886
|
-
checksum = "
|
|
3077
|
+
checksum = "edc50ffce891ad571e9f9afe5039c4837bede781ac4bb13052ed7ae695518596"
|
|
2887
3078
|
dependencies = [
|
|
2888
3079
|
"cc",
|
|
2889
3080
|
"libc",
|
|
3081
|
+
"pkg-config",
|
|
2890
3082
|
]
|