@temporalio/core-bridge 1.5.2 → 1.6.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 +255 -48
- package/package.json +4 -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/pipeline.yml +1 -3
- package/sdk-core/.cargo/config.toml +5 -2
- package/sdk-core/.github/workflows/heavy.yml +28 -0
- package/sdk-core/Cargo.toml +1 -1
- package/sdk-core/README.md +9 -5
- package/sdk-core/client/src/lib.rs +211 -36
- package/sdk-core/client/src/raw.rs +1 -1
- package/sdk-core/client/src/retry.rs +32 -20
- package/sdk-core/core/Cargo.toml +23 -9
- package/sdk-core/core/src/abstractions.rs +11 -0
- package/sdk-core/core/src/core_tests/activity_tasks.rs +6 -5
- package/sdk-core/core/src/core_tests/local_activities.rs +263 -22
- package/sdk-core/core/src/core_tests/queries.rs +2 -2
- package/sdk-core/core/src/core_tests/workflow_tasks.rs +249 -5
- package/sdk-core/core/src/ephemeral_server/mod.rs +5 -6
- package/sdk-core/core/src/lib.rs +2 -0
- package/sdk-core/core/src/protosext/mod.rs +1 -1
- package/sdk-core/core/src/telemetry/log_export.rs +1 -1
- package/sdk-core/core/src/telemetry/mod.rs +23 -8
- package/sdk-core/core/src/test_help/mod.rs +8 -1
- package/sdk-core/core/src/worker/activities/local_activities.rs +259 -125
- package/sdk-core/core/src/worker/activities.rs +3 -2
- package/sdk-core/core/src/worker/mod.rs +53 -26
- 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 +835 -277
- package/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +9 -17
- package/sdk-core/core/src/worker/workflow/machines/cancel_external_state_machine.rs +3 -5
- package/sdk-core/core/src/worker/workflow/machines/cancel_workflow_state_machine.rs +1 -2
- package/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +3 -5
- package/sdk-core/core/src/worker/workflow/machines/complete_workflow_state_machine.rs +1 -2
- package/sdk-core/core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs +1 -2
- package/sdk-core/core/src/worker/workflow/machines/fail_workflow_state_machine.rs +1 -2
- package/sdk-core/core/src/worker/workflow/machines/local_activity_state_machine.rs +73 -51
- package/sdk-core/core/src/worker/workflow/machines/mod.rs +3 -3
- package/sdk-core/core/src/worker/workflow/machines/modify_workflow_properties_state_machine.rs +4 -4
- package/sdk-core/core/src/worker/workflow/machines/patch_state_machine.rs +1 -2
- package/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +3 -5
- package/sdk-core/core/src/worker/workflow/machines/timer_state_machine.rs +6 -7
- 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 +4 -4
- 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 +89 -58
- package/sdk-core/core/src/worker/workflow/machines/workflow_task_state_machine.rs +4 -7
- package/sdk-core/core/src/worker/workflow/managed_run/managed_wf_test.rs +21 -9
- package/sdk-core/core/src/worker/workflow/managed_run.rs +1021 -360
- package/sdk-core/core/src/worker/workflow/mod.rs +306 -346
- package/sdk-core/core/src/worker/workflow/run_cache.rs +29 -53
- package/sdk-core/core/src/worker/workflow/wft_extraction.rs +125 -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 +115 -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 +444 -714
- package/sdk-core/core-api/Cargo.toml +2 -0
- package/sdk-core/core-api/src/errors.rs +1 -34
- package/sdk-core/core-api/src/lib.rs +6 -2
- package/sdk-core/core-api/src/worker.rs +14 -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 +6 -6
- package/sdk-core/fsm/rustfsm_trait/src/lib.rs +7 -3
- package/sdk-core/histories/evict_while_la_running_no_interference-16_history.bin +0 -0
- package/sdk-core/protos/api_upstream/Makefile +5 -5
- 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 +12 -19
- package/sdk-core/protos/api_upstream/temporal/api/common/v1/message.proto +2 -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 -2
- 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 +3 -3
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +20 -2
- package/sdk-core/protos/api_upstream/temporal/api/{update/v1/message.proto → enums/v1/interaction_type.proto} +11 -18
- 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 +2 -13
- 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 +13 -19
- package/sdk-core/protos/api_upstream/temporal/api/interaction/v1/message.proto +87 -0
- package/sdk-core/protos/api_upstream/temporal/api/namespace/v1/message.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +2 -2
- 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/taskqueue/v1/message.proto +2 -2
- 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 +13 -8
- package/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +2 -2
- package/sdk-core/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +2 -0
- 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 +4 -3
- package/sdk-core/sdk/src/lib.rs +87 -21
- package/sdk-core/sdk/src/workflow_future.rs +7 -12
- 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 +26 -19
- package/sdk-core/sdk-core-protos/src/history_info.rs +4 -0
- package/sdk-core/sdk-core-protos/src/lib.rs +78 -34
- 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/histfetch.rs +1 -1
- package/sdk-core/test-utils/src/lib.rs +50 -18
- 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} +114 -7
- package/sdk-core/tests/integ_tests/heartbeat_tests.rs +5 -2
- package/sdk-core/tests/integ_tests/metrics_tests.rs +1 -1
- package/sdk-core/tests/integ_tests/polling_tests.rs +1 -39
- package/sdk-core/tests/integ_tests/queries_tests.rs +2 -127
- package/sdk-core/tests/integ_tests/visibility_tests.rs +52 -5
- package/sdk-core/tests/integ_tests/workflow_tests/activities.rs +74 -1
- package/sdk-core/tests/integ_tests/workflow_tests/cancel_wf.rs +5 -13
- package/sdk-core/tests/integ_tests/workflow_tests/continue_as_new.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/determinism.rs +2 -10
- package/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +69 -197
- package/sdk-core/tests/integ_tests/workflow_tests/patches.rs +4 -28
- package/sdk-core/tests/integ_tests/workflow_tests/replay.rs +12 -7
- package/sdk-core/tests/integ_tests/workflow_tests/signals.rs +14 -14
- package/sdk-core/tests/integ_tests/workflow_tests/stickyness.rs +3 -19
- package/sdk-core/tests/integ_tests/workflow_tests/timers.rs +3 -19
- package/sdk-core/tests/integ_tests/workflow_tests/upsert_search_attrs.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests.rs +5 -6
- package/sdk-core/tests/main.rs +2 -12
- package/sdk-core/tests/runner.rs +71 -34
- package/sdk-core/tests/wf_input_replay.rs +32 -0
- 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
|
]
|
|
@@ -163,6 +163,12 @@ version = "0.13.0"
|
|
|
163
163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
164
|
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
|
|
165
165
|
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "base64"
|
|
168
|
+
version = "0.21.0"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
|
|
171
|
+
|
|
166
172
|
[[package]]
|
|
167
173
|
name = "base64ct"
|
|
168
174
|
version = "1.0.1"
|
|
@@ -244,6 +250,17 @@ version = "1.0.0"
|
|
|
244
250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
251
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
246
252
|
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "chrono"
|
|
255
|
+
version = "0.4.23"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"num-integer",
|
|
260
|
+
"num-traits",
|
|
261
|
+
"serde",
|
|
262
|
+
]
|
|
263
|
+
|
|
247
264
|
[[package]]
|
|
248
265
|
name = "cipher"
|
|
249
266
|
version = "0.3.0"
|
|
@@ -385,6 +402,16 @@ dependencies = [
|
|
|
385
402
|
"typenum",
|
|
386
403
|
]
|
|
387
404
|
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "ctor"
|
|
407
|
+
version = "0.1.26"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"quote",
|
|
412
|
+
"syn",
|
|
413
|
+
]
|
|
414
|
+
|
|
388
415
|
[[package]]
|
|
389
416
|
name = "darling"
|
|
390
417
|
version = "0.14.1"
|
|
@@ -427,7 +454,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
427
454
|
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
|
|
428
455
|
dependencies = [
|
|
429
456
|
"cfg-if",
|
|
430
|
-
"hashbrown",
|
|
457
|
+
"hashbrown 0.12.3",
|
|
431
458
|
"lock_api",
|
|
432
459
|
"once_cell",
|
|
433
460
|
"parking_lot_core",
|
|
@@ -527,6 +554,15 @@ dependencies = [
|
|
|
527
554
|
"syn",
|
|
528
555
|
]
|
|
529
556
|
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "erased-serde"
|
|
559
|
+
version = "0.3.24"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "e4ca605381c017ec7a5fef5e548f1cfaa419ed0f6df6367339300db74c92aa7d"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"serde",
|
|
564
|
+
]
|
|
565
|
+
|
|
530
566
|
[[package]]
|
|
531
567
|
name = "event-listener"
|
|
532
568
|
version = "2.5.3"
|
|
@@ -551,7 +587,7 @@ dependencies = [
|
|
|
551
587
|
"cfg-if",
|
|
552
588
|
"libc",
|
|
553
589
|
"redox_syscall",
|
|
554
|
-
"windows-sys",
|
|
590
|
+
"windows-sys 0.36.1",
|
|
555
591
|
]
|
|
556
592
|
|
|
557
593
|
[[package]]
|
|
@@ -727,6 +763,17 @@ dependencies = [
|
|
|
727
763
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
728
764
|
]
|
|
729
765
|
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "ghost"
|
|
768
|
+
version = "0.1.7"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "41973d4c45f7a35af8753ba3457cc99d406d863941fd7f52663cff54a5ab99b3"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"proc-macro2",
|
|
773
|
+
"quote",
|
|
774
|
+
"syn",
|
|
775
|
+
]
|
|
776
|
+
|
|
730
777
|
[[package]]
|
|
731
778
|
name = "governor"
|
|
732
779
|
version = "0.5.0"
|
|
@@ -769,6 +816,12 @@ name = "hashbrown"
|
|
|
769
816
|
version = "0.12.3"
|
|
770
817
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
818
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "hashbrown"
|
|
822
|
+
version = "0.13.2"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
|
772
825
|
dependencies = [
|
|
773
826
|
"ahash",
|
|
774
827
|
]
|
|
@@ -909,7 +962,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
909
962
|
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
|
|
910
963
|
dependencies = [
|
|
911
964
|
"autocfg",
|
|
912
|
-
"hashbrown",
|
|
965
|
+
"hashbrown 0.12.3",
|
|
913
966
|
]
|
|
914
967
|
|
|
915
968
|
[[package]]
|
|
@@ -921,6 +974,16 @@ dependencies = [
|
|
|
921
974
|
"cfg-if",
|
|
922
975
|
]
|
|
923
976
|
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "inventory"
|
|
979
|
+
version = "0.3.3"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "16fe3b35d64bd1f72917f06425e7573a2f63f74f42c8f56e53ea6826dde3a2b5"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"ctor",
|
|
984
|
+
"ghost",
|
|
985
|
+
]
|
|
986
|
+
|
|
924
987
|
[[package]]
|
|
925
988
|
name = "ipnet"
|
|
926
989
|
version = "2.5.0"
|
|
@@ -1003,11 +1066,11 @@ dependencies = [
|
|
|
1003
1066
|
|
|
1004
1067
|
[[package]]
|
|
1005
1068
|
name = "lru"
|
|
1006
|
-
version = "0.
|
|
1069
|
+
version = "0.9.0"
|
|
1007
1070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
-
checksum = "
|
|
1071
|
+
checksum = "71e7d46de488603ffdd5f30afbc64fbba2378214a2c3a2fb83abf3d33126df17"
|
|
1009
1072
|
dependencies = [
|
|
1010
|
-
"hashbrown",
|
|
1073
|
+
"hashbrown 0.13.2",
|
|
1011
1074
|
]
|
|
1012
1075
|
|
|
1013
1076
|
[[package]]
|
|
@@ -1082,7 +1145,7 @@ dependencies = [
|
|
|
1082
1145
|
"libc",
|
|
1083
1146
|
"log",
|
|
1084
1147
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1085
|
-
"windows-sys",
|
|
1148
|
+
"windows-sys 0.36.1",
|
|
1086
1149
|
]
|
|
1087
1150
|
|
|
1088
1151
|
[[package]]
|
|
@@ -1201,6 +1264,16 @@ dependencies = [
|
|
|
1201
1264
|
"winapi",
|
|
1202
1265
|
]
|
|
1203
1266
|
|
|
1267
|
+
[[package]]
|
|
1268
|
+
name = "num-integer"
|
|
1269
|
+
version = "0.1.45"
|
|
1270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
+
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
|
1272
|
+
dependencies = [
|
|
1273
|
+
"autocfg",
|
|
1274
|
+
"num-traits",
|
|
1275
|
+
]
|
|
1276
|
+
|
|
1204
1277
|
[[package]]
|
|
1205
1278
|
name = "num-traits"
|
|
1206
1279
|
version = "0.2.15"
|
|
@@ -1364,14 +1437,14 @@ dependencies = [
|
|
|
1364
1437
|
"libc",
|
|
1365
1438
|
"redox_syscall",
|
|
1366
1439
|
"smallvec",
|
|
1367
|
-
"windows-sys",
|
|
1440
|
+
"windows-sys 0.36.1",
|
|
1368
1441
|
]
|
|
1369
1442
|
|
|
1370
1443
|
[[package]]
|
|
1371
1444
|
name = "password-hash"
|
|
1372
|
-
version = "0.
|
|
1445
|
+
version = "0.4.2"
|
|
1373
1446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
-
checksum = "
|
|
1447
|
+
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
|
|
1375
1448
|
dependencies = [
|
|
1376
1449
|
"base64ct",
|
|
1377
1450
|
"rand_core",
|
|
@@ -1380,9 +1453,9 @@ dependencies = [
|
|
|
1380
1453
|
|
|
1381
1454
|
[[package]]
|
|
1382
1455
|
name = "pbkdf2"
|
|
1383
|
-
version = "0.
|
|
1456
|
+
version = "0.11.0"
|
|
1384
1457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
-
checksum = "
|
|
1458
|
+
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
|
|
1386
1459
|
dependencies = [
|
|
1387
1460
|
"digest",
|
|
1388
1461
|
"hmac",
|
|
@@ -1516,9 +1589,9 @@ dependencies = [
|
|
|
1516
1589
|
|
|
1517
1590
|
[[package]]
|
|
1518
1591
|
name = "prost"
|
|
1519
|
-
version = "0.11.
|
|
1592
|
+
version = "0.11.6"
|
|
1520
1593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
-
checksum = "
|
|
1594
|
+
checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698"
|
|
1522
1595
|
dependencies = [
|
|
1523
1596
|
"bytes",
|
|
1524
1597
|
"prost-derive",
|
|
@@ -1526,9 +1599,9 @@ dependencies = [
|
|
|
1526
1599
|
|
|
1527
1600
|
[[package]]
|
|
1528
1601
|
name = "prost-build"
|
|
1529
|
-
version = "0.11.
|
|
1602
|
+
version = "0.11.6"
|
|
1530
1603
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
-
checksum = "
|
|
1604
|
+
checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e"
|
|
1532
1605
|
dependencies = [
|
|
1533
1606
|
"bytes",
|
|
1534
1607
|
"heck",
|
|
@@ -1537,18 +1610,20 @@ dependencies = [
|
|
|
1537
1610
|
"log",
|
|
1538
1611
|
"multimap",
|
|
1539
1612
|
"petgraph",
|
|
1613
|
+
"prettyplease",
|
|
1540
1614
|
"prost",
|
|
1541
1615
|
"prost-types",
|
|
1542
1616
|
"regex",
|
|
1617
|
+
"syn",
|
|
1543
1618
|
"tempfile",
|
|
1544
1619
|
"which",
|
|
1545
1620
|
]
|
|
1546
1621
|
|
|
1547
1622
|
[[package]]
|
|
1548
1623
|
name = "prost-derive"
|
|
1549
|
-
version = "0.11.
|
|
1624
|
+
version = "0.11.6"
|
|
1550
1625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
-
checksum = "
|
|
1626
|
+
checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d"
|
|
1552
1627
|
dependencies = [
|
|
1553
1628
|
"anyhow",
|
|
1554
1629
|
"itertools",
|
|
@@ -1559,14 +1634,60 @@ dependencies = [
|
|
|
1559
1634
|
|
|
1560
1635
|
[[package]]
|
|
1561
1636
|
name = "prost-types"
|
|
1562
|
-
version = "0.11.
|
|
1637
|
+
version = "0.11.6"
|
|
1563
1638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
-
checksum = "
|
|
1639
|
+
checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788"
|
|
1565
1640
|
dependencies = [
|
|
1566
1641
|
"bytes",
|
|
1567
1642
|
"prost",
|
|
1568
1643
|
]
|
|
1569
1644
|
|
|
1645
|
+
[[package]]
|
|
1646
|
+
name = "prost-wkt"
|
|
1647
|
+
version = "0.4.0"
|
|
1648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1649
|
+
checksum = "81d27933a63f4fa7586c2eac76179e7a9b782a7165aa309028adbec626a33100"
|
|
1650
|
+
dependencies = [
|
|
1651
|
+
"chrono",
|
|
1652
|
+
"inventory",
|
|
1653
|
+
"prost",
|
|
1654
|
+
"serde",
|
|
1655
|
+
"serde_derive",
|
|
1656
|
+
"serde_json",
|
|
1657
|
+
"typetag",
|
|
1658
|
+
]
|
|
1659
|
+
|
|
1660
|
+
[[package]]
|
|
1661
|
+
name = "prost-wkt-build"
|
|
1662
|
+
version = "0.4.0"
|
|
1663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
+
checksum = "edf268948bef41c2f9bb879e8868c155412d28d6ba4295c5b8d6d6639e47f9cf"
|
|
1665
|
+
dependencies = [
|
|
1666
|
+
"heck",
|
|
1667
|
+
"prost",
|
|
1668
|
+
"prost-build",
|
|
1669
|
+
"prost-types",
|
|
1670
|
+
"quote",
|
|
1671
|
+
]
|
|
1672
|
+
|
|
1673
|
+
[[package]]
|
|
1674
|
+
name = "prost-wkt-types"
|
|
1675
|
+
version = "0.4.0"
|
|
1676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1677
|
+
checksum = "4e240034fe46986ab9f84d669ed9bd46ad0c6adb8777ef28f5c44b94b43a3743"
|
|
1678
|
+
dependencies = [
|
|
1679
|
+
"chrono",
|
|
1680
|
+
"prost",
|
|
1681
|
+
"prost-build",
|
|
1682
|
+
"prost-types",
|
|
1683
|
+
"prost-wkt",
|
|
1684
|
+
"prost-wkt-build",
|
|
1685
|
+
"regex",
|
|
1686
|
+
"serde",
|
|
1687
|
+
"serde_derive",
|
|
1688
|
+
"serde_json",
|
|
1689
|
+
]
|
|
1690
|
+
|
|
1570
1691
|
[[package]]
|
|
1571
1692
|
name = "protobuf"
|
|
1572
1693
|
version = "2.28.0"
|
|
@@ -1687,7 +1808,7 @@ version = "0.11.12"
|
|
|
1687
1808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
1809
|
checksum = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc"
|
|
1689
1810
|
dependencies = [
|
|
1690
|
-
"base64",
|
|
1811
|
+
"base64 0.13.0",
|
|
1691
1812
|
"bytes",
|
|
1692
1813
|
"encoding_rs",
|
|
1693
1814
|
"futures-core",
|
|
@@ -1807,7 +1928,7 @@ version = "1.0.1"
|
|
|
1807
1928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
1929
|
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
|
|
1809
1930
|
dependencies = [
|
|
1810
|
-
"base64",
|
|
1931
|
+
"base64 0.13.0",
|
|
1811
1932
|
]
|
|
1812
1933
|
|
|
1813
1934
|
[[package]]
|
|
@@ -1823,7 +1944,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1823
1944
|
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
|
|
1824
1945
|
dependencies = [
|
|
1825
1946
|
"lazy_static",
|
|
1826
|
-
"windows-sys",
|
|
1947
|
+
"windows-sys 0.36.1",
|
|
1827
1948
|
]
|
|
1828
1949
|
|
|
1829
1950
|
[[package]]
|
|
@@ -2120,7 +2241,7 @@ dependencies = [
|
|
|
2120
2241
|
"arc-swap",
|
|
2121
2242
|
"async-channel",
|
|
2122
2243
|
"async-trait",
|
|
2123
|
-
"base64",
|
|
2244
|
+
"base64 0.21.0",
|
|
2124
2245
|
"crossbeam",
|
|
2125
2246
|
"dashmap",
|
|
2126
2247
|
"derive_builder",
|
|
@@ -2134,7 +2255,6 @@ dependencies = [
|
|
|
2134
2255
|
"hyper",
|
|
2135
2256
|
"itertools",
|
|
2136
2257
|
"lazy_static",
|
|
2137
|
-
"log",
|
|
2138
2258
|
"lru",
|
|
2139
2259
|
"mockall",
|
|
2140
2260
|
"nix",
|
|
@@ -2143,9 +2263,10 @@ dependencies = [
|
|
|
2143
2263
|
"opentelemetry-otlp",
|
|
2144
2264
|
"opentelemetry-prometheus",
|
|
2145
2265
|
"parking_lot",
|
|
2266
|
+
"pin-project",
|
|
2146
2267
|
"prometheus",
|
|
2147
2268
|
"prost",
|
|
2148
|
-
"prost-types",
|
|
2269
|
+
"prost-wkt-types",
|
|
2149
2270
|
"rand",
|
|
2150
2271
|
"reqwest",
|
|
2151
2272
|
"ringbuf",
|
|
@@ -2181,10 +2302,12 @@ dependencies = [
|
|
|
2181
2302
|
"derive_builder",
|
|
2182
2303
|
"opentelemetry",
|
|
2183
2304
|
"prost-types",
|
|
2305
|
+
"serde",
|
|
2184
2306
|
"serde_json",
|
|
2185
2307
|
"temporal-client",
|
|
2186
2308
|
"temporal-sdk-core-protos",
|
|
2187
2309
|
"thiserror",
|
|
2310
|
+
"tokio",
|
|
2188
2311
|
"tonic",
|
|
2189
2312
|
"tracing-core",
|
|
2190
2313
|
"url",
|
|
@@ -2195,10 +2318,12 @@ name = "temporal-sdk-core-protos"
|
|
|
2195
2318
|
version = "0.1.0"
|
|
2196
2319
|
dependencies = [
|
|
2197
2320
|
"anyhow",
|
|
2198
|
-
"base64",
|
|
2321
|
+
"base64 0.21.0",
|
|
2199
2322
|
"derive_more",
|
|
2200
2323
|
"prost",
|
|
2201
|
-
"prost-
|
|
2324
|
+
"prost-wkt",
|
|
2325
|
+
"prost-wkt-build",
|
|
2326
|
+
"prost-wkt-types",
|
|
2202
2327
|
"rand",
|
|
2203
2328
|
"serde",
|
|
2204
2329
|
"serde_json",
|
|
@@ -2296,9 +2421,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
|
2296
2421
|
|
|
2297
2422
|
[[package]]
|
|
2298
2423
|
name = "tokio"
|
|
2299
|
-
version = "1.
|
|
2424
|
+
version = "1.25.0"
|
|
2300
2425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2301
|
-
checksum = "
|
|
2426
|
+
checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af"
|
|
2302
2427
|
dependencies = [
|
|
2303
2428
|
"autocfg",
|
|
2304
2429
|
"bytes",
|
|
@@ -2311,7 +2436,7 @@ dependencies = [
|
|
|
2311
2436
|
"signal-hook-registry",
|
|
2312
2437
|
"socket2",
|
|
2313
2438
|
"tokio-macros",
|
|
2314
|
-
"
|
|
2439
|
+
"windows-sys 0.42.0",
|
|
2315
2440
|
]
|
|
2316
2441
|
|
|
2317
2442
|
[[package]]
|
|
@@ -2380,7 +2505,7 @@ dependencies = [
|
|
|
2380
2505
|
"async-stream",
|
|
2381
2506
|
"async-trait",
|
|
2382
2507
|
"axum",
|
|
2383
|
-
"base64",
|
|
2508
|
+
"base64 0.13.0",
|
|
2384
2509
|
"bytes",
|
|
2385
2510
|
"futures-core",
|
|
2386
2511
|
"futures-util",
|
|
@@ -2570,6 +2695,30 @@ version = "1.15.0"
|
|
|
2570
2695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2571
2696
|
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
|
2572
2697
|
|
|
2698
|
+
[[package]]
|
|
2699
|
+
name = "typetag"
|
|
2700
|
+
version = "0.2.5"
|
|
2701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2702
|
+
checksum = "8eecd98403ae5ea2813689125cf5b3f99c40b8abed46c0a8945c81eadb673b31"
|
|
2703
|
+
dependencies = [
|
|
2704
|
+
"erased-serde",
|
|
2705
|
+
"inventory",
|
|
2706
|
+
"once_cell",
|
|
2707
|
+
"serde",
|
|
2708
|
+
"typetag-impl",
|
|
2709
|
+
]
|
|
2710
|
+
|
|
2711
|
+
[[package]]
|
|
2712
|
+
name = "typetag-impl"
|
|
2713
|
+
version = "0.2.5"
|
|
2714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2715
|
+
checksum = "8f9568611f0de5e83e0993b85c54679cd0afd659adcfcb0233f16280b980492e"
|
|
2716
|
+
dependencies = [
|
|
2717
|
+
"proc-macro2",
|
|
2718
|
+
"quote",
|
|
2719
|
+
"syn",
|
|
2720
|
+
]
|
|
2721
|
+
|
|
2573
2722
|
[[package]]
|
|
2574
2723
|
name = "unicode-bidi"
|
|
2575
2724
|
version = "0.3.8"
|
|
@@ -2785,43 +2934,100 @@ version = "0.36.1"
|
|
|
2785
2934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2786
2935
|
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
|
2787
2936
|
dependencies = [
|
|
2788
|
-
"windows_aarch64_msvc",
|
|
2789
|
-
"windows_i686_gnu",
|
|
2790
|
-
"windows_i686_msvc",
|
|
2791
|
-
"windows_x86_64_gnu",
|
|
2792
|
-
"windows_x86_64_msvc",
|
|
2937
|
+
"windows_aarch64_msvc 0.36.1",
|
|
2938
|
+
"windows_i686_gnu 0.36.1",
|
|
2939
|
+
"windows_i686_msvc 0.36.1",
|
|
2940
|
+
"windows_x86_64_gnu 0.36.1",
|
|
2941
|
+
"windows_x86_64_msvc 0.36.1",
|
|
2942
|
+
]
|
|
2943
|
+
|
|
2944
|
+
[[package]]
|
|
2945
|
+
name = "windows-sys"
|
|
2946
|
+
version = "0.42.0"
|
|
2947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2948
|
+
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
|
2949
|
+
dependencies = [
|
|
2950
|
+
"windows_aarch64_gnullvm",
|
|
2951
|
+
"windows_aarch64_msvc 0.42.1",
|
|
2952
|
+
"windows_i686_gnu 0.42.1",
|
|
2953
|
+
"windows_i686_msvc 0.42.1",
|
|
2954
|
+
"windows_x86_64_gnu 0.42.1",
|
|
2955
|
+
"windows_x86_64_gnullvm",
|
|
2956
|
+
"windows_x86_64_msvc 0.42.1",
|
|
2793
2957
|
]
|
|
2794
2958
|
|
|
2959
|
+
[[package]]
|
|
2960
|
+
name = "windows_aarch64_gnullvm"
|
|
2961
|
+
version = "0.42.1"
|
|
2962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2963
|
+
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
|
|
2964
|
+
|
|
2795
2965
|
[[package]]
|
|
2796
2966
|
name = "windows_aarch64_msvc"
|
|
2797
2967
|
version = "0.36.1"
|
|
2798
2968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2799
2969
|
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
|
2800
2970
|
|
|
2971
|
+
[[package]]
|
|
2972
|
+
name = "windows_aarch64_msvc"
|
|
2973
|
+
version = "0.42.1"
|
|
2974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2975
|
+
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
|
|
2976
|
+
|
|
2801
2977
|
[[package]]
|
|
2802
2978
|
name = "windows_i686_gnu"
|
|
2803
2979
|
version = "0.36.1"
|
|
2804
2980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2805
2981
|
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
|
2806
2982
|
|
|
2983
|
+
[[package]]
|
|
2984
|
+
name = "windows_i686_gnu"
|
|
2985
|
+
version = "0.42.1"
|
|
2986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2987
|
+
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
|
|
2988
|
+
|
|
2807
2989
|
[[package]]
|
|
2808
2990
|
name = "windows_i686_msvc"
|
|
2809
2991
|
version = "0.36.1"
|
|
2810
2992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2811
2993
|
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
|
2812
2994
|
|
|
2995
|
+
[[package]]
|
|
2996
|
+
name = "windows_i686_msvc"
|
|
2997
|
+
version = "0.42.1"
|
|
2998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2999
|
+
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
|
|
3000
|
+
|
|
2813
3001
|
[[package]]
|
|
2814
3002
|
name = "windows_x86_64_gnu"
|
|
2815
3003
|
version = "0.36.1"
|
|
2816
3004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2817
3005
|
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
|
2818
3006
|
|
|
3007
|
+
[[package]]
|
|
3008
|
+
name = "windows_x86_64_gnu"
|
|
3009
|
+
version = "0.42.1"
|
|
3010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3011
|
+
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
|
|
3012
|
+
|
|
3013
|
+
[[package]]
|
|
3014
|
+
name = "windows_x86_64_gnullvm"
|
|
3015
|
+
version = "0.42.1"
|
|
3016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3017
|
+
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
|
|
3018
|
+
|
|
2819
3019
|
[[package]]
|
|
2820
3020
|
name = "windows_x86_64_msvc"
|
|
2821
3021
|
version = "0.36.1"
|
|
2822
3022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2823
3023
|
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
|
|
2824
3024
|
|
|
3025
|
+
[[package]]
|
|
3026
|
+
name = "windows_x86_64_msvc"
|
|
3027
|
+
version = "0.42.1"
|
|
3028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3029
|
+
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
|
|
3030
|
+
|
|
2825
3031
|
[[package]]
|
|
2826
3032
|
name = "winreg"
|
|
2827
3033
|
version = "0.10.1"
|
|
@@ -2842,9 +3048,9 @@ dependencies = [
|
|
|
2842
3048
|
|
|
2843
3049
|
[[package]]
|
|
2844
3050
|
name = "zip"
|
|
2845
|
-
version = "0.6.
|
|
3051
|
+
version = "0.6.3"
|
|
2846
3052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2847
|
-
checksum = "
|
|
3053
|
+
checksum = "537ce7411d25e54e8ae21a7ce0b15840e7bfcff15b51d697ec3266cc76bdf080"
|
|
2848
3054
|
dependencies = [
|
|
2849
3055
|
"aes",
|
|
2850
3056
|
"byteorder",
|
|
@@ -2862,18 +3068,18 @@ dependencies = [
|
|
|
2862
3068
|
|
|
2863
3069
|
[[package]]
|
|
2864
3070
|
name = "zstd"
|
|
2865
|
-
version = "0.
|
|
3071
|
+
version = "0.11.2+zstd.1.5.2"
|
|
2866
3072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
|
-
checksum = "
|
|
3073
|
+
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
|
2868
3074
|
dependencies = [
|
|
2869
3075
|
"zstd-safe",
|
|
2870
3076
|
]
|
|
2871
3077
|
|
|
2872
3078
|
[[package]]
|
|
2873
3079
|
name = "zstd-safe"
|
|
2874
|
-
version = "
|
|
3080
|
+
version = "5.0.2+zstd.1.5.2"
|
|
2875
3081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2876
|
-
checksum = "
|
|
3082
|
+
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
|
|
2877
3083
|
dependencies = [
|
|
2878
3084
|
"libc",
|
|
2879
3085
|
"zstd-sys",
|
|
@@ -2881,10 +3087,11 @@ dependencies = [
|
|
|
2881
3087
|
|
|
2882
3088
|
[[package]]
|
|
2883
3089
|
name = "zstd-sys"
|
|
2884
|
-
version = "
|
|
3090
|
+
version = "2.0.5+zstd.1.5.2"
|
|
2885
3091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2886
|
-
checksum = "
|
|
3092
|
+
checksum = "edc50ffce891ad571e9f9afe5039c4837bede781ac4bb13052ed7ae695518596"
|
|
2887
3093
|
dependencies = [
|
|
2888
3094
|
"cc",
|
|
2889
3095
|
"libc",
|
|
3096
|
+
"pkg-config",
|
|
2890
3097
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@temporalio/core-bridge",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Temporal.io SDK Core<>Node bridge",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"author": "Temporal Technologies Inc. <sdk@temporal.io>",
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@opentelemetry/api": "^1.
|
|
26
|
-
"@temporalio/common": "
|
|
25
|
+
"@opentelemetry/api": "^1.3.0",
|
|
26
|
+
"@temporalio/common": "1.6.0",
|
|
27
27
|
"arg": "^5.0.2",
|
|
28
28
|
"cargo-cp-artifact": "^0.1.6",
|
|
29
29
|
"which": "^2.0.2"
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "49c6b1341daef2b94a0a989d515cbf97b8b02fa7"
|
|
52
52
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -17,7 +17,7 @@ steps:
|
|
|
17
17
|
agents:
|
|
18
18
|
queue: "default"
|
|
19
19
|
docker: "*"
|
|
20
|
-
command: "cargo
|
|
20
|
+
command: "cargo lint"
|
|
21
21
|
timeout_in_minutes: 15
|
|
22
22
|
plugins:
|
|
23
23
|
- docker-compose#v3.0.0:
|
|
@@ -25,8 +25,6 @@ steps:
|
|
|
25
25
|
config:
|
|
26
26
|
- .buildkite/docker/docker-compose.yaml
|
|
27
27
|
- .buildkite/docker/docker-compose-ci.yaml
|
|
28
|
-
env:
|
|
29
|
-
- TEMPORAL_SDK_CORE_BRIDGE_FFI_DISABLE_HEADER_CHANGE=true
|
|
30
28
|
- label: "test"
|
|
31
29
|
agents:
|
|
32
30
|
queue: "default"
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
[alias]
|
|
2
|
-
integ-test = ["run", "--package", "temporal-sdk-core", "--example", "integ_runner"]
|
|
3
|
-
|
|
2
|
+
integ-test = ["run", "--package", "temporal-sdk-core", "--example", "integ_runner", "--"]
|
|
3
|
+
wf-input-replay = ["run", "--package", "temporal-sdk-core", "--features", "save_wf_inputs",
|
|
4
|
+
"--example", "wf_input_replay", "--"]
|
|
5
|
+
lint = ["clippy", "--workspace", "--examples", "--all-features",
|
|
6
|
+
"--test", "integ_tests", "--test", "heavy_tests", "--", "--D", "warnings"]
|