@temporalio/core-bridge 1.9.2 → 1.10.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 +754 -473
- package/Cargo.toml +3 -3
- package/lib/index.d.ts +33 -2
- package/lib/index.js.map +1 -1
- package/package.json +4 -4
- package/releases/aarch64-apple-darwin/index.node +0 -0
- package/releases/aarch64-unknown-linux-gnu/index.node +0 -0
- package/releases/x86_64-apple-darwin/index.node +0 -0
- package/releases/x86_64-pc-windows-msvc/index.node +0 -0
- package/releases/x86_64-unknown-linux-gnu/index.node +0 -0
- package/scripts/build.js +4 -3
- package/sdk-core/.cargo/config.toml +2 -4
- package/sdk-core/.github/workflows/heavy.yml +1 -1
- package/sdk-core/.github/workflows/per-pr.yml +6 -4
- package/sdk-core/Cargo.toml +10 -3
- package/sdk-core/README.md +4 -6
- package/sdk-core/client/Cargo.toml +13 -5
- package/sdk-core/client/src/lib.rs +123 -34
- package/sdk-core/client/src/metrics.rs +70 -18
- package/sdk-core/client/src/proxy.rs +85 -0
- package/sdk-core/client/src/raw.rs +67 -5
- package/sdk-core/client/src/worker_registry/mod.rs +5 -3
- package/sdk-core/client/src/workflow_handle/mod.rs +3 -1
- package/sdk-core/core/Cargo.toml +31 -37
- package/sdk-core/core/src/abstractions/take_cell.rs +3 -3
- package/sdk-core/core/src/abstractions.rs +176 -108
- package/sdk-core/core/src/core_tests/activity_tasks.rs +4 -13
- package/sdk-core/core/src/core_tests/determinism.rs +2 -1
- package/sdk-core/core/src/core_tests/local_activities.rs +3 -3
- package/sdk-core/core/src/core_tests/mod.rs +3 -3
- package/sdk-core/core/src/core_tests/queries.rs +42 -5
- package/sdk-core/core/src/core_tests/workers.rs +2 -3
- package/sdk-core/core/src/core_tests/workflow_tasks.rs +115 -15
- package/sdk-core/core/src/ephemeral_server/mod.rs +109 -136
- package/sdk-core/core/src/internal_flags.rs +8 -8
- package/sdk-core/core/src/lib.rs +16 -11
- package/sdk-core/core/src/pollers/mod.rs +11 -5
- package/sdk-core/core/src/pollers/poll_buffer.rs +48 -29
- package/sdk-core/core/src/protosext/mod.rs +32 -32
- package/sdk-core/core/src/protosext/protocol_messages.rs +14 -24
- package/sdk-core/core/src/retry_logic.rs +2 -2
- package/sdk-core/core/src/telemetry/log_export.rs +10 -9
- package/sdk-core/core/src/telemetry/metrics.rs +233 -330
- package/sdk-core/core/src/telemetry/mod.rs +11 -38
- package/sdk-core/core/src/telemetry/otel.rs +355 -0
- package/sdk-core/core/src/telemetry/prometheus_server.rs +36 -23
- package/sdk-core/core/src/test_help/mod.rs +80 -59
- package/sdk-core/core/src/worker/activities/activity_heartbeat_manager.rs +6 -6
- package/sdk-core/core/src/worker/activities/local_activities.rs +46 -43
- package/sdk-core/core/src/worker/activities.rs +45 -46
- package/sdk-core/core/src/worker/client/mocks.rs +8 -7
- package/sdk-core/core/src/worker/client.rs +40 -39
- package/sdk-core/core/src/worker/mod.rs +72 -42
- package/sdk-core/core/src/worker/slot_provider.rs +28 -28
- package/sdk-core/core/src/worker/slot_supplier.rs +1 -0
- package/sdk-core/core/src/worker/tuner/fixed_size.rs +52 -0
- package/sdk-core/core/src/worker/tuner/resource_based.rs +561 -0
- package/sdk-core/core/src/worker/tuner.rs +122 -0
- package/sdk-core/core/src/worker/workflow/driven_workflow.rs +6 -6
- package/sdk-core/core/src/worker/workflow/history_update.rs +27 -53
- package/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +4 -17
- package/sdk-core/core/src/worker/workflow/machines/cancel_external_state_machine.rs +1 -10
- package/sdk-core/core/src/worker/workflow/machines/cancel_workflow_state_machine.rs +4 -11
- package/sdk-core/core/src/worker/workflow/machines/child_workflow_state_machine.rs +17 -35
- package/sdk-core/core/src/worker/workflow/machines/complete_workflow_state_machine.rs +0 -8
- package/sdk-core/core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs +1 -5
- package/sdk-core/core/src/worker/workflow/machines/fail_workflow_state_machine.rs +0 -5
- package/sdk-core/core/src/worker/workflow/machines/local_activity_state_machine.rs +0 -5
- package/sdk-core/core/src/worker/workflow/machines/mod.rs +0 -14
- package/sdk-core/core/src/worker/workflow/machines/modify_workflow_properties_state_machine.rs +0 -5
- package/sdk-core/core/src/worker/workflow/machines/patch_state_machine.rs +0 -5
- package/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +1 -10
- package/sdk-core/core/src/worker/workflow/machines/timer_state_machine.rs +3 -10
- package/sdk-core/core/src/worker/workflow/machines/transition_coverage.rs +12 -8
- package/sdk-core/core/src/worker/workflow/machines/update_state_machine.rs +0 -10
- package/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +6 -13
- package/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +27 -37
- package/sdk-core/core/src/worker/workflow/machines/workflow_task_state_machine.rs +3 -14
- package/sdk-core/core/src/worker/workflow/managed_run.rs +84 -54
- package/sdk-core/core/src/worker/workflow/mod.rs +63 -160
- package/sdk-core/core/src/worker/workflow/run_cache.rs +22 -13
- package/sdk-core/core/src/worker/workflow/wft_extraction.rs +16 -3
- package/sdk-core/core/src/worker/workflow/wft_poller.rs +15 -12
- package/sdk-core/core/src/worker/workflow/workflow_stream.rs +39 -78
- package/sdk-core/core-api/Cargo.toml +6 -5
- package/sdk-core/core-api/src/errors.rs +8 -0
- package/sdk-core/core-api/src/telemetry/metrics.rs +75 -4
- package/sdk-core/core-api/src/telemetry.rs +7 -1
- package/sdk-core/core-api/src/worker.rs +212 -56
- package/sdk-core/fsm/Cargo.toml +3 -0
- package/sdk-core/fsm/rustfsm_procmacro/tests/trybuild/no_handle_conversions_require_into_fail.stderr +1 -1
- package/sdk-core/sdk/Cargo.toml +5 -7
- package/sdk-core/sdk/src/app_data.rs +3 -3
- package/sdk-core/sdk/src/lib.rs +5 -3
- package/sdk-core/sdk/src/workflow_context/options.rs +1 -1
- package/sdk-core/sdk/src/workflow_context.rs +10 -9
- package/sdk-core/sdk/src/workflow_future.rs +1 -1
- package/sdk-core/sdk-core-protos/Cargo.toml +8 -6
- package/sdk-core/sdk-core-protos/build.rs +1 -10
- package/sdk-core/sdk-core-protos/protos/api_upstream/.github/PULL_REQUEST_TEMPLATE.md +3 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/.github/workflows/ci.yml +26 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/Makefile +42 -20
- package/sdk-core/sdk-core-protos/protos/api_upstream/README.md +2 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/api-linter.yaml +36 -26
- package/sdk-core/sdk-core-protos/protos/api_upstream/buf.lock +2 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/google/protobuf/struct.proto +95 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/openapi/openapiv2.json +9632 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/openapi/openapiv3.yaml +7337 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/openapi/payload_description.txt +2 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/command/v1/message.proto +45 -11
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/common/v1/message.proto +22 -4
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/command_type.proto +2 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/common.proto +44 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/event_type.proto +18 -3
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +20 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/task_queue.proto +30 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/update.proto +7 -8
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/workflow.proto +23 -5
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/errordetails/v1/message.proto +20 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/failure/v1/message.proto +25 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/history/v1/message.proto +141 -15
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/namespace/v1/message.proto +12 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/nexus/v1/message.proto +193 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/operatorservice/v1/request_response.proto +73 -6
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +46 -4
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/schedule/v1/message.proto +4 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/sdk/v1/workflow_metadata.proto +2 -2
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +116 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflow/v1/message.proto +134 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +274 -29
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +57 -1
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +10 -12
- package/sdk-core/sdk-core-protos/src/history_builder.rs +1 -1
- package/sdk-core/sdk-core-protos/src/lib.rs +54 -51
- package/sdk-core/sdk-core-protos/src/task_token.rs +11 -2
- package/sdk-core/test-utils/Cargo.toml +7 -4
- package/sdk-core/test-utils/src/histfetch.rs +1 -1
- package/sdk-core/test-utils/src/lib.rs +44 -62
- package/sdk-core/tests/fuzzy_workflow.rs +5 -2
- package/sdk-core/tests/heavy_tests.rs +114 -17
- package/sdk-core/tests/integ_tests/activity_functions.rs +1 -1
- package/sdk-core/tests/integ_tests/client_tests.rs +2 -2
- package/sdk-core/tests/integ_tests/ephemeral_server_tests.rs +38 -26
- package/sdk-core/tests/integ_tests/metrics_tests.rs +126 -17
- package/sdk-core/tests/integ_tests/polling_tests.rs +118 -2
- package/sdk-core/tests/integ_tests/update_tests.rs +3 -5
- package/sdk-core/tests/integ_tests/visibility_tests.rs +3 -3
- package/sdk-core/tests/integ_tests/workflow_tests/activities.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/appdata_propagation.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/cancel_external.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/cancel_wf.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/child_workflows.rs +3 -3
- package/sdk-core/tests/integ_tests/workflow_tests/continue_as_new.rs +5 -4
- package/sdk-core/tests/integ_tests/workflow_tests/determinism.rs +3 -2
- package/sdk-core/tests/integ_tests/workflow_tests/eager.rs +6 -10
- package/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +9 -7
- package/sdk-core/tests/integ_tests/workflow_tests/modify_wf_properties.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/patches.rs +14 -9
- package/sdk-core/tests/integ_tests/workflow_tests/resets.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/signals.rs +6 -13
- package/sdk-core/tests/integ_tests/workflow_tests/stickyness.rs +9 -6
- package/sdk-core/tests/integ_tests/workflow_tests/timers.rs +5 -5
- package/sdk-core/tests/integ_tests/workflow_tests/upsert_search_attrs.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests.rs +115 -11
- package/sdk-core/tests/main.rs +2 -2
- package/src/conversions.rs +57 -0
- package/src/lib.rs +1 -0
- package/src/runtime.rs +51 -35
- package/ts/index.ts +67 -3
- package/sdk-core/core/src/worker/workflow/workflow_stream/saved_wf_inputs.rs +0 -117
- package/sdk-core/core/src/worker/workflow/workflow_stream/tonic_status_serde.rs +0 -24
- package/sdk-core/sdk/src/payload_converter.rs +0 -11
- package/sdk-core/sdk-core-protos/protos/api_upstream/.buildkite/Dockerfile +0 -2
- package/sdk-core/sdk-core-protos/protos/api_upstream/.buildkite/docker-compose.yml +0 -15
- package/sdk-core/sdk-core-protos/protos/api_upstream/.buildkite/pipeline.yml +0 -10
- package/sdk-core/test-utils/src/wf_input_saver.rs +0 -50
- package/sdk-core/tests/wf_input_replay.rs +0 -32
package/Cargo.lock
CHANGED
|
@@ -19,9 +19,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "aes"
|
|
22
|
-
version = "0.8.
|
|
22
|
+
version = "0.8.4"
|
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
24
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
25
25
|
dependencies = [
|
|
26
26
|
"cfg-if",
|
|
27
27
|
"cipher",
|
|
@@ -30,9 +30,9 @@ dependencies = [
|
|
|
30
30
|
|
|
31
31
|
[[package]]
|
|
32
32
|
name = "ahash"
|
|
33
|
-
version = "0.8.
|
|
33
|
+
version = "0.8.11"
|
|
34
34
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
-
checksum = "
|
|
35
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
36
36
|
dependencies = [
|
|
37
37
|
"cfg-if",
|
|
38
38
|
"once_cell",
|
|
@@ -42,9 +42,9 @@ dependencies = [
|
|
|
42
42
|
|
|
43
43
|
[[package]]
|
|
44
44
|
name = "aho-corasick"
|
|
45
|
-
version = "1.1.
|
|
45
|
+
version = "1.1.3"
|
|
46
46
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
-
checksum = "
|
|
47
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
48
48
|
dependencies = [
|
|
49
49
|
"memchr",
|
|
50
50
|
]
|
|
@@ -55,17 +55,26 @@ version = "0.2.16"
|
|
|
55
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
56
|
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
|
|
57
57
|
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "anstyle"
|
|
60
|
+
version = "1.0.6"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
|
|
63
|
+
|
|
58
64
|
[[package]]
|
|
59
65
|
name = "anyhow"
|
|
60
|
-
version = "1.0.
|
|
66
|
+
version = "1.0.81"
|
|
61
67
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
-
checksum = "
|
|
68
|
+
checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247"
|
|
63
69
|
|
|
64
70
|
[[package]]
|
|
65
|
-
name = "
|
|
66
|
-
version = "1.
|
|
71
|
+
name = "arbitrary"
|
|
72
|
+
version = "1.3.2"
|
|
67
73
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
-
checksum = "
|
|
74
|
+
checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"derive_arbitrary",
|
|
77
|
+
]
|
|
69
78
|
|
|
70
79
|
[[package]]
|
|
71
80
|
name = "async-stream"
|
|
@@ -86,25 +95,25 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
|
86
95
|
dependencies = [
|
|
87
96
|
"proc-macro2",
|
|
88
97
|
"quote",
|
|
89
|
-
"syn 2.0.
|
|
98
|
+
"syn 2.0.55",
|
|
90
99
|
]
|
|
91
100
|
|
|
92
101
|
[[package]]
|
|
93
102
|
name = "async-trait"
|
|
94
|
-
version = "0.1.
|
|
103
|
+
version = "0.1.79"
|
|
95
104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
-
checksum = "
|
|
105
|
+
checksum = "a507401cad91ec6a857ed5513a2073c82a9b9048762b885bb98655b306964681"
|
|
97
106
|
dependencies = [
|
|
98
107
|
"proc-macro2",
|
|
99
108
|
"quote",
|
|
100
|
-
"syn 2.0.
|
|
109
|
+
"syn 2.0.55",
|
|
101
110
|
]
|
|
102
111
|
|
|
103
112
|
[[package]]
|
|
104
113
|
name = "autocfg"
|
|
105
|
-
version = "1.
|
|
114
|
+
version = "1.2.0"
|
|
106
115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
-
checksum = "
|
|
116
|
+
checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
|
|
108
117
|
|
|
109
118
|
[[package]]
|
|
110
119
|
name = "axum"
|
|
@@ -117,9 +126,9 @@ dependencies = [
|
|
|
117
126
|
"bitflags 1.3.2",
|
|
118
127
|
"bytes",
|
|
119
128
|
"futures-util",
|
|
120
|
-
"http",
|
|
121
|
-
"http-body",
|
|
122
|
-
"hyper",
|
|
129
|
+
"http 0.2.12",
|
|
130
|
+
"http-body 0.4.6",
|
|
131
|
+
"hyper 0.14.28",
|
|
123
132
|
"itoa",
|
|
124
133
|
"matchit",
|
|
125
134
|
"memchr",
|
|
@@ -143,8 +152,8 @@ dependencies = [
|
|
|
143
152
|
"async-trait",
|
|
144
153
|
"bytes",
|
|
145
154
|
"futures-util",
|
|
146
|
-
"http",
|
|
147
|
-
"http-body",
|
|
155
|
+
"http 0.2.12",
|
|
156
|
+
"http-body 0.4.6",
|
|
148
157
|
"mime",
|
|
149
158
|
"rustversion",
|
|
150
159
|
"tower-layer",
|
|
@@ -164,9 +173,9 @@ dependencies = [
|
|
|
164
173
|
|
|
165
174
|
[[package]]
|
|
166
175
|
name = "backtrace"
|
|
167
|
-
version = "0.3.
|
|
176
|
+
version = "0.3.71"
|
|
168
177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
-
checksum = "
|
|
178
|
+
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
|
|
170
179
|
dependencies = [
|
|
171
180
|
"addr2line",
|
|
172
181
|
"cc",
|
|
@@ -179,15 +188,15 @@ dependencies = [
|
|
|
179
188
|
|
|
180
189
|
[[package]]
|
|
181
190
|
name = "base64"
|
|
182
|
-
version = "0.21.
|
|
191
|
+
version = "0.21.7"
|
|
183
192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
-
checksum = "
|
|
193
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
185
194
|
|
|
186
195
|
[[package]]
|
|
187
|
-
name = "
|
|
188
|
-
version = "
|
|
196
|
+
name = "base64"
|
|
197
|
+
version = "0.22.1"
|
|
189
198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
-
checksum = "
|
|
199
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
191
200
|
|
|
192
201
|
[[package]]
|
|
193
202
|
name = "bitflags"
|
|
@@ -197,9 +206,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
197
206
|
|
|
198
207
|
[[package]]
|
|
199
208
|
name = "bitflags"
|
|
200
|
-
version = "2.
|
|
209
|
+
version = "2.5.0"
|
|
201
210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
-
checksum = "
|
|
211
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
|
203
212
|
|
|
204
213
|
[[package]]
|
|
205
214
|
name = "block-buffer"
|
|
@@ -212,9 +221,9 @@ dependencies = [
|
|
|
212
221
|
|
|
213
222
|
[[package]]
|
|
214
223
|
name = "bumpalo"
|
|
215
|
-
version = "3.
|
|
224
|
+
version = "3.16.0"
|
|
216
225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
-
checksum = "
|
|
226
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
218
227
|
|
|
219
228
|
[[package]]
|
|
220
229
|
name = "byteorder"
|
|
@@ -224,9 +233,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
224
233
|
|
|
225
234
|
[[package]]
|
|
226
235
|
name = "bytes"
|
|
227
|
-
version = "1.
|
|
236
|
+
version = "1.6.0"
|
|
228
237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
-
checksum = "
|
|
238
|
+
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
|
|
230
239
|
|
|
231
240
|
[[package]]
|
|
232
241
|
name = "bzip2"
|
|
@@ -251,9 +260,9 @@ dependencies = [
|
|
|
251
260
|
|
|
252
261
|
[[package]]
|
|
253
262
|
name = "cc"
|
|
254
|
-
version = "1.0.
|
|
263
|
+
version = "1.0.90"
|
|
255
264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
-
checksum = "
|
|
265
|
+
checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
|
|
257
266
|
dependencies = [
|
|
258
267
|
"jobserver",
|
|
259
268
|
"libc",
|
|
@@ -265,11 +274,17 @@ version = "1.0.0"
|
|
|
265
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
275
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
267
276
|
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "cfg_aliases"
|
|
279
|
+
version = "0.1.1"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
|
|
282
|
+
|
|
268
283
|
[[package]]
|
|
269
284
|
name = "chrono"
|
|
270
|
-
version = "0.4.
|
|
285
|
+
version = "0.4.37"
|
|
271
286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
-
checksum = "
|
|
287
|
+
checksum = "8a0d04d43504c61aa6c7531f1871dd0d418d91130162063b789da00fd7057a5e"
|
|
273
288
|
dependencies = [
|
|
274
289
|
"num-traits",
|
|
275
290
|
"serde",
|
|
@@ -285,11 +300,20 @@ dependencies = [
|
|
|
285
300
|
"inout",
|
|
286
301
|
]
|
|
287
302
|
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "cmake"
|
|
305
|
+
version = "0.1.50"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
|
|
308
|
+
dependencies = [
|
|
309
|
+
"cc",
|
|
310
|
+
]
|
|
311
|
+
|
|
288
312
|
[[package]]
|
|
289
313
|
name = "constant_time_eq"
|
|
290
|
-
version = "0.
|
|
314
|
+
version = "0.3.0"
|
|
291
315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
-
checksum = "
|
|
316
|
+
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
|
|
293
317
|
|
|
294
318
|
[[package]]
|
|
295
319
|
name = "convert_case"
|
|
@@ -322,20 +346,54 @@ dependencies = [
|
|
|
322
346
|
"libc",
|
|
323
347
|
]
|
|
324
348
|
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "crc"
|
|
351
|
+
version = "3.2.1"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"crc-catalog",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "crc-catalog"
|
|
360
|
+
version = "2.4.0"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
|
|
363
|
+
|
|
325
364
|
[[package]]
|
|
326
365
|
name = "crc32fast"
|
|
327
|
-
version = "1.
|
|
366
|
+
version = "1.4.0"
|
|
328
367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
-
checksum = "
|
|
368
|
+
checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
|
|
330
369
|
dependencies = [
|
|
331
370
|
"cfg-if",
|
|
332
371
|
]
|
|
333
372
|
|
|
334
373
|
[[package]]
|
|
335
374
|
name = "crossbeam-channel"
|
|
336
|
-
version = "0.5.
|
|
375
|
+
version = "0.5.12"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95"
|
|
378
|
+
dependencies = [
|
|
379
|
+
"crossbeam-utils",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "crossbeam-deque"
|
|
384
|
+
version = "0.8.5"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"crossbeam-epoch",
|
|
389
|
+
"crossbeam-utils",
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "crossbeam-epoch"
|
|
394
|
+
version = "0.9.18"
|
|
337
395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
-
checksum = "
|
|
396
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
339
397
|
dependencies = [
|
|
340
398
|
"crossbeam-utils",
|
|
341
399
|
]
|
|
@@ -367,9 +425,9 @@ dependencies = [
|
|
|
367
425
|
|
|
368
426
|
[[package]]
|
|
369
427
|
name = "darling"
|
|
370
|
-
version = "0.
|
|
428
|
+
version = "0.20.8"
|
|
371
429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
-
checksum = "
|
|
430
|
+
checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
|
|
373
431
|
dependencies = [
|
|
374
432
|
"darling_core",
|
|
375
433
|
"darling_macro",
|
|
@@ -377,27 +435,27 @@ dependencies = [
|
|
|
377
435
|
|
|
378
436
|
[[package]]
|
|
379
437
|
name = "darling_core"
|
|
380
|
-
version = "0.
|
|
438
|
+
version = "0.20.8"
|
|
381
439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
-
checksum = "
|
|
440
|
+
checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
|
|
383
441
|
dependencies = [
|
|
384
442
|
"fnv",
|
|
385
443
|
"ident_case",
|
|
386
444
|
"proc-macro2",
|
|
387
445
|
"quote",
|
|
388
446
|
"strsim",
|
|
389
|
-
"syn
|
|
447
|
+
"syn 2.0.55",
|
|
390
448
|
]
|
|
391
449
|
|
|
392
450
|
[[package]]
|
|
393
451
|
name = "darling_macro"
|
|
394
|
-
version = "0.
|
|
452
|
+
version = "0.20.8"
|
|
395
453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
-
checksum = "
|
|
454
|
+
checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
|
|
397
455
|
dependencies = [
|
|
398
456
|
"darling_core",
|
|
399
457
|
"quote",
|
|
400
|
-
"syn
|
|
458
|
+
"syn 2.0.55",
|
|
401
459
|
]
|
|
402
460
|
|
|
403
461
|
[[package]]
|
|
@@ -413,6 +471,12 @@ dependencies = [
|
|
|
413
471
|
"parking_lot_core",
|
|
414
472
|
]
|
|
415
473
|
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "deflate64"
|
|
476
|
+
version = "0.1.8"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "83ace6c86376be0b6cdcf3fb41882e81d94b31587573d1cfa9d01cd06bba210d"
|
|
479
|
+
|
|
416
480
|
[[package]]
|
|
417
481
|
name = "deranged"
|
|
418
482
|
version = "0.3.11"
|
|
@@ -422,35 +486,46 @@ dependencies = [
|
|
|
422
486
|
"powerfmt",
|
|
423
487
|
]
|
|
424
488
|
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "derive_arbitrary"
|
|
491
|
+
version = "1.3.2"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"proc-macro2",
|
|
496
|
+
"quote",
|
|
497
|
+
"syn 2.0.55",
|
|
498
|
+
]
|
|
499
|
+
|
|
425
500
|
[[package]]
|
|
426
501
|
name = "derive_builder"
|
|
427
|
-
version = "0.
|
|
502
|
+
version = "0.20.0"
|
|
428
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
-
checksum = "
|
|
504
|
+
checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7"
|
|
430
505
|
dependencies = [
|
|
431
506
|
"derive_builder_macro",
|
|
432
507
|
]
|
|
433
508
|
|
|
434
509
|
[[package]]
|
|
435
510
|
name = "derive_builder_core"
|
|
436
|
-
version = "0.
|
|
511
|
+
version = "0.20.0"
|
|
437
512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
-
checksum = "
|
|
513
|
+
checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d"
|
|
439
514
|
dependencies = [
|
|
440
515
|
"darling",
|
|
441
516
|
"proc-macro2",
|
|
442
517
|
"quote",
|
|
443
|
-
"syn
|
|
518
|
+
"syn 2.0.55",
|
|
444
519
|
]
|
|
445
520
|
|
|
446
521
|
[[package]]
|
|
447
522
|
name = "derive_builder_macro"
|
|
448
|
-
version = "0.
|
|
523
|
+
version = "0.20.0"
|
|
449
524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
-
checksum = "
|
|
525
|
+
checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b"
|
|
451
526
|
dependencies = [
|
|
452
527
|
"derive_builder_core",
|
|
453
|
-
"syn
|
|
528
|
+
"syn 2.0.55",
|
|
454
529
|
]
|
|
455
530
|
|
|
456
531
|
[[package]]
|
|
@@ -466,12 +541,6 @@ dependencies = [
|
|
|
466
541
|
"syn 1.0.109",
|
|
467
542
|
]
|
|
468
543
|
|
|
469
|
-
[[package]]
|
|
470
|
-
name = "difflib"
|
|
471
|
-
version = "0.4.0"
|
|
472
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
-
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
474
|
-
|
|
475
544
|
[[package]]
|
|
476
545
|
name = "digest"
|
|
477
546
|
version = "0.10.7"
|
|
@@ -483,6 +552,17 @@ dependencies = [
|
|
|
483
552
|
"subtle",
|
|
484
553
|
]
|
|
485
554
|
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "displaydoc"
|
|
557
|
+
version = "0.2.4"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
|
|
560
|
+
dependencies = [
|
|
561
|
+
"proc-macro2",
|
|
562
|
+
"quote",
|
|
563
|
+
"syn 2.0.55",
|
|
564
|
+
]
|
|
565
|
+
|
|
486
566
|
[[package]]
|
|
487
567
|
name = "downcast"
|
|
488
568
|
version = "0.11.0"
|
|
@@ -491,9 +571,9 @@ checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
|
|
|
491
571
|
|
|
492
572
|
[[package]]
|
|
493
573
|
name = "either"
|
|
494
|
-
version = "1.
|
|
574
|
+
version = "1.10.0"
|
|
495
575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
-
checksum = "
|
|
576
|
+
checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
|
|
497
577
|
|
|
498
578
|
[[package]]
|
|
499
579
|
name = "encoding_rs"
|
|
@@ -506,22 +586,22 @@ dependencies = [
|
|
|
506
586
|
|
|
507
587
|
[[package]]
|
|
508
588
|
name = "enum-iterator"
|
|
509
|
-
version = "
|
|
589
|
+
version = "2.0.0"
|
|
510
590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
-
checksum = "
|
|
591
|
+
checksum = "600536cfe9e2da0820aa498e570f6b2b9223eec3ce2f835c8ae4861304fa4794"
|
|
512
592
|
dependencies = [
|
|
513
593
|
"enum-iterator-derive",
|
|
514
594
|
]
|
|
515
595
|
|
|
516
596
|
[[package]]
|
|
517
597
|
name = "enum-iterator-derive"
|
|
518
|
-
version = "1.
|
|
598
|
+
version = "1.3.0"
|
|
519
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
-
checksum = "
|
|
600
|
+
checksum = "03cdc46ec28bd728e67540c528013c6a10eb69a02eb31078a1bda695438cbfb8"
|
|
521
601
|
dependencies = [
|
|
522
602
|
"proc-macro2",
|
|
523
603
|
"quote",
|
|
524
|
-
"syn 2.0.
|
|
604
|
+
"syn 2.0.55",
|
|
525
605
|
]
|
|
526
606
|
|
|
527
607
|
[[package]]
|
|
@@ -533,7 +613,7 @@ dependencies = [
|
|
|
533
613
|
"once_cell",
|
|
534
614
|
"proc-macro2",
|
|
535
615
|
"quote",
|
|
536
|
-
"syn 2.0.
|
|
616
|
+
"syn 2.0.55",
|
|
537
617
|
]
|
|
538
618
|
|
|
539
619
|
[[package]]
|
|
@@ -544,9 +624,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
544
624
|
|
|
545
625
|
[[package]]
|
|
546
626
|
name = "erased-serde"
|
|
547
|
-
version = "0.4.
|
|
627
|
+
version = "0.4.4"
|
|
548
628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
-
checksum = "
|
|
629
|
+
checksum = "2b73807008a3c7f171cc40312f37d95ef0396e048b5848d775f54b1a4dd4a0d3"
|
|
550
630
|
dependencies = [
|
|
551
631
|
"serde",
|
|
552
632
|
]
|
|
@@ -563,9 +643,9 @@ dependencies = [
|
|
|
563
643
|
|
|
564
644
|
[[package]]
|
|
565
645
|
name = "fastrand"
|
|
566
|
-
version = "2.0.
|
|
646
|
+
version = "2.0.2"
|
|
567
647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
-
checksum = "
|
|
648
|
+
checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984"
|
|
569
649
|
|
|
570
650
|
[[package]]
|
|
571
651
|
name = "filetime"
|
|
@@ -592,18 +672,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
592
672
|
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
|
|
593
673
|
dependencies = [
|
|
594
674
|
"crc32fast",
|
|
675
|
+
"libz-ng-sys",
|
|
595
676
|
"miniz_oxide",
|
|
596
677
|
]
|
|
597
678
|
|
|
598
|
-
[[package]]
|
|
599
|
-
name = "float-cmp"
|
|
600
|
-
version = "0.9.0"
|
|
601
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
-
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
|
603
|
-
dependencies = [
|
|
604
|
-
"num-traits",
|
|
605
|
-
]
|
|
606
|
-
|
|
607
679
|
[[package]]
|
|
608
680
|
name = "fnv"
|
|
609
681
|
version = "1.0.7"
|
|
@@ -681,7 +753,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
|
681
753
|
dependencies = [
|
|
682
754
|
"proc-macro2",
|
|
683
755
|
"quote",
|
|
684
|
-
"syn 2.0.
|
|
756
|
+
"syn 2.0.55",
|
|
685
757
|
]
|
|
686
758
|
|
|
687
759
|
[[package]]
|
|
@@ -709,9 +781,9 @@ checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
|
709
781
|
|
|
710
782
|
[[package]]
|
|
711
783
|
name = "futures-timer"
|
|
712
|
-
version = "3.0.
|
|
784
|
+
version = "3.0.3"
|
|
713
785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
-
checksum = "
|
|
786
|
+
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
715
787
|
|
|
716
788
|
[[package]]
|
|
717
789
|
name = "futures-util"
|
|
@@ -766,9 +838,9 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
|
766
838
|
|
|
767
839
|
[[package]]
|
|
768
840
|
name = "governor"
|
|
769
|
-
version = "0.6.
|
|
841
|
+
version = "0.6.3"
|
|
770
842
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
-
checksum = "
|
|
843
|
+
checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b"
|
|
772
844
|
dependencies = [
|
|
773
845
|
"cfg-if",
|
|
774
846
|
"dashmap",
|
|
@@ -777,24 +849,45 @@ dependencies = [
|
|
|
777
849
|
"no-std-compat",
|
|
778
850
|
"nonzero_ext",
|
|
779
851
|
"parking_lot",
|
|
852
|
+
"portable-atomic",
|
|
780
853
|
"quanta",
|
|
781
854
|
"rand",
|
|
782
855
|
"smallvec",
|
|
856
|
+
"spinning_top",
|
|
857
|
+
]
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "h2"
|
|
861
|
+
version = "0.3.25"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "4fbd2820c5e49886948654ab546d0688ff24530286bdcf8fca3cefb16d4618eb"
|
|
864
|
+
dependencies = [
|
|
865
|
+
"bytes",
|
|
866
|
+
"fnv",
|
|
867
|
+
"futures-core",
|
|
868
|
+
"futures-sink",
|
|
869
|
+
"futures-util",
|
|
870
|
+
"http 0.2.12",
|
|
871
|
+
"indexmap 2.2.6",
|
|
872
|
+
"slab",
|
|
873
|
+
"tokio",
|
|
874
|
+
"tokio-util",
|
|
875
|
+
"tracing",
|
|
783
876
|
]
|
|
784
877
|
|
|
785
878
|
[[package]]
|
|
786
879
|
name = "h2"
|
|
787
|
-
version = "0.3
|
|
880
|
+
version = "0.4.3"
|
|
788
881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
-
checksum = "
|
|
882
|
+
checksum = "51ee2dd2e4f378392eeff5d51618cd9a63166a2513846bbc55f21cfacd9199d4"
|
|
790
883
|
dependencies = [
|
|
791
884
|
"bytes",
|
|
792
885
|
"fnv",
|
|
793
886
|
"futures-core",
|
|
794
887
|
"futures-sink",
|
|
795
888
|
"futures-util",
|
|
796
|
-
"http",
|
|
797
|
-
"indexmap 2.
|
|
889
|
+
"http 1.1.0",
|
|
890
|
+
"indexmap 2.2.6",
|
|
798
891
|
"slab",
|
|
799
892
|
"tokio",
|
|
800
893
|
"tokio-util",
|
|
@@ -825,9 +918,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
|
825
918
|
|
|
826
919
|
[[package]]
|
|
827
920
|
name = "hermit-abi"
|
|
828
|
-
version = "0.3.
|
|
921
|
+
version = "0.3.9"
|
|
829
922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
-
checksum = "
|
|
923
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
831
924
|
|
|
832
925
|
[[package]]
|
|
833
926
|
name = "hmac"
|
|
@@ -849,9 +942,20 @@ dependencies = [
|
|
|
849
942
|
|
|
850
943
|
[[package]]
|
|
851
944
|
name = "http"
|
|
852
|
-
version = "0.2.
|
|
945
|
+
version = "0.2.12"
|
|
853
946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
-
checksum = "
|
|
947
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"bytes",
|
|
950
|
+
"fnv",
|
|
951
|
+
"itoa",
|
|
952
|
+
]
|
|
953
|
+
|
|
954
|
+
[[package]]
|
|
955
|
+
name = "http"
|
|
956
|
+
version = "1.1.0"
|
|
957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
+
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
|
|
855
959
|
dependencies = [
|
|
856
960
|
"bytes",
|
|
857
961
|
"fnv",
|
|
@@ -865,7 +969,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
865
969
|
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
866
970
|
dependencies = [
|
|
867
971
|
"bytes",
|
|
868
|
-
"http",
|
|
972
|
+
"http 0.2.12",
|
|
973
|
+
"pin-project-lite",
|
|
974
|
+
]
|
|
975
|
+
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "http-body"
|
|
978
|
+
version = "1.0.0"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"bytes",
|
|
983
|
+
"http 1.1.0",
|
|
984
|
+
]
|
|
985
|
+
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "http-body-util"
|
|
988
|
+
version = "0.1.1"
|
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
+
checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
|
|
991
|
+
dependencies = [
|
|
992
|
+
"bytes",
|
|
993
|
+
"futures-core",
|
|
994
|
+
"http 1.1.0",
|
|
995
|
+
"http-body 1.0.0",
|
|
869
996
|
"pin-project-lite",
|
|
870
997
|
]
|
|
871
998
|
|
|
@@ -891,9 +1018,9 @@ dependencies = [
|
|
|
891
1018
|
"futures-channel",
|
|
892
1019
|
"futures-core",
|
|
893
1020
|
"futures-util",
|
|
894
|
-
"h2",
|
|
895
|
-
"http",
|
|
896
|
-
"http-body",
|
|
1021
|
+
"h2 0.3.25",
|
|
1022
|
+
"http 0.2.12",
|
|
1023
|
+
"http-body 0.4.6",
|
|
897
1024
|
"httparse",
|
|
898
1025
|
"httpdate",
|
|
899
1026
|
"itoa",
|
|
@@ -905,6 +1032,26 @@ dependencies = [
|
|
|
905
1032
|
"want",
|
|
906
1033
|
]
|
|
907
1034
|
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "hyper"
|
|
1037
|
+
version = "1.2.0"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "186548d73ac615b32a73aafe38fb4f56c0d340e110e5a200bcadbaf2e199263a"
|
|
1040
|
+
dependencies = [
|
|
1041
|
+
"bytes",
|
|
1042
|
+
"futures-channel",
|
|
1043
|
+
"futures-util",
|
|
1044
|
+
"h2 0.4.3",
|
|
1045
|
+
"http 1.1.0",
|
|
1046
|
+
"http-body 1.0.0",
|
|
1047
|
+
"httparse",
|
|
1048
|
+
"httpdate",
|
|
1049
|
+
"itoa",
|
|
1050
|
+
"pin-project-lite",
|
|
1051
|
+
"smallvec",
|
|
1052
|
+
"tokio",
|
|
1053
|
+
]
|
|
1054
|
+
|
|
908
1055
|
[[package]]
|
|
909
1056
|
name = "hyper-rustls"
|
|
910
1057
|
version = "0.24.2"
|
|
@@ -912,11 +1059,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
912
1059
|
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
913
1060
|
dependencies = [
|
|
914
1061
|
"futures-util",
|
|
915
|
-
"http",
|
|
916
|
-
"hyper",
|
|
917
|
-
"rustls",
|
|
1062
|
+
"http 0.2.12",
|
|
1063
|
+
"hyper 0.14.28",
|
|
1064
|
+
"rustls 0.21.10",
|
|
918
1065
|
"tokio",
|
|
919
|
-
"tokio-rustls",
|
|
1066
|
+
"tokio-rustls 0.24.1",
|
|
920
1067
|
]
|
|
921
1068
|
|
|
922
1069
|
[[package]]
|
|
@@ -925,12 +1072,28 @@ version = "0.4.1"
|
|
|
925
1072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
1073
|
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
|
|
927
1074
|
dependencies = [
|
|
928
|
-
"hyper",
|
|
1075
|
+
"hyper 0.14.28",
|
|
929
1076
|
"pin-project-lite",
|
|
930
1077
|
"tokio",
|
|
931
1078
|
"tokio-io-timeout",
|
|
932
1079
|
]
|
|
933
1080
|
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "hyper-util"
|
|
1083
|
+
version = "0.1.3"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa"
|
|
1086
|
+
dependencies = [
|
|
1087
|
+
"bytes",
|
|
1088
|
+
"futures-util",
|
|
1089
|
+
"http 1.1.0",
|
|
1090
|
+
"http-body 1.0.0",
|
|
1091
|
+
"hyper 1.2.0",
|
|
1092
|
+
"pin-project-lite",
|
|
1093
|
+
"socket2",
|
|
1094
|
+
"tokio",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
934
1097
|
[[package]]
|
|
935
1098
|
name = "ident_case"
|
|
936
1099
|
version = "1.0.1"
|
|
@@ -959,9 +1122,9 @@ dependencies = [
|
|
|
959
1122
|
|
|
960
1123
|
[[package]]
|
|
961
1124
|
name = "indexmap"
|
|
962
|
-
version = "2.
|
|
1125
|
+
version = "2.2.6"
|
|
963
1126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
-
checksum = "
|
|
1127
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
|
965
1128
|
dependencies = [
|
|
966
1129
|
"equivalent",
|
|
967
1130
|
"hashbrown 0.14.3",
|
|
@@ -987,9 +1150,9 @@ dependencies = [
|
|
|
987
1150
|
|
|
988
1151
|
[[package]]
|
|
989
1152
|
name = "inventory"
|
|
990
|
-
version = "0.3.
|
|
1153
|
+
version = "0.3.15"
|
|
991
1154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
-
checksum = "
|
|
1155
|
+
checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
|
|
993
1156
|
|
|
994
1157
|
[[package]]
|
|
995
1158
|
name = "ipnet"
|
|
@@ -999,42 +1162,42 @@ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|
|
999
1162
|
|
|
1000
1163
|
[[package]]
|
|
1001
1164
|
name = "itertools"
|
|
1002
|
-
version = "0.
|
|
1165
|
+
version = "0.11.0"
|
|
1003
1166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
-
checksum = "
|
|
1167
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
1005
1168
|
dependencies = [
|
|
1006
1169
|
"either",
|
|
1007
1170
|
]
|
|
1008
1171
|
|
|
1009
1172
|
[[package]]
|
|
1010
1173
|
name = "itertools"
|
|
1011
|
-
version = "0.
|
|
1174
|
+
version = "0.12.1"
|
|
1012
1175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
-
checksum = "
|
|
1176
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1014
1177
|
dependencies = [
|
|
1015
1178
|
"either",
|
|
1016
1179
|
]
|
|
1017
1180
|
|
|
1018
1181
|
[[package]]
|
|
1019
1182
|
name = "itoa"
|
|
1020
|
-
version = "1.0.
|
|
1183
|
+
version = "1.0.11"
|
|
1021
1184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
-
checksum = "
|
|
1185
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
1023
1186
|
|
|
1024
1187
|
[[package]]
|
|
1025
1188
|
name = "jobserver"
|
|
1026
|
-
version = "0.1.
|
|
1189
|
+
version = "0.1.28"
|
|
1027
1190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
-
checksum = "
|
|
1191
|
+
checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6"
|
|
1029
1192
|
dependencies = [
|
|
1030
1193
|
"libc",
|
|
1031
1194
|
]
|
|
1032
1195
|
|
|
1033
1196
|
[[package]]
|
|
1034
1197
|
name = "js-sys"
|
|
1035
|
-
version = "0.3.
|
|
1198
|
+
version = "0.3.69"
|
|
1036
1199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
-
checksum = "
|
|
1200
|
+
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
|
1038
1201
|
dependencies = [
|
|
1039
1202
|
"wasm-bindgen",
|
|
1040
1203
|
]
|
|
@@ -1047,9 +1210,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
1047
1210
|
|
|
1048
1211
|
[[package]]
|
|
1049
1212
|
name = "libc"
|
|
1050
|
-
version = "0.2.
|
|
1213
|
+
version = "0.2.153"
|
|
1051
1214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
-
checksum = "
|
|
1215
|
+
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
|
|
1053
1216
|
|
|
1054
1217
|
[[package]]
|
|
1055
1218
|
name = "libloading"
|
|
@@ -1061,11 +1224,21 @@ dependencies = [
|
|
|
1061
1224
|
"winapi",
|
|
1062
1225
|
]
|
|
1063
1226
|
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "libz-ng-sys"
|
|
1229
|
+
version = "1.1.15"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "c6409efc61b12687963e602df8ecf70e8ddacf95bc6576bcf16e3ac6328083c5"
|
|
1232
|
+
dependencies = [
|
|
1233
|
+
"cmake",
|
|
1234
|
+
"libc",
|
|
1235
|
+
]
|
|
1236
|
+
|
|
1064
1237
|
[[package]]
|
|
1065
1238
|
name = "linux-raw-sys"
|
|
1066
|
-
version = "0.4.
|
|
1239
|
+
version = "0.4.13"
|
|
1067
1240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
-
checksum = "
|
|
1241
|
+
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
|
|
1069
1242
|
|
|
1070
1243
|
[[package]]
|
|
1071
1244
|
name = "lock_api"
|
|
@@ -1077,28 +1250,35 @@ dependencies = [
|
|
|
1077
1250
|
"scopeguard",
|
|
1078
1251
|
]
|
|
1079
1252
|
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "lockfree-object-pool"
|
|
1255
|
+
version = "0.1.6"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
|
|
1258
|
+
|
|
1080
1259
|
[[package]]
|
|
1081
1260
|
name = "log"
|
|
1082
|
-
version = "0.4.
|
|
1261
|
+
version = "0.4.21"
|
|
1083
1262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1084
|
-
checksum = "
|
|
1263
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
|
1085
1264
|
|
|
1086
1265
|
[[package]]
|
|
1087
1266
|
name = "lru"
|
|
1088
|
-
version = "0.
|
|
1267
|
+
version = "0.12.3"
|
|
1089
1268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
-
checksum = "
|
|
1269
|
+
checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc"
|
|
1091
1270
|
dependencies = [
|
|
1092
1271
|
"hashbrown 0.14.3",
|
|
1093
1272
|
]
|
|
1094
1273
|
|
|
1095
1274
|
[[package]]
|
|
1096
|
-
name = "
|
|
1097
|
-
version = "0.
|
|
1275
|
+
name = "lzma-rs"
|
|
1276
|
+
version = "0.3.0"
|
|
1098
1277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
-
checksum = "
|
|
1278
|
+
checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
|
|
1100
1279
|
dependencies = [
|
|
1101
|
-
"
|
|
1280
|
+
"byteorder",
|
|
1281
|
+
"crc",
|
|
1102
1282
|
]
|
|
1103
1283
|
|
|
1104
1284
|
[[package]]
|
|
@@ -1130,18 +1310,18 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
|
1130
1310
|
|
|
1131
1311
|
[[package]]
|
|
1132
1312
|
name = "miniz_oxide"
|
|
1133
|
-
version = "0.7.
|
|
1313
|
+
version = "0.7.2"
|
|
1134
1314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
-
checksum = "
|
|
1315
|
+
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
|
|
1136
1316
|
dependencies = [
|
|
1137
1317
|
"adler",
|
|
1138
1318
|
]
|
|
1139
1319
|
|
|
1140
1320
|
[[package]]
|
|
1141
1321
|
name = "mio"
|
|
1142
|
-
version = "0.8.
|
|
1322
|
+
version = "0.8.11"
|
|
1143
1323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
-
checksum = "
|
|
1324
|
+
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
1145
1325
|
dependencies = [
|
|
1146
1326
|
"libc",
|
|
1147
1327
|
"wasi",
|
|
@@ -1150,9 +1330,9 @@ dependencies = [
|
|
|
1150
1330
|
|
|
1151
1331
|
[[package]]
|
|
1152
1332
|
name = "mockall"
|
|
1153
|
-
version = "0.
|
|
1333
|
+
version = "0.12.1"
|
|
1154
1334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
-
checksum = "
|
|
1335
|
+
checksum = "43766c2b5203b10de348ffe19f7e54564b64f3d6018ff7648d1e2d6d3a0f0a48"
|
|
1156
1336
|
dependencies = [
|
|
1157
1337
|
"cfg-if",
|
|
1158
1338
|
"downcast",
|
|
@@ -1165,14 +1345,14 @@ dependencies = [
|
|
|
1165
1345
|
|
|
1166
1346
|
[[package]]
|
|
1167
1347
|
name = "mockall_derive"
|
|
1168
|
-
version = "0.
|
|
1348
|
+
version = "0.12.1"
|
|
1169
1349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
-
checksum = "
|
|
1350
|
+
checksum = "af7cbce79ec385a1d4f54baa90a76401eb15d9cab93685f62e7e9f942aa00ae2"
|
|
1171
1351
|
dependencies = [
|
|
1172
1352
|
"cfg-if",
|
|
1173
1353
|
"proc-macro2",
|
|
1174
1354
|
"quote",
|
|
1175
|
-
"syn
|
|
1355
|
+
"syn 2.0.55",
|
|
1176
1356
|
]
|
|
1177
1357
|
|
|
1178
1358
|
[[package]]
|
|
@@ -1224,12 +1404,13 @@ dependencies = [
|
|
|
1224
1404
|
|
|
1225
1405
|
[[package]]
|
|
1226
1406
|
name = "nix"
|
|
1227
|
-
version = "0.
|
|
1407
|
+
version = "0.28.0"
|
|
1228
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1229
|
-
checksum = "
|
|
1409
|
+
checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
|
|
1230
1410
|
dependencies = [
|
|
1231
|
-
"bitflags 2.
|
|
1411
|
+
"bitflags 2.5.0",
|
|
1232
1412
|
"cfg-if",
|
|
1413
|
+
"cfg_aliases",
|
|
1233
1414
|
"libc",
|
|
1234
1415
|
]
|
|
1235
1416
|
|
|
@@ -1246,10 +1427,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1246
1427
|
checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
|
|
1247
1428
|
|
|
1248
1429
|
[[package]]
|
|
1249
|
-
name = "
|
|
1250
|
-
version = "0.
|
|
1430
|
+
name = "ntapi"
|
|
1431
|
+
version = "0.4.1"
|
|
1251
1432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
-
checksum = "
|
|
1433
|
+
checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
|
|
1434
|
+
dependencies = [
|
|
1435
|
+
"winapi",
|
|
1436
|
+
]
|
|
1253
1437
|
|
|
1254
1438
|
[[package]]
|
|
1255
1439
|
name = "nu-ansi-term"
|
|
@@ -1261,11 +1445,17 @@ dependencies = [
|
|
|
1261
1445
|
"winapi",
|
|
1262
1446
|
]
|
|
1263
1447
|
|
|
1448
|
+
[[package]]
|
|
1449
|
+
name = "num-conv"
|
|
1450
|
+
version = "0.1.0"
|
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1453
|
+
|
|
1264
1454
|
[[package]]
|
|
1265
1455
|
name = "num-traits"
|
|
1266
|
-
version = "0.2.
|
|
1456
|
+
version = "0.2.18"
|
|
1267
1457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
-
checksum = "
|
|
1458
|
+
checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
|
|
1269
1459
|
dependencies = [
|
|
1270
1460
|
"autocfg",
|
|
1271
1461
|
]
|
|
@@ -1303,23 +1493,12 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
|
1303
1493
|
|
|
1304
1494
|
[[package]]
|
|
1305
1495
|
name = "opentelemetry"
|
|
1306
|
-
version = "0.
|
|
1307
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
-
checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e"
|
|
1309
|
-
dependencies = [
|
|
1310
|
-
"opentelemetry_api",
|
|
1311
|
-
"opentelemetry_sdk 0.18.0",
|
|
1312
|
-
]
|
|
1313
|
-
|
|
1314
|
-
[[package]]
|
|
1315
|
-
name = "opentelemetry"
|
|
1316
|
-
version = "0.21.0"
|
|
1496
|
+
version = "0.22.0"
|
|
1317
1497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
-
checksum = "
|
|
1498
|
+
checksum = "900d57987be3f2aeb70d385fff9b27fb74c5723cc9a52d904d4f9c807a0667bf"
|
|
1319
1499
|
dependencies = [
|
|
1320
1500
|
"futures-core",
|
|
1321
1501
|
"futures-sink",
|
|
1322
|
-
"indexmap 2.1.0",
|
|
1323
1502
|
"js-sys",
|
|
1324
1503
|
"once_cell",
|
|
1325
1504
|
"pin-project-lite",
|
|
@@ -1329,17 +1508,17 @@ dependencies = [
|
|
|
1329
1508
|
|
|
1330
1509
|
[[package]]
|
|
1331
1510
|
name = "opentelemetry-otlp"
|
|
1332
|
-
version = "0.
|
|
1511
|
+
version = "0.15.0"
|
|
1333
1512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
-
checksum = "
|
|
1513
|
+
checksum = "1a016b8d9495c639af2145ac22387dcb88e44118e45320d9238fbf4e7889abcb"
|
|
1335
1514
|
dependencies = [
|
|
1336
1515
|
"async-trait",
|
|
1337
1516
|
"futures-core",
|
|
1338
|
-
"http",
|
|
1339
|
-
"opentelemetry
|
|
1517
|
+
"http 0.2.12",
|
|
1518
|
+
"opentelemetry",
|
|
1340
1519
|
"opentelemetry-proto",
|
|
1341
1520
|
"opentelemetry-semantic-conventions",
|
|
1342
|
-
"opentelemetry_sdk
|
|
1521
|
+
"opentelemetry_sdk",
|
|
1343
1522
|
"prost",
|
|
1344
1523
|
"thiserror",
|
|
1345
1524
|
"tokio",
|
|
@@ -1348,76 +1527,40 @@ dependencies = [
|
|
|
1348
1527
|
|
|
1349
1528
|
[[package]]
|
|
1350
1529
|
name = "opentelemetry-prometheus"
|
|
1351
|
-
version = "0.
|
|
1530
|
+
version = "0.15.0"
|
|
1352
1531
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
-
checksum = "
|
|
1532
|
+
checksum = "30bbcf6341cab7e2193e5843f0ac36c446a5b3fccb28747afaeda17996dcd02e"
|
|
1354
1533
|
dependencies = [
|
|
1355
1534
|
"once_cell",
|
|
1356
|
-
"opentelemetry
|
|
1357
|
-
"opentelemetry_sdk
|
|
1535
|
+
"opentelemetry",
|
|
1536
|
+
"opentelemetry_sdk",
|
|
1358
1537
|
"prometheus",
|
|
1359
1538
|
"protobuf",
|
|
1360
1539
|
]
|
|
1361
1540
|
|
|
1362
1541
|
[[package]]
|
|
1363
1542
|
name = "opentelemetry-proto"
|
|
1364
|
-
version = "0.
|
|
1543
|
+
version = "0.5.0"
|
|
1365
1544
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
-
checksum = "
|
|
1545
|
+
checksum = "3a8fddc9b68f5b80dae9d6f510b88e02396f006ad48cac349411fbecc80caae4"
|
|
1367
1546
|
dependencies = [
|
|
1368
|
-
"opentelemetry
|
|
1369
|
-
"opentelemetry_sdk
|
|
1547
|
+
"opentelemetry",
|
|
1548
|
+
"opentelemetry_sdk",
|
|
1370
1549
|
"prost",
|
|
1371
1550
|
"tonic",
|
|
1372
1551
|
]
|
|
1373
1552
|
|
|
1374
1553
|
[[package]]
|
|
1375
1554
|
name = "opentelemetry-semantic-conventions"
|
|
1376
|
-
version = "0.
|
|
1377
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
-
checksum = "f5774f1ef1f982ef2a447f6ee04ec383981a3ab99c8e77a1a7b30182e65bbc84"
|
|
1379
|
-
dependencies = [
|
|
1380
|
-
"opentelemetry 0.21.0",
|
|
1381
|
-
]
|
|
1382
|
-
|
|
1383
|
-
[[package]]
|
|
1384
|
-
name = "opentelemetry_api"
|
|
1385
|
-
version = "0.18.0"
|
|
1386
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
-
checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22"
|
|
1388
|
-
dependencies = [
|
|
1389
|
-
"futures-channel",
|
|
1390
|
-
"futures-util",
|
|
1391
|
-
"indexmap 1.9.3",
|
|
1392
|
-
"js-sys",
|
|
1393
|
-
"once_cell",
|
|
1394
|
-
"pin-project-lite",
|
|
1395
|
-
"thiserror",
|
|
1396
|
-
]
|
|
1397
|
-
|
|
1398
|
-
[[package]]
|
|
1399
|
-
name = "opentelemetry_sdk"
|
|
1400
|
-
version = "0.18.0"
|
|
1555
|
+
version = "0.14.0"
|
|
1401
1556
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
-
checksum = "
|
|
1403
|
-
dependencies = [
|
|
1404
|
-
"async-trait",
|
|
1405
|
-
"crossbeam-channel",
|
|
1406
|
-
"futures-channel",
|
|
1407
|
-
"futures-executor",
|
|
1408
|
-
"futures-util",
|
|
1409
|
-
"once_cell",
|
|
1410
|
-
"opentelemetry_api",
|
|
1411
|
-
"percent-encoding",
|
|
1412
|
-
"rand",
|
|
1413
|
-
"thiserror",
|
|
1414
|
-
]
|
|
1557
|
+
checksum = "f9ab5bd6c42fb9349dcf28af2ba9a0667f697f9bdcca045d39f2cec5543e2910"
|
|
1415
1558
|
|
|
1416
1559
|
[[package]]
|
|
1417
1560
|
name = "opentelemetry_sdk"
|
|
1418
|
-
version = "0.
|
|
1561
|
+
version = "0.22.1"
|
|
1419
1562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
-
checksum = "
|
|
1563
|
+
checksum = "9e90c7113be649e31e9a0f8b5ee24ed7a16923b322c3c5ab6367469c049d6b7e"
|
|
1421
1564
|
dependencies = [
|
|
1422
1565
|
"async-trait",
|
|
1423
1566
|
"crossbeam-channel",
|
|
@@ -1426,7 +1569,7 @@ dependencies = [
|
|
|
1426
1569
|
"futures-util",
|
|
1427
1570
|
"glob",
|
|
1428
1571
|
"once_cell",
|
|
1429
|
-
"opentelemetry
|
|
1572
|
+
"opentelemetry",
|
|
1430
1573
|
"ordered-float",
|
|
1431
1574
|
"percent-encoding",
|
|
1432
1575
|
"rand",
|
|
@@ -1473,27 +1616,14 @@ dependencies = [
|
|
|
1473
1616
|
"windows-targets 0.48.5",
|
|
1474
1617
|
]
|
|
1475
1618
|
|
|
1476
|
-
[[package]]
|
|
1477
|
-
name = "password-hash"
|
|
1478
|
-
version = "0.4.2"
|
|
1479
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
-
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
|
|
1481
|
-
dependencies = [
|
|
1482
|
-
"base64ct",
|
|
1483
|
-
"rand_core",
|
|
1484
|
-
"subtle",
|
|
1485
|
-
]
|
|
1486
|
-
|
|
1487
1619
|
[[package]]
|
|
1488
1620
|
name = "pbkdf2"
|
|
1489
|
-
version = "0.
|
|
1621
|
+
version = "0.12.2"
|
|
1490
1622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
-
checksum = "
|
|
1623
|
+
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
|
|
1492
1624
|
dependencies = [
|
|
1493
1625
|
"digest",
|
|
1494
1626
|
"hmac",
|
|
1495
|
-
"password-hash",
|
|
1496
|
-
"sha2",
|
|
1497
1627
|
]
|
|
1498
1628
|
|
|
1499
1629
|
[[package]]
|
|
@@ -1509,27 +1639,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1509
1639
|
checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
|
|
1510
1640
|
dependencies = [
|
|
1511
1641
|
"fixedbitset",
|
|
1512
|
-
"indexmap 2.
|
|
1642
|
+
"indexmap 2.2.6",
|
|
1643
|
+
]
|
|
1644
|
+
|
|
1645
|
+
[[package]]
|
|
1646
|
+
name = "pid"
|
|
1647
|
+
version = "4.0.0"
|
|
1648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1649
|
+
checksum = "d7c931ef9756cd5e3fa3d395bfe09df4dfa6f0612c6ca8f6b12927d17ca34e36"
|
|
1650
|
+
dependencies = [
|
|
1651
|
+
"num-traits",
|
|
1513
1652
|
]
|
|
1514
1653
|
|
|
1515
1654
|
[[package]]
|
|
1516
1655
|
name = "pin-project"
|
|
1517
|
-
version = "1.1.
|
|
1656
|
+
version = "1.1.5"
|
|
1518
1657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
-
checksum = "
|
|
1658
|
+
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
|
|
1520
1659
|
dependencies = [
|
|
1521
1660
|
"pin-project-internal",
|
|
1522
1661
|
]
|
|
1523
1662
|
|
|
1524
1663
|
[[package]]
|
|
1525
1664
|
name = "pin-project-internal"
|
|
1526
|
-
version = "1.1.
|
|
1665
|
+
version = "1.1.5"
|
|
1527
1666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
-
checksum = "
|
|
1667
|
+
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
|
1529
1668
|
dependencies = [
|
|
1530
1669
|
"proc-macro2",
|
|
1531
1670
|
"quote",
|
|
1532
|
-
"syn 2.0.
|
|
1671
|
+
"syn 2.0.55",
|
|
1533
1672
|
]
|
|
1534
1673
|
|
|
1535
1674
|
[[package]]
|
|
@@ -1546,9 +1685,15 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1546
1685
|
|
|
1547
1686
|
[[package]]
|
|
1548
1687
|
name = "pkg-config"
|
|
1549
|
-
version = "0.3.
|
|
1688
|
+
version = "0.3.30"
|
|
1689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
1691
|
+
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "portable-atomic"
|
|
1694
|
+
version = "1.6.0"
|
|
1550
1695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
-
checksum = "
|
|
1696
|
+
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
|
1552
1697
|
|
|
1553
1698
|
[[package]]
|
|
1554
1699
|
name = "powerfmt"
|
|
@@ -1564,16 +1709,12 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
|
1564
1709
|
|
|
1565
1710
|
[[package]]
|
|
1566
1711
|
name = "predicates"
|
|
1567
|
-
version = "
|
|
1712
|
+
version = "3.1.0"
|
|
1568
1713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1569
|
-
checksum = "
|
|
1714
|
+
checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8"
|
|
1570
1715
|
dependencies = [
|
|
1571
|
-
"
|
|
1572
|
-
"float-cmp",
|
|
1573
|
-
"itertools 0.10.5",
|
|
1574
|
-
"normalize-line-endings",
|
|
1716
|
+
"anstyle",
|
|
1575
1717
|
"predicates-core",
|
|
1576
|
-
"regex",
|
|
1577
1718
|
]
|
|
1578
1719
|
|
|
1579
1720
|
[[package]]
|
|
@@ -1594,19 +1735,19 @@ dependencies = [
|
|
|
1594
1735
|
|
|
1595
1736
|
[[package]]
|
|
1596
1737
|
name = "prettyplease"
|
|
1597
|
-
version = "0.
|
|
1738
|
+
version = "0.2.17"
|
|
1598
1739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
-
checksum = "
|
|
1740
|
+
checksum = "8d3928fb5db768cb86f891ff014f0144589297e3c6a1aba6ed7cecfdace270c7"
|
|
1600
1741
|
dependencies = [
|
|
1601
1742
|
"proc-macro2",
|
|
1602
|
-
"syn
|
|
1743
|
+
"syn 2.0.55",
|
|
1603
1744
|
]
|
|
1604
1745
|
|
|
1605
1746
|
[[package]]
|
|
1606
1747
|
name = "proc-macro2"
|
|
1607
|
-
version = "1.0.
|
|
1748
|
+
version = "1.0.79"
|
|
1608
1749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
-
checksum = "
|
|
1750
|
+
checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
|
|
1610
1751
|
dependencies = [
|
|
1611
1752
|
"unicode-ident",
|
|
1612
1753
|
]
|
|
@@ -1628,9 +1769,9 @@ dependencies = [
|
|
|
1628
1769
|
|
|
1629
1770
|
[[package]]
|
|
1630
1771
|
name = "prost"
|
|
1631
|
-
version = "0.
|
|
1772
|
+
version = "0.12.3"
|
|
1632
1773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
-
checksum = "
|
|
1774
|
+
checksum = "146c289cda302b98a28d40c8b3b90498d6e526dd24ac2ecea73e4e491685b94a"
|
|
1634
1775
|
dependencies = [
|
|
1635
1776
|
"bytes",
|
|
1636
1777
|
"prost-derive",
|
|
@@ -1638,53 +1779,53 @@ dependencies = [
|
|
|
1638
1779
|
|
|
1639
1780
|
[[package]]
|
|
1640
1781
|
name = "prost-build"
|
|
1641
|
-
version = "0.
|
|
1782
|
+
version = "0.12.3"
|
|
1642
1783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
-
checksum = "
|
|
1784
|
+
checksum = "c55e02e35260070b6f716a2423c2ff1c3bb1642ddca6f99e1f26d06268a0e2d2"
|
|
1644
1785
|
dependencies = [
|
|
1645
1786
|
"bytes",
|
|
1646
1787
|
"heck",
|
|
1647
|
-
"itertools 0.
|
|
1648
|
-
"lazy_static",
|
|
1788
|
+
"itertools 0.11.0",
|
|
1649
1789
|
"log",
|
|
1650
1790
|
"multimap",
|
|
1791
|
+
"once_cell",
|
|
1651
1792
|
"petgraph",
|
|
1652
1793
|
"prettyplease",
|
|
1653
1794
|
"prost",
|
|
1654
1795
|
"prost-types",
|
|
1655
1796
|
"regex",
|
|
1656
|
-
"syn
|
|
1797
|
+
"syn 2.0.55",
|
|
1657
1798
|
"tempfile",
|
|
1658
1799
|
"which",
|
|
1659
1800
|
]
|
|
1660
1801
|
|
|
1661
1802
|
[[package]]
|
|
1662
1803
|
name = "prost-derive"
|
|
1663
|
-
version = "0.
|
|
1804
|
+
version = "0.12.3"
|
|
1664
1805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
-
checksum = "
|
|
1806
|
+
checksum = "efb6c9a1dd1def8e2124d17e83a20af56f1570d6c2d2bd9e266ccb768df3840e"
|
|
1666
1807
|
dependencies = [
|
|
1667
1808
|
"anyhow",
|
|
1668
|
-
"itertools 0.
|
|
1809
|
+
"itertools 0.11.0",
|
|
1669
1810
|
"proc-macro2",
|
|
1670
1811
|
"quote",
|
|
1671
|
-
"syn
|
|
1812
|
+
"syn 2.0.55",
|
|
1672
1813
|
]
|
|
1673
1814
|
|
|
1674
1815
|
[[package]]
|
|
1675
1816
|
name = "prost-types"
|
|
1676
|
-
version = "0.
|
|
1817
|
+
version = "0.12.3"
|
|
1677
1818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
-
checksum = "
|
|
1819
|
+
checksum = "193898f59edcf43c26227dcd4c8427f00d99d61e95dcde58dabd49fa291d470e"
|
|
1679
1820
|
dependencies = [
|
|
1680
1821
|
"prost",
|
|
1681
1822
|
]
|
|
1682
1823
|
|
|
1683
1824
|
[[package]]
|
|
1684
1825
|
name = "prost-wkt"
|
|
1685
|
-
version = "0.
|
|
1826
|
+
version = "0.5.0"
|
|
1686
1827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
-
checksum = "
|
|
1828
|
+
checksum = "4d8ef9c3f0f1dab910d2b7e2c24a8e4322e122eba6d7a1921eeebcebbc046c40"
|
|
1688
1829
|
dependencies = [
|
|
1689
1830
|
"chrono",
|
|
1690
1831
|
"inventory",
|
|
@@ -1697,9 +1838,9 @@ dependencies = [
|
|
|
1697
1838
|
|
|
1698
1839
|
[[package]]
|
|
1699
1840
|
name = "prost-wkt-build"
|
|
1700
|
-
version = "0.
|
|
1841
|
+
version = "0.5.0"
|
|
1701
1842
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
-
checksum = "
|
|
1843
|
+
checksum = "5b31cae9a54ca84fee1504740a82eebf2479532905e106f63ca0c3bc8d780321"
|
|
1703
1844
|
dependencies = [
|
|
1704
1845
|
"heck",
|
|
1705
1846
|
"prost",
|
|
@@ -1710,9 +1851,9 @@ dependencies = [
|
|
|
1710
1851
|
|
|
1711
1852
|
[[package]]
|
|
1712
1853
|
name = "prost-wkt-types"
|
|
1713
|
-
version = "0.
|
|
1854
|
+
version = "0.5.0"
|
|
1714
1855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1715
|
-
checksum = "
|
|
1856
|
+
checksum = "435be4a8704091b4c5fb1d79799de7f2dbff53af05edf29385237f8cf7ab37ee"
|
|
1716
1857
|
dependencies = [
|
|
1717
1858
|
"chrono",
|
|
1718
1859
|
"prost",
|
|
@@ -1734,13 +1875,12 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
|
|
|
1734
1875
|
|
|
1735
1876
|
[[package]]
|
|
1736
1877
|
name = "quanta"
|
|
1737
|
-
version = "0.
|
|
1878
|
+
version = "0.12.2"
|
|
1738
1879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
-
checksum = "
|
|
1880
|
+
checksum = "9ca0b7bac0b97248c40bb77288fc52029cf1459c0461ea1b05ee32ccf011de2c"
|
|
1740
1881
|
dependencies = [
|
|
1741
1882
|
"crossbeam-utils",
|
|
1742
1883
|
"libc",
|
|
1743
|
-
"mach2",
|
|
1744
1884
|
"once_cell",
|
|
1745
1885
|
"raw-cpuid",
|
|
1746
1886
|
"wasi",
|
|
@@ -1789,11 +1929,31 @@ dependencies = [
|
|
|
1789
1929
|
|
|
1790
1930
|
[[package]]
|
|
1791
1931
|
name = "raw-cpuid"
|
|
1792
|
-
version = "
|
|
1932
|
+
version = "11.0.1"
|
|
1793
1933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
-
checksum = "
|
|
1934
|
+
checksum = "9d86a7c4638d42c44551f4791a20e687dbb4c3de1f33c43dd71e355cd429def1"
|
|
1795
1935
|
dependencies = [
|
|
1796
|
-
"bitflags
|
|
1936
|
+
"bitflags 2.5.0",
|
|
1937
|
+
]
|
|
1938
|
+
|
|
1939
|
+
[[package]]
|
|
1940
|
+
name = "rayon"
|
|
1941
|
+
version = "1.10.0"
|
|
1942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
1944
|
+
dependencies = [
|
|
1945
|
+
"either",
|
|
1946
|
+
"rayon-core",
|
|
1947
|
+
]
|
|
1948
|
+
|
|
1949
|
+
[[package]]
|
|
1950
|
+
name = "rayon-core"
|
|
1951
|
+
version = "1.12.1"
|
|
1952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
1954
|
+
dependencies = [
|
|
1955
|
+
"crossbeam-deque",
|
|
1956
|
+
"crossbeam-utils",
|
|
1797
1957
|
]
|
|
1798
1958
|
|
|
1799
1959
|
[[package]]
|
|
@@ -1807,14 +1967,14 @@ dependencies = [
|
|
|
1807
1967
|
|
|
1808
1968
|
[[package]]
|
|
1809
1969
|
name = "regex"
|
|
1810
|
-
version = "1.10.
|
|
1970
|
+
version = "1.10.4"
|
|
1811
1971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
-
checksum = "
|
|
1972
|
+
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
|
|
1813
1973
|
dependencies = [
|
|
1814
1974
|
"aho-corasick",
|
|
1815
1975
|
"memchr",
|
|
1816
|
-
"regex-automata 0.4.
|
|
1817
|
-
"regex-syntax 0.8.
|
|
1976
|
+
"regex-automata 0.4.6",
|
|
1977
|
+
"regex-syntax 0.8.3",
|
|
1818
1978
|
]
|
|
1819
1979
|
|
|
1820
1980
|
[[package]]
|
|
@@ -1828,13 +1988,13 @@ dependencies = [
|
|
|
1828
1988
|
|
|
1829
1989
|
[[package]]
|
|
1830
1990
|
name = "regex-automata"
|
|
1831
|
-
version = "0.4.
|
|
1991
|
+
version = "0.4.6"
|
|
1832
1992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
-
checksum = "
|
|
1993
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
|
1834
1994
|
dependencies = [
|
|
1835
1995
|
"aho-corasick",
|
|
1836
1996
|
"memchr",
|
|
1837
|
-
"regex-syntax 0.8.
|
|
1997
|
+
"regex-syntax 0.8.3",
|
|
1838
1998
|
]
|
|
1839
1999
|
|
|
1840
2000
|
[[package]]
|
|
@@ -1845,25 +2005,25 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
|
1845
2005
|
|
|
1846
2006
|
[[package]]
|
|
1847
2007
|
name = "regex-syntax"
|
|
1848
|
-
version = "0.8.
|
|
2008
|
+
version = "0.8.3"
|
|
1849
2009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
-
checksum = "
|
|
2010
|
+
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
|
|
1851
2011
|
|
|
1852
2012
|
[[package]]
|
|
1853
2013
|
name = "reqwest"
|
|
1854
|
-
version = "0.11.
|
|
2014
|
+
version = "0.11.27"
|
|
1855
2015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
-
checksum = "
|
|
2016
|
+
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
|
|
1857
2017
|
dependencies = [
|
|
1858
|
-
"base64",
|
|
2018
|
+
"base64 0.21.7",
|
|
1859
2019
|
"bytes",
|
|
1860
2020
|
"encoding_rs",
|
|
1861
2021
|
"futures-core",
|
|
1862
2022
|
"futures-util",
|
|
1863
|
-
"h2",
|
|
1864
|
-
"http",
|
|
1865
|
-
"http-body",
|
|
1866
|
-
"hyper",
|
|
2023
|
+
"h2 0.3.25",
|
|
2024
|
+
"http 0.2.12",
|
|
2025
|
+
"http-body 0.4.6",
|
|
2026
|
+
"hyper 0.14.28",
|
|
1867
2027
|
"hyper-rustls",
|
|
1868
2028
|
"ipnet",
|
|
1869
2029
|
"js-sys",
|
|
@@ -1872,14 +2032,15 @@ dependencies = [
|
|
|
1872
2032
|
"once_cell",
|
|
1873
2033
|
"percent-encoding",
|
|
1874
2034
|
"pin-project-lite",
|
|
1875
|
-
"rustls",
|
|
1876
|
-
"rustls-pemfile",
|
|
2035
|
+
"rustls 0.21.10",
|
|
2036
|
+
"rustls-pemfile 1.0.4",
|
|
1877
2037
|
"serde",
|
|
1878
2038
|
"serde_json",
|
|
1879
2039
|
"serde_urlencoded",
|
|
2040
|
+
"sync_wrapper",
|
|
1880
2041
|
"system-configuration",
|
|
1881
2042
|
"tokio",
|
|
1882
|
-
"tokio-rustls",
|
|
2043
|
+
"tokio-rustls 0.24.1",
|
|
1883
2044
|
"tokio-util",
|
|
1884
2045
|
"tower-service",
|
|
1885
2046
|
"url",
|
|
@@ -1893,23 +2054,24 @@ dependencies = [
|
|
|
1893
2054
|
|
|
1894
2055
|
[[package]]
|
|
1895
2056
|
name = "ring"
|
|
1896
|
-
version = "0.17.
|
|
2057
|
+
version = "0.17.8"
|
|
1897
2058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1898
|
-
checksum = "
|
|
2059
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
|
1899
2060
|
dependencies = [
|
|
1900
2061
|
"cc",
|
|
2062
|
+
"cfg-if",
|
|
1901
2063
|
"getrandom",
|
|
1902
2064
|
"libc",
|
|
1903
2065
|
"spin",
|
|
1904
2066
|
"untrusted",
|
|
1905
|
-
"windows-sys 0.
|
|
2067
|
+
"windows-sys 0.52.0",
|
|
1906
2068
|
]
|
|
1907
2069
|
|
|
1908
2070
|
[[package]]
|
|
1909
2071
|
name = "ringbuf"
|
|
1910
|
-
version = "0.
|
|
2072
|
+
version = "0.4.1"
|
|
1911
2073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1912
|
-
checksum = "
|
|
2074
|
+
checksum = "5c65e4c865bc3d2e3294493dff0acf7e6c259d066e34e22059fa9c39645c3636"
|
|
1913
2075
|
dependencies = [
|
|
1914
2076
|
"crossbeam-utils",
|
|
1915
2077
|
]
|
|
@@ -1926,7 +2088,7 @@ version = "0.4.0"
|
|
|
1926
2088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
2089
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
1928
2090
|
dependencies = [
|
|
1929
|
-
"semver 1.0.
|
|
2091
|
+
"semver 1.0.22",
|
|
1930
2092
|
]
|
|
1931
2093
|
|
|
1932
2094
|
[[package]]
|
|
@@ -1945,7 +2107,7 @@ dependencies = [
|
|
|
1945
2107
|
"proc-macro2",
|
|
1946
2108
|
"quote",
|
|
1947
2109
|
"rustfsm_trait",
|
|
1948
|
-
"syn 2.0.
|
|
2110
|
+
"syn 2.0.55",
|
|
1949
2111
|
]
|
|
1950
2112
|
|
|
1951
2113
|
[[package]]
|
|
@@ -1954,11 +2116,11 @@ version = "0.1.0"
|
|
|
1954
2116
|
|
|
1955
2117
|
[[package]]
|
|
1956
2118
|
name = "rustix"
|
|
1957
|
-
version = "0.38.
|
|
2119
|
+
version = "0.38.32"
|
|
1958
2120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
-
checksum = "
|
|
2121
|
+
checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89"
|
|
1960
2122
|
dependencies = [
|
|
1961
|
-
"bitflags 2.
|
|
2123
|
+
"bitflags 2.5.0",
|
|
1962
2124
|
"errno",
|
|
1963
2125
|
"libc",
|
|
1964
2126
|
"linux-raw-sys",
|
|
@@ -1973,18 +2135,33 @@ checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
|
|
|
1973
2135
|
dependencies = [
|
|
1974
2136
|
"log",
|
|
1975
2137
|
"ring",
|
|
1976
|
-
"rustls-webpki",
|
|
2138
|
+
"rustls-webpki 0.101.7",
|
|
1977
2139
|
"sct",
|
|
1978
2140
|
]
|
|
1979
2141
|
|
|
2142
|
+
[[package]]
|
|
2143
|
+
name = "rustls"
|
|
2144
|
+
version = "0.22.3"
|
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
+
checksum = "99008d7ad0bbbea527ec27bddbc0e432c5b87d8175178cee68d2eec9c4a1813c"
|
|
2147
|
+
dependencies = [
|
|
2148
|
+
"log",
|
|
2149
|
+
"ring",
|
|
2150
|
+
"rustls-pki-types",
|
|
2151
|
+
"rustls-webpki 0.102.2",
|
|
2152
|
+
"subtle",
|
|
2153
|
+
"zeroize",
|
|
2154
|
+
]
|
|
2155
|
+
|
|
1980
2156
|
[[package]]
|
|
1981
2157
|
name = "rustls-native-certs"
|
|
1982
|
-
version = "0.
|
|
2158
|
+
version = "0.7.0"
|
|
1983
2159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
-
checksum = "
|
|
2160
|
+
checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792"
|
|
1985
2161
|
dependencies = [
|
|
1986
2162
|
"openssl-probe",
|
|
1987
|
-
"rustls-pemfile",
|
|
2163
|
+
"rustls-pemfile 2.1.1",
|
|
2164
|
+
"rustls-pki-types",
|
|
1988
2165
|
"schannel",
|
|
1989
2166
|
"security-framework",
|
|
1990
2167
|
]
|
|
@@ -1995,9 +2172,25 @@ version = "1.0.4"
|
|
|
1995
2172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
2173
|
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
1997
2174
|
dependencies = [
|
|
1998
|
-
"base64",
|
|
2175
|
+
"base64 0.21.7",
|
|
2176
|
+
]
|
|
2177
|
+
|
|
2178
|
+
[[package]]
|
|
2179
|
+
name = "rustls-pemfile"
|
|
2180
|
+
version = "2.1.1"
|
|
2181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2182
|
+
checksum = "f48172685e6ff52a556baa527774f61fcaa884f59daf3375c62a3f1cd2549dab"
|
|
2183
|
+
dependencies = [
|
|
2184
|
+
"base64 0.21.7",
|
|
2185
|
+
"rustls-pki-types",
|
|
1999
2186
|
]
|
|
2000
2187
|
|
|
2188
|
+
[[package]]
|
|
2189
|
+
name = "rustls-pki-types"
|
|
2190
|
+
version = "1.4.1"
|
|
2191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
+
checksum = "ecd36cc4259e3e4514335c4a138c6b43171a8d61d8f5c9348f9fc7529416f247"
|
|
2193
|
+
|
|
2001
2194
|
[[package]]
|
|
2002
2195
|
name = "rustls-webpki"
|
|
2003
2196
|
version = "0.101.7"
|
|
@@ -2008,6 +2201,17 @@ dependencies = [
|
|
|
2008
2201
|
"untrusted",
|
|
2009
2202
|
]
|
|
2010
2203
|
|
|
2204
|
+
[[package]]
|
|
2205
|
+
name = "rustls-webpki"
|
|
2206
|
+
version = "0.102.2"
|
|
2207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2208
|
+
checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610"
|
|
2209
|
+
dependencies = [
|
|
2210
|
+
"ring",
|
|
2211
|
+
"rustls-pki-types",
|
|
2212
|
+
"untrusted",
|
|
2213
|
+
]
|
|
2214
|
+
|
|
2011
2215
|
[[package]]
|
|
2012
2216
|
name = "rustversion"
|
|
2013
2217
|
version = "1.0.14"
|
|
@@ -2016,9 +2220,9 @@ checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
|
|
2016
2220
|
|
|
2017
2221
|
[[package]]
|
|
2018
2222
|
name = "ryu"
|
|
2019
|
-
version = "1.0.
|
|
2223
|
+
version = "1.0.17"
|
|
2020
2224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
-
checksum = "
|
|
2225
|
+
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
|
|
2022
2226
|
|
|
2023
2227
|
[[package]]
|
|
2024
2228
|
name = "schannel"
|
|
@@ -2079,9 +2283,9 @@ dependencies = [
|
|
|
2079
2283
|
|
|
2080
2284
|
[[package]]
|
|
2081
2285
|
name = "semver"
|
|
2082
|
-
version = "1.0.
|
|
2286
|
+
version = "1.0.22"
|
|
2083
2287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2084
|
-
checksum = "
|
|
2288
|
+
checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
|
|
2085
2289
|
|
|
2086
2290
|
[[package]]
|
|
2087
2291
|
name = "semver-parser"
|
|
@@ -2091,29 +2295,29 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
|
2091
2295
|
|
|
2092
2296
|
[[package]]
|
|
2093
2297
|
name = "serde"
|
|
2094
|
-
version = "1.0.
|
|
2298
|
+
version = "1.0.197"
|
|
2095
2299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2096
|
-
checksum = "
|
|
2300
|
+
checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
|
|
2097
2301
|
dependencies = [
|
|
2098
2302
|
"serde_derive",
|
|
2099
2303
|
]
|
|
2100
2304
|
|
|
2101
2305
|
[[package]]
|
|
2102
2306
|
name = "serde_derive"
|
|
2103
|
-
version = "1.0.
|
|
2307
|
+
version = "1.0.197"
|
|
2104
2308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
-
checksum = "
|
|
2309
|
+
checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
|
|
2106
2310
|
dependencies = [
|
|
2107
2311
|
"proc-macro2",
|
|
2108
2312
|
"quote",
|
|
2109
|
-
"syn 2.0.
|
|
2313
|
+
"syn 2.0.55",
|
|
2110
2314
|
]
|
|
2111
2315
|
|
|
2112
2316
|
[[package]]
|
|
2113
2317
|
name = "serde_json"
|
|
2114
|
-
version = "1.0.
|
|
2318
|
+
version = "1.0.115"
|
|
2115
2319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2116
|
-
checksum = "
|
|
2320
|
+
checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd"
|
|
2117
2321
|
dependencies = [
|
|
2118
2322
|
"itoa",
|
|
2119
2323
|
"ryu",
|
|
@@ -2143,17 +2347,6 @@ dependencies = [
|
|
|
2143
2347
|
"digest",
|
|
2144
2348
|
]
|
|
2145
2349
|
|
|
2146
|
-
[[package]]
|
|
2147
|
-
name = "sha2"
|
|
2148
|
-
version = "0.10.8"
|
|
2149
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2150
|
-
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
|
2151
|
-
dependencies = [
|
|
2152
|
-
"cfg-if",
|
|
2153
|
-
"cpufeatures",
|
|
2154
|
-
"digest",
|
|
2155
|
-
]
|
|
2156
|
-
|
|
2157
2350
|
[[package]]
|
|
2158
2351
|
name = "sharded-slab"
|
|
2159
2352
|
version = "0.1.7"
|
|
@@ -2172,11 +2365,17 @@ dependencies = [
|
|
|
2172
2365
|
"libc",
|
|
2173
2366
|
]
|
|
2174
2367
|
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "simd-adler32"
|
|
2370
|
+
version = "0.3.7"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
2373
|
+
|
|
2175
2374
|
[[package]]
|
|
2176
2375
|
name = "siphasher"
|
|
2177
|
-
version = "1.0.
|
|
2376
|
+
version = "1.0.1"
|
|
2178
2377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
-
checksum = "
|
|
2378
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
2180
2379
|
|
|
2181
2380
|
[[package]]
|
|
2182
2381
|
name = "slab"
|
|
@@ -2198,18 +2397,18 @@ dependencies = [
|
|
|
2198
2397
|
|
|
2199
2398
|
[[package]]
|
|
2200
2399
|
name = "smallvec"
|
|
2201
|
-
version = "1.
|
|
2400
|
+
version = "1.13.2"
|
|
2202
2401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2203
|
-
checksum = "
|
|
2402
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
2204
2403
|
|
|
2205
2404
|
[[package]]
|
|
2206
2405
|
name = "socket2"
|
|
2207
|
-
version = "0.5.
|
|
2406
|
+
version = "0.5.6"
|
|
2208
2407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2209
|
-
checksum = "
|
|
2408
|
+
checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
|
|
2210
2409
|
dependencies = [
|
|
2211
2410
|
"libc",
|
|
2212
|
-
"windows-sys 0.
|
|
2411
|
+
"windows-sys 0.52.0",
|
|
2213
2412
|
]
|
|
2214
2413
|
|
|
2215
2414
|
[[package]]
|
|
@@ -2218,6 +2417,15 @@ version = "0.9.8"
|
|
|
2218
2417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
2418
|
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2220
2419
|
|
|
2420
|
+
[[package]]
|
|
2421
|
+
name = "spinning_top"
|
|
2422
|
+
version = "0.3.0"
|
|
2423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
|
+
checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300"
|
|
2425
|
+
dependencies = [
|
|
2426
|
+
"lock_api",
|
|
2427
|
+
]
|
|
2428
|
+
|
|
2221
2429
|
[[package]]
|
|
2222
2430
|
name = "strsim"
|
|
2223
2431
|
version = "0.10.0"
|
|
@@ -2243,9 +2451,9 @@ dependencies = [
|
|
|
2243
2451
|
|
|
2244
2452
|
[[package]]
|
|
2245
2453
|
name = "syn"
|
|
2246
|
-
version = "2.0.
|
|
2454
|
+
version = "2.0.55"
|
|
2247
2455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
-
checksum = "
|
|
2456
|
+
checksum = "002a1b3dbf967edfafc32655d0f377ab0bb7b994aa1d32c8cc7e9b8bf3ebb8f0"
|
|
2249
2457
|
dependencies = [
|
|
2250
2458
|
"proc-macro2",
|
|
2251
2459
|
"quote",
|
|
@@ -2269,6 +2477,21 @@ version = "0.1.2"
|
|
|
2269
2477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2270
2478
|
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
2271
2479
|
|
|
2480
|
+
[[package]]
|
|
2481
|
+
name = "sysinfo"
|
|
2482
|
+
version = "0.30.12"
|
|
2483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2484
|
+
checksum = "732ffa00f53e6b2af46208fba5718d9662a421049204e156328b66791ffa15ae"
|
|
2485
|
+
dependencies = [
|
|
2486
|
+
"cfg-if",
|
|
2487
|
+
"core-foundation-sys",
|
|
2488
|
+
"libc",
|
|
2489
|
+
"ntapi",
|
|
2490
|
+
"once_cell",
|
|
2491
|
+
"rayon",
|
|
2492
|
+
"windows",
|
|
2493
|
+
]
|
|
2494
|
+
|
|
2272
2495
|
[[package]]
|
|
2273
2496
|
name = "system-configuration"
|
|
2274
2497
|
version = "0.5.1"
|
|
@@ -2303,13 +2526,12 @@ dependencies = [
|
|
|
2303
2526
|
|
|
2304
2527
|
[[package]]
|
|
2305
2528
|
name = "tempfile"
|
|
2306
|
-
version = "3.
|
|
2529
|
+
version = "3.10.1"
|
|
2307
2530
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
|
-
checksum = "
|
|
2531
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
|
2309
2532
|
dependencies = [
|
|
2310
2533
|
"cfg-if",
|
|
2311
2534
|
"fastrand",
|
|
2312
|
-
"redox_syscall",
|
|
2313
2535
|
"rustix",
|
|
2314
2536
|
"windows-sys 0.52.0",
|
|
2315
2537
|
]
|
|
@@ -2321,13 +2543,14 @@ dependencies = [
|
|
|
2321
2543
|
"anyhow",
|
|
2322
2544
|
"async-trait",
|
|
2323
2545
|
"backoff",
|
|
2546
|
+
"base64 0.22.1",
|
|
2324
2547
|
"derive_builder",
|
|
2325
2548
|
"derive_more",
|
|
2326
2549
|
"futures",
|
|
2327
2550
|
"futures-retry",
|
|
2328
|
-
"http",
|
|
2551
|
+
"http 0.2.12",
|
|
2552
|
+
"hyper 0.14.28",
|
|
2329
2553
|
"once_cell",
|
|
2330
|
-
"opentelemetry 0.21.0",
|
|
2331
2554
|
"parking_lot",
|
|
2332
2555
|
"prost-types",
|
|
2333
2556
|
"slotmap",
|
|
@@ -2347,11 +2570,10 @@ name = "temporal-sdk-core"
|
|
|
2347
2570
|
version = "0.1.0"
|
|
2348
2571
|
dependencies = [
|
|
2349
2572
|
"anyhow",
|
|
2350
|
-
"arc-swap",
|
|
2351
2573
|
"async-trait",
|
|
2352
|
-
"base64",
|
|
2353
2574
|
"crossbeam-channel",
|
|
2354
2575
|
"crossbeam-queue",
|
|
2576
|
+
"crossbeam-utils",
|
|
2355
2577
|
"dashmap",
|
|
2356
2578
|
"derive_builder",
|
|
2357
2579
|
"derive_more",
|
|
@@ -2361,20 +2583,20 @@ dependencies = [
|
|
|
2361
2583
|
"futures",
|
|
2362
2584
|
"futures-util",
|
|
2363
2585
|
"governor",
|
|
2364
|
-
"http",
|
|
2365
|
-
"hyper",
|
|
2366
|
-
"
|
|
2367
|
-
"
|
|
2368
|
-
"log",
|
|
2586
|
+
"http-body-util",
|
|
2587
|
+
"hyper 1.2.0",
|
|
2588
|
+
"hyper-util",
|
|
2589
|
+
"itertools 0.12.1",
|
|
2369
2590
|
"lru",
|
|
2370
2591
|
"mockall",
|
|
2371
2592
|
"nix",
|
|
2372
2593
|
"once_cell",
|
|
2373
|
-
"opentelemetry
|
|
2594
|
+
"opentelemetry",
|
|
2374
2595
|
"opentelemetry-otlp",
|
|
2375
2596
|
"opentelemetry-prometheus",
|
|
2376
|
-
"opentelemetry_sdk
|
|
2597
|
+
"opentelemetry_sdk",
|
|
2377
2598
|
"parking_lot",
|
|
2599
|
+
"pid",
|
|
2378
2600
|
"pin-project",
|
|
2379
2601
|
"prometheus",
|
|
2380
2602
|
"prost",
|
|
@@ -2387,6 +2609,7 @@ dependencies = [
|
|
|
2387
2609
|
"serde_json",
|
|
2388
2610
|
"siphasher",
|
|
2389
2611
|
"slotmap",
|
|
2612
|
+
"sysinfo",
|
|
2390
2613
|
"tar",
|
|
2391
2614
|
"temporal-client",
|
|
2392
2615
|
"temporal-sdk-core-api",
|
|
@@ -2398,7 +2621,6 @@ dependencies = [
|
|
|
2398
2621
|
"tonic",
|
|
2399
2622
|
"tonic-build",
|
|
2400
2623
|
"tracing",
|
|
2401
|
-
"tracing-futures",
|
|
2402
2624
|
"tracing-subscriber",
|
|
2403
2625
|
"url",
|
|
2404
2626
|
"uuid",
|
|
@@ -2412,13 +2634,11 @@ dependencies = [
|
|
|
2412
2634
|
"async-trait",
|
|
2413
2635
|
"derive_builder",
|
|
2414
2636
|
"derive_more",
|
|
2415
|
-
"opentelemetry
|
|
2637
|
+
"opentelemetry",
|
|
2416
2638
|
"prost-types",
|
|
2417
|
-
"serde",
|
|
2418
2639
|
"serde_json",
|
|
2419
2640
|
"temporal-sdk-core-protos",
|
|
2420
2641
|
"thiserror",
|
|
2421
|
-
"tokio",
|
|
2422
2642
|
"tonic",
|
|
2423
2643
|
"tracing-core",
|
|
2424
2644
|
"url",
|
|
@@ -2429,7 +2649,7 @@ name = "temporal-sdk-core-protos"
|
|
|
2429
2649
|
version = "0.1.0"
|
|
2430
2650
|
dependencies = [
|
|
2431
2651
|
"anyhow",
|
|
2432
|
-
"base64",
|
|
2652
|
+
"base64 0.22.1",
|
|
2433
2653
|
"derive_more",
|
|
2434
2654
|
"prost",
|
|
2435
2655
|
"prost-wkt",
|
|
@@ -2452,7 +2672,7 @@ dependencies = [
|
|
|
2452
2672
|
"log",
|
|
2453
2673
|
"neon",
|
|
2454
2674
|
"once_cell",
|
|
2455
|
-
"opentelemetry
|
|
2675
|
+
"opentelemetry",
|
|
2456
2676
|
"parking_lot",
|
|
2457
2677
|
"prost",
|
|
2458
2678
|
"prost-types",
|
|
@@ -2471,29 +2691,29 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
|
|
|
2471
2691
|
|
|
2472
2692
|
[[package]]
|
|
2473
2693
|
name = "thiserror"
|
|
2474
|
-
version = "1.0.
|
|
2694
|
+
version = "1.0.58"
|
|
2475
2695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
|
-
checksum = "
|
|
2696
|
+
checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
|
|
2477
2697
|
dependencies = [
|
|
2478
2698
|
"thiserror-impl",
|
|
2479
2699
|
]
|
|
2480
2700
|
|
|
2481
2701
|
[[package]]
|
|
2482
2702
|
name = "thiserror-impl"
|
|
2483
|
-
version = "1.0.
|
|
2703
|
+
version = "1.0.58"
|
|
2484
2704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2485
|
-
checksum = "
|
|
2705
|
+
checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
|
|
2486
2706
|
dependencies = [
|
|
2487
2707
|
"proc-macro2",
|
|
2488
2708
|
"quote",
|
|
2489
|
-
"syn 2.0.
|
|
2709
|
+
"syn 2.0.55",
|
|
2490
2710
|
]
|
|
2491
2711
|
|
|
2492
2712
|
[[package]]
|
|
2493
2713
|
name = "thread_local"
|
|
2494
|
-
version = "1.1.
|
|
2714
|
+
version = "1.1.8"
|
|
2495
2715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2496
|
-
checksum = "
|
|
2716
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
|
2497
2717
|
dependencies = [
|
|
2498
2718
|
"cfg-if",
|
|
2499
2719
|
"once_cell",
|
|
@@ -2501,11 +2721,12 @@ dependencies = [
|
|
|
2501
2721
|
|
|
2502
2722
|
[[package]]
|
|
2503
2723
|
name = "time"
|
|
2504
|
-
version = "0.3.
|
|
2724
|
+
version = "0.3.36"
|
|
2505
2725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
-
checksum = "
|
|
2726
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
|
2507
2727
|
dependencies = [
|
|
2508
2728
|
"deranged",
|
|
2729
|
+
"num-conv",
|
|
2509
2730
|
"powerfmt",
|
|
2510
2731
|
"serde",
|
|
2511
2732
|
"time-core",
|
|
@@ -2534,9 +2755,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2534
2755
|
|
|
2535
2756
|
[[package]]
|
|
2536
2757
|
name = "tokio"
|
|
2537
|
-
version = "1.
|
|
2758
|
+
version = "1.37.0"
|
|
2538
2759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2539
|
-
checksum = "
|
|
2760
|
+
checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
|
|
2540
2761
|
dependencies = [
|
|
2541
2762
|
"backtrace",
|
|
2542
2763
|
"bytes",
|
|
@@ -2569,7 +2790,7 @@ checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
|
|
|
2569
2790
|
dependencies = [
|
|
2570
2791
|
"proc-macro2",
|
|
2571
2792
|
"quote",
|
|
2572
|
-
"syn 2.0.
|
|
2793
|
+
"syn 2.0.55",
|
|
2573
2794
|
]
|
|
2574
2795
|
|
|
2575
2796
|
[[package]]
|
|
@@ -2578,15 +2799,26 @@ version = "0.24.1"
|
|
|
2578
2799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
2800
|
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
|
2580
2801
|
dependencies = [
|
|
2581
|
-
"rustls",
|
|
2802
|
+
"rustls 0.21.10",
|
|
2803
|
+
"tokio",
|
|
2804
|
+
]
|
|
2805
|
+
|
|
2806
|
+
[[package]]
|
|
2807
|
+
name = "tokio-rustls"
|
|
2808
|
+
version = "0.25.0"
|
|
2809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2810
|
+
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
|
|
2811
|
+
dependencies = [
|
|
2812
|
+
"rustls 0.22.3",
|
|
2813
|
+
"rustls-pki-types",
|
|
2582
2814
|
"tokio",
|
|
2583
2815
|
]
|
|
2584
2816
|
|
|
2585
2817
|
[[package]]
|
|
2586
2818
|
name = "tokio-stream"
|
|
2587
|
-
version = "0.1.
|
|
2819
|
+
version = "0.1.15"
|
|
2588
2820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2589
|
-
checksum = "
|
|
2821
|
+
checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
|
|
2590
2822
|
dependencies = [
|
|
2591
2823
|
"futures-core",
|
|
2592
2824
|
"pin-project-lite",
|
|
@@ -2609,29 +2841,28 @@ dependencies = [
|
|
|
2609
2841
|
|
|
2610
2842
|
[[package]]
|
|
2611
2843
|
name = "tonic"
|
|
2612
|
-
version = "0.
|
|
2844
|
+
version = "0.11.0"
|
|
2613
2845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2614
|
-
checksum = "
|
|
2846
|
+
checksum = "76c4eb7a4e9ef9d4763600161f12f5070b92a578e1b634db88a6887844c91a13"
|
|
2615
2847
|
dependencies = [
|
|
2616
2848
|
"async-stream",
|
|
2617
2849
|
"async-trait",
|
|
2618
2850
|
"axum",
|
|
2619
|
-
"base64",
|
|
2851
|
+
"base64 0.21.7",
|
|
2620
2852
|
"bytes",
|
|
2621
|
-
"
|
|
2622
|
-
"
|
|
2623
|
-
"
|
|
2624
|
-
"
|
|
2625
|
-
"http-body",
|
|
2626
|
-
"hyper",
|
|
2853
|
+
"h2 0.3.25",
|
|
2854
|
+
"http 0.2.12",
|
|
2855
|
+
"http-body 0.4.6",
|
|
2856
|
+
"hyper 0.14.28",
|
|
2627
2857
|
"hyper-timeout",
|
|
2628
2858
|
"percent-encoding",
|
|
2629
2859
|
"pin-project",
|
|
2630
2860
|
"prost",
|
|
2631
2861
|
"rustls-native-certs",
|
|
2632
|
-
"rustls-pemfile",
|
|
2862
|
+
"rustls-pemfile 2.1.1",
|
|
2863
|
+
"rustls-pki-types",
|
|
2633
2864
|
"tokio",
|
|
2634
|
-
"tokio-rustls",
|
|
2865
|
+
"tokio-rustls 0.25.0",
|
|
2635
2866
|
"tokio-stream",
|
|
2636
2867
|
"tower",
|
|
2637
2868
|
"tower-layer",
|
|
@@ -2641,15 +2872,15 @@ dependencies = [
|
|
|
2641
2872
|
|
|
2642
2873
|
[[package]]
|
|
2643
2874
|
name = "tonic-build"
|
|
2644
|
-
version = "0.
|
|
2875
|
+
version = "0.11.0"
|
|
2645
2876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
-
checksum = "
|
|
2877
|
+
checksum = "be4ef6dd70a610078cb4e338a0f79d06bc759ff1b22d2120c2ff02ae264ba9c2"
|
|
2647
2878
|
dependencies = [
|
|
2648
2879
|
"prettyplease",
|
|
2649
2880
|
"proc-macro2",
|
|
2650
2881
|
"prost-build",
|
|
2651
2882
|
"quote",
|
|
2652
|
-
"syn
|
|
2883
|
+
"syn 2.0.55",
|
|
2653
2884
|
]
|
|
2654
2885
|
|
|
2655
2886
|
[[package]]
|
|
@@ -2704,7 +2935,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
|
2704
2935
|
dependencies = [
|
|
2705
2936
|
"proc-macro2",
|
|
2706
2937
|
"quote",
|
|
2707
|
-
"syn 2.0.
|
|
2938
|
+
"syn 2.0.55",
|
|
2708
2939
|
]
|
|
2709
2940
|
|
|
2710
2941
|
[[package]]
|
|
@@ -2717,16 +2948,6 @@ dependencies = [
|
|
|
2717
2948
|
"valuable",
|
|
2718
2949
|
]
|
|
2719
2950
|
|
|
2720
|
-
[[package]]
|
|
2721
|
-
name = "tracing-futures"
|
|
2722
|
-
version = "0.2.5"
|
|
2723
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2724
|
-
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
|
|
2725
|
-
dependencies = [
|
|
2726
|
-
"pin-project",
|
|
2727
|
-
"tracing",
|
|
2728
|
-
]
|
|
2729
|
-
|
|
2730
2951
|
[[package]]
|
|
2731
2952
|
name = "tracing-log"
|
|
2732
2953
|
version = "0.2.0"
|
|
@@ -2771,9 +2992,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
|
2771
2992
|
|
|
2772
2993
|
[[package]]
|
|
2773
2994
|
name = "typetag"
|
|
2774
|
-
version = "0.2.
|
|
2995
|
+
version = "0.2.16"
|
|
2775
2996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
-
checksum = "
|
|
2997
|
+
checksum = "661d18414ec032a49ece2d56eee03636e43c4e8d577047ab334c0ba892e29aaf"
|
|
2777
2998
|
dependencies = [
|
|
2778
2999
|
"erased-serde",
|
|
2779
3000
|
"inventory",
|
|
@@ -2784,20 +3005,20 @@ dependencies = [
|
|
|
2784
3005
|
|
|
2785
3006
|
[[package]]
|
|
2786
3007
|
name = "typetag-impl"
|
|
2787
|
-
version = "0.2.
|
|
3008
|
+
version = "0.2.16"
|
|
2788
3009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2789
|
-
checksum = "
|
|
3010
|
+
checksum = "ac73887f47b9312552aa90ef477927ff014d63d1920ca8037c6c1951eab64bb1"
|
|
2790
3011
|
dependencies = [
|
|
2791
3012
|
"proc-macro2",
|
|
2792
3013
|
"quote",
|
|
2793
|
-
"syn 2.0.
|
|
3014
|
+
"syn 2.0.55",
|
|
2794
3015
|
]
|
|
2795
3016
|
|
|
2796
3017
|
[[package]]
|
|
2797
3018
|
name = "unicode-bidi"
|
|
2798
|
-
version = "0.3.
|
|
3019
|
+
version = "0.3.15"
|
|
2799
3020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
-
checksum = "
|
|
3021
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
2801
3022
|
|
|
2802
3023
|
[[package]]
|
|
2803
3024
|
name = "unicode-ident"
|
|
@@ -2807,9 +3028,9 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
|
2807
3028
|
|
|
2808
3029
|
[[package]]
|
|
2809
3030
|
name = "unicode-normalization"
|
|
2810
|
-
version = "0.1.
|
|
3031
|
+
version = "0.1.23"
|
|
2811
3032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2812
|
-
checksum = "
|
|
3033
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
2813
3034
|
dependencies = [
|
|
2814
3035
|
"tinyvec",
|
|
2815
3036
|
]
|
|
@@ -2839,9 +3060,9 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
|
2839
3060
|
|
|
2840
3061
|
[[package]]
|
|
2841
3062
|
name = "uuid"
|
|
2842
|
-
version = "1.
|
|
3063
|
+
version = "1.8.0"
|
|
2843
3064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2844
|
-
checksum = "
|
|
3065
|
+
checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
|
|
2845
3066
|
dependencies = [
|
|
2846
3067
|
"getrandom",
|
|
2847
3068
|
]
|
|
@@ -2875,9 +3096,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
2875
3096
|
|
|
2876
3097
|
[[package]]
|
|
2877
3098
|
name = "wasm-bindgen"
|
|
2878
|
-
version = "0.2.
|
|
3099
|
+
version = "0.2.92"
|
|
2879
3100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2880
|
-
checksum = "
|
|
3101
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
|
2881
3102
|
dependencies = [
|
|
2882
3103
|
"cfg-if",
|
|
2883
3104
|
"wasm-bindgen-macro",
|
|
@@ -2885,24 +3106,24 @@ dependencies = [
|
|
|
2885
3106
|
|
|
2886
3107
|
[[package]]
|
|
2887
3108
|
name = "wasm-bindgen-backend"
|
|
2888
|
-
version = "0.2.
|
|
3109
|
+
version = "0.2.92"
|
|
2889
3110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
-
checksum = "
|
|
3111
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
|
2891
3112
|
dependencies = [
|
|
2892
3113
|
"bumpalo",
|
|
2893
3114
|
"log",
|
|
2894
3115
|
"once_cell",
|
|
2895
3116
|
"proc-macro2",
|
|
2896
3117
|
"quote",
|
|
2897
|
-
"syn 2.0.
|
|
3118
|
+
"syn 2.0.55",
|
|
2898
3119
|
"wasm-bindgen-shared",
|
|
2899
3120
|
]
|
|
2900
3121
|
|
|
2901
3122
|
[[package]]
|
|
2902
3123
|
name = "wasm-bindgen-futures"
|
|
2903
|
-
version = "0.4.
|
|
3124
|
+
version = "0.4.42"
|
|
2904
3125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2905
|
-
checksum = "
|
|
3126
|
+
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
|
|
2906
3127
|
dependencies = [
|
|
2907
3128
|
"cfg-if",
|
|
2908
3129
|
"js-sys",
|
|
@@ -2912,9 +3133,9 @@ dependencies = [
|
|
|
2912
3133
|
|
|
2913
3134
|
[[package]]
|
|
2914
3135
|
name = "wasm-bindgen-macro"
|
|
2915
|
-
version = "0.2.
|
|
3136
|
+
version = "0.2.92"
|
|
2916
3137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2917
|
-
checksum = "
|
|
3138
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
|
2918
3139
|
dependencies = [
|
|
2919
3140
|
"quote",
|
|
2920
3141
|
"wasm-bindgen-macro-support",
|
|
@@ -2922,28 +3143,28 @@ dependencies = [
|
|
|
2922
3143
|
|
|
2923
3144
|
[[package]]
|
|
2924
3145
|
name = "wasm-bindgen-macro-support"
|
|
2925
|
-
version = "0.2.
|
|
3146
|
+
version = "0.2.92"
|
|
2926
3147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2927
|
-
checksum = "
|
|
3148
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
2928
3149
|
dependencies = [
|
|
2929
3150
|
"proc-macro2",
|
|
2930
3151
|
"quote",
|
|
2931
|
-
"syn 2.0.
|
|
3152
|
+
"syn 2.0.55",
|
|
2932
3153
|
"wasm-bindgen-backend",
|
|
2933
3154
|
"wasm-bindgen-shared",
|
|
2934
3155
|
]
|
|
2935
3156
|
|
|
2936
3157
|
[[package]]
|
|
2937
3158
|
name = "wasm-bindgen-shared"
|
|
2938
|
-
version = "0.2.
|
|
3159
|
+
version = "0.2.92"
|
|
2939
3160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2940
|
-
checksum = "
|
|
3161
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
|
2941
3162
|
|
|
2942
3163
|
[[package]]
|
|
2943
3164
|
name = "wasm-streams"
|
|
2944
|
-
version = "0.
|
|
3165
|
+
version = "0.4.0"
|
|
2945
3166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
-
checksum = "
|
|
3167
|
+
checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129"
|
|
2947
3168
|
dependencies = [
|
|
2948
3169
|
"futures-util",
|
|
2949
3170
|
"js-sys",
|
|
@@ -2954,9 +3175,9 @@ dependencies = [
|
|
|
2954
3175
|
|
|
2955
3176
|
[[package]]
|
|
2956
3177
|
name = "web-sys"
|
|
2957
|
-
version = "0.3.
|
|
3178
|
+
version = "0.3.69"
|
|
2958
3179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2959
|
-
checksum = "
|
|
3180
|
+
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
|
|
2960
3181
|
dependencies = [
|
|
2961
3182
|
"js-sys",
|
|
2962
3183
|
"wasm-bindgen",
|
|
@@ -2964,9 +3185,9 @@ dependencies = [
|
|
|
2964
3185
|
|
|
2965
3186
|
[[package]]
|
|
2966
3187
|
name = "webpki-roots"
|
|
2967
|
-
version = "0.25.
|
|
3188
|
+
version = "0.25.4"
|
|
2968
3189
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2969
|
-
checksum = "
|
|
3190
|
+
checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
|
|
2970
3191
|
|
|
2971
3192
|
[[package]]
|
|
2972
3193
|
name = "which"
|
|
@@ -3002,6 +3223,25 @@ version = "0.4.0"
|
|
|
3002
3223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
3224
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3004
3225
|
|
|
3226
|
+
[[package]]
|
|
3227
|
+
name = "windows"
|
|
3228
|
+
version = "0.52.0"
|
|
3229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3230
|
+
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
|
|
3231
|
+
dependencies = [
|
|
3232
|
+
"windows-core",
|
|
3233
|
+
"windows-targets 0.52.4",
|
|
3234
|
+
]
|
|
3235
|
+
|
|
3236
|
+
[[package]]
|
|
3237
|
+
name = "windows-core"
|
|
3238
|
+
version = "0.52.0"
|
|
3239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3240
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
3241
|
+
dependencies = [
|
|
3242
|
+
"windows-targets 0.52.4",
|
|
3243
|
+
]
|
|
3244
|
+
|
|
3005
3245
|
[[package]]
|
|
3006
3246
|
name = "windows-sys"
|
|
3007
3247
|
version = "0.48.0"
|
|
@@ -3017,7 +3257,7 @@ version = "0.52.0"
|
|
|
3017
3257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3018
3258
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3019
3259
|
dependencies = [
|
|
3020
|
-
"windows-targets 0.52.
|
|
3260
|
+
"windows-targets 0.52.4",
|
|
3021
3261
|
]
|
|
3022
3262
|
|
|
3023
3263
|
[[package]]
|
|
@@ -3037,17 +3277,17 @@ dependencies = [
|
|
|
3037
3277
|
|
|
3038
3278
|
[[package]]
|
|
3039
3279
|
name = "windows-targets"
|
|
3040
|
-
version = "0.52.
|
|
3280
|
+
version = "0.52.4"
|
|
3041
3281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3042
|
-
checksum = "
|
|
3282
|
+
checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
|
|
3043
3283
|
dependencies = [
|
|
3044
|
-
"windows_aarch64_gnullvm 0.52.
|
|
3045
|
-
"windows_aarch64_msvc 0.52.
|
|
3046
|
-
"windows_i686_gnu 0.52.
|
|
3047
|
-
"windows_i686_msvc 0.52.
|
|
3048
|
-
"windows_x86_64_gnu 0.52.
|
|
3049
|
-
"windows_x86_64_gnullvm 0.52.
|
|
3050
|
-
"windows_x86_64_msvc 0.52.
|
|
3284
|
+
"windows_aarch64_gnullvm 0.52.4",
|
|
3285
|
+
"windows_aarch64_msvc 0.52.4",
|
|
3286
|
+
"windows_i686_gnu 0.52.4",
|
|
3287
|
+
"windows_i686_msvc 0.52.4",
|
|
3288
|
+
"windows_x86_64_gnu 0.52.4",
|
|
3289
|
+
"windows_x86_64_gnullvm 0.52.4",
|
|
3290
|
+
"windows_x86_64_msvc 0.52.4",
|
|
3051
3291
|
]
|
|
3052
3292
|
|
|
3053
3293
|
[[package]]
|
|
@@ -3058,9 +3298,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
|
3058
3298
|
|
|
3059
3299
|
[[package]]
|
|
3060
3300
|
name = "windows_aarch64_gnullvm"
|
|
3061
|
-
version = "0.52.
|
|
3301
|
+
version = "0.52.4"
|
|
3062
3302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3063
|
-
checksum = "
|
|
3303
|
+
checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
|
|
3064
3304
|
|
|
3065
3305
|
[[package]]
|
|
3066
3306
|
name = "windows_aarch64_msvc"
|
|
@@ -3070,9 +3310,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
|
3070
3310
|
|
|
3071
3311
|
[[package]]
|
|
3072
3312
|
name = "windows_aarch64_msvc"
|
|
3073
|
-
version = "0.52.
|
|
3313
|
+
version = "0.52.4"
|
|
3074
3314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3075
|
-
checksum = "
|
|
3315
|
+
checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
|
|
3076
3316
|
|
|
3077
3317
|
[[package]]
|
|
3078
3318
|
name = "windows_i686_gnu"
|
|
@@ -3082,9 +3322,9 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
|
3082
3322
|
|
|
3083
3323
|
[[package]]
|
|
3084
3324
|
name = "windows_i686_gnu"
|
|
3085
|
-
version = "0.52.
|
|
3325
|
+
version = "0.52.4"
|
|
3086
3326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3087
|
-
checksum = "
|
|
3327
|
+
checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
|
|
3088
3328
|
|
|
3089
3329
|
[[package]]
|
|
3090
3330
|
name = "windows_i686_msvc"
|
|
@@ -3094,9 +3334,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
|
3094
3334
|
|
|
3095
3335
|
[[package]]
|
|
3096
3336
|
name = "windows_i686_msvc"
|
|
3097
|
-
version = "0.52.
|
|
3337
|
+
version = "0.52.4"
|
|
3098
3338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3099
|
-
checksum = "
|
|
3339
|
+
checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
|
|
3100
3340
|
|
|
3101
3341
|
[[package]]
|
|
3102
3342
|
name = "windows_x86_64_gnu"
|
|
@@ -3106,9 +3346,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
|
3106
3346
|
|
|
3107
3347
|
[[package]]
|
|
3108
3348
|
name = "windows_x86_64_gnu"
|
|
3109
|
-
version = "0.52.
|
|
3349
|
+
version = "0.52.4"
|
|
3110
3350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3111
|
-
checksum = "
|
|
3351
|
+
checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
|
|
3112
3352
|
|
|
3113
3353
|
[[package]]
|
|
3114
3354
|
name = "windows_x86_64_gnullvm"
|
|
@@ -3118,9 +3358,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
|
3118
3358
|
|
|
3119
3359
|
[[package]]
|
|
3120
3360
|
name = "windows_x86_64_gnullvm"
|
|
3121
|
-
version = "0.52.
|
|
3361
|
+
version = "0.52.4"
|
|
3122
3362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3123
|
-
checksum = "
|
|
3363
|
+
checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
|
|
3124
3364
|
|
|
3125
3365
|
[[package]]
|
|
3126
3366
|
name = "windows_x86_64_msvc"
|
|
@@ -3130,9 +3370,9 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
|
3130
3370
|
|
|
3131
3371
|
[[package]]
|
|
3132
3372
|
name = "windows_x86_64_msvc"
|
|
3133
|
-
version = "0.52.
|
|
3373
|
+
version = "0.52.4"
|
|
3134
3374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3135
|
-
checksum = "
|
|
3375
|
+
checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
|
|
3136
3376
|
|
|
3137
3377
|
[[package]]
|
|
3138
3378
|
name = "winreg"
|
|
@@ -3146,9 +3386,9 @@ dependencies = [
|
|
|
3146
3386
|
|
|
3147
3387
|
[[package]]
|
|
3148
3388
|
name = "xattr"
|
|
3149
|
-
version = "1.
|
|
3389
|
+
version = "1.3.1"
|
|
3150
3390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3151
|
-
checksum = "
|
|
3391
|
+
checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
|
|
3152
3392
|
dependencies = [
|
|
3153
3393
|
"libc",
|
|
3154
3394
|
"linux-raw-sys",
|
|
@@ -3172,53 +3412,94 @@ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
|
|
|
3172
3412
|
dependencies = [
|
|
3173
3413
|
"proc-macro2",
|
|
3174
3414
|
"quote",
|
|
3175
|
-
"syn 2.0.
|
|
3415
|
+
"syn 2.0.55",
|
|
3416
|
+
]
|
|
3417
|
+
|
|
3418
|
+
[[package]]
|
|
3419
|
+
name = "zeroize"
|
|
3420
|
+
version = "1.7.0"
|
|
3421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3422
|
+
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
|
|
3423
|
+
dependencies = [
|
|
3424
|
+
"zeroize_derive",
|
|
3425
|
+
]
|
|
3426
|
+
|
|
3427
|
+
[[package]]
|
|
3428
|
+
name = "zeroize_derive"
|
|
3429
|
+
version = "1.4.2"
|
|
3430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
|
+
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
3432
|
+
dependencies = [
|
|
3433
|
+
"proc-macro2",
|
|
3434
|
+
"quote",
|
|
3435
|
+
"syn 2.0.55",
|
|
3176
3436
|
]
|
|
3177
3437
|
|
|
3178
3438
|
[[package]]
|
|
3179
3439
|
name = "zip"
|
|
3180
|
-
version = "
|
|
3440
|
+
version = "1.3.0"
|
|
3181
3441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3182
|
-
checksum = "
|
|
3442
|
+
checksum = "f1f4a27345eb6f7aa7bd015ba7eb4175fa4e1b462a29874b779e0bbcf96c6ac7"
|
|
3183
3443
|
dependencies = [
|
|
3184
3444
|
"aes",
|
|
3185
|
-
"
|
|
3445
|
+
"arbitrary",
|
|
3186
3446
|
"bzip2",
|
|
3187
3447
|
"constant_time_eq",
|
|
3188
3448
|
"crc32fast",
|
|
3189
3449
|
"crossbeam-utils",
|
|
3450
|
+
"deflate64",
|
|
3451
|
+
"displaydoc",
|
|
3190
3452
|
"flate2",
|
|
3191
3453
|
"hmac",
|
|
3454
|
+
"indexmap 2.2.6",
|
|
3455
|
+
"lzma-rs",
|
|
3192
3456
|
"pbkdf2",
|
|
3457
|
+
"rand",
|
|
3193
3458
|
"sha1",
|
|
3459
|
+
"thiserror",
|
|
3194
3460
|
"time",
|
|
3461
|
+
"zeroize",
|
|
3462
|
+
"zopfli",
|
|
3195
3463
|
"zstd",
|
|
3196
3464
|
]
|
|
3197
3465
|
|
|
3466
|
+
[[package]]
|
|
3467
|
+
name = "zopfli"
|
|
3468
|
+
version = "0.8.1"
|
|
3469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3470
|
+
checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946"
|
|
3471
|
+
dependencies = [
|
|
3472
|
+
"bumpalo",
|
|
3473
|
+
"crc32fast",
|
|
3474
|
+
"lockfree-object-pool",
|
|
3475
|
+
"log",
|
|
3476
|
+
"once_cell",
|
|
3477
|
+
"simd-adler32",
|
|
3478
|
+
]
|
|
3479
|
+
|
|
3198
3480
|
[[package]]
|
|
3199
3481
|
name = "zstd"
|
|
3200
|
-
version = "0.
|
|
3482
|
+
version = "0.13.1"
|
|
3201
3483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
-
checksum = "
|
|
3484
|
+
checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a"
|
|
3203
3485
|
dependencies = [
|
|
3204
3486
|
"zstd-safe",
|
|
3205
3487
|
]
|
|
3206
3488
|
|
|
3207
3489
|
[[package]]
|
|
3208
3490
|
name = "zstd-safe"
|
|
3209
|
-
version = "
|
|
3491
|
+
version = "7.1.0"
|
|
3210
3492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3211
|
-
checksum = "
|
|
3493
|
+
checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a"
|
|
3212
3494
|
dependencies = [
|
|
3213
|
-
"libc",
|
|
3214
3495
|
"zstd-sys",
|
|
3215
3496
|
]
|
|
3216
3497
|
|
|
3217
3498
|
[[package]]
|
|
3218
3499
|
name = "zstd-sys"
|
|
3219
|
-
version = "2.0.
|
|
3500
|
+
version = "2.0.10+zstd.1.5.6"
|
|
3220
3501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3221
|
-
checksum = "
|
|
3502
|
+
checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa"
|
|
3222
3503
|
dependencies = [
|
|
3223
3504
|
"cc",
|
|
3224
3505
|
"pkg-config",
|