@temporalio/core-bridge 1.1.0 → 1.3.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.
Files changed (114) hide show
  1. package/Cargo.lock +786 -54
  2. package/Cargo.toml +2 -2
  3. package/common.js +7 -3
  4. package/index.d.ts +110 -3
  5. package/index.js +2 -6
  6. package/package.json +3 -3
  7. package/releases/aarch64-apple-darwin/index.node +0 -0
  8. package/releases/aarch64-unknown-linux-gnu/index.node +0 -0
  9. package/releases/x86_64-apple-darwin/index.node +0 -0
  10. package/releases/x86_64-pc-windows-msvc/index.node +0 -0
  11. package/releases/x86_64-unknown-linux-gnu/index.node +0 -0
  12. package/scripts/build.js +4 -3
  13. package/sdk-core/.buildkite/docker/Dockerfile +2 -1
  14. package/sdk-core/ARCHITECTURE.md +2 -2
  15. package/sdk-core/README.md +12 -0
  16. package/sdk-core/bridge-ffi/Cargo.toml +2 -2
  17. package/sdk-core/client/Cargo.toml +6 -4
  18. package/sdk-core/client/src/lib.rs +338 -215
  19. package/sdk-core/client/src/raw.rs +352 -106
  20. package/sdk-core/client/src/retry.rs +159 -133
  21. package/sdk-core/client/src/workflow_handle/mod.rs +1 -1
  22. package/sdk-core/core/Cargo.toml +18 -9
  23. package/sdk-core/core/src/core_tests/activity_tasks.rs +63 -23
  24. package/sdk-core/core/src/core_tests/child_workflows.rs +125 -3
  25. package/sdk-core/core/src/core_tests/local_activities.rs +6 -6
  26. package/sdk-core/core/src/core_tests/workers.rs +3 -2
  27. package/sdk-core/core/src/core_tests/workflow_tasks.rs +70 -2
  28. package/sdk-core/core/src/ephemeral_server/mod.rs +499 -0
  29. package/sdk-core/core/src/lib.rs +60 -26
  30. package/sdk-core/core/src/pollers/poll_buffer.rs +4 -4
  31. package/sdk-core/core/src/replay/mod.rs +3 -3
  32. package/sdk-core/core/src/retry_logic.rs +10 -9
  33. package/sdk-core/core/src/telemetry/mod.rs +10 -7
  34. package/sdk-core/core/src/test_help/mod.rs +18 -8
  35. package/sdk-core/core/src/worker/activities/activity_heartbeat_manager.rs +10 -10
  36. package/sdk-core/core/src/worker/activities/local_activities.rs +13 -13
  37. package/sdk-core/core/src/worker/activities.rs +6 -12
  38. package/sdk-core/core/src/worker/client.rs +193 -64
  39. package/sdk-core/core/src/worker/mod.rs +14 -19
  40. package/sdk-core/core/src/worker/workflow/driven_workflow.rs +3 -0
  41. package/sdk-core/core/src/worker/workflow/history_update.rs +5 -5
  42. package/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +133 -85
  43. package/sdk-core/core/src/worker/workflow/machines/mod.rs +3 -2
  44. package/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +160 -105
  45. package/sdk-core/core/src/worker/workflow/managed_run.rs +2 -1
  46. package/sdk-core/core/src/worker/workflow/mod.rs +59 -58
  47. package/sdk-core/core/src/worker/workflow/run_cache.rs +5 -3
  48. package/sdk-core/core/src/worker/workflow/workflow_stream.rs +7 -5
  49. package/sdk-core/core-api/Cargo.toml +2 -2
  50. package/sdk-core/core-api/src/errors.rs +3 -11
  51. package/sdk-core/core-api/src/worker.rs +7 -0
  52. package/sdk-core/protos/api_upstream/.buildkite/Dockerfile +1 -1
  53. package/sdk-core/protos/api_upstream/.github/CODEOWNERS +1 -1
  54. package/sdk-core/protos/api_upstream/.github/PULL_REQUEST_TEMPLATE.md +2 -6
  55. package/sdk-core/protos/api_upstream/.github/workflows/trigger-api-go-update.yml +29 -0
  56. package/sdk-core/protos/api_upstream/Makefile +2 -2
  57. package/sdk-core/protos/api_upstream/buf.yaml +1 -0
  58. package/sdk-core/protos/api_upstream/temporal/api/batch/v1/message.proto +86 -0
  59. package/sdk-core/protos/api_upstream/temporal/api/command/v1/message.proto +26 -0
  60. package/sdk-core/protos/api_upstream/temporal/api/enums/v1/batch_operation.proto +46 -0
  61. package/sdk-core/protos/api_upstream/temporal/api/enums/v1/command_type.proto +7 -0
  62. package/sdk-core/protos/api_upstream/temporal/api/enums/v1/event_type.proto +14 -0
  63. package/sdk-core/protos/api_upstream/temporal/api/enums/v1/update.proto +51 -0
  64. package/sdk-core/protos/api_upstream/temporal/api/failure/v1/message.proto +18 -0
  65. package/sdk-core/protos/api_upstream/temporal/api/history/v1/message.proto +57 -1
  66. package/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +1 -3
  67. package/sdk-core/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +4 -2
  68. package/sdk-core/protos/api_upstream/temporal/api/replication/v1/message.proto +11 -0
  69. package/sdk-core/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +23 -0
  70. package/sdk-core/protos/api_upstream/temporal/api/update/v1/message.proto +46 -0
  71. package/sdk-core/protos/api_upstream/temporal/api/workflow/v1/message.proto +1 -0
  72. package/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +172 -0
  73. package/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +30 -0
  74. package/sdk-core/protos/grpc/health/v1/health.proto +63 -0
  75. package/sdk-core/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +18 -15
  76. package/sdk-core/protos/testsrv_upstream/Makefile +80 -0
  77. package/sdk-core/protos/testsrv_upstream/api-linter.yaml +38 -0
  78. package/sdk-core/protos/testsrv_upstream/buf.yaml +13 -0
  79. package/sdk-core/protos/testsrv_upstream/dependencies/gogoproto/gogo.proto +141 -0
  80. package/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/request_response.proto +63 -0
  81. package/sdk-core/protos/testsrv_upstream/temporal/api/testservice/v1/service.proto +90 -0
  82. package/sdk-core/sdk/Cargo.toml +2 -2
  83. package/sdk-core/sdk/src/lib.rs +2 -2
  84. package/sdk-core/sdk/src/workflow_context/options.rs +36 -8
  85. package/sdk-core/sdk/src/workflow_context.rs +30 -6
  86. package/sdk-core/sdk/src/workflow_future.rs +4 -4
  87. package/sdk-core/sdk-core-protos/Cargo.toml +5 -5
  88. package/sdk-core/sdk-core-protos/build.rs +9 -1
  89. package/sdk-core/sdk-core-protos/src/history_builder.rs +6 -1
  90. package/sdk-core/sdk-core-protos/src/lib.rs +93 -32
  91. package/sdk-core/test-utils/Cargo.toml +3 -3
  92. package/sdk-core/test-utils/src/canned_histories.rs +58 -0
  93. package/sdk-core/test-utils/src/lib.rs +14 -10
  94. package/sdk-core/tests/integ_tests/ephemeral_server_tests.rs +141 -0
  95. package/sdk-core/tests/integ_tests/heartbeat_tests.rs +55 -5
  96. package/sdk-core/tests/integ_tests/polling_tests.rs +1 -1
  97. package/sdk-core/tests/integ_tests/queries_tests.rs +4 -4
  98. package/sdk-core/tests/integ_tests/visibility_tests.rs +93 -0
  99. package/sdk-core/tests/integ_tests/workflow_tests/activities.rs +93 -10
  100. package/sdk-core/tests/integ_tests/workflow_tests/cancel_wf.rs +1 -1
  101. package/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +14 -14
  102. package/sdk-core/tests/integ_tests/workflow_tests/replay.rs +1 -1
  103. package/sdk-core/tests/integ_tests/workflow_tests/resets.rs +12 -12
  104. package/sdk-core/tests/integ_tests/workflow_tests/signals.rs +12 -1
  105. package/sdk-core/tests/integ_tests/workflow_tests/timers.rs +3 -3
  106. package/sdk-core/tests/integ_tests/workflow_tests.rs +19 -4
  107. package/sdk-core/tests/load_tests.rs +2 -1
  108. package/sdk-core/tests/main.rs +10 -0
  109. package/src/conversions.rs +138 -91
  110. package/src/helpers.rs +190 -0
  111. package/src/lib.rs +10 -912
  112. package/src/runtime.rs +436 -0
  113. package/src/testing.rs +67 -0
  114. package/src/worker.rs +465 -0
package/Cargo.lock CHANGED
@@ -2,6 +2,24 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 3
4
4
 
5
+ [[package]]
6
+ name = "adler"
7
+ version = "1.0.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
+
11
+ [[package]]
12
+ name = "aes"
13
+ version = "0.7.5"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "cipher",
19
+ "cpufeatures",
20
+ "opaque-debug",
21
+ ]
22
+
5
23
  [[package]]
6
24
  name = "ahash"
7
25
  version = "0.7.6"
@@ -92,6 +110,49 @@ version = "1.1.0"
92
110
  source = "registry+https://github.com/rust-lang/crates.io-index"
93
111
  checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
94
112
 
113
+ [[package]]
114
+ name = "axum"
115
+ version = "0.5.4"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "f4af7447fc1214c1f3a1ace861d0216a6c8bb13965b64bbad9650f375b67689a"
118
+ dependencies = [
119
+ "async-trait",
120
+ "axum-core",
121
+ "bitflags",
122
+ "bytes",
123
+ "futures-util",
124
+ "http",
125
+ "http-body",
126
+ "hyper",
127
+ "itoa",
128
+ "matchit",
129
+ "memchr",
130
+ "mime",
131
+ "percent-encoding",
132
+ "pin-project-lite",
133
+ "serde",
134
+ "sync_wrapper",
135
+ "tokio",
136
+ "tower",
137
+ "tower-http",
138
+ "tower-layer",
139
+ "tower-service",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "axum-core"
144
+ version = "0.2.3"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "3bdc19781b16e32f8a7200368a336fa4509d4b72ef15dd4e41df5290855ee1e6"
147
+ dependencies = [
148
+ "async-trait",
149
+ "bytes",
150
+ "futures-util",
151
+ "http",
152
+ "http-body",
153
+ "mime",
154
+ ]
155
+
95
156
  [[package]]
96
157
  name = "backoff"
97
158
  version = "0.4.0"
@@ -109,24 +170,66 @@ version = "0.13.0"
109
170
  source = "registry+https://github.com/rust-lang/crates.io-index"
110
171
  checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
111
172
 
173
+ [[package]]
174
+ name = "base64ct"
175
+ version = "1.0.1"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "8a32fd6af2b5827bce66c29053ba0e7c42b9dcab01835835058558c10851a46b"
178
+
112
179
  [[package]]
113
180
  name = "bitflags"
114
181
  version = "1.3.2"
115
182
  source = "registry+https://github.com/rust-lang/crates.io-index"
116
183
  checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
117
184
 
185
+ [[package]]
186
+ name = "block-buffer"
187
+ version = "0.10.3"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
190
+ dependencies = [
191
+ "generic-array",
192
+ ]
193
+
118
194
  [[package]]
119
195
  name = "bumpalo"
120
196
  version = "3.9.1"
121
197
  source = "registry+https://github.com/rust-lang/crates.io-index"
122
198
  checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
123
199
 
200
+ [[package]]
201
+ name = "byteorder"
202
+ version = "1.4.3"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
205
+
124
206
  [[package]]
125
207
  name = "bytes"
126
208
  version = "1.1.0"
127
209
  source = "registry+https://github.com/rust-lang/crates.io-index"
128
210
  checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
129
211
 
212
+ [[package]]
213
+ name = "bzip2"
214
+ version = "0.4.3"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0"
217
+ dependencies = [
218
+ "bzip2-sys",
219
+ "libc",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "bzip2-sys"
224
+ version = "0.1.11+1.0.8"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
227
+ dependencies = [
228
+ "cc",
229
+ "libc",
230
+ "pkg-config",
231
+ ]
232
+
130
233
  [[package]]
131
234
  name = "cache-padded"
132
235
  version = "1.2.0"
@@ -138,6 +241,9 @@ name = "cc"
138
241
  version = "1.0.73"
139
242
  source = "registry+https://github.com/rust-lang/crates.io-index"
140
243
  checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
244
+ dependencies = [
245
+ "jobserver",
246
+ ]
141
247
 
142
248
  [[package]]
143
249
  name = "cfg-if"
@@ -145,6 +251,15 @@ version = "1.0.0"
145
251
  source = "registry+https://github.com/rust-lang/crates.io-index"
146
252
  checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
147
253
 
254
+ [[package]]
255
+ name = "cipher"
256
+ version = "0.3.0"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
259
+ dependencies = [
260
+ "generic-array",
261
+ ]
262
+
148
263
  [[package]]
149
264
  name = "concurrent-queue"
150
265
  version = "1.2.2"
@@ -154,6 +269,12 @@ dependencies = [
154
269
  "cache-padded",
155
270
  ]
156
271
 
272
+ [[package]]
273
+ name = "constant_time_eq"
274
+ version = "0.1.5"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
277
+
157
278
  [[package]]
158
279
  name = "convert_case"
159
280
  version = "0.4.0"
@@ -176,6 +297,24 @@ version = "0.8.3"
176
297
  source = "registry+https://github.com/rust-lang/crates.io-index"
177
298
  checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
178
299
 
300
+ [[package]]
301
+ name = "cpufeatures"
302
+ version = "0.2.5"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
305
+ dependencies = [
306
+ "libc",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "crc32fast"
311
+ version = "1.3.2"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
314
+ dependencies = [
315
+ "cfg-if",
316
+ ]
317
+
179
318
  [[package]]
180
319
  name = "crossbeam"
181
320
  version = "0.8.1"
@@ -245,6 +384,16 @@ dependencies = [
245
384
  "lazy_static",
246
385
  ]
247
386
 
387
+ [[package]]
388
+ name = "crypto-common"
389
+ version = "0.1.6"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
392
+ dependencies = [
393
+ "generic-array",
394
+ "typenum",
395
+ ]
396
+
248
397
  [[package]]
249
398
  name = "darling"
250
399
  version = "0.14.0"
@@ -351,6 +500,17 @@ version = "0.4.0"
351
500
  source = "registry+https://github.com/rust-lang/crates.io-index"
352
501
  checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
353
502
 
503
+ [[package]]
504
+ name = "digest"
505
+ version = "0.10.3"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
508
+ dependencies = [
509
+ "block-buffer",
510
+ "crypto-common",
511
+ "subtle",
512
+ ]
513
+
354
514
  [[package]]
355
515
  name = "downcast"
356
516
  version = "0.11.0"
@@ -363,6 +523,15 @@ version = "1.6.1"
363
523
  source = "registry+https://github.com/rust-lang/crates.io-index"
364
524
  checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
365
525
 
526
+ [[package]]
527
+ name = "encoding_rs"
528
+ version = "0.8.31"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
531
+ dependencies = [
532
+ "cfg-if",
533
+ ]
534
+
366
535
  [[package]]
367
536
  name = "enum_dispatch"
368
537
  version = "0.3.8"
@@ -390,12 +559,34 @@ dependencies = [
390
559
  "instant",
391
560
  ]
392
561
 
562
+ [[package]]
563
+ name = "filetime"
564
+ version = "0.2.17"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c"
567
+ dependencies = [
568
+ "cfg-if",
569
+ "libc",
570
+ "redox_syscall",
571
+ "windows-sys 0.36.1",
572
+ ]
573
+
393
574
  [[package]]
394
575
  name = "fixedbitset"
395
576
  version = "0.4.1"
396
577
  source = "registry+https://github.com/rust-lang/crates.io-index"
397
578
  checksum = "279fb028e20b3c4c320317955b77c5e0c9701f05a1d309905d6fc702cdc5053e"
398
579
 
580
+ [[package]]
581
+ name = "flate2"
582
+ version = "1.0.24"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
585
+ dependencies = [
586
+ "crc32fast",
587
+ "miniz_oxide",
588
+ ]
589
+
399
590
  [[package]]
400
591
  name = "float-cmp"
401
592
  version = "0.9.0"
@@ -533,6 +724,16 @@ dependencies = [
533
724
  "slab",
534
725
  ]
535
726
 
727
+ [[package]]
728
+ name = "generic-array"
729
+ version = "0.14.6"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
732
+ dependencies = [
733
+ "typenum",
734
+ "version_check",
735
+ ]
736
+
536
737
  [[package]]
537
738
  name = "getrandom"
538
739
  version = "0.2.6"
@@ -585,6 +786,12 @@ name = "hashbrown"
585
786
  version = "0.11.2"
586
787
  source = "registry+https://github.com/rust-lang/crates.io-index"
587
788
  checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
789
+
790
+ [[package]]
791
+ name = "hashbrown"
792
+ version = "0.12.3"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
588
795
  dependencies = [
589
796
  "ahash",
590
797
  ]
@@ -598,6 +805,12 @@ dependencies = [
598
805
  "unicode-segmentation",
599
806
  ]
600
807
 
808
+ [[package]]
809
+ name = "heck"
810
+ version = "0.4.0"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
813
+
601
814
  [[package]]
602
815
  name = "hermit-abi"
603
816
  version = "0.1.19"
@@ -607,6 +820,15 @@ dependencies = [
607
820
  "libc",
608
821
  ]
609
822
 
823
+ [[package]]
824
+ name = "hmac"
825
+ version = "0.12.1"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
828
+ dependencies = [
829
+ "digest",
830
+ ]
831
+
610
832
  [[package]]
611
833
  name = "http"
612
834
  version = "0.2.6"
@@ -629,6 +851,12 @@ dependencies = [
629
851
  "pin-project-lite",
630
852
  ]
631
853
 
854
+ [[package]]
855
+ name = "http-range-header"
856
+ version = "0.3.0"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
859
+
632
860
  [[package]]
633
861
  name = "httparse"
634
862
  version = "1.7.0"
@@ -665,6 +893,19 @@ dependencies = [
665
893
  "want",
666
894
  ]
667
895
 
896
+ [[package]]
897
+ name = "hyper-rustls"
898
+ version = "0.23.0"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac"
901
+ dependencies = [
902
+ "http",
903
+ "hyper",
904
+ "rustls",
905
+ "tokio",
906
+ "tokio-rustls",
907
+ ]
908
+
668
909
  [[package]]
669
910
  name = "hyper-timeout"
670
911
  version = "0.4.1"
@@ -701,7 +942,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
701
942
  checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
702
943
  dependencies = [
703
944
  "autocfg",
704
- "hashbrown",
945
+ "hashbrown 0.11.2",
705
946
  ]
706
947
 
707
948
  [[package]]
@@ -713,6 +954,12 @@ dependencies = [
713
954
  "cfg-if",
714
955
  ]
715
956
 
957
+ [[package]]
958
+ name = "ipnet"
959
+ version = "2.5.0"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
962
+
716
963
  [[package]]
717
964
  name = "itertools"
718
965
  version = "0.10.3"
@@ -728,6 +975,15 @@ version = "1.0.1"
728
975
  source = "registry+https://github.com/rust-lang/crates.io-index"
729
976
  checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
730
977
 
978
+ [[package]]
979
+ name = "jobserver"
980
+ version = "0.1.24"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
983
+ dependencies = [
984
+ "libc",
985
+ ]
986
+
731
987
  [[package]]
732
988
  name = "js-sys"
733
989
  version = "0.3.57"
@@ -745,9 +1001,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
745
1001
 
746
1002
  [[package]]
747
1003
  name = "libc"
748
- version = "0.2.124"
1004
+ version = "0.2.132"
749
1005
  source = "registry+https://github.com/rust-lang/crates.io-index"
750
- checksum = "21a41fed9d98f27ab1c6d161da622a4fa35e8a54a8adc24bbf3ddd0ef70b0e50"
1006
+ checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5"
751
1007
 
752
1008
  [[package]]
753
1009
  name = "libloading"
@@ -780,11 +1036,11 @@ dependencies = [
780
1036
 
781
1037
  [[package]]
782
1038
  name = "lru"
783
- version = "0.7.5"
1039
+ version = "0.8.0"
784
1040
  source = "registry+https://github.com/rust-lang/crates.io-index"
785
- checksum = "32613e41de4c47ab04970c348ca7ae7382cf116625755af070b008a15516a889"
1041
+ checksum = "936d98d2ddd79c18641c6709e7bb09981449694e402d1a0f0f657ea8d61f4a51"
786
1042
  dependencies = [
787
- "hashbrown",
1043
+ "hashbrown 0.12.3",
788
1044
  ]
789
1045
 
790
1046
  [[package]]
@@ -811,6 +1067,12 @@ version = "0.1.9"
811
1067
  source = "registry+https://github.com/rust-lang/crates.io-index"
812
1068
  checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
813
1069
 
1070
+ [[package]]
1071
+ name = "matchit"
1072
+ version = "0.5.0"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb"
1075
+
814
1076
  [[package]]
815
1077
  name = "memchr"
816
1078
  version = "2.4.1"
@@ -826,6 +1088,21 @@ dependencies = [
826
1088
  "autocfg",
827
1089
  ]
828
1090
 
1091
+ [[package]]
1092
+ name = "mime"
1093
+ version = "0.3.16"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
1096
+
1097
+ [[package]]
1098
+ name = "miniz_oxide"
1099
+ version = "0.5.4"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
1102
+ dependencies = [
1103
+ "adler",
1104
+ ]
1105
+
829
1106
  [[package]]
830
1107
  name = "mio"
831
1108
  version = "0.8.2"
@@ -923,6 +1200,20 @@ dependencies = [
923
1200
  "smallvec",
924
1201
  ]
925
1202
 
1203
+ [[package]]
1204
+ name = "nix"
1205
+ version = "0.25.0"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb"
1208
+ dependencies = [
1209
+ "autocfg",
1210
+ "bitflags",
1211
+ "cfg-if",
1212
+ "libc",
1213
+ "memoffset",
1214
+ "pin-utils",
1215
+ ]
1216
+
926
1217
  [[package]]
927
1218
  name = "no-std-compat"
928
1219
  version = "0.4.1"
@@ -969,11 +1260,26 @@ dependencies = [
969
1260
  "libc",
970
1261
  ]
971
1262
 
1263
+ [[package]]
1264
+ name = "num_threads"
1265
+ version = "0.1.6"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
1268
+ dependencies = [
1269
+ "libc",
1270
+ ]
1271
+
972
1272
  [[package]]
973
1273
  name = "once_cell"
974
- version = "1.10.0"
1274
+ version = "1.14.0"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0"
1277
+
1278
+ [[package]]
1279
+ name = "opaque-debug"
1280
+ version = "0.3.0"
975
1281
  source = "registry+https://github.com/rust-lang/crates.io-index"
976
- checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
1282
+ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
977
1283
 
978
1284
  [[package]]
979
1285
  name = "openssl-probe"
@@ -1032,11 +1338,11 @@ dependencies = [
1032
1338
  "futures-util",
1033
1339
  "http",
1034
1340
  "opentelemetry 0.17.0",
1035
- "prost",
1341
+ "prost 0.9.0",
1036
1342
  "thiserror",
1037
1343
  "tokio",
1038
- "tonic",
1039
- "tonic-build",
1344
+ "tonic 0.6.2",
1345
+ "tonic-build 0.6.2",
1040
1346
  ]
1041
1347
 
1042
1348
  [[package]]
@@ -1095,7 +1401,30 @@ dependencies = [
1095
1401
  "libc",
1096
1402
  "redox_syscall",
1097
1403
  "smallvec",
1098
- "windows-sys",
1404
+ "windows-sys 0.34.0",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "password-hash"
1409
+ version = "0.3.2"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "1d791538a6dcc1e7cb7fe6f6b58aca40e7f79403c45b2bc274008b5e647af1d8"
1412
+ dependencies = [
1413
+ "base64ct",
1414
+ "rand_core",
1415
+ "subtle",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "pbkdf2"
1420
+ version = "0.10.1"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "271779f35b581956db91a3e55737327a03aa051e90b1c47aeb189508533adfd7"
1423
+ dependencies = [
1424
+ "digest",
1425
+ "hmac",
1426
+ "password-hash",
1427
+ "sha2",
1099
1428
  ]
1100
1429
 
1101
1430
  [[package]]
@@ -1146,6 +1475,12 @@ version = "0.1.0"
1146
1475
  source = "registry+https://github.com/rust-lang/crates.io-index"
1147
1476
  checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1148
1477
 
1478
+ [[package]]
1479
+ name = "pkg-config"
1480
+ version = "0.3.25"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
1483
+
1149
1484
  [[package]]
1150
1485
  name = "ppv-lite86"
1151
1486
  version = "0.2.16"
@@ -1182,6 +1517,16 @@ dependencies = [
1182
1517
  "termtree",
1183
1518
  ]
1184
1519
 
1520
+ [[package]]
1521
+ name = "prettyplease"
1522
+ version = "0.1.19"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "a49e86d2c26a24059894a3afa13fd17d063419b05dfb83f06d9c3566060c3f5a"
1525
+ dependencies = [
1526
+ "proc-macro2",
1527
+ "syn",
1528
+ ]
1529
+
1185
1530
  [[package]]
1186
1531
  name = "proc-macro2"
1187
1532
  version = "1.0.37"
@@ -1213,7 +1558,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
1558
  checksum = "444879275cb4fd84958b1a1d5420d15e6fcf7c235fe47f053c9c2a80aceb6001"
1214
1559
  dependencies = [
1215
1560
  "bytes",
1216
- "prost-derive",
1561
+ "prost-derive 0.9.0",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "prost"
1566
+ version = "0.11.0"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "399c3c31cdec40583bb68f0b18403400d01ec4289c383aa047560439952c4dd7"
1569
+ dependencies = [
1570
+ "bytes",
1571
+ "prost-derive 0.11.0",
1217
1572
  ]
1218
1573
 
1219
1574
  [[package]]
@@ -1223,14 +1578,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
1578
  checksum = "62941722fb675d463659e49c4f3fe1fe792ff24fe5bbaa9c08cd3b98a1c354f5"
1224
1579
  dependencies = [
1225
1580
  "bytes",
1226
- "heck",
1581
+ "heck 0.3.3",
1227
1582
  "itertools",
1228
1583
  "lazy_static",
1229
1584
  "log",
1230
1585
  "multimap",
1231
1586
  "petgraph",
1232
- "prost",
1233
- "prost-types",
1587
+ "prost 0.9.0",
1588
+ "prost-types 0.9.0",
1589
+ "regex",
1590
+ "tempfile",
1591
+ "which",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "prost-build"
1596
+ version = "0.11.1"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "7f835c582e6bd972ba8347313300219fed5bfa52caf175298d860b61ff6069bb"
1599
+ dependencies = [
1600
+ "bytes",
1601
+ "heck 0.4.0",
1602
+ "itertools",
1603
+ "lazy_static",
1604
+ "log",
1605
+ "multimap",
1606
+ "petgraph",
1607
+ "prost 0.11.0",
1608
+ "prost-types 0.11.1",
1234
1609
  "regex",
1235
1610
  "tempfile",
1236
1611
  "which",
@@ -1249,6 +1624,19 @@ dependencies = [
1249
1624
  "syn",
1250
1625
  ]
1251
1626
 
1627
+ [[package]]
1628
+ name = "prost-derive"
1629
+ version = "0.11.0"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "7345d5f0e08c0536d7ac7229952590239e77abf0a0100a1b1d890add6ea96364"
1632
+ dependencies = [
1633
+ "anyhow",
1634
+ "itertools",
1635
+ "proc-macro2",
1636
+ "quote",
1637
+ "syn",
1638
+ ]
1639
+
1252
1640
  [[package]]
1253
1641
  name = "prost-types"
1254
1642
  version = "0.9.0"
@@ -1256,7 +1644,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
1644
  checksum = "534b7a0e836e3c482d2693070f982e39e7611da9695d4d1f5a4b186b51faef0a"
1257
1645
  dependencies = [
1258
1646
  "bytes",
1259
- "prost",
1647
+ "prost 0.9.0",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "prost-types"
1652
+ version = "0.11.1"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "4dfaa718ad76a44b3415e6c4d53b17c8f99160dcb3a99b10470fce8ad43f6e3e"
1655
+ dependencies = [
1656
+ "bytes",
1657
+ "prost 0.11.0",
1260
1658
  ]
1261
1659
 
1262
1660
  [[package]]
@@ -1373,6 +1771,46 @@ dependencies = [
1373
1771
  "winapi",
1374
1772
  ]
1375
1773
 
1774
+ [[package]]
1775
+ name = "reqwest"
1776
+ version = "0.11.11"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92"
1779
+ dependencies = [
1780
+ "base64",
1781
+ "bytes",
1782
+ "encoding_rs",
1783
+ "futures-core",
1784
+ "futures-util",
1785
+ "h2",
1786
+ "http",
1787
+ "http-body",
1788
+ "hyper",
1789
+ "hyper-rustls",
1790
+ "ipnet",
1791
+ "js-sys",
1792
+ "lazy_static",
1793
+ "log",
1794
+ "mime",
1795
+ "percent-encoding",
1796
+ "pin-project-lite",
1797
+ "rustls",
1798
+ "rustls-pemfile",
1799
+ "serde",
1800
+ "serde_json",
1801
+ "serde_urlencoded",
1802
+ "tokio",
1803
+ "tokio-rustls",
1804
+ "tokio-util 0.7.1",
1805
+ "tower-service",
1806
+ "url",
1807
+ "wasm-bindgen",
1808
+ "wasm-bindgen-futures",
1809
+ "web-sys",
1810
+ "webpki-roots",
1811
+ "winreg",
1812
+ ]
1813
+
1376
1814
  [[package]]
1377
1815
  name = "ring"
1378
1816
  version = "0.16.20"
@@ -1431,11 +1869,10 @@ version = "0.1.0"
1431
1869
 
1432
1870
  [[package]]
1433
1871
  name = "rustls"
1434
- version = "0.19.1"
1872
+ version = "0.20.6"
1435
1873
  source = "registry+https://github.com/rust-lang/crates.io-index"
1436
- checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
1874
+ checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
1437
1875
  dependencies = [
1438
- "base64",
1439
1876
  "log",
1440
1877
  "ring",
1441
1878
  "sct",
@@ -1444,16 +1881,25 @@ dependencies = [
1444
1881
 
1445
1882
  [[package]]
1446
1883
  name = "rustls-native-certs"
1447
- version = "0.5.0"
1884
+ version = "0.6.2"
1448
1885
  source = "registry+https://github.com/rust-lang/crates.io-index"
1449
- checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092"
1886
+ checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
1450
1887
  dependencies = [
1451
1888
  "openssl-probe",
1452
- "rustls",
1889
+ "rustls-pemfile",
1453
1890
  "schannel",
1454
1891
  "security-framework",
1455
1892
  ]
1456
1893
 
1894
+ [[package]]
1895
+ name = "rustls-pemfile"
1896
+ version = "1.0.1"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
1899
+ dependencies = [
1900
+ "base64",
1901
+ ]
1902
+
1457
1903
  [[package]]
1458
1904
  name = "ryu"
1459
1905
  version = "1.0.9"
@@ -1478,9 +1924,9 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1478
1924
 
1479
1925
  [[package]]
1480
1926
  name = "sct"
1481
- version = "0.6.1"
1927
+ version = "0.7.0"
1482
1928
  source = "registry+https://github.com/rust-lang/crates.io-index"
1483
- checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
1929
+ checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
1484
1930
  dependencies = [
1485
1931
  "ring",
1486
1932
  "untrusted",
@@ -1561,6 +2007,40 @@ dependencies = [
1561
2007
  "serde",
1562
2008
  ]
1563
2009
 
2010
+ [[package]]
2011
+ name = "serde_urlencoded"
2012
+ version = "0.7.1"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2015
+ dependencies = [
2016
+ "form_urlencoded",
2017
+ "itoa",
2018
+ "ryu",
2019
+ "serde",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "sha1"
2024
+ version = "0.10.4"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "006769ba83e921b3085caa8334186b00cf92b4cb1a6cf4632fbccc8eff5c7549"
2027
+ dependencies = [
2028
+ "cfg-if",
2029
+ "cpufeatures",
2030
+ "digest",
2031
+ ]
2032
+
2033
+ [[package]]
2034
+ name = "sha2"
2035
+ version = "0.10.5"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "cf9db03534dff993187064c4e0c05a5708d2a9728ace9a8959b77bedf415dac5"
2038
+ dependencies = [
2039
+ "cfg-if",
2040
+ "cpufeatures",
2041
+ "digest",
2042
+ ]
2043
+
1564
2044
  [[package]]
1565
2045
  name = "sharded-slab"
1566
2046
  version = "0.1.4"
@@ -1628,6 +2108,12 @@ version = "0.10.0"
1628
2108
  source = "registry+https://github.com/rust-lang/crates.io-index"
1629
2109
  checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
1630
2110
 
2111
+ [[package]]
2112
+ name = "subtle"
2113
+ version = "2.4.1"
2114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2115
+ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2116
+
1631
2117
  [[package]]
1632
2118
  name = "syn"
1633
2119
  version = "1.0.91"
@@ -1650,6 +2136,23 @@ dependencies = [
1650
2136
  "syn",
1651
2137
  ]
1652
2138
 
2139
+ [[package]]
2140
+ name = "sync_wrapper"
2141
+ version = "0.1.1"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "20518fe4a4c9acf048008599e464deb21beeae3d3578418951a189c235a7a9a8"
2144
+
2145
+ [[package]]
2146
+ name = "tar"
2147
+ version = "0.4.38"
2148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2149
+ checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
2150
+ dependencies = [
2151
+ "filetime",
2152
+ "libc",
2153
+ "xattr",
2154
+ ]
2155
+
1653
2156
  [[package]]
1654
2157
  name = "tempfile"
1655
2158
  version = "3.3.0"
@@ -1676,13 +2179,14 @@ dependencies = [
1676
2179
  "futures",
1677
2180
  "futures-retry",
1678
2181
  "http",
2182
+ "once_cell",
1679
2183
  "opentelemetry 0.17.0",
1680
2184
  "parking_lot 0.12.0",
1681
- "prost-types",
2185
+ "prost-types 0.11.1",
1682
2186
  "temporal-sdk-core-protos",
1683
2187
  "thiserror",
1684
2188
  "tokio",
1685
- "tonic",
2189
+ "tonic 0.8.1",
1686
2190
  "tower",
1687
2191
  "tracing",
1688
2192
  "url",
@@ -1703,7 +2207,9 @@ dependencies = [
1703
2207
  "derive_builder",
1704
2208
  "derive_more",
1705
2209
  "enum_dispatch",
2210
+ "flate2",
1706
2211
  "futures",
2212
+ "futures-util",
1707
2213
  "governor",
1708
2214
  "http",
1709
2215
  "hyper",
@@ -1712,20 +2218,24 @@ dependencies = [
1712
2218
  "log",
1713
2219
  "lru",
1714
2220
  "mockall",
2221
+ "nix",
1715
2222
  "once_cell",
1716
2223
  "opentelemetry 0.17.0",
1717
2224
  "opentelemetry-otlp",
1718
2225
  "opentelemetry-prometheus",
1719
2226
  "parking_lot 0.12.0",
1720
2227
  "prometheus",
1721
- "prost",
1722
- "prost-types",
2228
+ "prost 0.11.0",
2229
+ "prost-types 0.11.1",
1723
2230
  "rand",
2231
+ "reqwest",
1724
2232
  "ringbuf",
1725
2233
  "rustfsm",
1726
2234
  "serde",
2235
+ "serde_json",
1727
2236
  "siphasher",
1728
2237
  "slotmap",
2238
+ "tar",
1729
2239
  "temporal-client",
1730
2240
  "temporal-sdk-core-api",
1731
2241
  "temporal-sdk-core-protos",
@@ -1733,14 +2243,16 @@ dependencies = [
1733
2243
  "tokio",
1734
2244
  "tokio-stream",
1735
2245
  "tokio-util 0.7.1",
1736
- "tonic",
1737
- "tonic-build",
2246
+ "tonic 0.6.2",
2247
+ "tonic 0.8.1",
2248
+ "tonic-build 0.8.0",
1738
2249
  "tracing",
1739
2250
  "tracing-futures",
1740
2251
  "tracing-opentelemetry",
1741
2252
  "tracing-subscriber",
1742
2253
  "url",
1743
2254
  "uuid",
2255
+ "zip",
1744
2256
  ]
1745
2257
 
1746
2258
  [[package]]
@@ -1752,11 +2264,11 @@ dependencies = [
1752
2264
  "derive_builder",
1753
2265
  "log",
1754
2266
  "opentelemetry 0.17.0",
1755
- "prost-types",
2267
+ "prost-types 0.11.1",
1756
2268
  "temporal-client",
1757
2269
  "temporal-sdk-core-protos",
1758
2270
  "thiserror",
1759
- "tonic",
2271
+ "tonic 0.8.1",
1760
2272
  ]
1761
2273
 
1762
2274
  [[package]]
@@ -1766,14 +2278,14 @@ dependencies = [
1766
2278
  "anyhow",
1767
2279
  "base64",
1768
2280
  "derive_more",
1769
- "prost",
1770
- "prost-types",
2281
+ "prost 0.11.0",
2282
+ "prost-types 0.11.1",
1771
2283
  "rand",
1772
2284
  "serde",
1773
2285
  "serde_json",
1774
2286
  "thiserror",
1775
- "tonic",
1776
- "tonic-build",
2287
+ "tonic 0.8.1",
2288
+ "tonic-build 0.8.0",
1777
2289
  "uuid",
1778
2290
  ]
1779
2291
 
@@ -1787,8 +2299,8 @@ dependencies = [
1787
2299
  "once_cell",
1788
2300
  "opentelemetry 0.16.0",
1789
2301
  "parking_lot 0.12.0",
1790
- "prost",
1791
- "prost-types",
2302
+ "prost 0.11.0",
2303
+ "prost-types 0.11.1",
1792
2304
  "temporal-client",
1793
2305
  "temporal-sdk-core",
1794
2306
  "tokio",
@@ -1830,6 +2342,24 @@ dependencies = [
1830
2342
  "once_cell",
1831
2343
  ]
1832
2344
 
2345
+ [[package]]
2346
+ name = "time"
2347
+ version = "0.3.14"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b"
2350
+ dependencies = [
2351
+ "itoa",
2352
+ "libc",
2353
+ "num_threads",
2354
+ "time-macros",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "time-macros"
2359
+ version = "0.2.4"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
2362
+
1833
2363
  [[package]]
1834
2364
  name = "tinyvec"
1835
2365
  version = "1.5.1"
@@ -1888,9 +2418,9 @@ dependencies = [
1888
2418
 
1889
2419
  [[package]]
1890
2420
  name = "tokio-rustls"
1891
- version = "0.22.0"
2421
+ version = "0.23.4"
1892
2422
  source = "registry+https://github.com/rust-lang/crates.io-index"
1893
- checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"
2423
+ checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
1894
2424
  dependencies = [
1895
2425
  "rustls",
1896
2426
  "tokio",
@@ -1955,13 +2485,46 @@ dependencies = [
1955
2485
  "hyper-timeout",
1956
2486
  "percent-encoding",
1957
2487
  "pin-project",
1958
- "prost",
1959
- "prost-derive",
2488
+ "prost 0.9.0",
2489
+ "prost-derive 0.9.0",
2490
+ "tokio",
2491
+ "tokio-stream",
2492
+ "tokio-util 0.6.9",
2493
+ "tower",
2494
+ "tower-layer",
2495
+ "tower-service",
2496
+ "tracing",
2497
+ "tracing-futures",
2498
+ ]
2499
+
2500
+ [[package]]
2501
+ name = "tonic"
2502
+ version = "0.8.1"
2503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2504
+ checksum = "11cd56bdb54ef93935a6a79dbd1d91f1ebd4c64150fd61654031fd6b8b775c91"
2505
+ dependencies = [
2506
+ "async-stream",
2507
+ "async-trait",
2508
+ "axum",
2509
+ "base64",
2510
+ "bytes",
2511
+ "futures-core",
2512
+ "futures-util",
2513
+ "h2",
2514
+ "http",
2515
+ "http-body",
2516
+ "hyper",
2517
+ "hyper-timeout",
2518
+ "percent-encoding",
2519
+ "pin-project",
2520
+ "prost 0.11.0",
2521
+ "prost-derive 0.11.0",
1960
2522
  "rustls-native-certs",
2523
+ "rustls-pemfile",
1961
2524
  "tokio",
1962
2525
  "tokio-rustls",
1963
2526
  "tokio-stream",
1964
- "tokio-util 0.6.9",
2527
+ "tokio-util 0.7.1",
1965
2528
  "tower",
1966
2529
  "tower-layer",
1967
2530
  "tower-service",
@@ -1976,7 +2539,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
2539
  checksum = "9403f1bafde247186684b230dc6f38b5cd514584e8bec1dd32514be4745fa757"
1977
2540
  dependencies = [
1978
2541
  "proc-macro2",
1979
- "prost-build",
2542
+ "prost-build 0.9.0",
2543
+ "quote",
2544
+ "syn",
2545
+ ]
2546
+
2547
+ [[package]]
2548
+ name = "tonic-build"
2549
+ version = "0.8.0"
2550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2551
+ checksum = "2fbcd2800e34e743b9ae795867d5f77b535d3a3be69fd731e39145719752df8c"
2552
+ dependencies = [
2553
+ "prettyplease",
2554
+ "proc-macro2",
2555
+ "prost-build 0.11.1",
1980
2556
  "quote",
1981
2557
  "syn",
1982
2558
  ]
@@ -2001,6 +2577,25 @@ dependencies = [
2001
2577
  "tracing",
2002
2578
  ]
2003
2579
 
2580
+ [[package]]
2581
+ name = "tower-http"
2582
+ version = "0.3.3"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "7d342c6d58709c0a6d48d48dabbb62d4ef955cf5f0f3bbfd845838e7ae88dbae"
2585
+ dependencies = [
2586
+ "bitflags",
2587
+ "bytes",
2588
+ "futures-core",
2589
+ "futures-util",
2590
+ "http",
2591
+ "http-body",
2592
+ "http-range-header",
2593
+ "pin-project-lite",
2594
+ "tower",
2595
+ "tower-layer",
2596
+ "tower-service",
2597
+ ]
2598
+
2004
2599
  [[package]]
2005
2600
  name = "tower-layer"
2006
2601
  version = "0.3.1"
@@ -2106,6 +2701,12 @@ version = "0.2.3"
2106
2701
  source = "registry+https://github.com/rust-lang/crates.io-index"
2107
2702
  checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2108
2703
 
2704
+ [[package]]
2705
+ name = "typenum"
2706
+ version = "1.15.0"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2709
+
2109
2710
  [[package]]
2110
2711
  name = "unicode-bidi"
2111
2712
  version = "0.3.7"
@@ -2153,9 +2754,9 @@ dependencies = [
2153
2754
 
2154
2755
  [[package]]
2155
2756
  name = "uuid"
2156
- version = "0.8.2"
2757
+ version = "1.1.2"
2157
2758
  source = "registry+https://github.com/rust-lang/crates.io-index"
2158
- checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
2759
+ checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
2159
2760
  dependencies = [
2160
2761
  "getrandom",
2161
2762
  ]
@@ -2219,6 +2820,18 @@ dependencies = [
2219
2820
  "wasm-bindgen-shared",
2220
2821
  ]
2221
2822
 
2823
+ [[package]]
2824
+ name = "wasm-bindgen-futures"
2825
+ version = "0.4.30"
2826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2827
+ checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2"
2828
+ dependencies = [
2829
+ "cfg-if",
2830
+ "js-sys",
2831
+ "wasm-bindgen",
2832
+ "web-sys",
2833
+ ]
2834
+
2222
2835
  [[package]]
2223
2836
  name = "wasm-bindgen-macro"
2224
2837
  version = "0.2.80"
@@ -2260,14 +2873,23 @@ dependencies = [
2260
2873
 
2261
2874
  [[package]]
2262
2875
  name = "webpki"
2263
- version = "0.21.4"
2876
+ version = "0.22.0"
2264
2877
  source = "registry+https://github.com/rust-lang/crates.io-index"
2265
- checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
2878
+ checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
2266
2879
  dependencies = [
2267
2880
  "ring",
2268
2881
  "untrusted",
2269
2882
  ]
2270
2883
 
2884
+ [[package]]
2885
+ name = "webpki-roots"
2886
+ version = "0.22.4"
2887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2888
+ checksum = "f1c760f0d366a6c24a02ed7816e23e691f5d92291f94d15e836006fd11b04daf"
2889
+ dependencies = [
2890
+ "webpki",
2891
+ ]
2892
+
2271
2893
  [[package]]
2272
2894
  name = "which"
2273
2895
  version = "4.2.5"
@@ -2307,11 +2929,24 @@ version = "0.34.0"
2307
2929
  source = "registry+https://github.com/rust-lang/crates.io-index"
2308
2930
  checksum = "5acdd78cb4ba54c0045ac14f62d8f94a03d10047904ae2a40afa1e99d8f70825"
2309
2931
  dependencies = [
2310
- "windows_aarch64_msvc",
2311
- "windows_i686_gnu",
2312
- "windows_i686_msvc",
2313
- "windows_x86_64_gnu",
2314
- "windows_x86_64_msvc",
2932
+ "windows_aarch64_msvc 0.34.0",
2933
+ "windows_i686_gnu 0.34.0",
2934
+ "windows_i686_msvc 0.34.0",
2935
+ "windows_x86_64_gnu 0.34.0",
2936
+ "windows_x86_64_msvc 0.34.0",
2937
+ ]
2938
+
2939
+ [[package]]
2940
+ name = "windows-sys"
2941
+ version = "0.36.1"
2942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2943
+ checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2944
+ dependencies = [
2945
+ "windows_aarch64_msvc 0.36.1",
2946
+ "windows_i686_gnu 0.36.1",
2947
+ "windows_i686_msvc 0.36.1",
2948
+ "windows_x86_64_gnu 0.36.1",
2949
+ "windows_x86_64_msvc 0.36.1",
2315
2950
  ]
2316
2951
 
2317
2952
  [[package]]
@@ -2320,26 +2955,123 @@ version = "0.34.0"
2320
2955
  source = "registry+https://github.com/rust-lang/crates.io-index"
2321
2956
  checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d"
2322
2957
 
2958
+ [[package]]
2959
+ name = "windows_aarch64_msvc"
2960
+ version = "0.36.1"
2961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2962
+ checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2963
+
2323
2964
  [[package]]
2324
2965
  name = "windows_i686_gnu"
2325
2966
  version = "0.34.0"
2326
2967
  source = "registry+https://github.com/rust-lang/crates.io-index"
2327
2968
  checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed"
2328
2969
 
2970
+ [[package]]
2971
+ name = "windows_i686_gnu"
2972
+ version = "0.36.1"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2975
+
2329
2976
  [[package]]
2330
2977
  name = "windows_i686_msvc"
2331
2978
  version = "0.34.0"
2332
2979
  source = "registry+https://github.com/rust-lang/crates.io-index"
2333
2980
  checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956"
2334
2981
 
2982
+ [[package]]
2983
+ name = "windows_i686_msvc"
2984
+ version = "0.36.1"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2987
+
2335
2988
  [[package]]
2336
2989
  name = "windows_x86_64_gnu"
2337
2990
  version = "0.34.0"
2338
2991
  source = "registry+https://github.com/rust-lang/crates.io-index"
2339
2992
  checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4"
2340
2993
 
2994
+ [[package]]
2995
+ name = "windows_x86_64_gnu"
2996
+ version = "0.36.1"
2997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2998
+ checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2999
+
2341
3000
  [[package]]
2342
3001
  name = "windows_x86_64_msvc"
2343
3002
  version = "0.34.0"
2344
3003
  source = "registry+https://github.com/rust-lang/crates.io-index"
2345
3004
  checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9"
3005
+
3006
+ [[package]]
3007
+ name = "windows_x86_64_msvc"
3008
+ version = "0.36.1"
3009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3010
+ checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
3011
+
3012
+ [[package]]
3013
+ name = "winreg"
3014
+ version = "0.10.1"
3015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3016
+ checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
3017
+ dependencies = [
3018
+ "winapi",
3019
+ ]
3020
+
3021
+ [[package]]
3022
+ name = "xattr"
3023
+ version = "0.2.3"
3024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3025
+ checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
3026
+ dependencies = [
3027
+ "libc",
3028
+ ]
3029
+
3030
+ [[package]]
3031
+ name = "zip"
3032
+ version = "0.6.2"
3033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3034
+ checksum = "bf225bcf73bb52cbb496e70475c7bd7a3f769df699c0020f6c7bd9a96dcf0b8d"
3035
+ dependencies = [
3036
+ "aes",
3037
+ "byteorder",
3038
+ "bzip2",
3039
+ "constant_time_eq",
3040
+ "crc32fast",
3041
+ "crossbeam-utils",
3042
+ "flate2",
3043
+ "hmac",
3044
+ "pbkdf2",
3045
+ "sha1",
3046
+ "time",
3047
+ "zstd",
3048
+ ]
3049
+
3050
+ [[package]]
3051
+ name = "zstd"
3052
+ version = "0.10.2+zstd.1.5.2"
3053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3054
+ checksum = "5f4a6bd64f22b5e3e94b4e238669ff9f10815c27a5180108b849d24174a83847"
3055
+ dependencies = [
3056
+ "zstd-safe",
3057
+ ]
3058
+
3059
+ [[package]]
3060
+ name = "zstd-safe"
3061
+ version = "4.1.6+zstd.1.5.2"
3062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3063
+ checksum = "94b61c51bb270702d6167b8ce67340d2754b088d0c091b06e593aa772c3ee9bb"
3064
+ dependencies = [
3065
+ "libc",
3066
+ "zstd-sys",
3067
+ ]
3068
+
3069
+ [[package]]
3070
+ name = "zstd-sys"
3071
+ version = "1.6.3+zstd.1.5.2"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "fc49afa5c8d634e75761feda8c592051e7eeb4683ba827211eb0d731d3402ea8"
3074
+ dependencies = [
3075
+ "cc",
3076
+ "libc",
3077
+ ]