@temporalio/core-bridge 1.11.8 → 1.12.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 +219 -193
- package/Cargo.toml +27 -8
- package/README.md +5 -0
- package/index.js +72 -12
- package/lib/errors.d.ts +25 -0
- package/lib/errors.js +76 -1
- package/lib/errors.js.map +1 -1
- package/lib/index.d.ts +11 -478
- package/lib/index.js +28 -5
- package/lib/index.js.map +1 -1
- package/lib/native.d.ts +330 -0
- package/lib/{worker-tuner.js → native.js} +1 -1
- package/lib/native.js.map +1 -0
- package/package.json +7 -3
- package/releases/aarch64-apple-darwin/index.node +0 -0
- package/releases/aarch64-unknown-linux-gnu/index.node +0 -0
- package/releases/x86_64-apple-darwin/index.node +0 -0
- package/releases/x86_64-pc-windows-msvc/index.node +0 -0
- package/releases/x86_64-unknown-linux-gnu/index.node +0 -0
- package/sdk-core/.cargo/config.toml +8 -2
- package/sdk-core/.cargo/multi-worker-manual-test +15 -0
- package/sdk-core/.github/workflows/per-pr.yml +40 -11
- package/sdk-core/AGENTS.md +73 -0
- package/sdk-core/ARCHITECTURE.md +71 -23
- package/sdk-core/Cargo.toml +1 -1
- package/sdk-core/README.md +4 -4
- package/sdk-core/arch_docs/workflow_task_chunking.md +51 -0
- package/sdk-core/client/Cargo.toml +1 -1
- package/sdk-core/client/src/lib.rs +49 -13
- package/sdk-core/client/src/metrics.rs +15 -16
- package/sdk-core/client/src/proxy.rs +2 -2
- package/sdk-core/client/src/raw.rs +54 -8
- package/sdk-core/client/src/retry.rs +109 -13
- package/sdk-core/client/src/worker_registry/mod.rs +4 -4
- package/sdk-core/client/src/workflow_handle/mod.rs +1 -1
- package/sdk-core/core/Cargo.toml +28 -8
- package/sdk-core/core/src/abstractions.rs +62 -10
- package/sdk-core/core/src/core_tests/activity_tasks.rs +180 -8
- package/sdk-core/core/src/core_tests/mod.rs +4 -4
- package/sdk-core/core/src/core_tests/queries.rs +18 -4
- package/sdk-core/core/src/core_tests/workers.rs +3 -3
- package/sdk-core/core/src/core_tests/workflow_tasks.rs +191 -25
- package/sdk-core/core/src/ephemeral_server/mod.rs +10 -3
- package/sdk-core/core/src/internal_flags.rs +14 -14
- package/sdk-core/core/src/lib.rs +5 -2
- package/sdk-core/core/src/pollers/mod.rs +1 -1
- package/sdk-core/core/src/pollers/poll_buffer.rs +495 -164
- package/sdk-core/core/src/protosext/mod.rs +3 -3
- package/sdk-core/core/src/replay/mod.rs +3 -3
- package/sdk-core/core/src/telemetry/metrics.rs +13 -4
- package/sdk-core/core/src/telemetry/mod.rs +72 -70
- package/sdk-core/core/src/telemetry/otel.rs +51 -54
- package/sdk-core/core/src/test_help/mod.rs +9 -3
- package/sdk-core/core/src/worker/activities/activity_heartbeat_manager.rs +31 -11
- package/sdk-core/core/src/worker/activities/local_activities.rs +35 -28
- package/sdk-core/core/src/worker/activities.rs +58 -30
- package/sdk-core/core/src/worker/client/mocks.rs +3 -3
- package/sdk-core/core/src/worker/client.rs +155 -53
- package/sdk-core/core/src/worker/mod.rs +103 -95
- package/sdk-core/core/src/worker/nexus.rs +100 -73
- package/sdk-core/core/src/worker/tuner/resource_based.rs +14 -6
- package/sdk-core/core/src/worker/tuner.rs +4 -13
- package/sdk-core/core/src/worker/workflow/history_update.rs +47 -51
- package/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +1 -4
- package/sdk-core/core/src/worker/workflow/machines/nexus_operation_state_machine.rs +127 -32
- package/sdk-core/core/src/worker/workflow/machines/transition_coverage.rs +1 -2
- package/sdk-core/core/src/worker/workflow/machines/update_state_machine.rs +1 -1
- package/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +55 -42
- package/sdk-core/core/src/worker/workflow/managed_run.rs +45 -35
- package/sdk-core/core/src/worker/workflow/mod.rs +200 -97
- package/sdk-core/core/src/worker/workflow/wft_poller.rs +175 -4
- package/sdk-core/core/src/worker/workflow/workflow_stream.rs +38 -36
- package/sdk-core/core-api/Cargo.toml +8 -0
- package/sdk-core/core-api/src/envconfig.rs +1544 -0
- package/sdk-core/core-api/src/lib.rs +2 -0
- package/sdk-core/core-api/src/telemetry/metrics.rs +8 -0
- package/sdk-core/core-api/src/telemetry.rs +36 -3
- package/sdk-core/core-api/src/worker.rs +301 -75
- package/sdk-core/docker/docker-compose-telem.yaml +1 -0
- package/sdk-core/etc/prometheus.yaml +6 -2
- package/sdk-core/histories/long_local_activity_with_update-0_history.bin +0 -0
- package/sdk-core/histories/long_local_activity_with_update-1_history.bin +0 -0
- package/sdk-core/histories/long_local_activity_with_update-2_history.bin +0 -0
- package/sdk-core/histories/long_local_activity_with_update-3_history.bin +0 -0
- package/sdk-core/sdk/src/activity_context.rs +5 -0
- package/sdk-core/sdk/src/interceptors.rs +73 -3
- package/sdk-core/sdk/src/lib.rs +15 -16
- package/sdk-core/sdk/src/workflow_context/options.rs +10 -0
- package/sdk-core/sdk/src/workflow_context.rs +48 -29
- package/sdk-core/sdk/src/workflow_future.rs +5 -6
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/.github/workflows/push-to-buf.yml +20 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/CODEOWNERS +6 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/README.md +17 -6
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/VERSION +1 -1
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/buf.lock +7 -2
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/buf.yaml +2 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/cloudservice/v1/request_response.proto +78 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/cloudservice/v1/service.proto +29 -0
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/identity/v1/message.proto +74 -32
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/namespace/v1/message.proto +45 -15
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/nexus/v1/message.proto +7 -1
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/operation/v1/message.proto +3 -3
- package/sdk-core/sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/region/v1/message.proto +3 -3
- package/sdk-core/sdk-core-protos/protos/api_upstream/LICENSE +1 -1
- package/sdk-core/sdk-core-protos/protos/api_upstream/buf.yaml +2 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/openapi/openapiv2.json +1103 -88
- package/sdk-core/sdk-core-protos/protos/api_upstream/openapi/openapiv3.yaml +1233 -151
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/activity/v1/message.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/batch/v1/message.proto +19 -24
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/command/v1/message.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/common/v1/message.proto +12 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/deployment/v1/message.proto +45 -45
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/batch_operation.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/command_type.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/common.proto +15 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/deployment.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/event_type.proto +4 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/namespace.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/nexus.proto +0 -20
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/query.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/reset.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/schedule.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/task_queue.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/update.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/workflow.proto +4 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/errordetails/v1/message.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/export/v1/message.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/failure/v1/message.proto +2 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/filter/v1/message.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/history/v1/message.proto +75 -49
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/namespace/v1/message.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/nexus/v1/message.proto +0 -20
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/protocol/v1/message.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/query/v1/message.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/replication/v1/message.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/rules/v1/message.proto +90 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/schedule/v1/message.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/sdk/v1/enhanced_stack_trace.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/sdk/v1/task_complete_metadata.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/sdk/v1/user_metadata.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/sdk/v1/workflow_metadata.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +17 -38
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/update/v1/message.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/version/v1/message.proto +0 -22
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflow/v1/message.proto +151 -44
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +172 -65
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +69 -28
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/activity_task/activity_task.proto +18 -0
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/common/common.proto +5 -0
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/nexus/nexus.proto +16 -1
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +21 -15
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +3 -0
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/workflow_completion/workflow_completion.proto +3 -0
- package/sdk-core/sdk-core-protos/src/lib.rs +60 -16
- package/sdk-core/test-utils/src/lib.rs +157 -39
- package/sdk-core/tests/cloud_tests.rs +86 -0
- package/sdk-core/tests/fuzzy_workflow.rs +23 -26
- package/sdk-core/tests/global_metric_tests.rs +116 -0
- package/sdk-core/tests/heavy_tests.rs +127 -7
- package/sdk-core/tests/integ_tests/client_tests.rs +2 -8
- package/sdk-core/tests/integ_tests/metrics_tests.rs +100 -106
- package/sdk-core/tests/integ_tests/polling_tests.rs +94 -8
- package/sdk-core/tests/integ_tests/update_tests.rs +75 -6
- package/sdk-core/tests/integ_tests/worker_tests.rs +54 -5
- package/sdk-core/tests/integ_tests/worker_versioning_tests.rs +240 -0
- package/sdk-core/tests/integ_tests/workflow_tests/determinism.rs +41 -3
- package/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +168 -8
- package/sdk-core/tests/integ_tests/workflow_tests/nexus.rs +285 -15
- package/sdk-core/tests/integ_tests/workflow_tests/priority.rs +12 -4
- package/sdk-core/tests/integ_tests/workflow_tests/stickyness.rs +3 -2
- package/sdk-core/tests/integ_tests/workflow_tests.rs +124 -74
- package/sdk-core/tests/main.rs +3 -51
- package/sdk-core/tests/manual_tests.rs +430 -0
- package/sdk-core/tests/runner.rs +28 -2
- package/src/client.rs +565 -0
- package/src/helpers/abort_controller.rs +204 -0
- package/src/helpers/callbacks.rs +299 -0
- package/src/helpers/errors.rs +302 -0
- package/src/helpers/future.rs +44 -0
- package/src/helpers/handles.rs +191 -0
- package/src/helpers/inspect.rs +18 -0
- package/src/helpers/json_string.rs +58 -0
- package/src/helpers/mod.rs +20 -0
- package/src/helpers/properties.rs +71 -0
- package/src/helpers/try_from_js.rs +213 -0
- package/src/helpers/try_into_js.rs +129 -0
- package/src/lib.rs +28 -40
- package/src/logs.rs +111 -0
- package/src/metrics.rs +325 -0
- package/src/runtime.rs +409 -498
- package/src/testing.rs +315 -57
- package/src/worker.rs +907 -378
- package/ts/errors.ts +57 -0
- package/ts/index.ts +10 -596
- package/ts/native.ts +496 -0
- package/lib/worker-tuner.d.ts +0 -167
- package/lib/worker-tuner.js.map +0 -1
- package/src/conversions/slot_supplier_bridge.rs +0 -291
- package/src/conversions.rs +0 -618
- package/src/errors.rs +0 -38
- package/src/helpers.rs +0 -297
- package/ts/worker-tuner.ts +0 -193
package/Cargo.lock
CHANGED
|
@@ -169,9 +169,9 @@ dependencies = [
|
|
|
169
169
|
|
|
170
170
|
[[package]]
|
|
171
171
|
name = "backtrace"
|
|
172
|
-
version = "0.3.
|
|
172
|
+
version = "0.3.75"
|
|
173
173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
-
checksum = "
|
|
174
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
|
175
175
|
dependencies = [
|
|
176
176
|
"addr2line",
|
|
177
177
|
"cfg-if",
|
|
@@ -203,6 +203,16 @@ dependencies = [
|
|
|
203
203
|
"generic-array",
|
|
204
204
|
]
|
|
205
205
|
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "bridge-macros"
|
|
208
|
+
version = "0.1.0"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"convert_case",
|
|
211
|
+
"proc-macro2",
|
|
212
|
+
"quote",
|
|
213
|
+
"syn",
|
|
214
|
+
]
|
|
215
|
+
|
|
206
216
|
[[package]]
|
|
207
217
|
name = "bumpalo"
|
|
208
218
|
version = "3.17.0"
|
|
@@ -242,9 +252,9 @@ dependencies = [
|
|
|
242
252
|
|
|
243
253
|
[[package]]
|
|
244
254
|
name = "cc"
|
|
245
|
-
version = "1.2.
|
|
255
|
+
version = "1.2.22"
|
|
246
256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
-
checksum = "
|
|
257
|
+
checksum = "32db95edf998450acc7881c932f94cd9b05c87b4b2599e8bab064753da4acfd1"
|
|
248
258
|
dependencies = [
|
|
249
259
|
"jobserver",
|
|
250
260
|
"libc",
|
|
@@ -265,9 +275,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
265
275
|
|
|
266
276
|
[[package]]
|
|
267
277
|
name = "chrono"
|
|
268
|
-
version = "0.4.
|
|
278
|
+
version = "0.4.41"
|
|
269
279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
-
checksum = "
|
|
280
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
|
271
281
|
dependencies = [
|
|
272
282
|
"num-traits",
|
|
273
283
|
"serde",
|
|
@@ -289,6 +299,15 @@ version = "0.3.1"
|
|
|
289
299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
300
|
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
291
301
|
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "convert_case"
|
|
304
|
+
version = "0.6.0"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"unicode-segmentation",
|
|
309
|
+
]
|
|
310
|
+
|
|
292
311
|
[[package]]
|
|
293
312
|
name = "core-foundation"
|
|
294
313
|
version = "0.10.0"
|
|
@@ -316,9 +335,9 @@ dependencies = [
|
|
|
316
335
|
|
|
317
336
|
[[package]]
|
|
318
337
|
name = "crc"
|
|
319
|
-
version = "3.
|
|
338
|
+
version = "3.3.0"
|
|
320
339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
-
checksum = "
|
|
340
|
+
checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
|
|
322
341
|
dependencies = [
|
|
323
342
|
"crc-catalog",
|
|
324
343
|
]
|
|
@@ -783,9 +802,9 @@ dependencies = [
|
|
|
783
802
|
|
|
784
803
|
[[package]]
|
|
785
804
|
name = "getrandom"
|
|
786
|
-
version = "0.3.
|
|
805
|
+
version = "0.3.3"
|
|
787
806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
-
checksum = "
|
|
807
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
789
808
|
dependencies = [
|
|
790
809
|
"cfg-if",
|
|
791
810
|
"js-sys",
|
|
@@ -818,7 +837,7 @@ dependencies = [
|
|
|
818
837
|
"futures-sink",
|
|
819
838
|
"futures-timer",
|
|
820
839
|
"futures-util",
|
|
821
|
-
"getrandom 0.3.
|
|
840
|
+
"getrandom 0.3.3",
|
|
822
841
|
"no-std-compat",
|
|
823
842
|
"nonzero_ext",
|
|
824
843
|
"parking_lot",
|
|
@@ -832,9 +851,9 @@ dependencies = [
|
|
|
832
851
|
|
|
833
852
|
[[package]]
|
|
834
853
|
name = "h2"
|
|
835
|
-
version = "0.4.
|
|
854
|
+
version = "0.4.10"
|
|
836
855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
-
checksum = "
|
|
856
|
+
checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
|
|
838
857
|
dependencies = [
|
|
839
858
|
"atomic-waker",
|
|
840
859
|
"bytes",
|
|
@@ -863,9 +882,9 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
|
863
882
|
|
|
864
883
|
[[package]]
|
|
865
884
|
name = "hashbrown"
|
|
866
|
-
version = "0.15.
|
|
885
|
+
version = "0.15.3"
|
|
867
886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
-
checksum = "
|
|
887
|
+
checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
|
|
869
888
|
dependencies = [
|
|
870
889
|
"allocator-api2",
|
|
871
890
|
"equivalent",
|
|
@@ -1007,21 +1026,22 @@ dependencies = [
|
|
|
1007
1026
|
|
|
1008
1027
|
[[package]]
|
|
1009
1028
|
name = "icu_collections"
|
|
1010
|
-
version = "
|
|
1029
|
+
version = "2.0.0"
|
|
1011
1030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
-
checksum = "
|
|
1031
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
1013
1032
|
dependencies = [
|
|
1014
1033
|
"displaydoc",
|
|
1034
|
+
"potential_utf",
|
|
1015
1035
|
"yoke",
|
|
1016
1036
|
"zerofrom",
|
|
1017
1037
|
"zerovec",
|
|
1018
1038
|
]
|
|
1019
1039
|
|
|
1020
1040
|
[[package]]
|
|
1021
|
-
name = "
|
|
1022
|
-
version = "
|
|
1041
|
+
name = "icu_locale_core"
|
|
1042
|
+
version = "2.0.0"
|
|
1023
1043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
-
checksum = "
|
|
1044
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
1025
1045
|
dependencies = [
|
|
1026
1046
|
"displaydoc",
|
|
1027
1047
|
"litemap",
|
|
@@ -1030,31 +1050,11 @@ dependencies = [
|
|
|
1030
1050
|
"zerovec",
|
|
1031
1051
|
]
|
|
1032
1052
|
|
|
1033
|
-
[[package]]
|
|
1034
|
-
name = "icu_locid_transform"
|
|
1035
|
-
version = "1.5.0"
|
|
1036
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
-
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
1038
|
-
dependencies = [
|
|
1039
|
-
"displaydoc",
|
|
1040
|
-
"icu_locid",
|
|
1041
|
-
"icu_locid_transform_data",
|
|
1042
|
-
"icu_provider",
|
|
1043
|
-
"tinystr",
|
|
1044
|
-
"zerovec",
|
|
1045
|
-
]
|
|
1046
|
-
|
|
1047
|
-
[[package]]
|
|
1048
|
-
name = "icu_locid_transform_data"
|
|
1049
|
-
version = "1.5.1"
|
|
1050
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
-
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
1052
|
-
|
|
1053
1053
|
[[package]]
|
|
1054
1054
|
name = "icu_normalizer"
|
|
1055
|
-
version = "
|
|
1055
|
+
version = "2.0.0"
|
|
1056
1056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
-
checksum = "
|
|
1057
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
1058
1058
|
dependencies = [
|
|
1059
1059
|
"displaydoc",
|
|
1060
1060
|
"icu_collections",
|
|
@@ -1062,67 +1062,54 @@ dependencies = [
|
|
|
1062
1062
|
"icu_properties",
|
|
1063
1063
|
"icu_provider",
|
|
1064
1064
|
"smallvec",
|
|
1065
|
-
"utf16_iter",
|
|
1066
|
-
"utf8_iter",
|
|
1067
|
-
"write16",
|
|
1068
1065
|
"zerovec",
|
|
1069
1066
|
]
|
|
1070
1067
|
|
|
1071
1068
|
[[package]]
|
|
1072
1069
|
name = "icu_normalizer_data"
|
|
1073
|
-
version = "
|
|
1070
|
+
version = "2.0.0"
|
|
1074
1071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
-
checksum = "
|
|
1072
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
1076
1073
|
|
|
1077
1074
|
[[package]]
|
|
1078
1075
|
name = "icu_properties"
|
|
1079
|
-
version = "
|
|
1076
|
+
version = "2.0.0"
|
|
1080
1077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "
|
|
1078
|
+
checksum = "2549ca8c7241c82f59c80ba2a6f415d931c5b58d24fb8412caa1a1f02c49139a"
|
|
1082
1079
|
dependencies = [
|
|
1083
1080
|
"displaydoc",
|
|
1084
1081
|
"icu_collections",
|
|
1085
|
-
"
|
|
1082
|
+
"icu_locale_core",
|
|
1086
1083
|
"icu_properties_data",
|
|
1087
1084
|
"icu_provider",
|
|
1088
|
-
"
|
|
1085
|
+
"potential_utf",
|
|
1086
|
+
"zerotrie",
|
|
1089
1087
|
"zerovec",
|
|
1090
1088
|
]
|
|
1091
1089
|
|
|
1092
1090
|
[[package]]
|
|
1093
1091
|
name = "icu_properties_data"
|
|
1094
|
-
version = "
|
|
1092
|
+
version = "2.0.0"
|
|
1095
1093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
-
checksum = "
|
|
1094
|
+
checksum = "8197e866e47b68f8f7d95249e172903bec06004b18b2937f1095d40a0c57de04"
|
|
1097
1095
|
|
|
1098
1096
|
[[package]]
|
|
1099
1097
|
name = "icu_provider"
|
|
1100
|
-
version = "
|
|
1098
|
+
version = "2.0.0"
|
|
1101
1099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
-
checksum = "
|
|
1100
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
1103
1101
|
dependencies = [
|
|
1104
1102
|
"displaydoc",
|
|
1105
|
-
"
|
|
1106
|
-
"icu_provider_macros",
|
|
1103
|
+
"icu_locale_core",
|
|
1107
1104
|
"stable_deref_trait",
|
|
1108
1105
|
"tinystr",
|
|
1109
1106
|
"writeable",
|
|
1110
1107
|
"yoke",
|
|
1111
1108
|
"zerofrom",
|
|
1109
|
+
"zerotrie",
|
|
1112
1110
|
"zerovec",
|
|
1113
1111
|
]
|
|
1114
1112
|
|
|
1115
|
-
[[package]]
|
|
1116
|
-
name = "icu_provider_macros"
|
|
1117
|
-
version = "1.5.0"
|
|
1118
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
-
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1120
|
-
dependencies = [
|
|
1121
|
-
"proc-macro2",
|
|
1122
|
-
"quote",
|
|
1123
|
-
"syn",
|
|
1124
|
-
]
|
|
1125
|
-
|
|
1126
1113
|
[[package]]
|
|
1127
1114
|
name = "ident_case"
|
|
1128
1115
|
version = "1.0.1"
|
|
@@ -1142,9 +1129,9 @@ dependencies = [
|
|
|
1142
1129
|
|
|
1143
1130
|
[[package]]
|
|
1144
1131
|
name = "idna_adapter"
|
|
1145
|
-
version = "1.2.
|
|
1132
|
+
version = "1.2.1"
|
|
1146
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
-
checksum = "
|
|
1134
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1148
1135
|
dependencies = [
|
|
1149
1136
|
"icu_normalizer",
|
|
1150
1137
|
"icu_properties",
|
|
@@ -1167,7 +1154,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1167
1154
|
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
1168
1155
|
dependencies = [
|
|
1169
1156
|
"equivalent",
|
|
1170
|
-
"hashbrown 0.15.
|
|
1157
|
+
"hashbrown 0.15.3",
|
|
1171
1158
|
]
|
|
1172
1159
|
|
|
1173
1160
|
[[package]]
|
|
@@ -1224,7 +1211,7 @@ version = "0.1.33"
|
|
|
1224
1211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
1212
|
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
1226
1213
|
dependencies = [
|
|
1227
|
-
"getrandom 0.3.
|
|
1214
|
+
"getrandom 0.3.3",
|
|
1228
1215
|
"libc",
|
|
1229
1216
|
]
|
|
1230
1217
|
|
|
@@ -1252,12 +1239,12 @@ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
|
1252
1239
|
|
|
1253
1240
|
[[package]]
|
|
1254
1241
|
name = "libloading"
|
|
1255
|
-
version = "0.8.
|
|
1242
|
+
version = "0.8.7"
|
|
1256
1243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
-
checksum = "
|
|
1244
|
+
checksum = "6a793df0d7afeac54f95b471d3af7f0d4fb975699f972341a4b76988d49cdf0c"
|
|
1258
1245
|
dependencies = [
|
|
1259
1246
|
"cfg-if",
|
|
1260
|
-
"windows-targets 0.
|
|
1247
|
+
"windows-targets 0.53.0",
|
|
1261
1248
|
]
|
|
1262
1249
|
|
|
1263
1250
|
[[package]]
|
|
@@ -1279,9 +1266,9 @@ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
|
1279
1266
|
|
|
1280
1267
|
[[package]]
|
|
1281
1268
|
name = "litemap"
|
|
1282
|
-
version = "0.
|
|
1269
|
+
version = "0.8.0"
|
|
1283
1270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
-
checksum = "
|
|
1271
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
1285
1272
|
|
|
1286
1273
|
[[package]]
|
|
1287
1274
|
name = "lock_api"
|
|
@@ -1305,9 +1292,15 @@ version = "0.13.0"
|
|
|
1305
1292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
1293
|
checksum = "227748d55f2f0ab4735d87fd623798cb6b664512fe979705f829c9f81c934465"
|
|
1307
1294
|
dependencies = [
|
|
1308
|
-
"hashbrown 0.15.
|
|
1295
|
+
"hashbrown 0.15.3",
|
|
1309
1296
|
]
|
|
1310
1297
|
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "lru-slab"
|
|
1300
|
+
version = "0.1.2"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1303
|
+
|
|
1311
1304
|
[[package]]
|
|
1312
1305
|
name = "lzma-rs"
|
|
1313
1306
|
version = "0.3.0"
|
|
@@ -1404,9 +1397,9 @@ dependencies = [
|
|
|
1404
1397
|
|
|
1405
1398
|
[[package]]
|
|
1406
1399
|
name = "multimap"
|
|
1407
|
-
version = "0.10.
|
|
1400
|
+
version = "0.10.1"
|
|
1408
1401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
-
checksum = "
|
|
1402
|
+
checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
|
1410
1403
|
|
|
1411
1404
|
[[package]]
|
|
1412
1405
|
name = "neon"
|
|
@@ -1503,84 +1496,72 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
|
1503
1496
|
|
|
1504
1497
|
[[package]]
|
|
1505
1498
|
name = "opentelemetry"
|
|
1506
|
-
version = "0.
|
|
1499
|
+
version = "0.29.1"
|
|
1507
1500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
-
checksum = "
|
|
1501
|
+
checksum = "9e87237e2775f74896f9ad219d26a2081751187eb7c9f5c58dde20a23b95d16c"
|
|
1509
1502
|
dependencies = [
|
|
1510
1503
|
"futures-core",
|
|
1511
1504
|
"futures-sink",
|
|
1512
1505
|
"js-sys",
|
|
1513
|
-
"once_cell",
|
|
1514
1506
|
"pin-project-lite",
|
|
1515
|
-
"thiserror
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
[[package]]
|
|
1519
|
-
name = "opentelemetry"
|
|
1520
|
-
version = "0.26.0"
|
|
1521
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
-
checksum = "570074cc999d1a58184080966e5bd3bf3a9a4af650c3b05047c2621e7405cd17"
|
|
1523
|
-
dependencies = [
|
|
1524
|
-
"futures-core",
|
|
1525
|
-
"futures-sink",
|
|
1526
|
-
"js-sys",
|
|
1527
|
-
"once_cell",
|
|
1528
|
-
"pin-project-lite",
|
|
1529
|
-
"thiserror 1.0.69",
|
|
1507
|
+
"thiserror 2.0.12",
|
|
1508
|
+
"tracing",
|
|
1530
1509
|
]
|
|
1531
1510
|
|
|
1532
1511
|
[[package]]
|
|
1533
1512
|
name = "opentelemetry-http"
|
|
1534
|
-
version = "0.
|
|
1513
|
+
version = "0.29.0"
|
|
1535
1514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
-
checksum = "
|
|
1515
|
+
checksum = "46d7ab32b827b5b495bd90fa95a6cb65ccc293555dcc3199ae2937d2d237c8ed"
|
|
1537
1516
|
dependencies = [
|
|
1538
1517
|
"async-trait",
|
|
1539
1518
|
"bytes",
|
|
1540
1519
|
"http",
|
|
1541
|
-
"opentelemetry
|
|
1520
|
+
"opentelemetry",
|
|
1542
1521
|
"reqwest",
|
|
1522
|
+
"tracing",
|
|
1543
1523
|
]
|
|
1544
1524
|
|
|
1545
1525
|
[[package]]
|
|
1546
1526
|
name = "opentelemetry-otlp"
|
|
1547
|
-
version = "0.
|
|
1527
|
+
version = "0.29.0"
|
|
1548
1528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
-
checksum = "
|
|
1529
|
+
checksum = "d899720fe06916ccba71c01d04ecd77312734e2de3467fd30d9d580c8ce85656"
|
|
1550
1530
|
dependencies = [
|
|
1551
|
-
"async-trait",
|
|
1552
1531
|
"futures-core",
|
|
1553
1532
|
"http",
|
|
1554
|
-
"opentelemetry
|
|
1533
|
+
"opentelemetry",
|
|
1555
1534
|
"opentelemetry-http",
|
|
1556
1535
|
"opentelemetry-proto",
|
|
1557
1536
|
"opentelemetry_sdk",
|
|
1558
1537
|
"prost",
|
|
1559
1538
|
"reqwest",
|
|
1560
|
-
"thiserror
|
|
1539
|
+
"thiserror 2.0.12",
|
|
1561
1540
|
"tokio",
|
|
1562
1541
|
"tonic",
|
|
1542
|
+
"tracing",
|
|
1563
1543
|
]
|
|
1564
1544
|
|
|
1565
1545
|
[[package]]
|
|
1566
1546
|
name = "opentelemetry-prometheus"
|
|
1567
|
-
version = "0.
|
|
1568
|
-
source = "
|
|
1547
|
+
version = "0.29.1"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "098a71a4430bb712be6130ed777335d2e5b19bc8566de5f2edddfce906def6ab"
|
|
1569
1550
|
dependencies = [
|
|
1570
1551
|
"once_cell",
|
|
1571
|
-
"opentelemetry
|
|
1552
|
+
"opentelemetry",
|
|
1572
1553
|
"opentelemetry_sdk",
|
|
1573
1554
|
"prometheus",
|
|
1574
|
-
"
|
|
1555
|
+
"tracing",
|
|
1575
1556
|
]
|
|
1576
1557
|
|
|
1577
1558
|
[[package]]
|
|
1578
1559
|
name = "opentelemetry-proto"
|
|
1579
|
-
version = "0.
|
|
1560
|
+
version = "0.29.0"
|
|
1580
1561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
-
checksum = "
|
|
1562
|
+
checksum = "8c40da242381435e18570d5b9d50aca2a4f4f4d8e146231adb4e7768023309b3"
|
|
1582
1563
|
dependencies = [
|
|
1583
|
-
"opentelemetry
|
|
1564
|
+
"opentelemetry",
|
|
1584
1565
|
"opentelemetry_sdk",
|
|
1585
1566
|
"prost",
|
|
1586
1567
|
"tonic",
|
|
@@ -1588,23 +1569,32 @@ dependencies = [
|
|
|
1588
1569
|
|
|
1589
1570
|
[[package]]
|
|
1590
1571
|
name = "opentelemetry_sdk"
|
|
1591
|
-
version = "0.
|
|
1572
|
+
version = "0.29.0"
|
|
1592
1573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1593
|
-
checksum = "
|
|
1574
|
+
checksum = "afdefb21d1d47394abc1ba6c57363ab141be19e27cc70d0e422b7f303e4d290b"
|
|
1594
1575
|
dependencies = [
|
|
1595
|
-
"async-trait",
|
|
1596
1576
|
"futures-channel",
|
|
1597
1577
|
"futures-executor",
|
|
1598
1578
|
"futures-util",
|
|
1599
1579
|
"glob",
|
|
1600
|
-
"
|
|
1601
|
-
"opentelemetry 0.26.0",
|
|
1580
|
+
"opentelemetry",
|
|
1602
1581
|
"percent-encoding",
|
|
1603
|
-
"rand 0.
|
|
1582
|
+
"rand 0.9.1",
|
|
1604
1583
|
"serde_json",
|
|
1605
|
-
"thiserror
|
|
1584
|
+
"thiserror 2.0.12",
|
|
1606
1585
|
"tokio",
|
|
1607
1586
|
"tokio-stream",
|
|
1587
|
+
"tracing",
|
|
1588
|
+
]
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "os_pipe"
|
|
1592
|
+
version = "1.2.1"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "5ffd2b0a5634335b135d5728d84c5e0fd726954b87111f7506a61c502280d982"
|
|
1595
|
+
dependencies = [
|
|
1596
|
+
"libc",
|
|
1597
|
+
"windows-sys 0.59.0",
|
|
1608
1598
|
]
|
|
1609
1599
|
|
|
1610
1600
|
[[package]]
|
|
@@ -1724,6 +1714,15 @@ dependencies = [
|
|
|
1724
1714
|
"portable-atomic",
|
|
1725
1715
|
]
|
|
1726
1716
|
|
|
1717
|
+
[[package]]
|
|
1718
|
+
name = "potential_utf"
|
|
1719
|
+
version = "0.1.2"
|
|
1720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
|
1722
|
+
dependencies = [
|
|
1723
|
+
"zerovec",
|
|
1724
|
+
]
|
|
1725
|
+
|
|
1727
1726
|
[[package]]
|
|
1728
1727
|
name = "powerfmt"
|
|
1729
1728
|
version = "0.2.0"
|
|
@@ -1786,9 +1785,9 @@ dependencies = [
|
|
|
1786
1785
|
|
|
1787
1786
|
[[package]]
|
|
1788
1787
|
name = "prometheus"
|
|
1789
|
-
version = "0.
|
|
1788
|
+
version = "0.14.0"
|
|
1790
1789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
-
checksum = "
|
|
1790
|
+
checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a"
|
|
1792
1791
|
dependencies = [
|
|
1793
1792
|
"cfg-if",
|
|
1794
1793
|
"fnv",
|
|
@@ -1796,7 +1795,7 @@ dependencies = [
|
|
|
1796
1795
|
"memchr",
|
|
1797
1796
|
"parking_lot",
|
|
1798
1797
|
"protobuf",
|
|
1799
|
-
"thiserror
|
|
1798
|
+
"thiserror 2.0.12",
|
|
1800
1799
|
]
|
|
1801
1800
|
|
|
1802
1801
|
[[package]]
|
|
@@ -1853,9 +1852,9 @@ dependencies = [
|
|
|
1853
1852
|
|
|
1854
1853
|
[[package]]
|
|
1855
1854
|
name = "prost-wkt"
|
|
1856
|
-
version = "0.6.
|
|
1855
|
+
version = "0.6.1"
|
|
1857
1856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1858
|
-
checksum = "
|
|
1857
|
+
checksum = "497e1e938f0c09ef9cabe1d49437b4016e03e8f82fbbe5d1c62a9b61b9decae1"
|
|
1859
1858
|
dependencies = [
|
|
1860
1859
|
"chrono",
|
|
1861
1860
|
"inventory",
|
|
@@ -1868,9 +1867,9 @@ dependencies = [
|
|
|
1868
1867
|
|
|
1869
1868
|
[[package]]
|
|
1870
1869
|
name = "prost-wkt-build"
|
|
1871
|
-
version = "0.6.
|
|
1870
|
+
version = "0.6.1"
|
|
1872
1871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
-
checksum = "
|
|
1872
|
+
checksum = "07b8bf115b70a7aa5af1fd5d6e9418492e9ccb6e4785e858c938e28d132a884b"
|
|
1874
1873
|
dependencies = [
|
|
1875
1874
|
"heck",
|
|
1876
1875
|
"prost",
|
|
@@ -1881,9 +1880,9 @@ dependencies = [
|
|
|
1881
1880
|
|
|
1882
1881
|
[[package]]
|
|
1883
1882
|
name = "prost-wkt-types"
|
|
1884
|
-
version = "0.6.
|
|
1883
|
+
version = "0.6.1"
|
|
1885
1884
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
-
checksum = "
|
|
1885
|
+
checksum = "c8cdde6df0a98311c839392ca2f2f0bcecd545f86a62b4e3c6a49c336e970fe5"
|
|
1887
1886
|
dependencies = [
|
|
1888
1887
|
"chrono",
|
|
1889
1888
|
"prost",
|
|
@@ -1899,9 +1898,23 @@ dependencies = [
|
|
|
1899
1898
|
|
|
1900
1899
|
[[package]]
|
|
1901
1900
|
name = "protobuf"
|
|
1902
|
-
version = "
|
|
1901
|
+
version = "3.7.2"
|
|
1902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1903
|
+
checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
|
|
1904
|
+
dependencies = [
|
|
1905
|
+
"once_cell",
|
|
1906
|
+
"protobuf-support",
|
|
1907
|
+
"thiserror 1.0.69",
|
|
1908
|
+
]
|
|
1909
|
+
|
|
1910
|
+
[[package]]
|
|
1911
|
+
name = "protobuf-support"
|
|
1912
|
+
version = "3.7.2"
|
|
1903
1913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1904
|
-
checksum = "
|
|
1914
|
+
checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
|
|
1915
|
+
dependencies = [
|
|
1916
|
+
"thiserror 1.0.69",
|
|
1917
|
+
]
|
|
1905
1918
|
|
|
1906
1919
|
[[package]]
|
|
1907
1920
|
name = "quanta"
|
|
@@ -1920,9 +1933,9 @@ dependencies = [
|
|
|
1920
1933
|
|
|
1921
1934
|
[[package]]
|
|
1922
1935
|
name = "quinn"
|
|
1923
|
-
version = "0.11.
|
|
1936
|
+
version = "0.11.8"
|
|
1924
1937
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1925
|
-
checksum = "
|
|
1938
|
+
checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
|
|
1926
1939
|
dependencies = [
|
|
1927
1940
|
"bytes",
|
|
1928
1941
|
"cfg_aliases",
|
|
@@ -1940,12 +1953,13 @@ dependencies = [
|
|
|
1940
1953
|
|
|
1941
1954
|
[[package]]
|
|
1942
1955
|
name = "quinn-proto"
|
|
1943
|
-
version = "0.11.
|
|
1956
|
+
version = "0.11.12"
|
|
1944
1957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1945
|
-
checksum = "
|
|
1958
|
+
checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
|
|
1946
1959
|
dependencies = [
|
|
1947
1960
|
"bytes",
|
|
1948
|
-
"getrandom 0.3.
|
|
1961
|
+
"getrandom 0.3.3",
|
|
1962
|
+
"lru-slab",
|
|
1949
1963
|
"rand 0.9.1",
|
|
1950
1964
|
"ring",
|
|
1951
1965
|
"rustc-hash",
|
|
@@ -1960,9 +1974,9 @@ dependencies = [
|
|
|
1960
1974
|
|
|
1961
1975
|
[[package]]
|
|
1962
1976
|
name = "quinn-udp"
|
|
1963
|
-
version = "0.5.
|
|
1977
|
+
version = "0.5.12"
|
|
1964
1978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1965
|
-
checksum = "
|
|
1979
|
+
checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
|
|
1966
1980
|
dependencies = [
|
|
1967
1981
|
"cfg_aliases",
|
|
1968
1982
|
"libc",
|
|
@@ -2043,7 +2057,7 @@ version = "0.9.3"
|
|
|
2043
2057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
2058
|
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2045
2059
|
dependencies = [
|
|
2046
|
-
"getrandom 0.3.
|
|
2060
|
+
"getrandom 0.3.3",
|
|
2047
2061
|
]
|
|
2048
2062
|
|
|
2049
2063
|
[[package]]
|
|
@@ -2057,9 +2071,9 @@ dependencies = [
|
|
|
2057
2071
|
|
|
2058
2072
|
[[package]]
|
|
2059
2073
|
name = "redox_syscall"
|
|
2060
|
-
version = "0.5.
|
|
2074
|
+
version = "0.5.12"
|
|
2061
2075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2062
|
-
checksum = "
|
|
2076
|
+
checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
|
|
2063
2077
|
dependencies = [
|
|
2064
2078
|
"bitflags",
|
|
2065
2079
|
]
|
|
@@ -2216,9 +2230,9 @@ version = "0.1.0"
|
|
|
2216
2230
|
|
|
2217
2231
|
[[package]]
|
|
2218
2232
|
name = "rustix"
|
|
2219
|
-
version = "1.0.
|
|
2233
|
+
version = "1.0.7"
|
|
2220
2234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2221
|
-
checksum = "
|
|
2235
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
|
2222
2236
|
dependencies = [
|
|
2223
2237
|
"bitflags",
|
|
2224
2238
|
"errno",
|
|
@@ -2229,9 +2243,9 @@ dependencies = [
|
|
|
2229
2243
|
|
|
2230
2244
|
[[package]]
|
|
2231
2245
|
name = "rustls"
|
|
2232
|
-
version = "0.23.
|
|
2246
|
+
version = "0.23.27"
|
|
2233
2247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2234
|
-
checksum = "
|
|
2248
|
+
checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
|
|
2235
2249
|
dependencies = [
|
|
2236
2250
|
"log",
|
|
2237
2251
|
"once_cell",
|
|
@@ -2265,18 +2279,19 @@ dependencies = [
|
|
|
2265
2279
|
|
|
2266
2280
|
[[package]]
|
|
2267
2281
|
name = "rustls-pki-types"
|
|
2268
|
-
version = "1.
|
|
2282
|
+
version = "1.12.0"
|
|
2269
2283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2270
|
-
checksum = "
|
|
2284
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
|
2271
2285
|
dependencies = [
|
|
2272
2286
|
"web-time",
|
|
2287
|
+
"zeroize",
|
|
2273
2288
|
]
|
|
2274
2289
|
|
|
2275
2290
|
[[package]]
|
|
2276
2291
|
name = "rustls-webpki"
|
|
2277
|
-
version = "0.103.
|
|
2292
|
+
version = "0.103.3"
|
|
2278
2293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2279
|
-
checksum = "
|
|
2294
|
+
checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
|
|
2280
2295
|
dependencies = [
|
|
2281
2296
|
"ring",
|
|
2282
2297
|
"rustls-pki-types",
|
|
@@ -2499,9 +2514,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
2499
2514
|
|
|
2500
2515
|
[[package]]
|
|
2501
2516
|
name = "syn"
|
|
2502
|
-
version = "2.0.
|
|
2517
|
+
version = "2.0.101"
|
|
2503
2518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2504
|
-
checksum = "
|
|
2519
|
+
checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
|
|
2505
2520
|
dependencies = [
|
|
2506
2521
|
"proc-macro2",
|
|
2507
2522
|
"quote",
|
|
@@ -2530,9 +2545,9 @@ dependencies = [
|
|
|
2530
2545
|
|
|
2531
2546
|
[[package]]
|
|
2532
2547
|
name = "synstructure"
|
|
2533
|
-
version = "0.13.
|
|
2548
|
+
version = "0.13.2"
|
|
2534
2549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2535
|
-
checksum = "
|
|
2550
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2536
2551
|
dependencies = [
|
|
2537
2552
|
"proc-macro2",
|
|
2538
2553
|
"quote",
|
|
@@ -2565,12 +2580,12 @@ dependencies = [
|
|
|
2565
2580
|
|
|
2566
2581
|
[[package]]
|
|
2567
2582
|
name = "tempfile"
|
|
2568
|
-
version = "3.
|
|
2583
|
+
version = "3.20.0"
|
|
2569
2584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
|
-
checksum = "
|
|
2585
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
|
2571
2586
|
dependencies = [
|
|
2572
2587
|
"fastrand",
|
|
2573
|
-
"getrandom 0.3.
|
|
2588
|
+
"getrandom 0.3.3",
|
|
2574
2589
|
"once_cell",
|
|
2575
2590
|
"rustix",
|
|
2576
2591
|
"windows-sys 0.59.0",
|
|
@@ -2629,7 +2644,7 @@ dependencies = [
|
|
|
2629
2644
|
"itertools",
|
|
2630
2645
|
"lru",
|
|
2631
2646
|
"mockall",
|
|
2632
|
-
"opentelemetry
|
|
2647
|
+
"opentelemetry",
|
|
2633
2648
|
"opentelemetry-otlp",
|
|
2634
2649
|
"opentelemetry-prometheus",
|
|
2635
2650
|
"opentelemetry_sdk",
|
|
@@ -2671,7 +2686,7 @@ dependencies = [
|
|
|
2671
2686
|
"async-trait",
|
|
2672
2687
|
"derive_builder",
|
|
2673
2688
|
"derive_more",
|
|
2674
|
-
"opentelemetry
|
|
2689
|
+
"opentelemetry",
|
|
2675
2690
|
"prost",
|
|
2676
2691
|
"serde_json",
|
|
2677
2692
|
"temporal-sdk-core-protos",
|
|
@@ -2706,20 +2721,26 @@ dependencies = [
|
|
|
2706
2721
|
name = "temporal-sdk-typescript-bridge"
|
|
2707
2722
|
version = "0.1.0"
|
|
2708
2723
|
dependencies = [
|
|
2724
|
+
"anyhow",
|
|
2709
2725
|
"async-trait",
|
|
2726
|
+
"bridge-macros",
|
|
2710
2727
|
"futures",
|
|
2711
|
-
"log",
|
|
2712
2728
|
"neon",
|
|
2713
|
-
"
|
|
2714
|
-
"
|
|
2729
|
+
"opentelemetry",
|
|
2730
|
+
"os_pipe",
|
|
2715
2731
|
"parking_lot",
|
|
2716
2732
|
"prost",
|
|
2717
2733
|
"prost-types",
|
|
2734
|
+
"serde",
|
|
2718
2735
|
"serde_json",
|
|
2719
2736
|
"temporal-client",
|
|
2720
2737
|
"temporal-sdk-core",
|
|
2738
|
+
"thiserror 2.0.12",
|
|
2721
2739
|
"tokio",
|
|
2722
2740
|
"tokio-stream",
|
|
2741
|
+
"tonic",
|
|
2742
|
+
"tracing",
|
|
2743
|
+
"tracing-subscriber",
|
|
2723
2744
|
]
|
|
2724
2745
|
|
|
2725
2746
|
[[package]]
|
|
@@ -2799,9 +2820,9 @@ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
|
2799
2820
|
|
|
2800
2821
|
[[package]]
|
|
2801
2822
|
name = "tinystr"
|
|
2802
|
-
version = "0.
|
|
2823
|
+
version = "0.8.1"
|
|
2803
2824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2804
|
-
checksum = "
|
|
2825
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
2805
2826
|
dependencies = [
|
|
2806
2827
|
"displaydoc",
|
|
2807
2828
|
"zerovec",
|
|
@@ -2824,9 +2845,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2824
2845
|
|
|
2825
2846
|
[[package]]
|
|
2826
2847
|
name = "tokio"
|
|
2827
|
-
version = "1.
|
|
2848
|
+
version = "1.45.0"
|
|
2828
2849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2829
|
-
checksum = "
|
|
2850
|
+
checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
|
|
2830
2851
|
dependencies = [
|
|
2831
2852
|
"backtrace",
|
|
2832
2853
|
"bytes",
|
|
@@ -3076,6 +3097,12 @@ version = "1.0.18"
|
|
|
3076
3097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
3098
|
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
3078
3099
|
|
|
3100
|
+
[[package]]
|
|
3101
|
+
name = "unicode-segmentation"
|
|
3102
|
+
version = "1.12.0"
|
|
3103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3104
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3105
|
+
|
|
3079
3106
|
[[package]]
|
|
3080
3107
|
name = "unicode-xid"
|
|
3081
3108
|
version = "0.2.6"
|
|
@@ -3099,12 +3126,6 @@ dependencies = [
|
|
|
3099
3126
|
"percent-encoding",
|
|
3100
3127
|
]
|
|
3101
3128
|
|
|
3102
|
-
[[package]]
|
|
3103
|
-
name = "utf16_iter"
|
|
3104
|
-
version = "1.0.5"
|
|
3105
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3106
|
-
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
3107
|
-
|
|
3108
3129
|
[[package]]
|
|
3109
3130
|
name = "utf8_iter"
|
|
3110
3131
|
version = "1.0.4"
|
|
@@ -3117,7 +3138,7 @@ version = "1.16.0"
|
|
|
3117
3138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3118
3139
|
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
3119
3140
|
dependencies = [
|
|
3120
|
-
"getrandom 0.3.
|
|
3141
|
+
"getrandom 0.3.3",
|
|
3121
3142
|
]
|
|
3122
3143
|
|
|
3123
3144
|
[[package]]
|
|
@@ -3525,17 +3546,11 @@ dependencies = [
|
|
|
3525
3546
|
"bitflags",
|
|
3526
3547
|
]
|
|
3527
3548
|
|
|
3528
|
-
[[package]]
|
|
3529
|
-
name = "write16"
|
|
3530
|
-
version = "1.0.0"
|
|
3531
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3532
|
-
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
3533
|
-
|
|
3534
3549
|
[[package]]
|
|
3535
3550
|
name = "writeable"
|
|
3536
|
-
version = "0.
|
|
3551
|
+
version = "0.6.1"
|
|
3537
3552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3538
|
-
checksum = "
|
|
3553
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
3539
3554
|
|
|
3540
3555
|
[[package]]
|
|
3541
3556
|
name = "xattr"
|
|
@@ -3558,9 +3573,9 @@ dependencies = [
|
|
|
3558
3573
|
|
|
3559
3574
|
[[package]]
|
|
3560
3575
|
name = "yoke"
|
|
3561
|
-
version = "0.
|
|
3576
|
+
version = "0.8.0"
|
|
3562
3577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3563
|
-
checksum = "
|
|
3578
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
3564
3579
|
dependencies = [
|
|
3565
3580
|
"serde",
|
|
3566
3581
|
"stable_deref_trait",
|
|
@@ -3570,9 +3585,9 @@ dependencies = [
|
|
|
3570
3585
|
|
|
3571
3586
|
[[package]]
|
|
3572
3587
|
name = "yoke-derive"
|
|
3573
|
-
version = "0.
|
|
3588
|
+
version = "0.8.0"
|
|
3574
3589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3575
|
-
checksum = "
|
|
3590
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
3576
3591
|
dependencies = [
|
|
3577
3592
|
"proc-macro2",
|
|
3578
3593
|
"quote",
|
|
@@ -3582,18 +3597,18 @@ dependencies = [
|
|
|
3582
3597
|
|
|
3583
3598
|
[[package]]
|
|
3584
3599
|
name = "zerocopy"
|
|
3585
|
-
version = "0.8.
|
|
3600
|
+
version = "0.8.25"
|
|
3586
3601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3587
|
-
checksum = "
|
|
3602
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
|
3588
3603
|
dependencies = [
|
|
3589
3604
|
"zerocopy-derive",
|
|
3590
3605
|
]
|
|
3591
3606
|
|
|
3592
3607
|
[[package]]
|
|
3593
3608
|
name = "zerocopy-derive"
|
|
3594
|
-
version = "0.8.
|
|
3609
|
+
version = "0.8.25"
|
|
3595
3610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3596
|
-
checksum = "
|
|
3611
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
|
3597
3612
|
dependencies = [
|
|
3598
3613
|
"proc-macro2",
|
|
3599
3614
|
"quote",
|
|
@@ -3641,11 +3656,22 @@ dependencies = [
|
|
|
3641
3656
|
"syn",
|
|
3642
3657
|
]
|
|
3643
3658
|
|
|
3659
|
+
[[package]]
|
|
3660
|
+
name = "zerotrie"
|
|
3661
|
+
version = "0.2.2"
|
|
3662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3663
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
3664
|
+
dependencies = [
|
|
3665
|
+
"displaydoc",
|
|
3666
|
+
"yoke",
|
|
3667
|
+
"zerofrom",
|
|
3668
|
+
]
|
|
3669
|
+
|
|
3644
3670
|
[[package]]
|
|
3645
3671
|
name = "zerovec"
|
|
3646
|
-
version = "0.
|
|
3672
|
+
version = "0.11.2"
|
|
3647
3673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3648
|
-
checksum = "
|
|
3674
|
+
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
|
|
3649
3675
|
dependencies = [
|
|
3650
3676
|
"yoke",
|
|
3651
3677
|
"zerofrom",
|
|
@@ -3654,9 +3680,9 @@ dependencies = [
|
|
|
3654
3680
|
|
|
3655
3681
|
[[package]]
|
|
3656
3682
|
name = "zerovec-derive"
|
|
3657
|
-
version = "0.
|
|
3683
|
+
version = "0.11.1"
|
|
3658
3684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3659
|
-
checksum = "
|
|
3685
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
3660
3686
|
dependencies = [
|
|
3661
3687
|
"proc-macro2",
|
|
3662
3688
|
"quote",
|
|
@@ -3677,7 +3703,7 @@ dependencies = [
|
|
|
3677
3703
|
"crossbeam-utils",
|
|
3678
3704
|
"deflate64",
|
|
3679
3705
|
"flate2",
|
|
3680
|
-
"getrandom 0.3.
|
|
3706
|
+
"getrandom 0.3.3",
|
|
3681
3707
|
"hmac",
|
|
3682
3708
|
"indexmap 2.9.0",
|
|
3683
3709
|
"lzma-rs",
|