@temporalio/core-bridge 1.11.2 → 1.11.4
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 +396 -489
- package/Cargo.toml +3 -2
- package/lib/errors.d.ts +2 -0
- package/lib/errors.js +7 -3
- package/lib/errors.js.map +1 -1
- package/lib/index.d.ts +8 -2
- package/lib/index.js.map +1 -1
- package/lib/worker-tuner.d.ts +111 -1
- package/package.json +3 -3
- package/releases/aarch64-apple-darwin/index.node +0 -0
- package/releases/aarch64-unknown-linux-gnu/index.node +0 -0
- package/releases/x86_64-apple-darwin/index.node +0 -0
- package/releases/x86_64-pc-windows-msvc/index.node +0 -0
- package/releases/x86_64-unknown-linux-gnu/index.node +0 -0
- package/sdk-core/.github/workflows/per-pr.yml +3 -3
- package/sdk-core/Cargo.toml +0 -1
- package/sdk-core/client/Cargo.toml +1 -2
- package/sdk-core/client/src/lib.rs +21 -13
- package/sdk-core/client/src/metrics.rs +1 -1
- package/sdk-core/client/src/raw.rs +46 -1
- package/sdk-core/core/Cargo.toml +7 -7
- package/sdk-core/core/benches/workflow_replay.rs +1 -1
- package/sdk-core/core/src/abstractions/take_cell.rs +1 -1
- package/sdk-core/core/src/abstractions.rs +98 -10
- package/sdk-core/core/src/core_tests/activity_tasks.rs +8 -2
- package/sdk-core/core/src/core_tests/local_activities.rs +1 -1
- package/sdk-core/core/src/core_tests/mod.rs +3 -3
- package/sdk-core/core/src/core_tests/updates.rs +104 -9
- package/sdk-core/core/src/core_tests/workers.rs +72 -3
- package/sdk-core/core/src/core_tests/workflow_tasks.rs +6 -7
- package/sdk-core/core/src/debug_client.rs +78 -0
- package/sdk-core/core/src/ephemeral_server/mod.rs +15 -5
- package/sdk-core/core/src/lib.rs +30 -4
- package/sdk-core/core/src/pollers/mod.rs +1 -1
- package/sdk-core/core/src/pollers/poll_buffer.rs +7 -7
- package/sdk-core/core/src/replay/mod.rs +4 -4
- package/sdk-core/core/src/telemetry/log_export.rs +2 -2
- package/sdk-core/core/src/telemetry/metrics.rs +69 -1
- package/sdk-core/core/src/telemetry/otel.rs +2 -2
- package/sdk-core/core/src/test_help/mod.rs +3 -3
- package/sdk-core/core/src/worker/activities/activity_heartbeat_manager.rs +3 -3
- package/sdk-core/core/src/worker/activities/activity_task_poller_stream.rs +1 -1
- package/sdk-core/core/src/worker/activities/local_activities.rs +68 -24
- package/sdk-core/core/src/worker/activities.rs +26 -15
- package/sdk-core/core/src/worker/client/mocks.rs +10 -4
- package/sdk-core/core/src/worker/client.rs +17 -0
- package/sdk-core/core/src/worker/mod.rs +71 -13
- package/sdk-core/core/src/worker/slot_provider.rs +5 -7
- package/sdk-core/core/src/worker/tuner/fixed_size.rs +4 -3
- package/sdk-core/core/src/worker/tuner/resource_based.rs +171 -32
- package/sdk-core/core/src/worker/tuner.rs +18 -6
- package/sdk-core/core/src/worker/workflow/history_update.rs +43 -13
- package/sdk-core/core/src/worker/workflow/machines/transition_coverage.rs +6 -6
- package/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +6 -5
- package/sdk-core/core/src/worker/workflow/managed_run.rs +3 -3
- package/sdk-core/core/src/worker/workflow/mod.rs +13 -7
- package/sdk-core/core/src/worker/workflow/wft_extraction.rs +7 -7
- package/sdk-core/core/src/worker/workflow/wft_poller.rs +2 -2
- package/sdk-core/core/src/worker/workflow/workflow_stream.rs +11 -11
- package/sdk-core/core-api/Cargo.toml +1 -0
- package/sdk-core/core-api/src/worker.rs +84 -30
- package/sdk-core/sdk/Cargo.toml +1 -2
- package/sdk-core/sdk/src/lib.rs +1 -1
- package/sdk-core/sdk/src/workflow_context.rs +9 -8
- package/sdk-core/sdk/src/workflow_future.rs +19 -14
- package/sdk-core/sdk-core-protos/Cargo.toml +2 -0
- package/sdk-core/sdk-core-protos/build.rs +6 -1
- package/sdk-core/sdk-core-protos/protos/api_upstream/buf.yaml +1 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/openapi/openapiv2.json +3207 -158
- package/sdk-core/sdk-core-protos/protos/api_upstream/openapi/openapiv3.yaml +2934 -118
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/activity/v1/message.proto +67 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/common/v1/message.proto +47 -1
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/event_type.proto +6 -7
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +2 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/reset.proto +5 -3
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/task_queue.proto +3 -3
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/update.proto +14 -13
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/failure/v1/message.proto +1 -3
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/history/v1/message.proto +22 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/nexus/v1/message.proto +13 -2
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/operatorservice/v1/service.proto +26 -6
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/schedule/v1/message.proto +5 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/sdk/v1/workflow_metadata.proto +6 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +46 -12
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/update/v1/message.proto +18 -19
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflow/v1/message.proto +27 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +192 -19
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +279 -12
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/activity_result/activity_result.proto +1 -1
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/activity_task/activity_task.proto +1 -1
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/child_workflow/child_workflow.proto +1 -1
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/common/common.proto +1 -1
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/core_interface.proto +17 -1
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/external_data/external_data.proto +1 -1
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto +1 -1
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto +1 -1
- package/sdk-core/sdk-core-protos/protos/local/temporal/sdk/core/workflow_completion/workflow_completion.proto +1 -1
- package/sdk-core/sdk-core-protos/src/lib.rs +30 -6
- package/sdk-core/test-utils/Cargo.toml +1 -2
- package/sdk-core/test-utils/src/lib.rs +2 -2
- package/sdk-core/tests/heavy_tests.rs +1 -1
- package/sdk-core/tests/integ_tests/ephemeral_server_tests.rs +2 -2
- package/sdk-core/tests/integ_tests/metrics_tests.rs +144 -7
- package/sdk-core/tests/integ_tests/queries_tests.rs +1 -1
- package/sdk-core/tests/integ_tests/update_tests.rs +109 -5
- package/sdk-core/tests/integ_tests/worker_tests.rs +44 -8
- package/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/resets.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests/signals.rs +1 -1
- package/sdk-core/tests/integ_tests/workflow_tests.rs +3 -2
- package/src/conversions/slot_supplier_bridge.rs +287 -0
- package/src/conversions.rs +23 -15
- package/src/helpers.rs +35 -1
- package/src/runtime.rs +7 -3
- package/src/worker.rs +1 -1
- package/ts/errors.ts +9 -2
- package/ts/index.ts +19 -4
- package/ts/worker-tuner.ts +123 -1
- package/sdk-core/sdk-core-protos/protos/api_upstream/.gitmodules +0 -3
package/Cargo.lock
CHANGED
|
@@ -4,18 +4,18 @@ version = 3
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "addr2line"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.24.2"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"gimli",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[[package]]
|
|
15
|
-
name = "
|
|
16
|
-
version = "
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.0"
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "
|
|
18
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "aes"
|
|
@@ -28,18 +28,6 @@ dependencies = [
|
|
|
28
28
|
"cpufeatures",
|
|
29
29
|
]
|
|
30
30
|
|
|
31
|
-
[[package]]
|
|
32
|
-
name = "ahash"
|
|
33
|
-
version = "0.8.11"
|
|
34
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
-
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
36
|
-
dependencies = [
|
|
37
|
-
"cfg-if",
|
|
38
|
-
"once_cell",
|
|
39
|
-
"version_check",
|
|
40
|
-
"zerocopy",
|
|
41
|
-
]
|
|
42
|
-
|
|
43
31
|
[[package]]
|
|
44
32
|
name = "aho-corasick"
|
|
45
33
|
version = "1.1.3"
|
|
@@ -57,15 +45,15 @@ checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
|
|
|
57
45
|
|
|
58
46
|
[[package]]
|
|
59
47
|
name = "anstyle"
|
|
60
|
-
version = "1.0.
|
|
48
|
+
version = "1.0.10"
|
|
61
49
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
-
checksum = "
|
|
50
|
+
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
|
|
63
51
|
|
|
64
52
|
[[package]]
|
|
65
53
|
name = "anyhow"
|
|
66
|
-
version = "1.0.
|
|
54
|
+
version = "1.0.92"
|
|
67
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
-
checksum = "
|
|
56
|
+
checksum = "74f37166d7d48a0284b99dd824694c26119c700b53bf0d1540cdb147dbdaaf13"
|
|
69
57
|
|
|
70
58
|
[[package]]
|
|
71
59
|
name = "arbitrary"
|
|
@@ -78,9 +66,9 @@ dependencies = [
|
|
|
78
66
|
|
|
79
67
|
[[package]]
|
|
80
68
|
name = "async-stream"
|
|
81
|
-
version = "0.3.
|
|
69
|
+
version = "0.3.6"
|
|
82
70
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
-
checksum = "
|
|
71
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
84
72
|
dependencies = [
|
|
85
73
|
"async-stream-impl",
|
|
86
74
|
"futures-core",
|
|
@@ -89,24 +77,24 @@ dependencies = [
|
|
|
89
77
|
|
|
90
78
|
[[package]]
|
|
91
79
|
name = "async-stream-impl"
|
|
92
|
-
version = "0.3.
|
|
80
|
+
version = "0.3.6"
|
|
93
81
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
-
checksum = "
|
|
82
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
95
83
|
dependencies = [
|
|
96
84
|
"proc-macro2",
|
|
97
85
|
"quote",
|
|
98
|
-
"syn
|
|
86
|
+
"syn",
|
|
99
87
|
]
|
|
100
88
|
|
|
101
89
|
[[package]]
|
|
102
90
|
name = "async-trait"
|
|
103
|
-
version = "0.1.
|
|
91
|
+
version = "0.1.83"
|
|
104
92
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
-
checksum = "
|
|
93
|
+
checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
|
|
106
94
|
dependencies = [
|
|
107
95
|
"proc-macro2",
|
|
108
96
|
"quote",
|
|
109
|
-
"syn
|
|
97
|
+
"syn",
|
|
110
98
|
]
|
|
111
99
|
|
|
112
100
|
[[package]]
|
|
@@ -117,15 +105,15 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
117
105
|
|
|
118
106
|
[[package]]
|
|
119
107
|
name = "autocfg"
|
|
120
|
-
version = "1.
|
|
108
|
+
version = "1.4.0"
|
|
121
109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
-
checksum = "
|
|
110
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
123
111
|
|
|
124
112
|
[[package]]
|
|
125
113
|
name = "axum"
|
|
126
|
-
version = "0.7.
|
|
114
|
+
version = "0.7.7"
|
|
127
115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
-
checksum = "
|
|
116
|
+
checksum = "504e3947307ac8326a5437504c517c4b56716c9d98fac0028c2acc7ca47d70ae"
|
|
129
117
|
dependencies = [
|
|
130
118
|
"async-trait",
|
|
131
119
|
"axum-core",
|
|
@@ -143,16 +131,16 @@ dependencies = [
|
|
|
143
131
|
"rustversion",
|
|
144
132
|
"serde",
|
|
145
133
|
"sync_wrapper 1.0.1",
|
|
146
|
-
"tower 0.
|
|
134
|
+
"tower 0.5.1",
|
|
147
135
|
"tower-layer",
|
|
148
136
|
"tower-service",
|
|
149
137
|
]
|
|
150
138
|
|
|
151
139
|
[[package]]
|
|
152
140
|
name = "axum-core"
|
|
153
|
-
version = "0.4.
|
|
141
|
+
version = "0.4.5"
|
|
154
142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
-
checksum = "
|
|
143
|
+
checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
|
|
156
144
|
dependencies = [
|
|
157
145
|
"async-trait",
|
|
158
146
|
"bytes",
|
|
@@ -163,7 +151,7 @@ dependencies = [
|
|
|
163
151
|
"mime",
|
|
164
152
|
"pin-project-lite",
|
|
165
153
|
"rustversion",
|
|
166
|
-
"sync_wrapper 0.1
|
|
154
|
+
"sync_wrapper 1.0.1",
|
|
167
155
|
"tower-layer",
|
|
168
156
|
"tower-service",
|
|
169
157
|
]
|
|
@@ -181,17 +169,17 @@ dependencies = [
|
|
|
181
169
|
|
|
182
170
|
[[package]]
|
|
183
171
|
name = "backtrace"
|
|
184
|
-
version = "0.3.
|
|
172
|
+
version = "0.3.74"
|
|
185
173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
-
checksum = "
|
|
174
|
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
187
175
|
dependencies = [
|
|
188
176
|
"addr2line",
|
|
189
|
-
"cc",
|
|
190
177
|
"cfg-if",
|
|
191
178
|
"libc",
|
|
192
179
|
"miniz_oxide",
|
|
193
180
|
"object",
|
|
194
181
|
"rustc-demangle",
|
|
182
|
+
"windows-targets",
|
|
195
183
|
]
|
|
196
184
|
|
|
197
185
|
[[package]]
|
|
@@ -200,12 +188,6 @@ version = "0.22.1"
|
|
|
200
188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
189
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
202
190
|
|
|
203
|
-
[[package]]
|
|
204
|
-
name = "bitflags"
|
|
205
|
-
version = "1.3.2"
|
|
206
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
208
|
-
|
|
209
191
|
[[package]]
|
|
210
192
|
name = "bitflags"
|
|
211
193
|
version = "2.6.0"
|
|
@@ -235,9 +217,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
235
217
|
|
|
236
218
|
[[package]]
|
|
237
219
|
name = "bytes"
|
|
238
|
-
version = "1.
|
|
220
|
+
version = "1.8.0"
|
|
239
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
-
checksum = "
|
|
222
|
+
checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
|
|
241
223
|
|
|
242
224
|
[[package]]
|
|
243
225
|
name = "bzip2"
|
|
@@ -262,12 +244,13 @@ dependencies = [
|
|
|
262
244
|
|
|
263
245
|
[[package]]
|
|
264
246
|
name = "cc"
|
|
265
|
-
version = "1.1.
|
|
247
|
+
version = "1.1.31"
|
|
266
248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
-
checksum = "
|
|
249
|
+
checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f"
|
|
268
250
|
dependencies = [
|
|
269
251
|
"jobserver",
|
|
270
252
|
"libc",
|
|
253
|
+
"shlex",
|
|
271
254
|
]
|
|
272
255
|
|
|
273
256
|
[[package]]
|
|
@@ -276,6 +259,12 @@ version = "1.0.0"
|
|
|
276
259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
260
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
278
261
|
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "cfg_aliases"
|
|
264
|
+
version = "0.2.1"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
267
|
+
|
|
279
268
|
[[package]]
|
|
280
269
|
name = "chrono"
|
|
281
270
|
version = "0.4.38"
|
|
@@ -298,9 +287,9 @@ dependencies = [
|
|
|
298
287
|
|
|
299
288
|
[[package]]
|
|
300
289
|
name = "constant_time_eq"
|
|
301
|
-
version = "0.3.
|
|
290
|
+
version = "0.3.1"
|
|
302
291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
-
checksum = "
|
|
292
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
304
293
|
|
|
305
294
|
[[package]]
|
|
306
295
|
name = "core-foundation"
|
|
@@ -314,15 +303,15 @@ dependencies = [
|
|
|
314
303
|
|
|
315
304
|
[[package]]
|
|
316
305
|
name = "core-foundation-sys"
|
|
317
|
-
version = "0.8.
|
|
306
|
+
version = "0.8.7"
|
|
318
307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
-
checksum = "
|
|
308
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
320
309
|
|
|
321
310
|
[[package]]
|
|
322
311
|
name = "cpufeatures"
|
|
323
|
-
version = "0.2.
|
|
312
|
+
version = "0.2.14"
|
|
324
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
-
checksum = "
|
|
314
|
+
checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
|
|
326
315
|
dependencies = [
|
|
327
316
|
"libc",
|
|
328
317
|
]
|
|
@@ -406,7 +395,7 @@ dependencies = [
|
|
|
406
395
|
"proc-macro2",
|
|
407
396
|
"quote",
|
|
408
397
|
"strsim",
|
|
409
|
-
"syn
|
|
398
|
+
"syn",
|
|
410
399
|
]
|
|
411
400
|
|
|
412
401
|
[[package]]
|
|
@@ -417,27 +406,14 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
|
417
406
|
dependencies = [
|
|
418
407
|
"darling_core",
|
|
419
408
|
"quote",
|
|
420
|
-
"syn
|
|
421
|
-
]
|
|
422
|
-
|
|
423
|
-
[[package]]
|
|
424
|
-
name = "dashmap"
|
|
425
|
-
version = "5.5.3"
|
|
426
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
-
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
428
|
-
dependencies = [
|
|
429
|
-
"cfg-if",
|
|
430
|
-
"hashbrown 0.14.5",
|
|
431
|
-
"lock_api",
|
|
432
|
-
"once_cell",
|
|
433
|
-
"parking_lot_core",
|
|
409
|
+
"syn",
|
|
434
410
|
]
|
|
435
411
|
|
|
436
412
|
[[package]]
|
|
437
413
|
name = "dashmap"
|
|
438
|
-
version = "6.0
|
|
414
|
+
version = "6.1.0"
|
|
439
415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
-
checksum = "
|
|
416
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
441
417
|
dependencies = [
|
|
442
418
|
"cfg-if",
|
|
443
419
|
"crossbeam-utils",
|
|
@@ -470,38 +446,38 @@ checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
|
|
|
470
446
|
dependencies = [
|
|
471
447
|
"proc-macro2",
|
|
472
448
|
"quote",
|
|
473
|
-
"syn
|
|
449
|
+
"syn",
|
|
474
450
|
]
|
|
475
451
|
|
|
476
452
|
[[package]]
|
|
477
453
|
name = "derive_builder"
|
|
478
|
-
version = "0.20.
|
|
454
|
+
version = "0.20.2"
|
|
479
455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
-
checksum = "
|
|
456
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
481
457
|
dependencies = [
|
|
482
458
|
"derive_builder_macro",
|
|
483
459
|
]
|
|
484
460
|
|
|
485
461
|
[[package]]
|
|
486
462
|
name = "derive_builder_core"
|
|
487
|
-
version = "0.20.
|
|
463
|
+
version = "0.20.2"
|
|
488
464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
-
checksum = "
|
|
465
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
490
466
|
dependencies = [
|
|
491
467
|
"darling",
|
|
492
468
|
"proc-macro2",
|
|
493
469
|
"quote",
|
|
494
|
-
"syn
|
|
470
|
+
"syn",
|
|
495
471
|
]
|
|
496
472
|
|
|
497
473
|
[[package]]
|
|
498
474
|
name = "derive_builder_macro"
|
|
499
|
-
version = "0.20.
|
|
475
|
+
version = "0.20.2"
|
|
500
476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
-
checksum = "
|
|
477
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
502
478
|
dependencies = [
|
|
503
479
|
"derive_builder_core",
|
|
504
|
-
"syn
|
|
480
|
+
"syn",
|
|
505
481
|
]
|
|
506
482
|
|
|
507
483
|
[[package]]
|
|
@@ -521,7 +497,7 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
|
|
|
521
497
|
dependencies = [
|
|
522
498
|
"proc-macro2",
|
|
523
499
|
"quote",
|
|
524
|
-
"syn
|
|
500
|
+
"syn",
|
|
525
501
|
"unicode-xid",
|
|
526
502
|
]
|
|
527
503
|
|
|
@@ -544,7 +520,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
544
520
|
dependencies = [
|
|
545
521
|
"proc-macro2",
|
|
546
522
|
"quote",
|
|
547
|
-
"syn
|
|
523
|
+
"syn",
|
|
548
524
|
]
|
|
549
525
|
|
|
550
526
|
[[package]]
|
|
@@ -576,7 +552,7 @@ checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
|
|
|
576
552
|
dependencies = [
|
|
577
553
|
"proc-macro2",
|
|
578
554
|
"quote",
|
|
579
|
-
"syn
|
|
555
|
+
"syn",
|
|
580
556
|
]
|
|
581
557
|
|
|
582
558
|
[[package]]
|
|
@@ -588,7 +564,7 @@ dependencies = [
|
|
|
588
564
|
"once_cell",
|
|
589
565
|
"proc-macro2",
|
|
590
566
|
"quote",
|
|
591
|
-
"syn
|
|
567
|
+
"syn",
|
|
592
568
|
]
|
|
593
569
|
|
|
594
570
|
[[package]]
|
|
@@ -619,20 +595,20 @@ dependencies = [
|
|
|
619
595
|
|
|
620
596
|
[[package]]
|
|
621
597
|
name = "fastrand"
|
|
622
|
-
version = "2.1.
|
|
598
|
+
version = "2.1.1"
|
|
623
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
-
checksum = "
|
|
600
|
+
checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
|
|
625
601
|
|
|
626
602
|
[[package]]
|
|
627
603
|
name = "filetime"
|
|
628
|
-
version = "0.2.
|
|
604
|
+
version = "0.2.25"
|
|
629
605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
-
checksum = "
|
|
606
|
+
checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
|
|
631
607
|
dependencies = [
|
|
632
608
|
"cfg-if",
|
|
633
609
|
"libc",
|
|
634
|
-
"
|
|
635
|
-
"windows-sys 0.
|
|
610
|
+
"libredox",
|
|
611
|
+
"windows-sys 0.59.0",
|
|
636
612
|
]
|
|
637
613
|
|
|
638
614
|
[[package]]
|
|
@@ -643,9 +619,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
643
619
|
|
|
644
620
|
[[package]]
|
|
645
621
|
name = "flate2"
|
|
646
|
-
version = "1.0.
|
|
622
|
+
version = "1.0.34"
|
|
647
623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
-
checksum = "
|
|
624
|
+
checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
|
|
649
625
|
dependencies = [
|
|
650
626
|
"crc32fast",
|
|
651
627
|
"miniz_oxide",
|
|
@@ -657,6 +633,12 @@ version = "1.0.7"
|
|
|
657
633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
634
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
659
635
|
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "foldhash"
|
|
638
|
+
version = "0.1.3"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2"
|
|
641
|
+
|
|
660
642
|
[[package]]
|
|
661
643
|
name = "form_urlencoded"
|
|
662
644
|
version = "1.2.1"
|
|
@@ -674,9 +656,9 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
|
|
|
674
656
|
|
|
675
657
|
[[package]]
|
|
676
658
|
name = "futures"
|
|
677
|
-
version = "0.3.
|
|
659
|
+
version = "0.3.31"
|
|
678
660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
-
checksum = "
|
|
661
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
680
662
|
dependencies = [
|
|
681
663
|
"futures-channel",
|
|
682
664
|
"futures-core",
|
|
@@ -689,9 +671,9 @@ dependencies = [
|
|
|
689
671
|
|
|
690
672
|
[[package]]
|
|
691
673
|
name = "futures-channel"
|
|
692
|
-
version = "0.3.
|
|
674
|
+
version = "0.3.31"
|
|
693
675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
-
checksum = "
|
|
676
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
695
677
|
dependencies = [
|
|
696
678
|
"futures-core",
|
|
697
679
|
"futures-sink",
|
|
@@ -699,15 +681,15 @@ dependencies = [
|
|
|
699
681
|
|
|
700
682
|
[[package]]
|
|
701
683
|
name = "futures-core"
|
|
702
|
-
version = "0.3.
|
|
684
|
+
version = "0.3.31"
|
|
703
685
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
-
checksum = "
|
|
686
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
705
687
|
|
|
706
688
|
[[package]]
|
|
707
689
|
name = "futures-executor"
|
|
708
|
-
version = "0.3.
|
|
690
|
+
version = "0.3.31"
|
|
709
691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
-
checksum = "
|
|
692
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
711
693
|
dependencies = [
|
|
712
694
|
"futures-core",
|
|
713
695
|
"futures-task",
|
|
@@ -716,19 +698,19 @@ dependencies = [
|
|
|
716
698
|
|
|
717
699
|
[[package]]
|
|
718
700
|
name = "futures-io"
|
|
719
|
-
version = "0.3.
|
|
701
|
+
version = "0.3.31"
|
|
720
702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
-
checksum = "
|
|
703
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
722
704
|
|
|
723
705
|
[[package]]
|
|
724
706
|
name = "futures-macro"
|
|
725
|
-
version = "0.3.
|
|
707
|
+
version = "0.3.31"
|
|
726
708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
-
checksum = "
|
|
709
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
728
710
|
dependencies = [
|
|
729
711
|
"proc-macro2",
|
|
730
712
|
"quote",
|
|
731
|
-
"syn
|
|
713
|
+
"syn",
|
|
732
714
|
]
|
|
733
715
|
|
|
734
716
|
[[package]]
|
|
@@ -744,15 +726,15 @@ dependencies = [
|
|
|
744
726
|
|
|
745
727
|
[[package]]
|
|
746
728
|
name = "futures-sink"
|
|
747
|
-
version = "0.3.
|
|
729
|
+
version = "0.3.31"
|
|
748
730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
-
checksum = "
|
|
731
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
750
732
|
|
|
751
733
|
[[package]]
|
|
752
734
|
name = "futures-task"
|
|
753
|
-
version = "0.3.
|
|
735
|
+
version = "0.3.31"
|
|
754
736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
-
checksum = "
|
|
737
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
756
738
|
|
|
757
739
|
[[package]]
|
|
758
740
|
name = "futures-timer"
|
|
@@ -762,9 +744,9 @@ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
|
762
744
|
|
|
763
745
|
[[package]]
|
|
764
746
|
name = "futures-util"
|
|
765
|
-
version = "0.3.
|
|
747
|
+
version = "0.3.31"
|
|
766
748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
-
checksum = "
|
|
749
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
768
750
|
dependencies = [
|
|
769
751
|
"futures-channel",
|
|
770
752
|
"futures-core",
|
|
@@ -801,9 +783,9 @@ dependencies = [
|
|
|
801
783
|
|
|
802
784
|
[[package]]
|
|
803
785
|
name = "gimli"
|
|
804
|
-
version = "0.
|
|
786
|
+
version = "0.31.1"
|
|
805
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
-
checksum = "
|
|
788
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
807
789
|
|
|
808
790
|
[[package]]
|
|
809
791
|
name = "glob"
|
|
@@ -813,14 +795,15 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
|
813
795
|
|
|
814
796
|
[[package]]
|
|
815
797
|
name = "governor"
|
|
816
|
-
version = "0.
|
|
798
|
+
version = "0.7.0"
|
|
817
799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
-
checksum = "
|
|
800
|
+
checksum = "0746aa765db78b521451ef74221663b57ba595bf83f75d0ce23cc09447c8139f"
|
|
819
801
|
dependencies = [
|
|
820
802
|
"cfg-if",
|
|
821
|
-
"dashmap
|
|
822
|
-
"futures",
|
|
803
|
+
"dashmap",
|
|
804
|
+
"futures-sink",
|
|
823
805
|
"futures-timer",
|
|
806
|
+
"futures-util",
|
|
824
807
|
"no-std-compat",
|
|
825
808
|
"nonzero_ext",
|
|
826
809
|
"parking_lot",
|
|
@@ -833,9 +816,9 @@ dependencies = [
|
|
|
833
816
|
|
|
834
817
|
[[package]]
|
|
835
818
|
name = "h2"
|
|
836
|
-
version = "0.4.
|
|
819
|
+
version = "0.4.6"
|
|
837
820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
-
checksum = "
|
|
821
|
+
checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205"
|
|
839
822
|
dependencies = [
|
|
840
823
|
"atomic-waker",
|
|
841
824
|
"bytes",
|
|
@@ -843,7 +826,7 @@ dependencies = [
|
|
|
843
826
|
"futures-core",
|
|
844
827
|
"futures-sink",
|
|
845
828
|
"http",
|
|
846
|
-
"indexmap 2.
|
|
829
|
+
"indexmap 2.6.0",
|
|
847
830
|
"slab",
|
|
848
831
|
"tokio",
|
|
849
832
|
"tokio-util",
|
|
@@ -861,9 +844,16 @@ name = "hashbrown"
|
|
|
861
844
|
version = "0.14.5"
|
|
862
845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
846
|
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "hashbrown"
|
|
850
|
+
version = "0.15.0"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
|
|
864
853
|
dependencies = [
|
|
865
|
-
"ahash",
|
|
866
854
|
"allocator-api2",
|
|
855
|
+
"equivalent",
|
|
856
|
+
"foldhash",
|
|
867
857
|
]
|
|
868
858
|
|
|
869
859
|
[[package]]
|
|
@@ -923,9 +913,9 @@ dependencies = [
|
|
|
923
913
|
|
|
924
914
|
[[package]]
|
|
925
915
|
name = "httparse"
|
|
926
|
-
version = "1.9.
|
|
916
|
+
version = "1.9.5"
|
|
927
917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
-
checksum = "
|
|
918
|
+
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
|
|
929
919
|
|
|
930
920
|
[[package]]
|
|
931
921
|
name = "httpdate"
|
|
@@ -935,9 +925,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
935
925
|
|
|
936
926
|
[[package]]
|
|
937
927
|
name = "hyper"
|
|
938
|
-
version = "1.
|
|
928
|
+
version = "1.5.0"
|
|
939
929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
-
checksum = "
|
|
930
|
+
checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a"
|
|
941
931
|
dependencies = [
|
|
942
932
|
"bytes",
|
|
943
933
|
"futures-channel",
|
|
@@ -956,20 +946,20 @@ dependencies = [
|
|
|
956
946
|
|
|
957
947
|
[[package]]
|
|
958
948
|
name = "hyper-rustls"
|
|
959
|
-
version = "0.27.
|
|
949
|
+
version = "0.27.3"
|
|
960
950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
-
checksum = "
|
|
951
|
+
checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
|
|
962
952
|
dependencies = [
|
|
963
953
|
"futures-util",
|
|
964
954
|
"http",
|
|
965
955
|
"hyper",
|
|
966
956
|
"hyper-util",
|
|
967
957
|
"rustls",
|
|
958
|
+
"rustls-native-certs",
|
|
968
959
|
"rustls-pki-types",
|
|
969
960
|
"tokio",
|
|
970
961
|
"tokio-rustls",
|
|
971
962
|
"tower-service",
|
|
972
|
-
"webpki-roots",
|
|
973
963
|
]
|
|
974
964
|
|
|
975
965
|
[[package]]
|
|
@@ -987,9 +977,9 @@ dependencies = [
|
|
|
987
977
|
|
|
988
978
|
[[package]]
|
|
989
979
|
name = "hyper-util"
|
|
990
|
-
version = "0.1.
|
|
980
|
+
version = "0.1.10"
|
|
991
981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
-
checksum = "
|
|
982
|
+
checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
|
|
993
983
|
dependencies = [
|
|
994
984
|
"bytes",
|
|
995
985
|
"futures-channel",
|
|
@@ -1000,7 +990,6 @@ dependencies = [
|
|
|
1000
990
|
"pin-project-lite",
|
|
1001
991
|
"socket2",
|
|
1002
992
|
"tokio",
|
|
1003
|
-
"tower 0.4.13",
|
|
1004
993
|
"tower-service",
|
|
1005
994
|
"tracing",
|
|
1006
995
|
]
|
|
@@ -1033,12 +1022,12 @@ dependencies = [
|
|
|
1033
1022
|
|
|
1034
1023
|
[[package]]
|
|
1035
1024
|
name = "indexmap"
|
|
1036
|
-
version = "2.
|
|
1025
|
+
version = "2.6.0"
|
|
1037
1026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
-
checksum = "
|
|
1027
|
+
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
|
|
1039
1028
|
dependencies = [
|
|
1040
1029
|
"equivalent",
|
|
1041
|
-
"hashbrown 0.
|
|
1030
|
+
"hashbrown 0.15.0",
|
|
1042
1031
|
]
|
|
1043
1032
|
|
|
1044
1033
|
[[package]]
|
|
@@ -1067,9 +1056,9 @@ checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
|
|
|
1067
1056
|
|
|
1068
1057
|
[[package]]
|
|
1069
1058
|
name = "ipnet"
|
|
1070
|
-
version = "2.
|
|
1059
|
+
version = "2.10.1"
|
|
1071
1060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
-
checksum = "
|
|
1061
|
+
checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
|
|
1073
1062
|
|
|
1074
1063
|
[[package]]
|
|
1075
1064
|
name = "itertools"
|
|
@@ -1097,9 +1086,9 @@ dependencies = [
|
|
|
1097
1086
|
|
|
1098
1087
|
[[package]]
|
|
1099
1088
|
name = "js-sys"
|
|
1100
|
-
version = "0.3.
|
|
1089
|
+
version = "0.3.72"
|
|
1101
1090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
-
checksum = "
|
|
1091
|
+
checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
|
|
1103
1092
|
dependencies = [
|
|
1104
1093
|
"wasm-bindgen",
|
|
1105
1094
|
]
|
|
@@ -1112,18 +1101,29 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
|
1112
1101
|
|
|
1113
1102
|
[[package]]
|
|
1114
1103
|
name = "libc"
|
|
1115
|
-
version = "0.2.
|
|
1104
|
+
version = "0.2.161"
|
|
1116
1105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
-
checksum = "
|
|
1106
|
+
checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
|
|
1118
1107
|
|
|
1119
1108
|
[[package]]
|
|
1120
1109
|
name = "libloading"
|
|
1121
|
-
version = "0.
|
|
1110
|
+
version = "0.8.5"
|
|
1122
1111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
-
checksum = "
|
|
1112
|
+
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
|
|
1124
1113
|
dependencies = [
|
|
1125
1114
|
"cfg-if",
|
|
1126
|
-
"
|
|
1115
|
+
"windows-targets",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "libredox"
|
|
1120
|
+
version = "0.1.3"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1123
|
+
dependencies = [
|
|
1124
|
+
"bitflags",
|
|
1125
|
+
"libc",
|
|
1126
|
+
"redox_syscall",
|
|
1127
1127
|
]
|
|
1128
1128
|
|
|
1129
1129
|
[[package]]
|
|
@@ -1156,11 +1156,11 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
|
1156
1156
|
|
|
1157
1157
|
[[package]]
|
|
1158
1158
|
name = "lru"
|
|
1159
|
-
version = "0.12.
|
|
1159
|
+
version = "0.12.5"
|
|
1160
1160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
-
checksum = "
|
|
1161
|
+
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
|
1162
1162
|
dependencies = [
|
|
1163
|
-
"hashbrown 0.
|
|
1163
|
+
"hashbrown 0.15.0",
|
|
1164
1164
|
]
|
|
1165
1165
|
|
|
1166
1166
|
[[package]]
|
|
@@ -1202,18 +1202,18 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
|
1202
1202
|
|
|
1203
1203
|
[[package]]
|
|
1204
1204
|
name = "miniz_oxide"
|
|
1205
|
-
version = "0.
|
|
1205
|
+
version = "0.8.0"
|
|
1206
1206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
-
checksum = "
|
|
1207
|
+
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
|
|
1208
1208
|
dependencies = [
|
|
1209
|
-
"
|
|
1209
|
+
"adler2",
|
|
1210
1210
|
]
|
|
1211
1211
|
|
|
1212
1212
|
[[package]]
|
|
1213
1213
|
name = "mio"
|
|
1214
|
-
version = "1.0.
|
|
1214
|
+
version = "1.0.2"
|
|
1215
1215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
-
checksum = "
|
|
1216
|
+
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
|
|
1217
1217
|
dependencies = [
|
|
1218
1218
|
"hermit-abi",
|
|
1219
1219
|
"libc",
|
|
@@ -1244,7 +1244,7 @@ dependencies = [
|
|
|
1244
1244
|
"cfg-if",
|
|
1245
1245
|
"proc-macro2",
|
|
1246
1246
|
"quote",
|
|
1247
|
-
"syn
|
|
1247
|
+
"syn",
|
|
1248
1248
|
]
|
|
1249
1249
|
|
|
1250
1250
|
[[package]]
|
|
@@ -1255,45 +1255,30 @@ checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
|
|
|
1255
1255
|
|
|
1256
1256
|
[[package]]
|
|
1257
1257
|
name = "neon"
|
|
1258
|
-
version = "0.
|
|
1258
|
+
version = "1.0.0"
|
|
1259
1259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
-
checksum = "
|
|
1260
|
+
checksum = "7d75440242411c87dc39847b0e33e961ec1f10326a9d8ecf9c1ea64a3b3c13dc"
|
|
1261
1261
|
dependencies = [
|
|
1262
|
-
"
|
|
1262
|
+
"libloading",
|
|
1263
1263
|
"neon-macros",
|
|
1264
|
-
"
|
|
1264
|
+
"once_cell",
|
|
1265
1265
|
"semver",
|
|
1266
|
+
"send_wrapper",
|
|
1266
1267
|
"smallvec",
|
|
1268
|
+
"tokio",
|
|
1267
1269
|
]
|
|
1268
1270
|
|
|
1269
|
-
[[package]]
|
|
1270
|
-
name = "neon-build"
|
|
1271
|
-
version = "0.10.1"
|
|
1272
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1273
|
-
checksum = "8bac98a702e71804af3dacfde41edde4a16076a7bbe889ae61e56e18c5b1c811"
|
|
1274
|
-
|
|
1275
1271
|
[[package]]
|
|
1276
1272
|
name = "neon-macros"
|
|
1277
|
-
version = "0.
|
|
1273
|
+
version = "1.0.0"
|
|
1278
1274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
-
checksum = "
|
|
1275
|
+
checksum = "c6813fde79b646e47e7ad75f480aa80ef76a5d9599e2717407961531169ee38b"
|
|
1280
1276
|
dependencies = [
|
|
1281
1277
|
"quote",
|
|
1282
|
-
"syn
|
|
1278
|
+
"syn",
|
|
1283
1279
|
"syn-mid",
|
|
1284
1280
|
]
|
|
1285
1281
|
|
|
1286
|
-
[[package]]
|
|
1287
|
-
name = "neon-runtime"
|
|
1288
|
-
version = "0.10.1"
|
|
1289
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
-
checksum = "4676720fa8bb32c64c3d9f49c47a47289239ec46b4bdb66d0913cc512cb0daca"
|
|
1291
|
-
dependencies = [
|
|
1292
|
-
"cfg-if",
|
|
1293
|
-
"libloading",
|
|
1294
|
-
"smallvec",
|
|
1295
|
-
]
|
|
1296
|
-
|
|
1297
1282
|
[[package]]
|
|
1298
1283
|
name = "no-std-compat"
|
|
1299
1284
|
version = "0.4.1"
|
|
@@ -1342,18 +1327,18 @@ dependencies = [
|
|
|
1342
1327
|
|
|
1343
1328
|
[[package]]
|
|
1344
1329
|
name = "object"
|
|
1345
|
-
version = "0.36.
|
|
1330
|
+
version = "0.36.5"
|
|
1346
1331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1347
|
-
checksum = "
|
|
1332
|
+
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
|
|
1348
1333
|
dependencies = [
|
|
1349
1334
|
"memchr",
|
|
1350
1335
|
]
|
|
1351
1336
|
|
|
1352
1337
|
[[package]]
|
|
1353
1338
|
name = "once_cell"
|
|
1354
|
-
version = "1.
|
|
1339
|
+
version = "1.20.2"
|
|
1355
1340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1356
|
-
checksum = "
|
|
1341
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
|
1357
1342
|
|
|
1358
1343
|
[[package]]
|
|
1359
1344
|
name = "openssl-probe"
|
|
@@ -1361,20 +1346,6 @@ version = "0.1.5"
|
|
|
1361
1346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
1347
|
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
1363
1348
|
|
|
1364
|
-
[[package]]
|
|
1365
|
-
name = "opentelemetry"
|
|
1366
|
-
version = "0.23.0"
|
|
1367
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
-
checksum = "1b69a91d4893e713e06f724597ad630f1fa76057a5e1026c0ca67054a9032a76"
|
|
1369
|
-
dependencies = [
|
|
1370
|
-
"futures-core",
|
|
1371
|
-
"futures-sink",
|
|
1372
|
-
"js-sys",
|
|
1373
|
-
"once_cell",
|
|
1374
|
-
"pin-project-lite",
|
|
1375
|
-
"thiserror",
|
|
1376
|
-
]
|
|
1377
|
-
|
|
1378
1349
|
[[package]]
|
|
1379
1350
|
name = "opentelemetry"
|
|
1380
1351
|
version = "0.24.0"
|
|
@@ -1398,7 +1369,7 @@ dependencies = [
|
|
|
1398
1369
|
"async-trait",
|
|
1399
1370
|
"futures-core",
|
|
1400
1371
|
"http",
|
|
1401
|
-
"opentelemetry
|
|
1372
|
+
"opentelemetry",
|
|
1402
1373
|
"opentelemetry-proto",
|
|
1403
1374
|
"opentelemetry_sdk",
|
|
1404
1375
|
"prost",
|
|
@@ -1414,7 +1385,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1414
1385
|
checksum = "cc4191ce34aa274621861a7a9d68dbcf618d5b6c66b10081631b61fd81fbc015"
|
|
1415
1386
|
dependencies = [
|
|
1416
1387
|
"once_cell",
|
|
1417
|
-
"opentelemetry
|
|
1388
|
+
"opentelemetry",
|
|
1418
1389
|
"opentelemetry_sdk",
|
|
1419
1390
|
"prometheus",
|
|
1420
1391
|
"protobuf",
|
|
@@ -1426,7 +1397,7 @@ version = "0.7.0"
|
|
|
1426
1397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
1398
|
checksum = "30ee9f20bff9c984511a02f082dc8ede839e4a9bf15cc2487c8d6fea5ad850d9"
|
|
1428
1399
|
dependencies = [
|
|
1429
|
-
"opentelemetry
|
|
1400
|
+
"opentelemetry",
|
|
1430
1401
|
"opentelemetry_sdk",
|
|
1431
1402
|
"prost",
|
|
1432
1403
|
"tonic",
|
|
@@ -1444,7 +1415,7 @@ dependencies = [
|
|
|
1444
1415
|
"futures-util",
|
|
1445
1416
|
"glob",
|
|
1446
1417
|
"once_cell",
|
|
1447
|
-
"opentelemetry
|
|
1418
|
+
"opentelemetry",
|
|
1448
1419
|
"percent-encoding",
|
|
1449
1420
|
"rand",
|
|
1450
1421
|
"serde_json",
|
|
@@ -1477,9 +1448,9 @@ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
|
1477
1448
|
dependencies = [
|
|
1478
1449
|
"cfg-if",
|
|
1479
1450
|
"libc",
|
|
1480
|
-
"redox_syscall
|
|
1451
|
+
"redox_syscall",
|
|
1481
1452
|
"smallvec",
|
|
1482
|
-
"windows-targets
|
|
1453
|
+
"windows-targets",
|
|
1483
1454
|
]
|
|
1484
1455
|
|
|
1485
1456
|
[[package]]
|
|
@@ -1505,7 +1476,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1505
1476
|
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
1506
1477
|
dependencies = [
|
|
1507
1478
|
"fixedbitset",
|
|
1508
|
-
"indexmap 2.
|
|
1479
|
+
"indexmap 2.6.0",
|
|
1509
1480
|
]
|
|
1510
1481
|
|
|
1511
1482
|
[[package]]
|
|
@@ -1519,29 +1490,29 @@ dependencies = [
|
|
|
1519
1490
|
|
|
1520
1491
|
[[package]]
|
|
1521
1492
|
name = "pin-project"
|
|
1522
|
-
version = "1.1.
|
|
1493
|
+
version = "1.1.7"
|
|
1523
1494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
-
checksum = "
|
|
1495
|
+
checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95"
|
|
1525
1496
|
dependencies = [
|
|
1526
1497
|
"pin-project-internal",
|
|
1527
1498
|
]
|
|
1528
1499
|
|
|
1529
1500
|
[[package]]
|
|
1530
1501
|
name = "pin-project-internal"
|
|
1531
|
-
version = "1.1.
|
|
1502
|
+
version = "1.1.7"
|
|
1532
1503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
-
checksum = "
|
|
1504
|
+
checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c"
|
|
1534
1505
|
dependencies = [
|
|
1535
1506
|
"proc-macro2",
|
|
1536
1507
|
"quote",
|
|
1537
|
-
"syn
|
|
1508
|
+
"syn",
|
|
1538
1509
|
]
|
|
1539
1510
|
|
|
1540
1511
|
[[package]]
|
|
1541
1512
|
name = "pin-project-lite"
|
|
1542
|
-
version = "0.2.
|
|
1513
|
+
version = "0.2.15"
|
|
1543
1514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
-
checksum = "
|
|
1515
|
+
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
|
1545
1516
|
|
|
1546
1517
|
[[package]]
|
|
1547
1518
|
name = "pin-utils"
|
|
@@ -1551,15 +1522,15 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1551
1522
|
|
|
1552
1523
|
[[package]]
|
|
1553
1524
|
name = "pkg-config"
|
|
1554
|
-
version = "0.3.
|
|
1525
|
+
version = "0.3.31"
|
|
1555
1526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
-
checksum = "
|
|
1527
|
+
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
|
1557
1528
|
|
|
1558
1529
|
[[package]]
|
|
1559
1530
|
name = "portable-atomic"
|
|
1560
|
-
version = "1.
|
|
1531
|
+
version = "1.9.0"
|
|
1561
1532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
-
checksum = "
|
|
1533
|
+
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
|
|
1563
1534
|
|
|
1564
1535
|
[[package]]
|
|
1565
1536
|
name = "powerfmt"
|
|
@@ -1604,19 +1575,19 @@ dependencies = [
|
|
|
1604
1575
|
|
|
1605
1576
|
[[package]]
|
|
1606
1577
|
name = "prettyplease"
|
|
1607
|
-
version = "0.2.
|
|
1578
|
+
version = "0.2.25"
|
|
1608
1579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
-
checksum = "
|
|
1580
|
+
checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033"
|
|
1610
1581
|
dependencies = [
|
|
1611
1582
|
"proc-macro2",
|
|
1612
|
-
"syn
|
|
1583
|
+
"syn",
|
|
1613
1584
|
]
|
|
1614
1585
|
|
|
1615
1586
|
[[package]]
|
|
1616
1587
|
name = "proc-macro2"
|
|
1617
|
-
version = "1.0.
|
|
1588
|
+
version = "1.0.89"
|
|
1618
1589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
-
checksum = "
|
|
1590
|
+
checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
|
|
1620
1591
|
dependencies = [
|
|
1621
1592
|
"unicode-ident",
|
|
1622
1593
|
]
|
|
@@ -1638,9 +1609,9 @@ dependencies = [
|
|
|
1638
1609
|
|
|
1639
1610
|
[[package]]
|
|
1640
1611
|
name = "prost"
|
|
1641
|
-
version = "0.13.
|
|
1612
|
+
version = "0.13.3"
|
|
1642
1613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
-
checksum = "
|
|
1614
|
+
checksum = "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f"
|
|
1644
1615
|
dependencies = [
|
|
1645
1616
|
"bytes",
|
|
1646
1617
|
"prost-derive",
|
|
@@ -1648,9 +1619,9 @@ dependencies = [
|
|
|
1648
1619
|
|
|
1649
1620
|
[[package]]
|
|
1650
1621
|
name = "prost-build"
|
|
1651
|
-
version = "0.13.
|
|
1622
|
+
version = "0.13.3"
|
|
1652
1623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
-
checksum = "
|
|
1624
|
+
checksum = "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15"
|
|
1654
1625
|
dependencies = [
|
|
1655
1626
|
"bytes",
|
|
1656
1627
|
"heck",
|
|
@@ -1663,28 +1634,28 @@ dependencies = [
|
|
|
1663
1634
|
"prost",
|
|
1664
1635
|
"prost-types",
|
|
1665
1636
|
"regex",
|
|
1666
|
-
"syn
|
|
1637
|
+
"syn",
|
|
1667
1638
|
"tempfile",
|
|
1668
1639
|
]
|
|
1669
1640
|
|
|
1670
1641
|
[[package]]
|
|
1671
1642
|
name = "prost-derive"
|
|
1672
|
-
version = "0.13.
|
|
1643
|
+
version = "0.13.3"
|
|
1673
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
-
checksum = "
|
|
1645
|
+
checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5"
|
|
1675
1646
|
dependencies = [
|
|
1676
1647
|
"anyhow",
|
|
1677
1648
|
"itertools",
|
|
1678
1649
|
"proc-macro2",
|
|
1679
1650
|
"quote",
|
|
1680
|
-
"syn
|
|
1651
|
+
"syn",
|
|
1681
1652
|
]
|
|
1682
1653
|
|
|
1683
1654
|
[[package]]
|
|
1684
1655
|
name = "prost-types"
|
|
1685
|
-
version = "0.13.
|
|
1656
|
+
version = "0.13.3"
|
|
1686
1657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
-
checksum = "
|
|
1658
|
+
checksum = "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670"
|
|
1688
1659
|
dependencies = [
|
|
1689
1660
|
"prost",
|
|
1690
1661
|
]
|
|
@@ -1758,9 +1729,9 @@ dependencies = [
|
|
|
1758
1729
|
|
|
1759
1730
|
[[package]]
|
|
1760
1731
|
name = "quinn"
|
|
1761
|
-
version = "0.11.
|
|
1732
|
+
version = "0.11.5"
|
|
1762
1733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
-
checksum = "
|
|
1734
|
+
checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684"
|
|
1764
1735
|
dependencies = [
|
|
1765
1736
|
"bytes",
|
|
1766
1737
|
"pin-project-lite",
|
|
@@ -1776,9 +1747,9 @@ dependencies = [
|
|
|
1776
1747
|
|
|
1777
1748
|
[[package]]
|
|
1778
1749
|
name = "quinn-proto"
|
|
1779
|
-
version = "0.11.
|
|
1750
|
+
version = "0.11.8"
|
|
1780
1751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
-
checksum = "
|
|
1752
|
+
checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6"
|
|
1782
1753
|
dependencies = [
|
|
1783
1754
|
"bytes",
|
|
1784
1755
|
"rand",
|
|
@@ -1793,22 +1764,23 @@ dependencies = [
|
|
|
1793
1764
|
|
|
1794
1765
|
[[package]]
|
|
1795
1766
|
name = "quinn-udp"
|
|
1796
|
-
version = "0.5.
|
|
1767
|
+
version = "0.5.6"
|
|
1797
1768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
-
checksum = "
|
|
1769
|
+
checksum = "e346e016eacfff12233c243718197ca12f148c84e1e84268a896699b41c71780"
|
|
1799
1770
|
dependencies = [
|
|
1771
|
+
"cfg_aliases",
|
|
1800
1772
|
"libc",
|
|
1801
1773
|
"once_cell",
|
|
1802
1774
|
"socket2",
|
|
1803
1775
|
"tracing",
|
|
1804
|
-
"windows-sys 0.
|
|
1776
|
+
"windows-sys 0.59.0",
|
|
1805
1777
|
]
|
|
1806
1778
|
|
|
1807
1779
|
[[package]]
|
|
1808
1780
|
name = "quote"
|
|
1809
|
-
version = "1.0.
|
|
1781
|
+
version = "1.0.37"
|
|
1810
1782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1811
|
-
checksum = "
|
|
1783
|
+
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
|
|
1812
1784
|
dependencies = [
|
|
1813
1785
|
"proc-macro2",
|
|
1814
1786
|
]
|
|
@@ -1845,41 +1817,32 @@ dependencies = [
|
|
|
1845
1817
|
|
|
1846
1818
|
[[package]]
|
|
1847
1819
|
name = "raw-cpuid"
|
|
1848
|
-
version = "11.
|
|
1820
|
+
version = "11.2.0"
|
|
1849
1821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
-
checksum = "
|
|
1822
|
+
checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0"
|
|
1851
1823
|
dependencies = [
|
|
1852
|
-
"bitflags
|
|
1824
|
+
"bitflags",
|
|
1853
1825
|
]
|
|
1854
1826
|
|
|
1855
1827
|
[[package]]
|
|
1856
1828
|
name = "redox_syscall"
|
|
1857
|
-
version = "0.
|
|
1858
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
-
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
1860
|
-
dependencies = [
|
|
1861
|
-
"bitflags 1.3.2",
|
|
1862
|
-
]
|
|
1863
|
-
|
|
1864
|
-
[[package]]
|
|
1865
|
-
name = "redox_syscall"
|
|
1866
|
-
version = "0.5.3"
|
|
1829
|
+
version = "0.5.7"
|
|
1867
1830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1868
|
-
checksum = "
|
|
1831
|
+
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
|
|
1869
1832
|
dependencies = [
|
|
1870
|
-
"bitflags
|
|
1833
|
+
"bitflags",
|
|
1871
1834
|
]
|
|
1872
1835
|
|
|
1873
1836
|
[[package]]
|
|
1874
1837
|
name = "regex"
|
|
1875
|
-
version = "1.
|
|
1838
|
+
version = "1.11.1"
|
|
1876
1839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1877
|
-
checksum = "
|
|
1840
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
1878
1841
|
dependencies = [
|
|
1879
1842
|
"aho-corasick",
|
|
1880
1843
|
"memchr",
|
|
1881
|
-
"regex-automata 0.4.
|
|
1882
|
-
"regex-syntax 0.8.
|
|
1844
|
+
"regex-automata 0.4.8",
|
|
1845
|
+
"regex-syntax 0.8.5",
|
|
1883
1846
|
]
|
|
1884
1847
|
|
|
1885
1848
|
[[package]]
|
|
@@ -1893,13 +1856,13 @@ dependencies = [
|
|
|
1893
1856
|
|
|
1894
1857
|
[[package]]
|
|
1895
1858
|
name = "regex-automata"
|
|
1896
|
-
version = "0.4.
|
|
1859
|
+
version = "0.4.8"
|
|
1897
1860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1898
|
-
checksum = "
|
|
1861
|
+
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
|
|
1899
1862
|
dependencies = [
|
|
1900
1863
|
"aho-corasick",
|
|
1901
1864
|
"memchr",
|
|
1902
|
-
"regex-syntax 0.8.
|
|
1865
|
+
"regex-syntax 0.8.5",
|
|
1903
1866
|
]
|
|
1904
1867
|
|
|
1905
1868
|
[[package]]
|
|
@@ -1910,15 +1873,15 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
|
1910
1873
|
|
|
1911
1874
|
[[package]]
|
|
1912
1875
|
name = "regex-syntax"
|
|
1913
|
-
version = "0.8.
|
|
1876
|
+
version = "0.8.5"
|
|
1914
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
-
checksum = "
|
|
1878
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
1916
1879
|
|
|
1917
1880
|
[[package]]
|
|
1918
1881
|
name = "reqwest"
|
|
1919
|
-
version = "0.12.
|
|
1882
|
+
version = "0.12.9"
|
|
1920
1883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
-
checksum = "
|
|
1884
|
+
checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f"
|
|
1922
1885
|
dependencies = [
|
|
1923
1886
|
"base64",
|
|
1924
1887
|
"bytes",
|
|
@@ -1939,6 +1902,7 @@ dependencies = [
|
|
|
1939
1902
|
"pin-project-lite",
|
|
1940
1903
|
"quinn",
|
|
1941
1904
|
"rustls",
|
|
1905
|
+
"rustls-native-certs",
|
|
1942
1906
|
"rustls-pemfile",
|
|
1943
1907
|
"rustls-pki-types",
|
|
1944
1908
|
"serde",
|
|
@@ -1954,8 +1918,7 @@ dependencies = [
|
|
|
1954
1918
|
"wasm-bindgen-futures",
|
|
1955
1919
|
"wasm-streams",
|
|
1956
1920
|
"web-sys",
|
|
1957
|
-
"
|
|
1958
|
-
"winreg",
|
|
1921
|
+
"windows-registry",
|
|
1959
1922
|
]
|
|
1960
1923
|
|
|
1961
1924
|
[[package]]
|
|
@@ -1975,11 +1938,12 @@ dependencies = [
|
|
|
1975
1938
|
|
|
1976
1939
|
[[package]]
|
|
1977
1940
|
name = "ringbuf"
|
|
1978
|
-
version = "0.4.
|
|
1941
|
+
version = "0.4.7"
|
|
1979
1942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
-
checksum = "
|
|
1943
|
+
checksum = "726bb493fe9cac765e8f96a144c3a8396bdf766dedad22e504b70b908dcbceb4"
|
|
1981
1944
|
dependencies = [
|
|
1982
1945
|
"crossbeam-utils",
|
|
1946
|
+
"portable-atomic",
|
|
1983
1947
|
]
|
|
1984
1948
|
|
|
1985
1949
|
[[package]]
|
|
@@ -2010,7 +1974,7 @@ dependencies = [
|
|
|
2010
1974
|
"proc-macro2",
|
|
2011
1975
|
"quote",
|
|
2012
1976
|
"rustfsm_trait",
|
|
2013
|
-
"syn
|
|
1977
|
+
"syn",
|
|
2014
1978
|
]
|
|
2015
1979
|
|
|
2016
1980
|
[[package]]
|
|
@@ -2019,11 +1983,11 @@ version = "0.1.0"
|
|
|
2019
1983
|
|
|
2020
1984
|
[[package]]
|
|
2021
1985
|
name = "rustix"
|
|
2022
|
-
version = "0.38.
|
|
1986
|
+
version = "0.38.38"
|
|
2023
1987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2024
|
-
checksum = "
|
|
1988
|
+
checksum = "aa260229e6538e52293eeb577aabd09945a09d6d9cc0fc550ed7529056c2e32a"
|
|
2025
1989
|
dependencies = [
|
|
2026
|
-
"bitflags
|
|
1990
|
+
"bitflags",
|
|
2027
1991
|
"errno",
|
|
2028
1992
|
"libc",
|
|
2029
1993
|
"linux-raw-sys",
|
|
@@ -2032,9 +1996,9 @@ dependencies = [
|
|
|
2032
1996
|
|
|
2033
1997
|
[[package]]
|
|
2034
1998
|
name = "rustls"
|
|
2035
|
-
version = "0.23.
|
|
1999
|
+
version = "0.23.16"
|
|
2036
2000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2037
|
-
checksum = "
|
|
2001
|
+
checksum = "eee87ff5d9b36712a58574e12e9f0ea80f915a5b0ac518d322b24a465617925e"
|
|
2038
2002
|
dependencies = [
|
|
2039
2003
|
"log",
|
|
2040
2004
|
"once_cell",
|
|
@@ -2047,9 +2011,9 @@ dependencies = [
|
|
|
2047
2011
|
|
|
2048
2012
|
[[package]]
|
|
2049
2013
|
name = "rustls-native-certs"
|
|
2050
|
-
version = "0.
|
|
2014
|
+
version = "0.8.0"
|
|
2051
2015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
-
checksum = "
|
|
2016
|
+
checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a"
|
|
2053
2017
|
dependencies = [
|
|
2054
2018
|
"openssl-probe",
|
|
2055
2019
|
"rustls-pemfile",
|
|
@@ -2060,25 +2024,24 @@ dependencies = [
|
|
|
2060
2024
|
|
|
2061
2025
|
[[package]]
|
|
2062
2026
|
name = "rustls-pemfile"
|
|
2063
|
-
version = "2.
|
|
2027
|
+
version = "2.2.0"
|
|
2064
2028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2065
|
-
checksum = "
|
|
2029
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
2066
2030
|
dependencies = [
|
|
2067
|
-
"base64",
|
|
2068
2031
|
"rustls-pki-types",
|
|
2069
2032
|
]
|
|
2070
2033
|
|
|
2071
2034
|
[[package]]
|
|
2072
2035
|
name = "rustls-pki-types"
|
|
2073
|
-
version = "1.
|
|
2036
|
+
version = "1.10.0"
|
|
2074
2037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2075
|
-
checksum = "
|
|
2038
|
+
checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
|
|
2076
2039
|
|
|
2077
2040
|
[[package]]
|
|
2078
2041
|
name = "rustls-webpki"
|
|
2079
|
-
version = "0.102.
|
|
2042
|
+
version = "0.102.8"
|
|
2080
2043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2081
|
-
checksum = "
|
|
2044
|
+
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
|
|
2082
2045
|
dependencies = [
|
|
2083
2046
|
"ring",
|
|
2084
2047
|
"rustls-pki-types",
|
|
@@ -2087,9 +2050,9 @@ dependencies = [
|
|
|
2087
2050
|
|
|
2088
2051
|
[[package]]
|
|
2089
2052
|
name = "rustversion"
|
|
2090
|
-
version = "1.0.
|
|
2053
|
+
version = "1.0.18"
|
|
2091
2054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2092
|
-
checksum = "
|
|
2055
|
+
checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
|
|
2093
2056
|
|
|
2094
2057
|
[[package]]
|
|
2095
2058
|
name = "ryu"
|
|
@@ -2099,11 +2062,11 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
|
2099
2062
|
|
|
2100
2063
|
[[package]]
|
|
2101
2064
|
name = "schannel"
|
|
2102
|
-
version = "0.1.
|
|
2065
|
+
version = "0.1.26"
|
|
2103
2066
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
-
checksum = "
|
|
2067
|
+
checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1"
|
|
2105
2068
|
dependencies = [
|
|
2106
|
-
"windows-sys 0.
|
|
2069
|
+
"windows-sys 0.59.0",
|
|
2107
2070
|
]
|
|
2108
2071
|
|
|
2109
2072
|
[[package]]
|
|
@@ -2118,7 +2081,7 @@ version = "2.11.1"
|
|
|
2118
2081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
2082
|
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
2120
2083
|
dependencies = [
|
|
2121
|
-
"bitflags
|
|
2084
|
+
"bitflags",
|
|
2122
2085
|
"core-foundation",
|
|
2123
2086
|
"core-foundation-sys",
|
|
2124
2087
|
"libc",
|
|
@@ -2127,9 +2090,9 @@ dependencies = [
|
|
|
2127
2090
|
|
|
2128
2091
|
[[package]]
|
|
2129
2092
|
name = "security-framework-sys"
|
|
2130
|
-
version = "2.
|
|
2093
|
+
version = "2.12.0"
|
|
2131
2094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
-
checksum = "
|
|
2095
|
+
checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6"
|
|
2133
2096
|
dependencies = [
|
|
2134
2097
|
"core-foundation-sys",
|
|
2135
2098
|
"libc",
|
|
@@ -2137,44 +2100,41 @@ dependencies = [
|
|
|
2137
2100
|
|
|
2138
2101
|
[[package]]
|
|
2139
2102
|
name = "semver"
|
|
2140
|
-
version = "0.
|
|
2103
|
+
version = "1.0.23"
|
|
2141
2104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
-
checksum = "
|
|
2143
|
-
dependencies = [
|
|
2144
|
-
"semver-parser",
|
|
2145
|
-
]
|
|
2105
|
+
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
|
2146
2106
|
|
|
2147
2107
|
[[package]]
|
|
2148
|
-
name = "
|
|
2149
|
-
version = "0.
|
|
2108
|
+
name = "send_wrapper"
|
|
2109
|
+
version = "0.6.0"
|
|
2150
2110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
-
checksum = "
|
|
2111
|
+
checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
|
|
2152
2112
|
|
|
2153
2113
|
[[package]]
|
|
2154
2114
|
name = "serde"
|
|
2155
|
-
version = "1.0.
|
|
2115
|
+
version = "1.0.214"
|
|
2156
2116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2157
|
-
checksum = "
|
|
2117
|
+
checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
|
|
2158
2118
|
dependencies = [
|
|
2159
2119
|
"serde_derive",
|
|
2160
2120
|
]
|
|
2161
2121
|
|
|
2162
2122
|
[[package]]
|
|
2163
2123
|
name = "serde_derive"
|
|
2164
|
-
version = "1.0.
|
|
2124
|
+
version = "1.0.214"
|
|
2165
2125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2166
|
-
checksum = "
|
|
2126
|
+
checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
|
|
2167
2127
|
dependencies = [
|
|
2168
2128
|
"proc-macro2",
|
|
2169
2129
|
"quote",
|
|
2170
|
-
"syn
|
|
2130
|
+
"syn",
|
|
2171
2131
|
]
|
|
2172
2132
|
|
|
2173
2133
|
[[package]]
|
|
2174
2134
|
name = "serde_json"
|
|
2175
|
-
version = "1.0.
|
|
2135
|
+
version = "1.0.132"
|
|
2176
2136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2177
|
-
checksum = "
|
|
2137
|
+
checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
|
|
2178
2138
|
dependencies = [
|
|
2179
2139
|
"itoa",
|
|
2180
2140
|
"memchr",
|
|
@@ -2214,6 +2174,12 @@ dependencies = [
|
|
|
2214
2174
|
"lazy_static",
|
|
2215
2175
|
]
|
|
2216
2176
|
|
|
2177
|
+
[[package]]
|
|
2178
|
+
name = "shlex"
|
|
2179
|
+
version = "1.3.0"
|
|
2180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2181
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2182
|
+
|
|
2217
2183
|
[[package]]
|
|
2218
2184
|
name = "signal-hook-registry"
|
|
2219
2185
|
version = "1.4.2"
|
|
@@ -2298,20 +2264,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
2298
2264
|
|
|
2299
2265
|
[[package]]
|
|
2300
2266
|
name = "syn"
|
|
2301
|
-
version = "
|
|
2302
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2303
|
-
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2304
|
-
dependencies = [
|
|
2305
|
-
"proc-macro2",
|
|
2306
|
-
"quote",
|
|
2307
|
-
"unicode-ident",
|
|
2308
|
-
]
|
|
2309
|
-
|
|
2310
|
-
[[package]]
|
|
2311
|
-
name = "syn"
|
|
2312
|
-
version = "2.0.72"
|
|
2267
|
+
version = "2.0.86"
|
|
2313
2268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
-
checksum = "
|
|
2269
|
+
checksum = "e89275301d38033efb81a6e60e3497e734dfcc62571f2854bf4b16690398824c"
|
|
2315
2270
|
dependencies = [
|
|
2316
2271
|
"proc-macro2",
|
|
2317
2272
|
"quote",
|
|
@@ -2320,13 +2275,13 @@ dependencies = [
|
|
|
2320
2275
|
|
|
2321
2276
|
[[package]]
|
|
2322
2277
|
name = "syn-mid"
|
|
2323
|
-
version = "0.
|
|
2278
|
+
version = "0.6.0"
|
|
2324
2279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2325
|
-
checksum = "
|
|
2280
|
+
checksum = "b5dc35bb08dd1ca3dfb09dce91fd2d13294d6711c88897d9a9d60acf39bce049"
|
|
2326
2281
|
dependencies = [
|
|
2327
2282
|
"proc-macro2",
|
|
2328
2283
|
"quote",
|
|
2329
|
-
"syn
|
|
2284
|
+
"syn",
|
|
2330
2285
|
]
|
|
2331
2286
|
|
|
2332
2287
|
[[package]]
|
|
@@ -2340,12 +2295,15 @@ name = "sync_wrapper"
|
|
|
2340
2295
|
version = "1.0.1"
|
|
2341
2296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2342
2297
|
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
|
|
2298
|
+
dependencies = [
|
|
2299
|
+
"futures-core",
|
|
2300
|
+
]
|
|
2343
2301
|
|
|
2344
2302
|
[[package]]
|
|
2345
2303
|
name = "sysinfo"
|
|
2346
|
-
version = "0.
|
|
2304
|
+
version = "0.32.0"
|
|
2347
2305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2348
|
-
checksum = "
|
|
2306
|
+
checksum = "e3b5ae3f4f7d64646c46c4cae4e3f01d1c5d255c7406fdd7c7f999a94e488791"
|
|
2349
2307
|
dependencies = [
|
|
2350
2308
|
"core-foundation-sys",
|
|
2351
2309
|
"libc",
|
|
@@ -2356,9 +2314,9 @@ dependencies = [
|
|
|
2356
2314
|
|
|
2357
2315
|
[[package]]
|
|
2358
2316
|
name = "tar"
|
|
2359
|
-
version = "0.4.
|
|
2317
|
+
version = "0.4.42"
|
|
2360
2318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
|
-
checksum = "
|
|
2319
|
+
checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020"
|
|
2362
2320
|
dependencies = [
|
|
2363
2321
|
"filetime",
|
|
2364
2322
|
"libc",
|
|
@@ -2367,9 +2325,9 @@ dependencies = [
|
|
|
2367
2325
|
|
|
2368
2326
|
[[package]]
|
|
2369
2327
|
name = "tempfile"
|
|
2370
|
-
version = "3.
|
|
2328
|
+
version = "3.13.0"
|
|
2371
2329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
-
checksum = "
|
|
2330
|
+
checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
|
|
2373
2331
|
dependencies = [
|
|
2374
2332
|
"cfg-if",
|
|
2375
2333
|
"fastrand",
|
|
@@ -2388,13 +2346,12 @@ dependencies = [
|
|
|
2388
2346
|
"base64",
|
|
2389
2347
|
"derive_builder",
|
|
2390
2348
|
"derive_more",
|
|
2391
|
-
"futures",
|
|
2392
2349
|
"futures-retry",
|
|
2350
|
+
"futures-util",
|
|
2393
2351
|
"http",
|
|
2394
2352
|
"http-body-util",
|
|
2395
2353
|
"hyper",
|
|
2396
2354
|
"hyper-util",
|
|
2397
|
-
"once_cell",
|
|
2398
2355
|
"parking_lot",
|
|
2399
2356
|
"prost-types",
|
|
2400
2357
|
"slotmap",
|
|
@@ -2418,13 +2375,13 @@ dependencies = [
|
|
|
2418
2375
|
"crossbeam-channel",
|
|
2419
2376
|
"crossbeam-queue",
|
|
2420
2377
|
"crossbeam-utils",
|
|
2421
|
-
"dashmap
|
|
2378
|
+
"dashmap",
|
|
2422
2379
|
"derive_builder",
|
|
2423
2380
|
"derive_more",
|
|
2424
2381
|
"enum-iterator",
|
|
2425
2382
|
"enum_dispatch",
|
|
2426
2383
|
"flate2",
|
|
2427
|
-
"futures",
|
|
2384
|
+
"futures-channel",
|
|
2428
2385
|
"futures-util",
|
|
2429
2386
|
"governor",
|
|
2430
2387
|
"http-body-util",
|
|
@@ -2433,8 +2390,7 @@ dependencies = [
|
|
|
2433
2390
|
"itertools",
|
|
2434
2391
|
"lru",
|
|
2435
2392
|
"mockall",
|
|
2436
|
-
"
|
|
2437
|
-
"opentelemetry 0.24.0",
|
|
2393
|
+
"opentelemetry",
|
|
2438
2394
|
"opentelemetry-otlp",
|
|
2439
2395
|
"opentelemetry-prometheus",
|
|
2440
2396
|
"opentelemetry_sdk",
|
|
@@ -2477,7 +2433,8 @@ dependencies = [
|
|
|
2477
2433
|
"async-trait",
|
|
2478
2434
|
"derive_builder",
|
|
2479
2435
|
"derive_more",
|
|
2480
|
-
"opentelemetry
|
|
2436
|
+
"opentelemetry",
|
|
2437
|
+
"prost",
|
|
2481
2438
|
"prost-types",
|
|
2482
2439
|
"serde_json",
|
|
2483
2440
|
"temporal-sdk-core-protos",
|
|
@@ -2495,6 +2452,8 @@ dependencies = [
|
|
|
2495
2452
|
"base64",
|
|
2496
2453
|
"derive_more",
|
|
2497
2454
|
"prost",
|
|
2455
|
+
"prost-build",
|
|
2456
|
+
"prost-types",
|
|
2498
2457
|
"prost-wkt",
|
|
2499
2458
|
"prost-wkt-build",
|
|
2500
2459
|
"prost-wkt-types",
|
|
@@ -2511,11 +2470,12 @@ dependencies = [
|
|
|
2511
2470
|
name = "temporal-sdk-typescript-bridge"
|
|
2512
2471
|
version = "0.1.0"
|
|
2513
2472
|
dependencies = [
|
|
2473
|
+
"async-trait",
|
|
2514
2474
|
"futures",
|
|
2515
2475
|
"log",
|
|
2516
2476
|
"neon",
|
|
2517
2477
|
"once_cell",
|
|
2518
|
-
"opentelemetry
|
|
2478
|
+
"opentelemetry",
|
|
2519
2479
|
"parking_lot",
|
|
2520
2480
|
"prost",
|
|
2521
2481
|
"prost-types",
|
|
@@ -2534,22 +2494,22 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
|
|
|
2534
2494
|
|
|
2535
2495
|
[[package]]
|
|
2536
2496
|
name = "thiserror"
|
|
2537
|
-
version = "1.0.
|
|
2497
|
+
version = "1.0.66"
|
|
2538
2498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2539
|
-
checksum = "
|
|
2499
|
+
checksum = "5d171f59dbaa811dbbb1aee1e73db92ec2b122911a48e1390dfe327a821ddede"
|
|
2540
2500
|
dependencies = [
|
|
2541
2501
|
"thiserror-impl",
|
|
2542
2502
|
]
|
|
2543
2503
|
|
|
2544
2504
|
[[package]]
|
|
2545
2505
|
name = "thiserror-impl"
|
|
2546
|
-
version = "1.0.
|
|
2506
|
+
version = "1.0.66"
|
|
2547
2507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2548
|
-
checksum = "
|
|
2508
|
+
checksum = "b08be0f17bd307950653ce45db00cd31200d82b624b36e181337d9c7d92765b5"
|
|
2549
2509
|
dependencies = [
|
|
2550
2510
|
"proc-macro2",
|
|
2551
2511
|
"quote",
|
|
2552
|
-
"syn
|
|
2512
|
+
"syn",
|
|
2553
2513
|
]
|
|
2554
2514
|
|
|
2555
2515
|
[[package]]
|
|
@@ -2598,9 +2558,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2598
2558
|
|
|
2599
2559
|
[[package]]
|
|
2600
2560
|
name = "tokio"
|
|
2601
|
-
version = "1.
|
|
2561
|
+
version = "1.41.0"
|
|
2602
2562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2603
|
-
checksum = "
|
|
2563
|
+
checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb"
|
|
2604
2564
|
dependencies = [
|
|
2605
2565
|
"backtrace",
|
|
2606
2566
|
"bytes",
|
|
@@ -2622,7 +2582,7 @@ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
|
|
|
2622
2582
|
dependencies = [
|
|
2623
2583
|
"proc-macro2",
|
|
2624
2584
|
"quote",
|
|
2625
|
-
"syn
|
|
2585
|
+
"syn",
|
|
2626
2586
|
]
|
|
2627
2587
|
|
|
2628
2588
|
[[package]]
|
|
@@ -2638,9 +2598,9 @@ dependencies = [
|
|
|
2638
2598
|
|
|
2639
2599
|
[[package]]
|
|
2640
2600
|
name = "tokio-stream"
|
|
2641
|
-
version = "0.1.
|
|
2601
|
+
version = "0.1.16"
|
|
2642
2602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2643
|
-
checksum = "
|
|
2603
|
+
checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1"
|
|
2644
2604
|
dependencies = [
|
|
2645
2605
|
"futures-core",
|
|
2646
2606
|
"pin-project-lite",
|
|
@@ -2649,9 +2609,9 @@ dependencies = [
|
|
|
2649
2609
|
|
|
2650
2610
|
[[package]]
|
|
2651
2611
|
name = "tokio-util"
|
|
2652
|
-
version = "0.7.
|
|
2612
|
+
version = "0.7.12"
|
|
2653
2613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2654
|
-
checksum = "
|
|
2614
|
+
checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
|
|
2655
2615
|
dependencies = [
|
|
2656
2616
|
"bytes",
|
|
2657
2617
|
"futures-core",
|
|
@@ -2662,9 +2622,9 @@ dependencies = [
|
|
|
2662
2622
|
|
|
2663
2623
|
[[package]]
|
|
2664
2624
|
name = "tonic"
|
|
2665
|
-
version = "0.12.
|
|
2625
|
+
version = "0.12.3"
|
|
2666
2626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2667
|
-
checksum = "
|
|
2627
|
+
checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
|
|
2668
2628
|
dependencies = [
|
|
2669
2629
|
"async-stream",
|
|
2670
2630
|
"async-trait",
|
|
@@ -2695,15 +2655,16 @@ dependencies = [
|
|
|
2695
2655
|
|
|
2696
2656
|
[[package]]
|
|
2697
2657
|
name = "tonic-build"
|
|
2698
|
-
version = "0.12.
|
|
2658
|
+
version = "0.12.3"
|
|
2699
2659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2700
|
-
checksum = "
|
|
2660
|
+
checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11"
|
|
2701
2661
|
dependencies = [
|
|
2702
2662
|
"prettyplease",
|
|
2703
2663
|
"proc-macro2",
|
|
2704
2664
|
"prost-build",
|
|
2665
|
+
"prost-types",
|
|
2705
2666
|
"quote",
|
|
2706
|
-
"syn
|
|
2667
|
+
"syn",
|
|
2707
2668
|
]
|
|
2708
2669
|
|
|
2709
2670
|
[[package]]
|
|
@@ -2771,7 +2732,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
|
2771
2732
|
dependencies = [
|
|
2772
2733
|
"proc-macro2",
|
|
2773
2734
|
"quote",
|
|
2774
|
-
"syn
|
|
2735
|
+
"syn",
|
|
2775
2736
|
]
|
|
2776
2737
|
|
|
2777
2738
|
[[package]]
|
|
@@ -2822,9 +2783,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
2822
2783
|
|
|
2823
2784
|
[[package]]
|
|
2824
2785
|
name = "typeid"
|
|
2825
|
-
version = "1.0.
|
|
2786
|
+
version = "1.0.2"
|
|
2826
2787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2827
|
-
checksum = "
|
|
2788
|
+
checksum = "0e13db2e0ccd5e14a544e8a246ba2312cd25223f616442d7f2cb0e3db614236e"
|
|
2828
2789
|
|
|
2829
2790
|
[[package]]
|
|
2830
2791
|
name = "typenum"
|
|
@@ -2834,9 +2795,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
|
2834
2795
|
|
|
2835
2796
|
[[package]]
|
|
2836
2797
|
name = "typetag"
|
|
2837
|
-
version = "0.2.
|
|
2798
|
+
version = "0.2.18"
|
|
2838
2799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2839
|
-
checksum = "
|
|
2800
|
+
checksum = "52ba3b6e86ffe0054b2c44f2d86407388b933b16cb0a70eea3929420db1d9bbe"
|
|
2840
2801
|
dependencies = [
|
|
2841
2802
|
"erased-serde",
|
|
2842
2803
|
"inventory",
|
|
@@ -2847,41 +2808,41 @@ dependencies = [
|
|
|
2847
2808
|
|
|
2848
2809
|
[[package]]
|
|
2849
2810
|
name = "typetag-impl"
|
|
2850
|
-
version = "0.2.
|
|
2811
|
+
version = "0.2.18"
|
|
2851
2812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2852
|
-
checksum = "
|
|
2813
|
+
checksum = "70b20a22c42c8f1cd23ce5e34f165d4d37038f5b663ad20fb6adbdf029172483"
|
|
2853
2814
|
dependencies = [
|
|
2854
2815
|
"proc-macro2",
|
|
2855
2816
|
"quote",
|
|
2856
|
-
"syn
|
|
2817
|
+
"syn",
|
|
2857
2818
|
]
|
|
2858
2819
|
|
|
2859
2820
|
[[package]]
|
|
2860
2821
|
name = "unicode-bidi"
|
|
2861
|
-
version = "0.3.
|
|
2822
|
+
version = "0.3.17"
|
|
2862
2823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2863
|
-
checksum = "
|
|
2824
|
+
checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
|
|
2864
2825
|
|
|
2865
2826
|
[[package]]
|
|
2866
2827
|
name = "unicode-ident"
|
|
2867
|
-
version = "1.0.
|
|
2828
|
+
version = "1.0.13"
|
|
2868
2829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
-
checksum = "
|
|
2830
|
+
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
|
2870
2831
|
|
|
2871
2832
|
[[package]]
|
|
2872
2833
|
name = "unicode-normalization"
|
|
2873
|
-
version = "0.1.
|
|
2834
|
+
version = "0.1.24"
|
|
2874
2835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2875
|
-
checksum = "
|
|
2836
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
|
2876
2837
|
dependencies = [
|
|
2877
2838
|
"tinyvec",
|
|
2878
2839
|
]
|
|
2879
2840
|
|
|
2880
2841
|
[[package]]
|
|
2881
2842
|
name = "unicode-xid"
|
|
2882
|
-
version = "0.2.
|
|
2843
|
+
version = "0.2.6"
|
|
2883
2844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2884
|
-
checksum = "
|
|
2845
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
2885
2846
|
|
|
2886
2847
|
[[package]]
|
|
2887
2848
|
name = "untrusted"
|
|
@@ -2902,9 +2863,9 @@ dependencies = [
|
|
|
2902
2863
|
|
|
2903
2864
|
[[package]]
|
|
2904
2865
|
name = "uuid"
|
|
2905
|
-
version = "1.
|
|
2866
|
+
version = "1.11.0"
|
|
2906
2867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2907
|
-
checksum = "
|
|
2868
|
+
checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
|
|
2908
2869
|
dependencies = [
|
|
2909
2870
|
"getrandom",
|
|
2910
2871
|
]
|
|
@@ -2938,34 +2899,35 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
2938
2899
|
|
|
2939
2900
|
[[package]]
|
|
2940
2901
|
name = "wasm-bindgen"
|
|
2941
|
-
version = "0.2.
|
|
2902
|
+
version = "0.2.95"
|
|
2942
2903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2943
|
-
checksum = "
|
|
2904
|
+
checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
|
|
2944
2905
|
dependencies = [
|
|
2945
2906
|
"cfg-if",
|
|
2907
|
+
"once_cell",
|
|
2946
2908
|
"wasm-bindgen-macro",
|
|
2947
2909
|
]
|
|
2948
2910
|
|
|
2949
2911
|
[[package]]
|
|
2950
2912
|
name = "wasm-bindgen-backend"
|
|
2951
|
-
version = "0.2.
|
|
2913
|
+
version = "0.2.95"
|
|
2952
2914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2953
|
-
checksum = "
|
|
2915
|
+
checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
|
|
2954
2916
|
dependencies = [
|
|
2955
2917
|
"bumpalo",
|
|
2956
2918
|
"log",
|
|
2957
2919
|
"once_cell",
|
|
2958
2920
|
"proc-macro2",
|
|
2959
2921
|
"quote",
|
|
2960
|
-
"syn
|
|
2922
|
+
"syn",
|
|
2961
2923
|
"wasm-bindgen-shared",
|
|
2962
2924
|
]
|
|
2963
2925
|
|
|
2964
2926
|
[[package]]
|
|
2965
2927
|
name = "wasm-bindgen-futures"
|
|
2966
|
-
version = "0.4.
|
|
2928
|
+
version = "0.4.45"
|
|
2967
2929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2968
|
-
checksum = "
|
|
2930
|
+
checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
|
|
2969
2931
|
dependencies = [
|
|
2970
2932
|
"cfg-if",
|
|
2971
2933
|
"js-sys",
|
|
@@ -2975,9 +2937,9 @@ dependencies = [
|
|
|
2975
2937
|
|
|
2976
2938
|
[[package]]
|
|
2977
2939
|
name = "wasm-bindgen-macro"
|
|
2978
|
-
version = "0.2.
|
|
2940
|
+
version = "0.2.95"
|
|
2979
2941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2980
|
-
checksum = "
|
|
2942
|
+
checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
|
|
2981
2943
|
dependencies = [
|
|
2982
2944
|
"quote",
|
|
2983
2945
|
"wasm-bindgen-macro-support",
|
|
@@ -2985,28 +2947,28 @@ dependencies = [
|
|
|
2985
2947
|
|
|
2986
2948
|
[[package]]
|
|
2987
2949
|
name = "wasm-bindgen-macro-support"
|
|
2988
|
-
version = "0.2.
|
|
2950
|
+
version = "0.2.95"
|
|
2989
2951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2990
|
-
checksum = "
|
|
2952
|
+
checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
|
|
2991
2953
|
dependencies = [
|
|
2992
2954
|
"proc-macro2",
|
|
2993
2955
|
"quote",
|
|
2994
|
-
"syn
|
|
2956
|
+
"syn",
|
|
2995
2957
|
"wasm-bindgen-backend",
|
|
2996
2958
|
"wasm-bindgen-shared",
|
|
2997
2959
|
]
|
|
2998
2960
|
|
|
2999
2961
|
[[package]]
|
|
3000
2962
|
name = "wasm-bindgen-shared"
|
|
3001
|
-
version = "0.2.
|
|
2963
|
+
version = "0.2.95"
|
|
3002
2964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
-
checksum = "
|
|
2965
|
+
checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
|
|
3004
2966
|
|
|
3005
2967
|
[[package]]
|
|
3006
2968
|
name = "wasm-streams"
|
|
3007
|
-
version = "0.4.
|
|
2969
|
+
version = "0.4.2"
|
|
3008
2970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3009
|
-
checksum = "
|
|
2971
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
3010
2972
|
dependencies = [
|
|
3011
2973
|
"futures-util",
|
|
3012
2974
|
"js-sys",
|
|
@@ -3017,23 +2979,14 @@ dependencies = [
|
|
|
3017
2979
|
|
|
3018
2980
|
[[package]]
|
|
3019
2981
|
name = "web-sys"
|
|
3020
|
-
version = "0.3.
|
|
2982
|
+
version = "0.3.72"
|
|
3021
2983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3022
|
-
checksum = "
|
|
2984
|
+
checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
|
|
3023
2985
|
dependencies = [
|
|
3024
2986
|
"js-sys",
|
|
3025
2987
|
"wasm-bindgen",
|
|
3026
2988
|
]
|
|
3027
2989
|
|
|
3028
|
-
[[package]]
|
|
3029
|
-
name = "webpki-roots"
|
|
3030
|
-
version = "0.26.3"
|
|
3031
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3032
|
-
checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd"
|
|
3033
|
-
dependencies = [
|
|
3034
|
-
"rustls-pki-types",
|
|
3035
|
-
]
|
|
3036
|
-
|
|
3037
2990
|
[[package]]
|
|
3038
2991
|
name = "winapi"
|
|
3039
2992
|
version = "0.3.9"
|
|
@@ -3063,7 +3016,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3063
3016
|
checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
|
|
3064
3017
|
dependencies = [
|
|
3065
3018
|
"windows-core",
|
|
3066
|
-
"windows-targets
|
|
3019
|
+
"windows-targets",
|
|
3067
3020
|
]
|
|
3068
3021
|
|
|
3069
3022
|
[[package]]
|
|
@@ -3074,8 +3027,8 @@ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
|
|
|
3074
3027
|
dependencies = [
|
|
3075
3028
|
"windows-implement",
|
|
3076
3029
|
"windows-interface",
|
|
3077
|
-
"windows-result",
|
|
3078
|
-
"windows-targets
|
|
3030
|
+
"windows-result 0.1.2",
|
|
3031
|
+
"windows-targets",
|
|
3079
3032
|
]
|
|
3080
3033
|
|
|
3081
3034
|
[[package]]
|
|
@@ -3086,7 +3039,7 @@ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
|
|
|
3086
3039
|
dependencies = [
|
|
3087
3040
|
"proc-macro2",
|
|
3088
3041
|
"quote",
|
|
3089
|
-
"syn
|
|
3042
|
+
"syn",
|
|
3090
3043
|
]
|
|
3091
3044
|
|
|
3092
3045
|
[[package]]
|
|
@@ -3097,7 +3050,18 @@ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
|
|
|
3097
3050
|
dependencies = [
|
|
3098
3051
|
"proc-macro2",
|
|
3099
3052
|
"quote",
|
|
3100
|
-
"syn
|
|
3053
|
+
"syn",
|
|
3054
|
+
]
|
|
3055
|
+
|
|
3056
|
+
[[package]]
|
|
3057
|
+
name = "windows-registry"
|
|
3058
|
+
version = "0.2.0"
|
|
3059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3060
|
+
checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
|
|
3061
|
+
dependencies = [
|
|
3062
|
+
"windows-result 0.2.0",
|
|
3063
|
+
"windows-strings",
|
|
3064
|
+
"windows-targets",
|
|
3101
3065
|
]
|
|
3102
3066
|
|
|
3103
3067
|
[[package]]
|
|
@@ -3106,49 +3070,44 @@ version = "0.1.2"
|
|
|
3106
3070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3107
3071
|
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
|
|
3108
3072
|
dependencies = [
|
|
3109
|
-
"windows-targets
|
|
3073
|
+
"windows-targets",
|
|
3110
3074
|
]
|
|
3111
3075
|
|
|
3112
3076
|
[[package]]
|
|
3113
|
-
name = "windows-
|
|
3114
|
-
version = "0.
|
|
3077
|
+
name = "windows-result"
|
|
3078
|
+
version = "0.2.0"
|
|
3115
3079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
-
checksum = "
|
|
3080
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
3117
3081
|
dependencies = [
|
|
3118
|
-
"windows-targets
|
|
3082
|
+
"windows-targets",
|
|
3119
3083
|
]
|
|
3120
3084
|
|
|
3121
3085
|
[[package]]
|
|
3122
|
-
name = "windows-
|
|
3123
|
-
version = "0.
|
|
3086
|
+
name = "windows-strings"
|
|
3087
|
+
version = "0.1.0"
|
|
3124
3088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3125
|
-
checksum = "
|
|
3089
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
3126
3090
|
dependencies = [
|
|
3127
|
-
"windows-
|
|
3091
|
+
"windows-result 0.2.0",
|
|
3092
|
+
"windows-targets",
|
|
3128
3093
|
]
|
|
3129
3094
|
|
|
3130
3095
|
[[package]]
|
|
3131
3096
|
name = "windows-sys"
|
|
3132
|
-
version = "0.
|
|
3097
|
+
version = "0.52.0"
|
|
3133
3098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3134
|
-
checksum = "
|
|
3099
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3135
3100
|
dependencies = [
|
|
3136
|
-
"windows-targets
|
|
3101
|
+
"windows-targets",
|
|
3137
3102
|
]
|
|
3138
3103
|
|
|
3139
3104
|
[[package]]
|
|
3140
|
-
name = "windows-
|
|
3141
|
-
version = "0.
|
|
3105
|
+
name = "windows-sys"
|
|
3106
|
+
version = "0.59.0"
|
|
3142
3107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3143
|
-
checksum = "
|
|
3108
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3144
3109
|
dependencies = [
|
|
3145
|
-
"
|
|
3146
|
-
"windows_aarch64_msvc 0.48.5",
|
|
3147
|
-
"windows_i686_gnu 0.48.5",
|
|
3148
|
-
"windows_i686_msvc 0.48.5",
|
|
3149
|
-
"windows_x86_64_gnu 0.48.5",
|
|
3150
|
-
"windows_x86_64_gnullvm 0.48.5",
|
|
3151
|
-
"windows_x86_64_msvc 0.48.5",
|
|
3110
|
+
"windows-targets",
|
|
3152
3111
|
]
|
|
3153
3112
|
|
|
3154
3113
|
[[package]]
|
|
@@ -3157,46 +3116,28 @@ version = "0.52.6"
|
|
|
3157
3116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3158
3117
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3159
3118
|
dependencies = [
|
|
3160
|
-
"windows_aarch64_gnullvm
|
|
3161
|
-
"windows_aarch64_msvc
|
|
3162
|
-
"windows_i686_gnu
|
|
3119
|
+
"windows_aarch64_gnullvm",
|
|
3120
|
+
"windows_aarch64_msvc",
|
|
3121
|
+
"windows_i686_gnu",
|
|
3163
3122
|
"windows_i686_gnullvm",
|
|
3164
|
-
"windows_i686_msvc
|
|
3165
|
-
"windows_x86_64_gnu
|
|
3166
|
-
"windows_x86_64_gnullvm
|
|
3167
|
-
"windows_x86_64_msvc
|
|
3123
|
+
"windows_i686_msvc",
|
|
3124
|
+
"windows_x86_64_gnu",
|
|
3125
|
+
"windows_x86_64_gnullvm",
|
|
3126
|
+
"windows_x86_64_msvc",
|
|
3168
3127
|
]
|
|
3169
3128
|
|
|
3170
|
-
[[package]]
|
|
3171
|
-
name = "windows_aarch64_gnullvm"
|
|
3172
|
-
version = "0.48.5"
|
|
3173
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
-
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
3175
|
-
|
|
3176
3129
|
[[package]]
|
|
3177
3130
|
name = "windows_aarch64_gnullvm"
|
|
3178
3131
|
version = "0.52.6"
|
|
3179
3132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3180
3133
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3181
3134
|
|
|
3182
|
-
[[package]]
|
|
3183
|
-
name = "windows_aarch64_msvc"
|
|
3184
|
-
version = "0.48.5"
|
|
3185
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3186
|
-
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
3187
|
-
|
|
3188
3135
|
[[package]]
|
|
3189
3136
|
name = "windows_aarch64_msvc"
|
|
3190
3137
|
version = "0.52.6"
|
|
3191
3138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3192
3139
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3193
3140
|
|
|
3194
|
-
[[package]]
|
|
3195
|
-
name = "windows_i686_gnu"
|
|
3196
|
-
version = "0.48.5"
|
|
3197
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3198
|
-
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
3199
|
-
|
|
3200
3141
|
[[package]]
|
|
3201
3142
|
name = "windows_i686_gnu"
|
|
3202
3143
|
version = "0.52.6"
|
|
@@ -3209,64 +3150,30 @@ version = "0.52.6"
|
|
|
3209
3150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3210
3151
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3211
3152
|
|
|
3212
|
-
[[package]]
|
|
3213
|
-
name = "windows_i686_msvc"
|
|
3214
|
-
version = "0.48.5"
|
|
3215
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3216
|
-
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
3217
|
-
|
|
3218
3153
|
[[package]]
|
|
3219
3154
|
name = "windows_i686_msvc"
|
|
3220
3155
|
version = "0.52.6"
|
|
3221
3156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3222
3157
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3223
3158
|
|
|
3224
|
-
[[package]]
|
|
3225
|
-
name = "windows_x86_64_gnu"
|
|
3226
|
-
version = "0.48.5"
|
|
3227
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3228
|
-
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
3229
|
-
|
|
3230
3159
|
[[package]]
|
|
3231
3160
|
name = "windows_x86_64_gnu"
|
|
3232
3161
|
version = "0.52.6"
|
|
3233
3162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3234
3163
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3235
3164
|
|
|
3236
|
-
[[package]]
|
|
3237
|
-
name = "windows_x86_64_gnullvm"
|
|
3238
|
-
version = "0.48.5"
|
|
3239
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3240
|
-
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
3241
|
-
|
|
3242
3165
|
[[package]]
|
|
3243
3166
|
name = "windows_x86_64_gnullvm"
|
|
3244
3167
|
version = "0.52.6"
|
|
3245
3168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3246
3169
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3247
3170
|
|
|
3248
|
-
[[package]]
|
|
3249
|
-
name = "windows_x86_64_msvc"
|
|
3250
|
-
version = "0.48.5"
|
|
3251
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3252
|
-
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
3253
|
-
|
|
3254
3171
|
[[package]]
|
|
3255
3172
|
name = "windows_x86_64_msvc"
|
|
3256
3173
|
version = "0.52.6"
|
|
3257
3174
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3258
3175
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3259
3176
|
|
|
3260
|
-
[[package]]
|
|
3261
|
-
name = "winreg"
|
|
3262
|
-
version = "0.52.0"
|
|
3263
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3264
|
-
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
|
|
3265
|
-
dependencies = [
|
|
3266
|
-
"cfg-if",
|
|
3267
|
-
"windows-sys 0.48.0",
|
|
3268
|
-
]
|
|
3269
|
-
|
|
3270
3177
|
[[package]]
|
|
3271
3178
|
name = "xattr"
|
|
3272
3179
|
version = "1.3.1"
|
|
@@ -3296,7 +3203,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
3296
3203
|
dependencies = [
|
|
3297
3204
|
"proc-macro2",
|
|
3298
3205
|
"quote",
|
|
3299
|
-
"syn
|
|
3206
|
+
"syn",
|
|
3300
3207
|
]
|
|
3301
3208
|
|
|
3302
3209
|
[[package]]
|
|
@@ -3316,14 +3223,14 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
|
3316
3223
|
dependencies = [
|
|
3317
3224
|
"proc-macro2",
|
|
3318
3225
|
"quote",
|
|
3319
|
-
"syn
|
|
3226
|
+
"syn",
|
|
3320
3227
|
]
|
|
3321
3228
|
|
|
3322
3229
|
[[package]]
|
|
3323
3230
|
name = "zip"
|
|
3324
|
-
version = "2.
|
|
3231
|
+
version = "2.2.0"
|
|
3325
3232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3326
|
-
checksum = "
|
|
3233
|
+
checksum = "dc5e4288ea4057ae23afc69a4472434a87a2495cafce6632fd1c4ec9f5cf3494"
|
|
3327
3234
|
dependencies = [
|
|
3328
3235
|
"aes",
|
|
3329
3236
|
"arbitrary",
|
|
@@ -3335,7 +3242,7 @@ dependencies = [
|
|
|
3335
3242
|
"displaydoc",
|
|
3336
3243
|
"flate2",
|
|
3337
3244
|
"hmac",
|
|
3338
|
-
"indexmap 2.
|
|
3245
|
+
"indexmap 2.6.0",
|
|
3339
3246
|
"lzma-rs",
|
|
3340
3247
|
"memchr",
|
|
3341
3248
|
"pbkdf2",
|