@temporalio/core-bridge 1.9.0-rc.0 → 1.9.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 +511 -472
- package/Cargo.toml +1 -1
- package/lib/errors.js +6 -6
- package/lib/errors.js.map +1 -1
- package/package.json +5 -5
- package/releases/aarch64-apple-darwin/index.node +0 -0
- package/releases/aarch64-unknown-linux-gnu/index.node +0 -0
- package/releases/x86_64-apple-darwin/index.node +0 -0
- package/releases/x86_64-pc-windows-msvc/index.node +0 -0
- package/releases/x86_64-unknown-linux-gnu/index.node +0 -0
- package/sdk-core/Cargo.toml +4 -0
- package/sdk-core/LICENSE.txt +0 -2
- package/sdk-core/client/Cargo.toml +1 -1
- package/sdk-core/client/src/lib.rs +2 -4
- package/sdk-core/core/Cargo.toml +1 -1
- package/sdk-core/core/src/core_tests/activity_tasks.rs +4 -2
- package/sdk-core/core/src/core_tests/queries.rs +42 -1
- package/sdk-core/core/src/protosext/mod.rs +1 -1
- package/sdk-core/core/src/replay/mod.rs +1 -2
- package/sdk-core/core/src/telemetry/mod.rs +19 -19
- package/sdk-core/core/src/test_help/mod.rs +1 -1
- package/sdk-core/core/src/worker/mod.rs +5 -19
- package/sdk-core/core/src/worker/workflow/history_update.rs +1 -1
- package/sdk-core/core/src/worker/workflow/machines/activity_state_machine.rs +35 -1
- package/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +1 -1
- package/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +1 -1
- package/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +23 -15
- package/sdk-core/core/src/worker/workflow/mod.rs +8 -12
- package/sdk-core/core/src/worker/workflow/run_cache.rs +9 -15
- package/sdk-core/core/src/worker/workflow/workflow_stream/saved_wf_inputs.rs +2 -2
- package/sdk-core/core/src/worker/workflow/workflow_stream.rs +4 -6
- package/sdk-core/core-api/Cargo.toml +1 -1
- package/sdk-core/fsm/LICENSE.txt +0 -2
- package/sdk-core/fsm/rustfsm_procmacro/LICENSE.txt +0 -2
- package/sdk-core/fsm/rustfsm_trait/LICENSE.txt +0 -2
- package/sdk-core/sdk/Cargo.toml +1 -1
- package/sdk-core/sdk/src/workflow_future.rs +2 -2
- package/sdk-core/sdk-core-protos/Cargo.toml +1 -1
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/batch/v1/message.proto +9 -4
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/common/v1/message.proto +31 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/enums/v1/reset.proto +3 -3
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/export/v1/message.proto +1 -1
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/sdk/v1/workflow_metadata.proto +66 -0
- package/sdk-core/sdk-core-protos/protos/api_upstream/temporal/api/workflow/v1/message.proto +6 -2
- package/sdk-core/sdk-core-protos/src/history_info.rs +1 -1
- package/sdk-core/sdk-core-protos/src/lib.rs +1 -1
- package/sdk-core/test-utils/Cargo.toml +1 -0
- package/sdk-core/tests/integ_tests/visibility_tests.rs +4 -4
- package/sdk-core/tests/integ_tests/workflow_tests.rs +141 -3
- package/src/conversions.rs +47 -22
- package/src/runtime.rs +13 -10
- package/ts/index.ts +2 -2
- package/sdk-core/client/LICENSE.txt +0 -23
- package/sdk-core/core/LICENSE.txt +0 -23
- package/sdk-core/core-api/LICENSE.txt +0 -23
- package/sdk-core/sdk/LICENSE.txt +0 -23
- package/sdk-core/sdk-core-protos/LICENSE.txt +0 -23
package/Cargo.lock
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 3
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.21.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
5
14
|
[[package]]
|
|
6
15
|
name = "adler"
|
|
7
16
|
version = "1.0.2"
|
|
@@ -21,20 +30,21 @@ dependencies = [
|
|
|
21
30
|
|
|
22
31
|
[[package]]
|
|
23
32
|
name = "ahash"
|
|
24
|
-
version = "0.8.
|
|
33
|
+
version = "0.8.7"
|
|
25
34
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
-
checksum = "
|
|
35
|
+
checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
|
|
27
36
|
dependencies = [
|
|
28
37
|
"cfg-if",
|
|
29
38
|
"once_cell",
|
|
30
39
|
"version_check",
|
|
40
|
+
"zerocopy",
|
|
31
41
|
]
|
|
32
42
|
|
|
33
43
|
[[package]]
|
|
34
44
|
name = "aho-corasick"
|
|
35
|
-
version = "1.
|
|
45
|
+
version = "1.1.2"
|
|
36
46
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
-
checksum = "
|
|
47
|
+
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
|
|
38
48
|
dependencies = [
|
|
39
49
|
"memchr",
|
|
40
50
|
]
|
|
@@ -45,17 +55,11 @@ version = "0.2.16"
|
|
|
45
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
56
|
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
|
|
47
57
|
|
|
48
|
-
[[package]]
|
|
49
|
-
name = "android-tzdata"
|
|
50
|
-
version = "0.1.1"
|
|
51
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
-
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
53
|
-
|
|
54
58
|
[[package]]
|
|
55
59
|
name = "anyhow"
|
|
56
|
-
version = "1.0.
|
|
60
|
+
version = "1.0.79"
|
|
57
61
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
-
checksum = "
|
|
62
|
+
checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
|
|
59
63
|
|
|
60
64
|
[[package]]
|
|
61
65
|
name = "arc-swap"
|
|
@@ -82,18 +86,18 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
|
82
86
|
dependencies = [
|
|
83
87
|
"proc-macro2",
|
|
84
88
|
"quote",
|
|
85
|
-
"syn 2.0.
|
|
89
|
+
"syn 2.0.48",
|
|
86
90
|
]
|
|
87
91
|
|
|
88
92
|
[[package]]
|
|
89
93
|
name = "async-trait"
|
|
90
|
-
version = "0.1.
|
|
94
|
+
version = "0.1.77"
|
|
91
95
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
-
checksum = "
|
|
96
|
+
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
|
|
93
97
|
dependencies = [
|
|
94
98
|
"proc-macro2",
|
|
95
99
|
"quote",
|
|
96
|
-
"syn 2.0.
|
|
100
|
+
"syn 2.0.48",
|
|
97
101
|
]
|
|
98
102
|
|
|
99
103
|
[[package]]
|
|
@@ -104,9 +108,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
|
104
108
|
|
|
105
109
|
[[package]]
|
|
106
110
|
name = "axum"
|
|
107
|
-
version = "0.6.
|
|
111
|
+
version = "0.6.20"
|
|
108
112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
-
checksum = "
|
|
113
|
+
checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
|
|
110
114
|
dependencies = [
|
|
111
115
|
"async-trait",
|
|
112
116
|
"axum-core",
|
|
@@ -158,11 +162,26 @@ dependencies = [
|
|
|
158
162
|
"rand",
|
|
159
163
|
]
|
|
160
164
|
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "backtrace"
|
|
167
|
+
version = "0.3.69"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
|
|
170
|
+
dependencies = [
|
|
171
|
+
"addr2line",
|
|
172
|
+
"cc",
|
|
173
|
+
"cfg-if",
|
|
174
|
+
"libc",
|
|
175
|
+
"miniz_oxide",
|
|
176
|
+
"object",
|
|
177
|
+
"rustc-demangle",
|
|
178
|
+
]
|
|
179
|
+
|
|
161
180
|
[[package]]
|
|
162
181
|
name = "base64"
|
|
163
|
-
version = "0.21.
|
|
182
|
+
version = "0.21.6"
|
|
164
183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
-
checksum = "
|
|
184
|
+
checksum = "c79fed4cdb43e993fcdadc7e58a09fd0e3e649c4436fa11da71c9f1f3ee7feb9"
|
|
166
185
|
|
|
167
186
|
[[package]]
|
|
168
187
|
name = "base64ct"
|
|
@@ -193,21 +212,21 @@ dependencies = [
|
|
|
193
212
|
|
|
194
213
|
[[package]]
|
|
195
214
|
name = "bumpalo"
|
|
196
|
-
version = "3.
|
|
215
|
+
version = "3.14.0"
|
|
197
216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
-
checksum = "
|
|
217
|
+
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
|
|
199
218
|
|
|
200
219
|
[[package]]
|
|
201
220
|
name = "byteorder"
|
|
202
|
-
version = "1.
|
|
221
|
+
version = "1.5.0"
|
|
203
222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
-
checksum = "
|
|
223
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
205
224
|
|
|
206
225
|
[[package]]
|
|
207
226
|
name = "bytes"
|
|
208
|
-
version = "1.
|
|
227
|
+
version = "1.5.0"
|
|
209
228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
-
checksum = "
|
|
229
|
+
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
|
211
230
|
|
|
212
231
|
[[package]]
|
|
213
232
|
name = "bzip2"
|
|
@@ -232,11 +251,12 @@ dependencies = [
|
|
|
232
251
|
|
|
233
252
|
[[package]]
|
|
234
253
|
name = "cc"
|
|
235
|
-
version = "1.0.
|
|
254
|
+
version = "1.0.83"
|
|
236
255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
-
checksum = "
|
|
256
|
+
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
|
|
238
257
|
dependencies = [
|
|
239
258
|
"jobserver",
|
|
259
|
+
"libc",
|
|
240
260
|
]
|
|
241
261
|
|
|
242
262
|
[[package]]
|
|
@@ -247,11 +267,10 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
247
267
|
|
|
248
268
|
[[package]]
|
|
249
269
|
name = "chrono"
|
|
250
|
-
version = "0.4.
|
|
270
|
+
version = "0.4.31"
|
|
251
271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
-
checksum = "
|
|
272
|
+
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
|
|
253
273
|
dependencies = [
|
|
254
|
-
"android-tzdata",
|
|
255
274
|
"num-traits",
|
|
256
275
|
"serde",
|
|
257
276
|
]
|
|
@@ -280,9 +299,9 @@ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
|
|
280
299
|
|
|
281
300
|
[[package]]
|
|
282
301
|
name = "core-foundation"
|
|
283
|
-
version = "0.9.
|
|
302
|
+
version = "0.9.4"
|
|
284
303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
-
checksum = "
|
|
304
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
286
305
|
dependencies = [
|
|
287
306
|
"core-foundation-sys",
|
|
288
307
|
"libc",
|
|
@@ -290,15 +309,15 @@ dependencies = [
|
|
|
290
309
|
|
|
291
310
|
[[package]]
|
|
292
311
|
name = "core-foundation-sys"
|
|
293
|
-
version = "0.8.
|
|
312
|
+
version = "0.8.6"
|
|
294
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
-
checksum = "
|
|
314
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
296
315
|
|
|
297
316
|
[[package]]
|
|
298
317
|
name = "cpufeatures"
|
|
299
|
-
version = "0.2.
|
|
318
|
+
version = "0.2.12"
|
|
300
319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
-
checksum = "
|
|
320
|
+
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
|
|
302
321
|
dependencies = [
|
|
303
322
|
"libc",
|
|
304
323
|
]
|
|
@@ -314,11 +333,10 @@ dependencies = [
|
|
|
314
333
|
|
|
315
334
|
[[package]]
|
|
316
335
|
name = "crossbeam"
|
|
317
|
-
version = "0.8.
|
|
336
|
+
version = "0.8.4"
|
|
318
337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
-
checksum = "
|
|
338
|
+
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
|
|
320
339
|
dependencies = [
|
|
321
|
-
"cfg-if",
|
|
322
340
|
"crossbeam-channel",
|
|
323
341
|
"crossbeam-deque",
|
|
324
342
|
"crossbeam-epoch",
|
|
@@ -328,56 +346,46 @@ dependencies = [
|
|
|
328
346
|
|
|
329
347
|
[[package]]
|
|
330
348
|
name = "crossbeam-channel"
|
|
331
|
-
version = "0.5.
|
|
349
|
+
version = "0.5.11"
|
|
332
350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
-
checksum = "
|
|
351
|
+
checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b"
|
|
334
352
|
dependencies = [
|
|
335
|
-
"cfg-if",
|
|
336
353
|
"crossbeam-utils",
|
|
337
354
|
]
|
|
338
355
|
|
|
339
356
|
[[package]]
|
|
340
357
|
name = "crossbeam-deque"
|
|
341
|
-
version = "0.8.
|
|
358
|
+
version = "0.8.5"
|
|
342
359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
-
checksum = "
|
|
360
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
344
361
|
dependencies = [
|
|
345
|
-
"cfg-if",
|
|
346
362
|
"crossbeam-epoch",
|
|
347
363
|
"crossbeam-utils",
|
|
348
364
|
]
|
|
349
365
|
|
|
350
366
|
[[package]]
|
|
351
367
|
name = "crossbeam-epoch"
|
|
352
|
-
version = "0.9.
|
|
368
|
+
version = "0.9.18"
|
|
353
369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
-
checksum = "
|
|
370
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
355
371
|
dependencies = [
|
|
356
|
-
"autocfg",
|
|
357
|
-
"cfg-if",
|
|
358
372
|
"crossbeam-utils",
|
|
359
|
-
"memoffset",
|
|
360
|
-
"scopeguard",
|
|
361
373
|
]
|
|
362
374
|
|
|
363
375
|
[[package]]
|
|
364
376
|
name = "crossbeam-queue"
|
|
365
|
-
version = "0.3.
|
|
377
|
+
version = "0.3.11"
|
|
366
378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
-
checksum = "
|
|
379
|
+
checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
|
|
368
380
|
dependencies = [
|
|
369
|
-
"cfg-if",
|
|
370
381
|
"crossbeam-utils",
|
|
371
382
|
]
|
|
372
383
|
|
|
373
384
|
[[package]]
|
|
374
385
|
name = "crossbeam-utils"
|
|
375
|
-
version = "0.8.
|
|
386
|
+
version = "0.8.19"
|
|
376
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
-
checksum = "
|
|
378
|
-
dependencies = [
|
|
379
|
-
"cfg-if",
|
|
380
|
-
]
|
|
388
|
+
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
|
|
381
389
|
|
|
382
390
|
[[package]]
|
|
383
391
|
name = "crypto-common"
|
|
@@ -431,12 +439,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
431
439
|
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
432
440
|
dependencies = [
|
|
433
441
|
"cfg-if",
|
|
434
|
-
"hashbrown 0.14.
|
|
442
|
+
"hashbrown 0.14.3",
|
|
435
443
|
"lock_api",
|
|
436
444
|
"once_cell",
|
|
437
445
|
"parking_lot_core",
|
|
438
446
|
]
|
|
439
447
|
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "deranged"
|
|
450
|
+
version = "0.3.11"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"powerfmt",
|
|
455
|
+
]
|
|
456
|
+
|
|
440
457
|
[[package]]
|
|
441
458
|
name = "derive_builder"
|
|
442
459
|
version = "0.12.0"
|
|
@@ -506,15 +523,15 @@ checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
|
|
|
506
523
|
|
|
507
524
|
[[package]]
|
|
508
525
|
name = "either"
|
|
509
|
-
version = "1.
|
|
526
|
+
version = "1.9.0"
|
|
510
527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
-
checksum = "
|
|
528
|
+
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
|
512
529
|
|
|
513
530
|
[[package]]
|
|
514
531
|
name = "encoding_rs"
|
|
515
|
-
version = "0.8.
|
|
532
|
+
version = "0.8.33"
|
|
516
533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
-
checksum = "
|
|
534
|
+
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
|
|
518
535
|
dependencies = [
|
|
519
536
|
"cfg-if",
|
|
520
537
|
]
|
|
@@ -536,19 +553,19 @@ checksum = "eecf8589574ce9b895052fa12d69af7a233f99e6107f5cb8dd1044f2a17bfdcb"
|
|
|
536
553
|
dependencies = [
|
|
537
554
|
"proc-macro2",
|
|
538
555
|
"quote",
|
|
539
|
-
"syn 2.0.
|
|
556
|
+
"syn 2.0.48",
|
|
540
557
|
]
|
|
541
558
|
|
|
542
559
|
[[package]]
|
|
543
560
|
name = "enum_dispatch"
|
|
544
|
-
version = "0.3.
|
|
561
|
+
version = "0.3.12"
|
|
545
562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
-
checksum = "
|
|
563
|
+
checksum = "8f33313078bb8d4d05a2733a94ac4c2d8a0df9a2b84424ebf4f33bfc224a890e"
|
|
547
564
|
dependencies = [
|
|
548
565
|
"once_cell",
|
|
549
566
|
"proc-macro2",
|
|
550
567
|
"quote",
|
|
551
|
-
"syn
|
|
568
|
+
"syn 2.0.48",
|
|
552
569
|
]
|
|
553
570
|
|
|
554
571
|
[[package]]
|
|
@@ -559,53 +576,39 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
559
576
|
|
|
560
577
|
[[package]]
|
|
561
578
|
name = "erased-serde"
|
|
562
|
-
version = "0.
|
|
579
|
+
version = "0.4.2"
|
|
563
580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
-
checksum = "
|
|
581
|
+
checksum = "55d05712b2d8d88102bc9868020c9e5c7a1f5527c452b9b97450a1d006140ba7"
|
|
565
582
|
dependencies = [
|
|
566
583
|
"serde",
|
|
567
584
|
]
|
|
568
585
|
|
|
569
586
|
[[package]]
|
|
570
587
|
name = "errno"
|
|
571
|
-
version = "0.3.
|
|
572
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
-
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
|
|
574
|
-
dependencies = [
|
|
575
|
-
"errno-dragonfly",
|
|
576
|
-
"libc",
|
|
577
|
-
"windows-sys 0.48.0",
|
|
578
|
-
]
|
|
579
|
-
|
|
580
|
-
[[package]]
|
|
581
|
-
name = "errno-dragonfly"
|
|
582
|
-
version = "0.1.2"
|
|
588
|
+
version = "0.3.8"
|
|
583
589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
-
checksum = "
|
|
590
|
+
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
|
|
585
591
|
dependencies = [
|
|
586
|
-
"cc",
|
|
587
592
|
"libc",
|
|
593
|
+
"windows-sys 0.52.0",
|
|
588
594
|
]
|
|
589
595
|
|
|
590
596
|
[[package]]
|
|
591
597
|
name = "fastrand"
|
|
592
|
-
version = "
|
|
598
|
+
version = "2.0.1"
|
|
593
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
-
checksum = "
|
|
595
|
-
dependencies = [
|
|
596
|
-
"instant",
|
|
597
|
-
]
|
|
600
|
+
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
|
|
598
601
|
|
|
599
602
|
[[package]]
|
|
600
603
|
name = "filetime"
|
|
601
|
-
version = "0.2.
|
|
604
|
+
version = "0.2.23"
|
|
602
605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
-
checksum = "
|
|
606
|
+
checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
|
|
604
607
|
dependencies = [
|
|
605
608
|
"cfg-if",
|
|
606
609
|
"libc",
|
|
607
|
-
"redox_syscall
|
|
608
|
-
"windows-sys 0.
|
|
610
|
+
"redox_syscall",
|
|
611
|
+
"windows-sys 0.52.0",
|
|
609
612
|
]
|
|
610
613
|
|
|
611
614
|
[[package]]
|
|
@@ -616,9 +619,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
616
619
|
|
|
617
620
|
[[package]]
|
|
618
621
|
name = "flate2"
|
|
619
|
-
version = "1.0.
|
|
622
|
+
version = "1.0.28"
|
|
620
623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
-
checksum = "
|
|
624
|
+
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
|
|
622
625
|
dependencies = [
|
|
623
626
|
"crc32fast",
|
|
624
627
|
"miniz_oxide",
|
|
@@ -641,9 +644,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
641
644
|
|
|
642
645
|
[[package]]
|
|
643
646
|
name = "form_urlencoded"
|
|
644
|
-
version = "1.2.
|
|
647
|
+
version = "1.2.1"
|
|
645
648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
-
checksum = "
|
|
649
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
647
650
|
dependencies = [
|
|
648
651
|
"percent-encoding",
|
|
649
652
|
]
|
|
@@ -656,9 +659,9 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
|
|
|
656
659
|
|
|
657
660
|
[[package]]
|
|
658
661
|
name = "futures"
|
|
659
|
-
version = "0.3.
|
|
662
|
+
version = "0.3.30"
|
|
660
663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
-
checksum = "
|
|
664
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
|
662
665
|
dependencies = [
|
|
663
666
|
"futures-channel",
|
|
664
667
|
"futures-core",
|
|
@@ -671,9 +674,9 @@ dependencies = [
|
|
|
671
674
|
|
|
672
675
|
[[package]]
|
|
673
676
|
name = "futures-channel"
|
|
674
|
-
version = "0.3.
|
|
677
|
+
version = "0.3.30"
|
|
675
678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
-
checksum = "
|
|
679
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
|
677
680
|
dependencies = [
|
|
678
681
|
"futures-core",
|
|
679
682
|
"futures-sink",
|
|
@@ -681,15 +684,15 @@ dependencies = [
|
|
|
681
684
|
|
|
682
685
|
[[package]]
|
|
683
686
|
name = "futures-core"
|
|
684
|
-
version = "0.3.
|
|
687
|
+
version = "0.3.30"
|
|
685
688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
-
checksum = "
|
|
689
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
|
687
690
|
|
|
688
691
|
[[package]]
|
|
689
692
|
name = "futures-executor"
|
|
690
|
-
version = "0.3.
|
|
693
|
+
version = "0.3.30"
|
|
691
694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
-
checksum = "
|
|
695
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
|
693
696
|
dependencies = [
|
|
694
697
|
"futures-core",
|
|
695
698
|
"futures-task",
|
|
@@ -698,19 +701,19 @@ dependencies = [
|
|
|
698
701
|
|
|
699
702
|
[[package]]
|
|
700
703
|
name = "futures-io"
|
|
701
|
-
version = "0.3.
|
|
704
|
+
version = "0.3.30"
|
|
702
705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
-
checksum = "
|
|
706
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
704
707
|
|
|
705
708
|
[[package]]
|
|
706
709
|
name = "futures-macro"
|
|
707
|
-
version = "0.3.
|
|
710
|
+
version = "0.3.30"
|
|
708
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
-
checksum = "
|
|
712
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
710
713
|
dependencies = [
|
|
711
714
|
"proc-macro2",
|
|
712
715
|
"quote",
|
|
713
|
-
"syn 2.0.
|
|
716
|
+
"syn 2.0.48",
|
|
714
717
|
]
|
|
715
718
|
|
|
716
719
|
[[package]]
|
|
@@ -726,15 +729,15 @@ dependencies = [
|
|
|
726
729
|
|
|
727
730
|
[[package]]
|
|
728
731
|
name = "futures-sink"
|
|
729
|
-
version = "0.3.
|
|
732
|
+
version = "0.3.30"
|
|
730
733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
-
checksum = "
|
|
734
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
|
732
735
|
|
|
733
736
|
[[package]]
|
|
734
737
|
name = "futures-task"
|
|
735
|
-
version = "0.3.
|
|
738
|
+
version = "0.3.30"
|
|
736
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
-
checksum = "
|
|
740
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
738
741
|
|
|
739
742
|
[[package]]
|
|
740
743
|
name = "futures-timer"
|
|
@@ -744,9 +747,9 @@ checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
|
|
|
744
747
|
|
|
745
748
|
[[package]]
|
|
746
749
|
name = "futures-util"
|
|
747
|
-
version = "0.3.
|
|
750
|
+
version = "0.3.30"
|
|
748
751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
-
checksum = "
|
|
752
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
|
750
753
|
dependencies = [
|
|
751
754
|
"futures-channel",
|
|
752
755
|
"futures-core",
|
|
@@ -772,9 +775,9 @@ dependencies = [
|
|
|
772
775
|
|
|
773
776
|
[[package]]
|
|
774
777
|
name = "getrandom"
|
|
775
|
-
version = "0.2.
|
|
778
|
+
version = "0.2.12"
|
|
776
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
-
checksum = "
|
|
780
|
+
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
|
|
778
781
|
dependencies = [
|
|
779
782
|
"cfg-if",
|
|
780
783
|
"libc",
|
|
@@ -782,15 +785,10 @@ dependencies = [
|
|
|
782
785
|
]
|
|
783
786
|
|
|
784
787
|
[[package]]
|
|
785
|
-
name = "
|
|
786
|
-
version = "0.1
|
|
788
|
+
name = "gimli"
|
|
789
|
+
version = "0.28.1"
|
|
787
790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
-
checksum = "
|
|
789
|
-
dependencies = [
|
|
790
|
-
"proc-macro2",
|
|
791
|
-
"quote",
|
|
792
|
-
"syn 2.0.18",
|
|
793
|
-
]
|
|
791
|
+
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
|
794
792
|
|
|
795
793
|
[[package]]
|
|
796
794
|
name = "glob"
|
|
@@ -818,9 +816,9 @@ dependencies = [
|
|
|
818
816
|
|
|
819
817
|
[[package]]
|
|
820
818
|
name = "h2"
|
|
821
|
-
version = "0.3.
|
|
819
|
+
version = "0.3.22"
|
|
822
820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
-
checksum = "
|
|
821
|
+
checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178"
|
|
824
822
|
dependencies = [
|
|
825
823
|
"bytes",
|
|
826
824
|
"fnv",
|
|
@@ -828,7 +826,7 @@ dependencies = [
|
|
|
828
826
|
"futures-sink",
|
|
829
827
|
"futures-util",
|
|
830
828
|
"http",
|
|
831
|
-
"indexmap 1.
|
|
829
|
+
"indexmap 2.1.0",
|
|
832
830
|
"slab",
|
|
833
831
|
"tokio",
|
|
834
832
|
"tokio-util",
|
|
@@ -843,9 +841,9 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
|
843
841
|
|
|
844
842
|
[[package]]
|
|
845
843
|
name = "hashbrown"
|
|
846
|
-
version = "0.14.
|
|
844
|
+
version = "0.14.3"
|
|
847
845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
-
checksum = "
|
|
846
|
+
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
|
849
847
|
dependencies = [
|
|
850
848
|
"ahash",
|
|
851
849
|
"allocator-api2",
|
|
@@ -859,18 +857,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
|
859
857
|
|
|
860
858
|
[[package]]
|
|
861
859
|
name = "hermit-abi"
|
|
862
|
-
version = "0.
|
|
863
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
-
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
|
|
865
|
-
dependencies = [
|
|
866
|
-
"libc",
|
|
867
|
-
]
|
|
868
|
-
|
|
869
|
-
[[package]]
|
|
870
|
-
name = "hermit-abi"
|
|
871
|
-
version = "0.3.1"
|
|
860
|
+
version = "0.3.3"
|
|
872
861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
-
checksum = "
|
|
862
|
+
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
|
|
874
863
|
|
|
875
864
|
[[package]]
|
|
876
865
|
name = "hmac"
|
|
@@ -881,11 +870,20 @@ dependencies = [
|
|
|
881
870
|
"digest",
|
|
882
871
|
]
|
|
883
872
|
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "home"
|
|
875
|
+
version = "0.5.9"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"windows-sys 0.52.0",
|
|
880
|
+
]
|
|
881
|
+
|
|
884
882
|
[[package]]
|
|
885
883
|
name = "http"
|
|
886
|
-
version = "0.2.
|
|
884
|
+
version = "0.2.11"
|
|
887
885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
-
checksum = "
|
|
886
|
+
checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
|
|
889
887
|
dependencies = [
|
|
890
888
|
"bytes",
|
|
891
889
|
"fnv",
|
|
@@ -894,9 +892,9 @@ dependencies = [
|
|
|
894
892
|
|
|
895
893
|
[[package]]
|
|
896
894
|
name = "http-body"
|
|
897
|
-
version = "0.4.
|
|
895
|
+
version = "0.4.6"
|
|
898
896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
-
checksum = "
|
|
897
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
900
898
|
dependencies = [
|
|
901
899
|
"bytes",
|
|
902
900
|
"http",
|
|
@@ -911,15 +909,15 @@ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
|
|
911
909
|
|
|
912
910
|
[[package]]
|
|
913
911
|
name = "httpdate"
|
|
914
|
-
version = "1.0.
|
|
912
|
+
version = "1.0.3"
|
|
915
913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
-
checksum = "
|
|
914
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
917
915
|
|
|
918
916
|
[[package]]
|
|
919
917
|
name = "hyper"
|
|
920
|
-
version = "0.14.
|
|
918
|
+
version = "0.14.28"
|
|
921
919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
-
checksum = "
|
|
920
|
+
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
|
|
923
921
|
dependencies = [
|
|
924
922
|
"bytes",
|
|
925
923
|
"futures-channel",
|
|
@@ -941,10 +939,11 @@ dependencies = [
|
|
|
941
939
|
|
|
942
940
|
[[package]]
|
|
943
941
|
name = "hyper-rustls"
|
|
944
|
-
version = "0.24.
|
|
942
|
+
version = "0.24.2"
|
|
945
943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
-
checksum = "
|
|
944
|
+
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
947
945
|
dependencies = [
|
|
946
|
+
"futures-util",
|
|
948
947
|
"http",
|
|
949
948
|
"hyper",
|
|
950
949
|
"rustls",
|
|
@@ -972,9 +971,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
972
971
|
|
|
973
972
|
[[package]]
|
|
974
973
|
name = "idna"
|
|
975
|
-
version = "0.
|
|
974
|
+
version = "0.5.0"
|
|
976
975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
-
checksum = "
|
|
976
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
978
977
|
dependencies = [
|
|
979
978
|
"unicode-bidi",
|
|
980
979
|
"unicode-normalization",
|
|
@@ -997,7 +996,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
997
996
|
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
|
|
998
997
|
dependencies = [
|
|
999
998
|
"equivalent",
|
|
1000
|
-
"hashbrown 0.14.
|
|
999
|
+
"hashbrown 0.14.3",
|
|
1001
1000
|
]
|
|
1002
1001
|
|
|
1003
1002
|
[[package]]
|
|
@@ -1020,29 +1019,15 @@ dependencies = [
|
|
|
1020
1019
|
|
|
1021
1020
|
[[package]]
|
|
1022
1021
|
name = "inventory"
|
|
1023
|
-
version = "0.3.
|
|
1024
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
-
checksum = "e0539b5de9241582ce6bd6b0ba7399313560151e58c9aaf8b74b711b1bdce644"
|
|
1026
|
-
dependencies = [
|
|
1027
|
-
"ghost",
|
|
1028
|
-
]
|
|
1029
|
-
|
|
1030
|
-
[[package]]
|
|
1031
|
-
name = "io-lifetimes"
|
|
1032
|
-
version = "1.0.11"
|
|
1022
|
+
version = "0.3.14"
|
|
1033
1023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
-
checksum = "
|
|
1035
|
-
dependencies = [
|
|
1036
|
-
"hermit-abi 0.3.1",
|
|
1037
|
-
"libc",
|
|
1038
|
-
"windows-sys 0.48.0",
|
|
1039
|
-
]
|
|
1024
|
+
checksum = "c8573b2b1fb643a372c73b23f4da5f888677feef3305146d68a539250a9bccc7"
|
|
1040
1025
|
|
|
1041
1026
|
[[package]]
|
|
1042
1027
|
name = "ipnet"
|
|
1043
|
-
version = "2.
|
|
1028
|
+
version = "2.9.0"
|
|
1044
1029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
-
checksum = "
|
|
1030
|
+
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|
1046
1031
|
|
|
1047
1032
|
[[package]]
|
|
1048
1033
|
name = "itertools"
|
|
@@ -1064,24 +1049,24 @@ dependencies = [
|
|
|
1064
1049
|
|
|
1065
1050
|
[[package]]
|
|
1066
1051
|
name = "itoa"
|
|
1067
|
-
version = "1.0.
|
|
1052
|
+
version = "1.0.10"
|
|
1068
1053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
-
checksum = "
|
|
1054
|
+
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
|
1070
1055
|
|
|
1071
1056
|
[[package]]
|
|
1072
1057
|
name = "jobserver"
|
|
1073
|
-
version = "0.1.
|
|
1058
|
+
version = "0.1.27"
|
|
1074
1059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
-
checksum = "
|
|
1060
|
+
checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
|
|
1076
1061
|
dependencies = [
|
|
1077
1062
|
"libc",
|
|
1078
1063
|
]
|
|
1079
1064
|
|
|
1080
1065
|
[[package]]
|
|
1081
1066
|
name = "js-sys"
|
|
1082
|
-
version = "0.3.
|
|
1067
|
+
version = "0.3.66"
|
|
1083
1068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1084
|
-
checksum = "
|
|
1069
|
+
checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
|
|
1085
1070
|
dependencies = [
|
|
1086
1071
|
"wasm-bindgen",
|
|
1087
1072
|
]
|
|
@@ -1094,9 +1079,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
1094
1079
|
|
|
1095
1080
|
[[package]]
|
|
1096
1081
|
name = "libc"
|
|
1097
|
-
version = "0.2.
|
|
1082
|
+
version = "0.2.152"
|
|
1098
1083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
-
checksum = "
|
|
1084
|
+
checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
|
|
1100
1085
|
|
|
1101
1086
|
[[package]]
|
|
1102
1087
|
name = "libloading"
|
|
@@ -1110,15 +1095,15 @@ dependencies = [
|
|
|
1110
1095
|
|
|
1111
1096
|
[[package]]
|
|
1112
1097
|
name = "linux-raw-sys"
|
|
1113
|
-
version = "0.
|
|
1098
|
+
version = "0.4.12"
|
|
1114
1099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
-
checksum = "
|
|
1100
|
+
checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
|
|
1116
1101
|
|
|
1117
1102
|
[[package]]
|
|
1118
1103
|
name = "lock_api"
|
|
1119
|
-
version = "0.4.
|
|
1104
|
+
version = "0.4.11"
|
|
1120
1105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
|
-
checksum = "
|
|
1106
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
|
1122
1107
|
dependencies = [
|
|
1123
1108
|
"autocfg",
|
|
1124
1109
|
"scopeguard",
|
|
@@ -1136,14 +1121,14 @@ version = "0.11.1"
|
|
|
1136
1121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1137
1122
|
checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21"
|
|
1138
1123
|
dependencies = [
|
|
1139
|
-
"hashbrown 0.14.
|
|
1124
|
+
"hashbrown 0.14.3",
|
|
1140
1125
|
]
|
|
1141
1126
|
|
|
1142
1127
|
[[package]]
|
|
1143
1128
|
name = "mach2"
|
|
1144
|
-
version = "0.4.
|
|
1129
|
+
version = "0.4.2"
|
|
1145
1130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
-
checksum = "
|
|
1131
|
+
checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
|
|
1147
1132
|
dependencies = [
|
|
1148
1133
|
"libc",
|
|
1149
1134
|
]
|
|
@@ -1154,29 +1139,20 @@ version = "0.1.0"
|
|
|
1154
1139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
1140
|
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
|
1156
1141
|
dependencies = [
|
|
1157
|
-
"regex-automata",
|
|
1142
|
+
"regex-automata 0.1.10",
|
|
1158
1143
|
]
|
|
1159
1144
|
|
|
1160
1145
|
[[package]]
|
|
1161
1146
|
name = "matchit"
|
|
1162
|
-
version = "0.7.
|
|
1147
|
+
version = "0.7.3"
|
|
1163
1148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
-
checksum = "
|
|
1149
|
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
1165
1150
|
|
|
1166
1151
|
[[package]]
|
|
1167
1152
|
name = "memchr"
|
|
1168
|
-
version = "2.
|
|
1169
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
-
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
1171
|
-
|
|
1172
|
-
[[package]]
|
|
1173
|
-
name = "memoffset"
|
|
1174
|
-
version = "0.9.0"
|
|
1153
|
+
version = "2.7.1"
|
|
1175
1154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
-
checksum = "
|
|
1177
|
-
dependencies = [
|
|
1178
|
-
"autocfg",
|
|
1179
|
-
]
|
|
1155
|
+
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
|
|
1180
1156
|
|
|
1181
1157
|
[[package]]
|
|
1182
1158
|
name = "mime"
|
|
@@ -1195,9 +1171,9 @@ dependencies = [
|
|
|
1195
1171
|
|
|
1196
1172
|
[[package]]
|
|
1197
1173
|
name = "mio"
|
|
1198
|
-
version = "0.8.
|
|
1174
|
+
version = "0.8.10"
|
|
1199
1175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
-
checksum = "
|
|
1176
|
+
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
|
|
1201
1177
|
dependencies = [
|
|
1202
1178
|
"libc",
|
|
1203
1179
|
"wasi",
|
|
@@ -1319,28 +1295,37 @@ dependencies = [
|
|
|
1319
1295
|
|
|
1320
1296
|
[[package]]
|
|
1321
1297
|
name = "num-traits"
|
|
1322
|
-
version = "0.2.
|
|
1298
|
+
version = "0.2.17"
|
|
1323
1299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
-
checksum = "
|
|
1300
|
+
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
|
|
1325
1301
|
dependencies = [
|
|
1326
1302
|
"autocfg",
|
|
1327
1303
|
]
|
|
1328
1304
|
|
|
1329
1305
|
[[package]]
|
|
1330
1306
|
name = "num_cpus"
|
|
1331
|
-
version = "1.
|
|
1307
|
+
version = "1.16.0"
|
|
1332
1308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1333
|
-
checksum = "
|
|
1309
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
1334
1310
|
dependencies = [
|
|
1335
|
-
"hermit-abi
|
|
1311
|
+
"hermit-abi",
|
|
1336
1312
|
"libc",
|
|
1337
1313
|
]
|
|
1338
1314
|
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "object"
|
|
1317
|
+
version = "0.32.2"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"memchr",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1339
1324
|
[[package]]
|
|
1340
1325
|
name = "once_cell"
|
|
1341
|
-
version = "1.
|
|
1326
|
+
version = "1.19.0"
|
|
1342
1327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
-
checksum = "
|
|
1328
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
1344
1329
|
|
|
1345
1330
|
[[package]]
|
|
1346
1331
|
name = "openssl-probe"
|
|
@@ -1386,7 +1371,7 @@ dependencies = [
|
|
|
1386
1371
|
"opentelemetry 0.21.0",
|
|
1387
1372
|
"opentelemetry-proto",
|
|
1388
1373
|
"opentelemetry-semantic-conventions",
|
|
1389
|
-
"opentelemetry_sdk 0.21.
|
|
1374
|
+
"opentelemetry_sdk 0.21.2",
|
|
1390
1375
|
"prost",
|
|
1391
1376
|
"thiserror",
|
|
1392
1377
|
"tokio",
|
|
@@ -1401,7 +1386,7 @@ checksum = "6f8f082da115b0dcb250829e3ed0b8792b8f963a1ad42466e48422fbe6a079bd"
|
|
|
1401
1386
|
dependencies = [
|
|
1402
1387
|
"once_cell",
|
|
1403
1388
|
"opentelemetry 0.21.0",
|
|
1404
|
-
"opentelemetry_sdk 0.21.
|
|
1389
|
+
"opentelemetry_sdk 0.21.2",
|
|
1405
1390
|
"prometheus",
|
|
1406
1391
|
"protobuf",
|
|
1407
1392
|
]
|
|
@@ -1413,7 +1398,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1413
1398
|
checksum = "a2e155ce5cc812ea3d1dffbd1539aed653de4bf4882d60e6e04dcf0901d674e1"
|
|
1414
1399
|
dependencies = [
|
|
1415
1400
|
"opentelemetry 0.21.0",
|
|
1416
|
-
"opentelemetry_sdk 0.21.
|
|
1401
|
+
"opentelemetry_sdk 0.21.2",
|
|
1417
1402
|
"prost",
|
|
1418
1403
|
"tonic",
|
|
1419
1404
|
]
|
|
@@ -1462,9 +1447,9 @@ dependencies = [
|
|
|
1462
1447
|
|
|
1463
1448
|
[[package]]
|
|
1464
1449
|
name = "opentelemetry_sdk"
|
|
1465
|
-
version = "0.21.
|
|
1450
|
+
version = "0.21.2"
|
|
1466
1451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
-
checksum = "
|
|
1452
|
+
checksum = "2f16aec8a98a457a52664d69e0091bac3a0abd18ead9b641cb00202ba4e0efe4"
|
|
1468
1453
|
dependencies = [
|
|
1469
1454
|
"async-trait",
|
|
1470
1455
|
"crossbeam-channel",
|
|
@@ -1484,9 +1469,9 @@ dependencies = [
|
|
|
1484
1469
|
|
|
1485
1470
|
[[package]]
|
|
1486
1471
|
name = "ordered-float"
|
|
1487
|
-
version = "4.
|
|
1472
|
+
version = "4.2.0"
|
|
1488
1473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1489
|
-
checksum = "
|
|
1474
|
+
checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e"
|
|
1490
1475
|
dependencies = [
|
|
1491
1476
|
"num-traits",
|
|
1492
1477
|
]
|
|
@@ -1509,15 +1494,15 @@ dependencies = [
|
|
|
1509
1494
|
|
|
1510
1495
|
[[package]]
|
|
1511
1496
|
name = "parking_lot_core"
|
|
1512
|
-
version = "0.9.
|
|
1497
|
+
version = "0.9.9"
|
|
1513
1498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
-
checksum = "
|
|
1499
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
|
1515
1500
|
dependencies = [
|
|
1516
1501
|
"cfg-if",
|
|
1517
1502
|
"libc",
|
|
1518
|
-
"redox_syscall
|
|
1503
|
+
"redox_syscall",
|
|
1519
1504
|
"smallvec",
|
|
1520
|
-
"windows-targets",
|
|
1505
|
+
"windows-targets 0.48.5",
|
|
1521
1506
|
]
|
|
1522
1507
|
|
|
1523
1508
|
[[package]]
|
|
@@ -1545,45 +1530,45 @@ dependencies = [
|
|
|
1545
1530
|
|
|
1546
1531
|
[[package]]
|
|
1547
1532
|
name = "percent-encoding"
|
|
1548
|
-
version = "2.3.
|
|
1533
|
+
version = "2.3.1"
|
|
1549
1534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
-
checksum = "
|
|
1535
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
1551
1536
|
|
|
1552
1537
|
[[package]]
|
|
1553
1538
|
name = "petgraph"
|
|
1554
|
-
version = "0.6.
|
|
1539
|
+
version = "0.6.4"
|
|
1555
1540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
-
checksum = "
|
|
1541
|
+
checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
|
|
1557
1542
|
dependencies = [
|
|
1558
1543
|
"fixedbitset",
|
|
1559
|
-
"indexmap 1.
|
|
1544
|
+
"indexmap 2.1.0",
|
|
1560
1545
|
]
|
|
1561
1546
|
|
|
1562
1547
|
[[package]]
|
|
1563
1548
|
name = "pin-project"
|
|
1564
|
-
version = "1.1.
|
|
1549
|
+
version = "1.1.3"
|
|
1565
1550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
-
checksum = "
|
|
1551
|
+
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
|
|
1567
1552
|
dependencies = [
|
|
1568
1553
|
"pin-project-internal",
|
|
1569
1554
|
]
|
|
1570
1555
|
|
|
1571
1556
|
[[package]]
|
|
1572
1557
|
name = "pin-project-internal"
|
|
1573
|
-
version = "1.1.
|
|
1558
|
+
version = "1.1.3"
|
|
1574
1559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1575
|
-
checksum = "
|
|
1560
|
+
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
|
|
1576
1561
|
dependencies = [
|
|
1577
1562
|
"proc-macro2",
|
|
1578
1563
|
"quote",
|
|
1579
|
-
"syn 2.0.
|
|
1564
|
+
"syn 2.0.48",
|
|
1580
1565
|
]
|
|
1581
1566
|
|
|
1582
1567
|
[[package]]
|
|
1583
1568
|
name = "pin-project-lite"
|
|
1584
|
-
version = "0.2.
|
|
1569
|
+
version = "0.2.13"
|
|
1585
1570
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1586
|
-
checksum = "
|
|
1571
|
+
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
|
1587
1572
|
|
|
1588
1573
|
[[package]]
|
|
1589
1574
|
name = "pin-utils"
|
|
@@ -1593,9 +1578,15 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1593
1578
|
|
|
1594
1579
|
[[package]]
|
|
1595
1580
|
name = "pkg-config"
|
|
1596
|
-
version = "0.3.
|
|
1581
|
+
version = "0.3.28"
|
|
1597
1582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
-
checksum = "
|
|
1583
|
+
checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a"
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "powerfmt"
|
|
1587
|
+
version = "0.2.0"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1599
1590
|
|
|
1600
1591
|
[[package]]
|
|
1601
1592
|
name = "ppv-lite86"
|
|
@@ -1645,9 +1636,9 @@ dependencies = [
|
|
|
1645
1636
|
|
|
1646
1637
|
[[package]]
|
|
1647
1638
|
name = "proc-macro2"
|
|
1648
|
-
version = "1.0.
|
|
1639
|
+
version = "1.0.76"
|
|
1649
1640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
|
-
checksum = "
|
|
1641
|
+
checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c"
|
|
1651
1642
|
dependencies = [
|
|
1652
1643
|
"unicode-ident",
|
|
1653
1644
|
]
|
|
@@ -1791,9 +1782,9 @@ dependencies = [
|
|
|
1791
1782
|
|
|
1792
1783
|
[[package]]
|
|
1793
1784
|
name = "quote"
|
|
1794
|
-
version = "1.0.
|
|
1785
|
+
version = "1.0.35"
|
|
1795
1786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
-
checksum = "
|
|
1787
|
+
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
|
1797
1788
|
dependencies = [
|
|
1798
1789
|
"proc-macro2",
|
|
1799
1790
|
]
|
|
@@ -1839,31 +1830,23 @@ dependencies = [
|
|
|
1839
1830
|
|
|
1840
1831
|
[[package]]
|
|
1841
1832
|
name = "redox_syscall"
|
|
1842
|
-
version = "0.
|
|
1843
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
-
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
|
1845
|
-
dependencies = [
|
|
1846
|
-
"bitflags 1.3.2",
|
|
1847
|
-
]
|
|
1848
|
-
|
|
1849
|
-
[[package]]
|
|
1850
|
-
name = "redox_syscall"
|
|
1851
|
-
version = "0.3.5"
|
|
1833
|
+
version = "0.4.1"
|
|
1852
1834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
-
checksum = "
|
|
1835
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
1854
1836
|
dependencies = [
|
|
1855
1837
|
"bitflags 1.3.2",
|
|
1856
1838
|
]
|
|
1857
1839
|
|
|
1858
1840
|
[[package]]
|
|
1859
1841
|
name = "regex"
|
|
1860
|
-
version = "1.
|
|
1842
|
+
version = "1.10.2"
|
|
1861
1843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
-
checksum = "
|
|
1844
|
+
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
|
|
1863
1845
|
dependencies = [
|
|
1864
1846
|
"aho-corasick",
|
|
1865
1847
|
"memchr",
|
|
1866
|
-
"regex-
|
|
1848
|
+
"regex-automata 0.4.3",
|
|
1849
|
+
"regex-syntax 0.8.2",
|
|
1867
1850
|
]
|
|
1868
1851
|
|
|
1869
1852
|
[[package]]
|
|
@@ -1875,6 +1858,17 @@ dependencies = [
|
|
|
1875
1858
|
"regex-syntax 0.6.29",
|
|
1876
1859
|
]
|
|
1877
1860
|
|
|
1861
|
+
[[package]]
|
|
1862
|
+
name = "regex-automata"
|
|
1863
|
+
version = "0.4.3"
|
|
1864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
|
+
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
|
|
1866
|
+
dependencies = [
|
|
1867
|
+
"aho-corasick",
|
|
1868
|
+
"memchr",
|
|
1869
|
+
"regex-syntax 0.8.2",
|
|
1870
|
+
]
|
|
1871
|
+
|
|
1878
1872
|
[[package]]
|
|
1879
1873
|
name = "regex-syntax"
|
|
1880
1874
|
version = "0.6.29"
|
|
@@ -1883,15 +1877,15 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
|
1883
1877
|
|
|
1884
1878
|
[[package]]
|
|
1885
1879
|
name = "regex-syntax"
|
|
1886
|
-
version = "0.
|
|
1880
|
+
version = "0.8.2"
|
|
1887
1881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1888
|
-
checksum = "
|
|
1882
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
|
1889
1883
|
|
|
1890
1884
|
[[package]]
|
|
1891
1885
|
name = "reqwest"
|
|
1892
|
-
version = "0.11.
|
|
1886
|
+
version = "0.11.23"
|
|
1893
1887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1894
|
-
checksum = "
|
|
1888
|
+
checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41"
|
|
1895
1889
|
dependencies = [
|
|
1896
1890
|
"base64",
|
|
1897
1891
|
"bytes",
|
|
@@ -1915,6 +1909,7 @@ dependencies = [
|
|
|
1915
1909
|
"serde",
|
|
1916
1910
|
"serde_json",
|
|
1917
1911
|
"serde_urlencoded",
|
|
1912
|
+
"system-configuration",
|
|
1918
1913
|
"tokio",
|
|
1919
1914
|
"tokio-rustls",
|
|
1920
1915
|
"tokio-util",
|
|
@@ -1930,17 +1925,16 @@ dependencies = [
|
|
|
1930
1925
|
|
|
1931
1926
|
[[package]]
|
|
1932
1927
|
name = "ring"
|
|
1933
|
-
version = "0.
|
|
1928
|
+
version = "0.17.7"
|
|
1934
1929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1935
|
-
checksum = "
|
|
1930
|
+
checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
|
|
1936
1931
|
dependencies = [
|
|
1937
1932
|
"cc",
|
|
1933
|
+
"getrandom",
|
|
1938
1934
|
"libc",
|
|
1939
|
-
"once_cell",
|
|
1940
1935
|
"spin",
|
|
1941
1936
|
"untrusted",
|
|
1942
|
-
"
|
|
1943
|
-
"winapi",
|
|
1937
|
+
"windows-sys 0.48.0",
|
|
1944
1938
|
]
|
|
1945
1939
|
|
|
1946
1940
|
[[package]]
|
|
@@ -1952,13 +1946,19 @@ dependencies = [
|
|
|
1952
1946
|
"crossbeam-utils",
|
|
1953
1947
|
]
|
|
1954
1948
|
|
|
1949
|
+
[[package]]
|
|
1950
|
+
name = "rustc-demangle"
|
|
1951
|
+
version = "0.1.23"
|
|
1952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
+
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
|
1954
|
+
|
|
1955
1955
|
[[package]]
|
|
1956
1956
|
name = "rustc_version"
|
|
1957
1957
|
version = "0.4.0"
|
|
1958
1958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
1959
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
1960
1960
|
dependencies = [
|
|
1961
|
-
"semver 1.0.
|
|
1961
|
+
"semver 1.0.21",
|
|
1962
1962
|
]
|
|
1963
1963
|
|
|
1964
1964
|
[[package]]
|
|
@@ -1977,7 +1977,7 @@ dependencies = [
|
|
|
1977
1977
|
"proc-macro2",
|
|
1978
1978
|
"quote",
|
|
1979
1979
|
"rustfsm_trait",
|
|
1980
|
-
"syn 2.0.
|
|
1980
|
+
"syn 2.0.48",
|
|
1981
1981
|
]
|
|
1982
1982
|
|
|
1983
1983
|
[[package]]
|
|
@@ -1986,23 +1986,22 @@ version = "0.1.0"
|
|
|
1986
1986
|
|
|
1987
1987
|
[[package]]
|
|
1988
1988
|
name = "rustix"
|
|
1989
|
-
version = "0.
|
|
1989
|
+
version = "0.38.28"
|
|
1990
1990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
-
checksum = "
|
|
1991
|
+
checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
|
|
1992
1992
|
dependencies = [
|
|
1993
|
-
"bitflags
|
|
1993
|
+
"bitflags 2.4.1",
|
|
1994
1994
|
"errno",
|
|
1995
|
-
"io-lifetimes",
|
|
1996
1995
|
"libc",
|
|
1997
1996
|
"linux-raw-sys",
|
|
1998
|
-
"windows-sys 0.
|
|
1997
|
+
"windows-sys 0.52.0",
|
|
1999
1998
|
]
|
|
2000
1999
|
|
|
2001
2000
|
[[package]]
|
|
2002
2001
|
name = "rustls"
|
|
2003
|
-
version = "0.21.
|
|
2002
|
+
version = "0.21.10"
|
|
2004
2003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
-
checksum = "
|
|
2004
|
+
checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
|
|
2006
2005
|
dependencies = [
|
|
2007
2006
|
"log",
|
|
2008
2007
|
"ring",
|
|
@@ -2024,18 +2023,18 @@ dependencies = [
|
|
|
2024
2023
|
|
|
2025
2024
|
[[package]]
|
|
2026
2025
|
name = "rustls-pemfile"
|
|
2027
|
-
version = "1.0.
|
|
2026
|
+
version = "1.0.4"
|
|
2028
2027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2029
|
-
checksum = "
|
|
2028
|
+
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
2030
2029
|
dependencies = [
|
|
2031
2030
|
"base64",
|
|
2032
2031
|
]
|
|
2033
2032
|
|
|
2034
2033
|
[[package]]
|
|
2035
2034
|
name = "rustls-webpki"
|
|
2036
|
-
version = "0.
|
|
2035
|
+
version = "0.101.7"
|
|
2037
2036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
-
checksum = "
|
|
2037
|
+
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
|
|
2039
2038
|
dependencies = [
|
|
2040
2039
|
"ring",
|
|
2041
2040
|
"untrusted",
|
|
@@ -2043,36 +2042,36 @@ dependencies = [
|
|
|
2043
2042
|
|
|
2044
2043
|
[[package]]
|
|
2045
2044
|
name = "rustversion"
|
|
2046
|
-
version = "1.0.
|
|
2045
|
+
version = "1.0.14"
|
|
2047
2046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2048
|
-
checksum = "
|
|
2047
|
+
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
|
2049
2048
|
|
|
2050
2049
|
[[package]]
|
|
2051
2050
|
name = "ryu"
|
|
2052
|
-
version = "1.0.
|
|
2051
|
+
version = "1.0.16"
|
|
2053
2052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2054
|
-
checksum = "
|
|
2053
|
+
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
|
|
2055
2054
|
|
|
2056
2055
|
[[package]]
|
|
2057
2056
|
name = "schannel"
|
|
2058
|
-
version = "0.1.
|
|
2057
|
+
version = "0.1.23"
|
|
2059
2058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
-
checksum = "
|
|
2059
|
+
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
|
2061
2060
|
dependencies = [
|
|
2062
|
-
"windows-sys 0.
|
|
2061
|
+
"windows-sys 0.52.0",
|
|
2063
2062
|
]
|
|
2064
2063
|
|
|
2065
2064
|
[[package]]
|
|
2066
2065
|
name = "scopeguard"
|
|
2067
|
-
version = "1.
|
|
2066
|
+
version = "1.2.0"
|
|
2068
2067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2069
|
-
checksum = "
|
|
2068
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2070
2069
|
|
|
2071
2070
|
[[package]]
|
|
2072
2071
|
name = "sct"
|
|
2073
|
-
version = "0.7.
|
|
2072
|
+
version = "0.7.1"
|
|
2074
2073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2075
|
-
checksum = "
|
|
2074
|
+
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
|
2076
2075
|
dependencies = [
|
|
2077
2076
|
"ring",
|
|
2078
2077
|
"untrusted",
|
|
@@ -2080,9 +2079,9 @@ dependencies = [
|
|
|
2080
2079
|
|
|
2081
2080
|
[[package]]
|
|
2082
2081
|
name = "security-framework"
|
|
2083
|
-
version = "2.9.
|
|
2082
|
+
version = "2.9.2"
|
|
2084
2083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2085
|
-
checksum = "
|
|
2084
|
+
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
|
|
2086
2085
|
dependencies = [
|
|
2087
2086
|
"bitflags 1.3.2",
|
|
2088
2087
|
"core-foundation",
|
|
@@ -2093,9 +2092,9 @@ dependencies = [
|
|
|
2093
2092
|
|
|
2094
2093
|
[[package]]
|
|
2095
2094
|
name = "security-framework-sys"
|
|
2096
|
-
version = "2.9.
|
|
2095
|
+
version = "2.9.1"
|
|
2097
2096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2098
|
-
checksum = "
|
|
2097
|
+
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
|
|
2099
2098
|
dependencies = [
|
|
2100
2099
|
"core-foundation-sys",
|
|
2101
2100
|
"libc",
|
|
@@ -2112,9 +2111,9 @@ dependencies = [
|
|
|
2112
2111
|
|
|
2113
2112
|
[[package]]
|
|
2114
2113
|
name = "semver"
|
|
2115
|
-
version = "1.0.
|
|
2114
|
+
version = "1.0.21"
|
|
2116
2115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
-
checksum = "
|
|
2116
|
+
checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
|
|
2118
2117
|
|
|
2119
2118
|
[[package]]
|
|
2120
2119
|
name = "semver-parser"
|
|
@@ -2124,29 +2123,29 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
|
2124
2123
|
|
|
2125
2124
|
[[package]]
|
|
2126
2125
|
name = "serde"
|
|
2127
|
-
version = "1.0.
|
|
2126
|
+
version = "1.0.195"
|
|
2128
2127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2129
|
-
checksum = "
|
|
2128
|
+
checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
|
|
2130
2129
|
dependencies = [
|
|
2131
2130
|
"serde_derive",
|
|
2132
2131
|
]
|
|
2133
2132
|
|
|
2134
2133
|
[[package]]
|
|
2135
2134
|
name = "serde_derive"
|
|
2136
|
-
version = "1.0.
|
|
2135
|
+
version = "1.0.195"
|
|
2137
2136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2138
|
-
checksum = "
|
|
2137
|
+
checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
|
|
2139
2138
|
dependencies = [
|
|
2140
2139
|
"proc-macro2",
|
|
2141
2140
|
"quote",
|
|
2142
|
-
"syn 2.0.
|
|
2141
|
+
"syn 2.0.48",
|
|
2143
2142
|
]
|
|
2144
2143
|
|
|
2145
2144
|
[[package]]
|
|
2146
2145
|
name = "serde_json"
|
|
2147
|
-
version = "1.0.
|
|
2146
|
+
version = "1.0.111"
|
|
2148
2147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
-
checksum = "
|
|
2148
|
+
checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
|
|
2150
2149
|
dependencies = [
|
|
2151
2150
|
"itoa",
|
|
2152
2151
|
"ryu",
|
|
@@ -2167,9 +2166,9 @@ dependencies = [
|
|
|
2167
2166
|
|
|
2168
2167
|
[[package]]
|
|
2169
2168
|
name = "sha1"
|
|
2170
|
-
version = "0.10.
|
|
2169
|
+
version = "0.10.6"
|
|
2171
2170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
|
-
checksum = "
|
|
2171
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2173
2172
|
dependencies = [
|
|
2174
2173
|
"cfg-if",
|
|
2175
2174
|
"cpufeatures",
|
|
@@ -2178,9 +2177,9 @@ dependencies = [
|
|
|
2178
2177
|
|
|
2179
2178
|
[[package]]
|
|
2180
2179
|
name = "sha2"
|
|
2181
|
-
version = "0.10.
|
|
2180
|
+
version = "0.10.8"
|
|
2182
2181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2183
|
-
checksum = "
|
|
2182
|
+
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
|
2184
2183
|
dependencies = [
|
|
2185
2184
|
"cfg-if",
|
|
2186
2185
|
"cpufeatures",
|
|
@@ -2189,9 +2188,9 @@ dependencies = [
|
|
|
2189
2188
|
|
|
2190
2189
|
[[package]]
|
|
2191
2190
|
name = "sharded-slab"
|
|
2192
|
-
version = "0.1.
|
|
2191
|
+
version = "0.1.7"
|
|
2193
2192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
-
checksum = "
|
|
2193
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
2195
2194
|
dependencies = [
|
|
2196
2195
|
"lazy_static",
|
|
2197
2196
|
]
|
|
@@ -2213,43 +2212,43 @@ checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe"
|
|
|
2213
2212
|
|
|
2214
2213
|
[[package]]
|
|
2215
2214
|
name = "slab"
|
|
2216
|
-
version = "0.4.
|
|
2215
|
+
version = "0.4.9"
|
|
2217
2216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2218
|
-
checksum = "
|
|
2217
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
2219
2218
|
dependencies = [
|
|
2220
2219
|
"autocfg",
|
|
2221
2220
|
]
|
|
2222
2221
|
|
|
2223
2222
|
[[package]]
|
|
2224
2223
|
name = "slotmap"
|
|
2225
|
-
version = "1.0.
|
|
2224
|
+
version = "1.0.7"
|
|
2226
2225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
|
-
checksum = "
|
|
2226
|
+
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
|
|
2228
2227
|
dependencies = [
|
|
2229
2228
|
"version_check",
|
|
2230
2229
|
]
|
|
2231
2230
|
|
|
2232
2231
|
[[package]]
|
|
2233
2232
|
name = "smallvec"
|
|
2234
|
-
version = "1.
|
|
2233
|
+
version = "1.11.2"
|
|
2235
2234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2236
|
-
checksum = "
|
|
2235
|
+
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
|
|
2237
2236
|
|
|
2238
2237
|
[[package]]
|
|
2239
2238
|
name = "socket2"
|
|
2240
|
-
version = "0.
|
|
2239
|
+
version = "0.5.5"
|
|
2241
2240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2242
|
-
checksum = "
|
|
2241
|
+
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
|
|
2243
2242
|
dependencies = [
|
|
2244
2243
|
"libc",
|
|
2245
|
-
"
|
|
2244
|
+
"windows-sys 0.48.0",
|
|
2246
2245
|
]
|
|
2247
2246
|
|
|
2248
2247
|
[[package]]
|
|
2249
2248
|
name = "spin"
|
|
2250
|
-
version = "0.
|
|
2249
|
+
version = "0.9.8"
|
|
2251
2250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2252
|
-
checksum = "
|
|
2251
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2253
2252
|
|
|
2254
2253
|
[[package]]
|
|
2255
2254
|
name = "strsim"
|
|
@@ -2276,9 +2275,9 @@ dependencies = [
|
|
|
2276
2275
|
|
|
2277
2276
|
[[package]]
|
|
2278
2277
|
name = "syn"
|
|
2279
|
-
version = "2.0.
|
|
2278
|
+
version = "2.0.48"
|
|
2280
2279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2281
|
-
checksum = "
|
|
2280
|
+
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
|
|
2282
2281
|
dependencies = [
|
|
2283
2282
|
"proc-macro2",
|
|
2284
2283
|
"quote",
|
|
@@ -2287,9 +2286,9 @@ dependencies = [
|
|
|
2287
2286
|
|
|
2288
2287
|
[[package]]
|
|
2289
2288
|
name = "syn-mid"
|
|
2290
|
-
version = "0.5.
|
|
2289
|
+
version = "0.5.4"
|
|
2291
2290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2292
|
-
checksum = "
|
|
2291
|
+
checksum = "fea305d57546cc8cd04feb14b62ec84bf17f50e3f7b12560d7bfa9265f39d9ed"
|
|
2293
2292
|
dependencies = [
|
|
2294
2293
|
"proc-macro2",
|
|
2295
2294
|
"quote",
|
|
@@ -2302,11 +2301,32 @@ version = "0.1.2"
|
|
|
2302
2301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2303
2302
|
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
2304
2303
|
|
|
2304
|
+
[[package]]
|
|
2305
|
+
name = "system-configuration"
|
|
2306
|
+
version = "0.5.1"
|
|
2307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
|
+
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
2309
|
+
dependencies = [
|
|
2310
|
+
"bitflags 1.3.2",
|
|
2311
|
+
"core-foundation",
|
|
2312
|
+
"system-configuration-sys",
|
|
2313
|
+
]
|
|
2314
|
+
|
|
2315
|
+
[[package]]
|
|
2316
|
+
name = "system-configuration-sys"
|
|
2317
|
+
version = "0.5.0"
|
|
2318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2319
|
+
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
2320
|
+
dependencies = [
|
|
2321
|
+
"core-foundation-sys",
|
|
2322
|
+
"libc",
|
|
2323
|
+
]
|
|
2324
|
+
|
|
2305
2325
|
[[package]]
|
|
2306
2326
|
name = "tar"
|
|
2307
|
-
version = "0.4.
|
|
2327
|
+
version = "0.4.40"
|
|
2308
2328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2309
|
-
checksum = "
|
|
2329
|
+
checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
|
|
2310
2330
|
dependencies = [
|
|
2311
2331
|
"filetime",
|
|
2312
2332
|
"libc",
|
|
@@ -2315,16 +2335,15 @@ dependencies = [
|
|
|
2315
2335
|
|
|
2316
2336
|
[[package]]
|
|
2317
2337
|
name = "tempfile"
|
|
2318
|
-
version = "3.
|
|
2338
|
+
version = "3.9.0"
|
|
2319
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2320
|
-
checksum = "
|
|
2340
|
+
checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
|
|
2321
2341
|
dependencies = [
|
|
2322
|
-
"autocfg",
|
|
2323
2342
|
"cfg-if",
|
|
2324
2343
|
"fastrand",
|
|
2325
|
-
"redox_syscall
|
|
2344
|
+
"redox_syscall",
|
|
2326
2345
|
"rustix",
|
|
2327
|
-
"windows-sys 0.
|
|
2346
|
+
"windows-sys 0.52.0",
|
|
2328
2347
|
]
|
|
2329
2348
|
|
|
2330
2349
|
[[package]]
|
|
@@ -2385,7 +2404,7 @@ dependencies = [
|
|
|
2385
2404
|
"opentelemetry 0.21.0",
|
|
2386
2405
|
"opentelemetry-otlp",
|
|
2387
2406
|
"opentelemetry-prometheus",
|
|
2388
|
-
"opentelemetry_sdk 0.21.
|
|
2407
|
+
"opentelemetry_sdk 0.21.2",
|
|
2389
2408
|
"parking_lot",
|
|
2390
2409
|
"pin-project",
|
|
2391
2410
|
"prometheus",
|
|
@@ -2483,22 +2502,22 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
|
|
|
2483
2502
|
|
|
2484
2503
|
[[package]]
|
|
2485
2504
|
name = "thiserror"
|
|
2486
|
-
version = "1.0.
|
|
2505
|
+
version = "1.0.56"
|
|
2487
2506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2488
|
-
checksum = "
|
|
2507
|
+
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
|
|
2489
2508
|
dependencies = [
|
|
2490
2509
|
"thiserror-impl",
|
|
2491
2510
|
]
|
|
2492
2511
|
|
|
2493
2512
|
[[package]]
|
|
2494
2513
|
name = "thiserror-impl"
|
|
2495
|
-
version = "1.0.
|
|
2514
|
+
version = "1.0.56"
|
|
2496
2515
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2497
|
-
checksum = "
|
|
2516
|
+
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
|
|
2498
2517
|
dependencies = [
|
|
2499
2518
|
"proc-macro2",
|
|
2500
2519
|
"quote",
|
|
2501
|
-
"syn 2.0.
|
|
2520
|
+
"syn 2.0.48",
|
|
2502
2521
|
]
|
|
2503
2522
|
|
|
2504
2523
|
[[package]]
|
|
@@ -2513,19 +2532,21 @@ dependencies = [
|
|
|
2513
2532
|
|
|
2514
2533
|
[[package]]
|
|
2515
2534
|
name = "time"
|
|
2516
|
-
version = "0.3.
|
|
2535
|
+
version = "0.3.31"
|
|
2517
2536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2518
|
-
checksum = "
|
|
2537
|
+
checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e"
|
|
2519
2538
|
dependencies = [
|
|
2539
|
+
"deranged",
|
|
2540
|
+
"powerfmt",
|
|
2520
2541
|
"serde",
|
|
2521
2542
|
"time-core",
|
|
2522
2543
|
]
|
|
2523
2544
|
|
|
2524
2545
|
[[package]]
|
|
2525
2546
|
name = "time-core"
|
|
2526
|
-
version = "0.1.
|
|
2547
|
+
version = "0.1.2"
|
|
2527
2548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
-
checksum = "
|
|
2549
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
2529
2550
|
|
|
2530
2551
|
[[package]]
|
|
2531
2552
|
name = "tinyvec"
|
|
@@ -2544,11 +2565,11 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
2544
2565
|
|
|
2545
2566
|
[[package]]
|
|
2546
2567
|
name = "tokio"
|
|
2547
|
-
version = "1.
|
|
2568
|
+
version = "1.35.1"
|
|
2548
2569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2549
|
-
checksum = "
|
|
2570
|
+
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
|
|
2550
2571
|
dependencies = [
|
|
2551
|
-
"
|
|
2572
|
+
"backtrace",
|
|
2552
2573
|
"bytes",
|
|
2553
2574
|
"libc",
|
|
2554
2575
|
"mio",
|
|
@@ -2573,13 +2594,13 @@ dependencies = [
|
|
|
2573
2594
|
|
|
2574
2595
|
[[package]]
|
|
2575
2596
|
name = "tokio-macros"
|
|
2576
|
-
version = "2.
|
|
2597
|
+
version = "2.2.0"
|
|
2577
2598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2578
|
-
checksum = "
|
|
2599
|
+
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
|
|
2579
2600
|
dependencies = [
|
|
2580
2601
|
"proc-macro2",
|
|
2581
2602
|
"quote",
|
|
2582
|
-
"syn 2.0.
|
|
2603
|
+
"syn 2.0.48",
|
|
2583
2604
|
]
|
|
2584
2605
|
|
|
2585
2606
|
[[package]]
|
|
@@ -2605,9 +2626,9 @@ dependencies = [
|
|
|
2605
2626
|
|
|
2606
2627
|
[[package]]
|
|
2607
2628
|
name = "tokio-util"
|
|
2608
|
-
version = "0.7.
|
|
2629
|
+
version = "0.7.10"
|
|
2609
2630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2610
|
-
checksum = "
|
|
2631
|
+
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
|
|
2611
2632
|
dependencies = [
|
|
2612
2633
|
"bytes",
|
|
2613
2634
|
"futures-core",
|
|
@@ -2696,11 +2717,10 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
|
2696
2717
|
|
|
2697
2718
|
[[package]]
|
|
2698
2719
|
name = "tracing"
|
|
2699
|
-
version = "0.1.
|
|
2720
|
+
version = "0.1.40"
|
|
2700
2721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2701
|
-
checksum = "
|
|
2722
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
2702
2723
|
dependencies = [
|
|
2703
|
-
"cfg-if",
|
|
2704
2724
|
"log",
|
|
2705
2725
|
"pin-project-lite",
|
|
2706
2726
|
"tracing-attributes",
|
|
@@ -2709,20 +2729,20 @@ dependencies = [
|
|
|
2709
2729
|
|
|
2710
2730
|
[[package]]
|
|
2711
2731
|
name = "tracing-attributes"
|
|
2712
|
-
version = "0.1.
|
|
2732
|
+
version = "0.1.27"
|
|
2713
2733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2714
|
-
checksum = "
|
|
2734
|
+
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
2715
2735
|
dependencies = [
|
|
2716
2736
|
"proc-macro2",
|
|
2717
2737
|
"quote",
|
|
2718
|
-
"syn 2.0.
|
|
2738
|
+
"syn 2.0.48",
|
|
2719
2739
|
]
|
|
2720
2740
|
|
|
2721
2741
|
[[package]]
|
|
2722
2742
|
name = "tracing-core"
|
|
2723
|
-
version = "0.1.
|
|
2743
|
+
version = "0.1.32"
|
|
2724
2744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2725
|
-
checksum = "
|
|
2745
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
2726
2746
|
dependencies = [
|
|
2727
2747
|
"once_cell",
|
|
2728
2748
|
"valuable",
|
|
@@ -2740,20 +2760,20 @@ dependencies = [
|
|
|
2740
2760
|
|
|
2741
2761
|
[[package]]
|
|
2742
2762
|
name = "tracing-log"
|
|
2743
|
-
version = "0.
|
|
2763
|
+
version = "0.2.0"
|
|
2744
2764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2745
|
-
checksum = "
|
|
2765
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
2746
2766
|
dependencies = [
|
|
2747
|
-
"lazy_static",
|
|
2748
2767
|
"log",
|
|
2768
|
+
"once_cell",
|
|
2749
2769
|
"tracing-core",
|
|
2750
2770
|
]
|
|
2751
2771
|
|
|
2752
2772
|
[[package]]
|
|
2753
2773
|
name = "tracing-subscriber"
|
|
2754
|
-
version = "0.3.
|
|
2774
|
+
version = "0.3.18"
|
|
2755
2775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2756
|
-
checksum = "
|
|
2776
|
+
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
|
2757
2777
|
dependencies = [
|
|
2758
2778
|
"matchers",
|
|
2759
2779
|
"nu-ansi-term",
|
|
@@ -2770,21 +2790,21 @@ dependencies = [
|
|
|
2770
2790
|
|
|
2771
2791
|
[[package]]
|
|
2772
2792
|
name = "try-lock"
|
|
2773
|
-
version = "0.2.
|
|
2793
|
+
version = "0.2.5"
|
|
2774
2794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2775
|
-
checksum = "
|
|
2795
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2776
2796
|
|
|
2777
2797
|
[[package]]
|
|
2778
2798
|
name = "typenum"
|
|
2779
|
-
version = "1.
|
|
2799
|
+
version = "1.17.0"
|
|
2780
2800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2781
|
-
checksum = "
|
|
2801
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
2782
2802
|
|
|
2783
2803
|
[[package]]
|
|
2784
2804
|
name = "typetag"
|
|
2785
|
-
version = "0.2.
|
|
2805
|
+
version = "0.2.15"
|
|
2786
2806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2787
|
-
checksum = "
|
|
2807
|
+
checksum = "c43148481c7b66502c48f35b8eef38b6ccdc7a9f04bd4cc294226d901ccc9bc7"
|
|
2788
2808
|
dependencies = [
|
|
2789
2809
|
"erased-serde",
|
|
2790
2810
|
"inventory",
|
|
@@ -2795,26 +2815,26 @@ dependencies = [
|
|
|
2795
2815
|
|
|
2796
2816
|
[[package]]
|
|
2797
2817
|
name = "typetag-impl"
|
|
2798
|
-
version = "0.2.
|
|
2818
|
+
version = "0.2.15"
|
|
2799
2819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
-
checksum = "
|
|
2820
|
+
checksum = "291db8a81af4840c10d636e047cac67664e343be44e24dfdbd1492df9a5d3390"
|
|
2801
2821
|
dependencies = [
|
|
2802
2822
|
"proc-macro2",
|
|
2803
2823
|
"quote",
|
|
2804
|
-
"syn 2.0.
|
|
2824
|
+
"syn 2.0.48",
|
|
2805
2825
|
]
|
|
2806
2826
|
|
|
2807
2827
|
[[package]]
|
|
2808
2828
|
name = "unicode-bidi"
|
|
2809
|
-
version = "0.3.
|
|
2829
|
+
version = "0.3.14"
|
|
2810
2830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2811
|
-
checksum = "
|
|
2831
|
+
checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
|
|
2812
2832
|
|
|
2813
2833
|
[[package]]
|
|
2814
2834
|
name = "unicode-ident"
|
|
2815
|
-
version = "1.0.
|
|
2835
|
+
version = "1.0.12"
|
|
2816
2836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2817
|
-
checksum = "
|
|
2837
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
2818
2838
|
|
|
2819
2839
|
[[package]]
|
|
2820
2840
|
name = "unicode-normalization"
|
|
@@ -2827,15 +2847,15 @@ dependencies = [
|
|
|
2827
2847
|
|
|
2828
2848
|
[[package]]
|
|
2829
2849
|
name = "untrusted"
|
|
2830
|
-
version = "0.
|
|
2850
|
+
version = "0.9.0"
|
|
2831
2851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2832
|
-
checksum = "
|
|
2852
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2833
2853
|
|
|
2834
2854
|
[[package]]
|
|
2835
2855
|
name = "url"
|
|
2836
|
-
version = "2.
|
|
2856
|
+
version = "2.5.0"
|
|
2837
2857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
-
checksum = "
|
|
2858
|
+
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
|
|
2839
2859
|
dependencies = [
|
|
2840
2860
|
"form_urlencoded",
|
|
2841
2861
|
"idna",
|
|
@@ -2850,9 +2870,9 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
|
2850
2870
|
|
|
2851
2871
|
[[package]]
|
|
2852
2872
|
name = "uuid"
|
|
2853
|
-
version = "1.
|
|
2873
|
+
version = "1.6.1"
|
|
2854
2874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2855
|
-
checksum = "
|
|
2875
|
+
checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
|
|
2856
2876
|
dependencies = [
|
|
2857
2877
|
"getrandom",
|
|
2858
2878
|
]
|
|
@@ -2886,9 +2906,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
2886
2906
|
|
|
2887
2907
|
[[package]]
|
|
2888
2908
|
name = "wasm-bindgen"
|
|
2889
|
-
version = "0.2.
|
|
2909
|
+
version = "0.2.89"
|
|
2890
2910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
-
checksum = "
|
|
2911
|
+
checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
|
|
2892
2912
|
dependencies = [
|
|
2893
2913
|
"cfg-if",
|
|
2894
2914
|
"wasm-bindgen-macro",
|
|
@@ -2896,24 +2916,24 @@ dependencies = [
|
|
|
2896
2916
|
|
|
2897
2917
|
[[package]]
|
|
2898
2918
|
name = "wasm-bindgen-backend"
|
|
2899
|
-
version = "0.2.
|
|
2919
|
+
version = "0.2.89"
|
|
2900
2920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
|
-
checksum = "
|
|
2921
|
+
checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
|
|
2902
2922
|
dependencies = [
|
|
2903
2923
|
"bumpalo",
|
|
2904
2924
|
"log",
|
|
2905
2925
|
"once_cell",
|
|
2906
2926
|
"proc-macro2",
|
|
2907
2927
|
"quote",
|
|
2908
|
-
"syn 2.0.
|
|
2928
|
+
"syn 2.0.48",
|
|
2909
2929
|
"wasm-bindgen-shared",
|
|
2910
2930
|
]
|
|
2911
2931
|
|
|
2912
2932
|
[[package]]
|
|
2913
2933
|
name = "wasm-bindgen-futures"
|
|
2914
|
-
version = "0.4.
|
|
2934
|
+
version = "0.4.39"
|
|
2915
2935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2916
|
-
checksum = "
|
|
2936
|
+
checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12"
|
|
2917
2937
|
dependencies = [
|
|
2918
2938
|
"cfg-if",
|
|
2919
2939
|
"js-sys",
|
|
@@ -2923,9 +2943,9 @@ dependencies = [
|
|
|
2923
2943
|
|
|
2924
2944
|
[[package]]
|
|
2925
2945
|
name = "wasm-bindgen-macro"
|
|
2926
|
-
version = "0.2.
|
|
2946
|
+
version = "0.2.89"
|
|
2927
2947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
-
checksum = "
|
|
2948
|
+
checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
|
|
2929
2949
|
dependencies = [
|
|
2930
2950
|
"quote",
|
|
2931
2951
|
"wasm-bindgen-macro-support",
|
|
@@ -2933,28 +2953,28 @@ dependencies = [
|
|
|
2933
2953
|
|
|
2934
2954
|
[[package]]
|
|
2935
2955
|
name = "wasm-bindgen-macro-support"
|
|
2936
|
-
version = "0.2.
|
|
2956
|
+
version = "0.2.89"
|
|
2937
2957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2938
|
-
checksum = "
|
|
2958
|
+
checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
|
|
2939
2959
|
dependencies = [
|
|
2940
2960
|
"proc-macro2",
|
|
2941
2961
|
"quote",
|
|
2942
|
-
"syn 2.0.
|
|
2962
|
+
"syn 2.0.48",
|
|
2943
2963
|
"wasm-bindgen-backend",
|
|
2944
2964
|
"wasm-bindgen-shared",
|
|
2945
2965
|
]
|
|
2946
2966
|
|
|
2947
2967
|
[[package]]
|
|
2948
2968
|
name = "wasm-bindgen-shared"
|
|
2949
|
-
version = "0.2.
|
|
2969
|
+
version = "0.2.89"
|
|
2950
2970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2951
|
-
checksum = "
|
|
2971
|
+
checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
|
|
2952
2972
|
|
|
2953
2973
|
[[package]]
|
|
2954
2974
|
name = "wasm-streams"
|
|
2955
|
-
version = "0.
|
|
2975
|
+
version = "0.3.0"
|
|
2956
2976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2957
|
-
checksum = "
|
|
2977
|
+
checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7"
|
|
2958
2978
|
dependencies = [
|
|
2959
2979
|
"futures-util",
|
|
2960
2980
|
"js-sys",
|
|
@@ -2965,42 +2985,30 @@ dependencies = [
|
|
|
2965
2985
|
|
|
2966
2986
|
[[package]]
|
|
2967
2987
|
name = "web-sys"
|
|
2968
|
-
version = "0.3.
|
|
2988
|
+
version = "0.3.66"
|
|
2969
2989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
|
-
checksum = "
|
|
2990
|
+
checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f"
|
|
2971
2991
|
dependencies = [
|
|
2972
2992
|
"js-sys",
|
|
2973
2993
|
"wasm-bindgen",
|
|
2974
2994
|
]
|
|
2975
2995
|
|
|
2976
|
-
[[package]]
|
|
2977
|
-
name = "webpki"
|
|
2978
|
-
version = "0.22.0"
|
|
2979
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2980
|
-
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
|
|
2981
|
-
dependencies = [
|
|
2982
|
-
"ring",
|
|
2983
|
-
"untrusted",
|
|
2984
|
-
]
|
|
2985
|
-
|
|
2986
2996
|
[[package]]
|
|
2987
2997
|
name = "webpki-roots"
|
|
2988
|
-
version = "0.
|
|
2998
|
+
version = "0.25.3"
|
|
2989
2999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2990
|
-
checksum = "
|
|
2991
|
-
dependencies = [
|
|
2992
|
-
"webpki",
|
|
2993
|
-
]
|
|
3000
|
+
checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10"
|
|
2994
3001
|
|
|
2995
3002
|
[[package]]
|
|
2996
3003
|
name = "which"
|
|
2997
|
-
version = "4.4.
|
|
3004
|
+
version = "4.4.2"
|
|
2998
3005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2999
|
-
checksum = "
|
|
3006
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
|
3000
3007
|
dependencies = [
|
|
3001
3008
|
"either",
|
|
3002
|
-
"
|
|
3009
|
+
"home",
|
|
3003
3010
|
"once_cell",
|
|
3011
|
+
"rustix",
|
|
3004
3012
|
]
|
|
3005
3013
|
|
|
3006
3014
|
[[package]]
|
|
@@ -3027,143 +3035,175 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
3027
3035
|
|
|
3028
3036
|
[[package]]
|
|
3029
3037
|
name = "windows-sys"
|
|
3030
|
-
version = "0.
|
|
3038
|
+
version = "0.48.0"
|
|
3031
3039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3032
|
-
checksum = "
|
|
3040
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
3033
3041
|
dependencies = [
|
|
3034
|
-
"
|
|
3035
|
-
"windows_aarch64_msvc 0.42.2",
|
|
3036
|
-
"windows_i686_gnu 0.42.2",
|
|
3037
|
-
"windows_i686_msvc 0.42.2",
|
|
3038
|
-
"windows_x86_64_gnu 0.42.2",
|
|
3039
|
-
"windows_x86_64_gnullvm 0.42.2",
|
|
3040
|
-
"windows_x86_64_msvc 0.42.2",
|
|
3042
|
+
"windows-targets 0.48.5",
|
|
3041
3043
|
]
|
|
3042
3044
|
|
|
3043
3045
|
[[package]]
|
|
3044
3046
|
name = "windows-sys"
|
|
3045
|
-
version = "0.
|
|
3047
|
+
version = "0.52.0"
|
|
3046
3048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3047
|
-
checksum = "
|
|
3049
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3048
3050
|
dependencies = [
|
|
3049
|
-
"windows-targets",
|
|
3051
|
+
"windows-targets 0.52.0",
|
|
3050
3052
|
]
|
|
3051
3053
|
|
|
3052
3054
|
[[package]]
|
|
3053
3055
|
name = "windows-targets"
|
|
3054
|
-
version = "0.48.
|
|
3056
|
+
version = "0.48.5"
|
|
3055
3057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3056
|
-
checksum = "
|
|
3058
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
3057
3059
|
dependencies = [
|
|
3058
|
-
"windows_aarch64_gnullvm 0.48.
|
|
3059
|
-
"windows_aarch64_msvc 0.48.
|
|
3060
|
-
"windows_i686_gnu 0.48.
|
|
3061
|
-
"windows_i686_msvc 0.48.
|
|
3062
|
-
"windows_x86_64_gnu 0.48.
|
|
3063
|
-
"windows_x86_64_gnullvm 0.48.
|
|
3064
|
-
"windows_x86_64_msvc 0.48.
|
|
3060
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
3061
|
+
"windows_aarch64_msvc 0.48.5",
|
|
3062
|
+
"windows_i686_gnu 0.48.5",
|
|
3063
|
+
"windows_i686_msvc 0.48.5",
|
|
3064
|
+
"windows_x86_64_gnu 0.48.5",
|
|
3065
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
3066
|
+
"windows_x86_64_msvc 0.48.5",
|
|
3067
|
+
]
|
|
3068
|
+
|
|
3069
|
+
[[package]]
|
|
3070
|
+
name = "windows-targets"
|
|
3071
|
+
version = "0.52.0"
|
|
3072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3073
|
+
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
|
|
3074
|
+
dependencies = [
|
|
3075
|
+
"windows_aarch64_gnullvm 0.52.0",
|
|
3076
|
+
"windows_aarch64_msvc 0.52.0",
|
|
3077
|
+
"windows_i686_gnu 0.52.0",
|
|
3078
|
+
"windows_i686_msvc 0.52.0",
|
|
3079
|
+
"windows_x86_64_gnu 0.52.0",
|
|
3080
|
+
"windows_x86_64_gnullvm 0.52.0",
|
|
3081
|
+
"windows_x86_64_msvc 0.52.0",
|
|
3065
3082
|
]
|
|
3066
3083
|
|
|
3067
3084
|
[[package]]
|
|
3068
3085
|
name = "windows_aarch64_gnullvm"
|
|
3069
|
-
version = "0.
|
|
3086
|
+
version = "0.48.5"
|
|
3070
3087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3071
|
-
checksum = "
|
|
3088
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
3072
3089
|
|
|
3073
3090
|
[[package]]
|
|
3074
3091
|
name = "windows_aarch64_gnullvm"
|
|
3075
|
-
version = "0.
|
|
3092
|
+
version = "0.52.0"
|
|
3076
3093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
-
checksum = "
|
|
3094
|
+
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
|
|
3078
3095
|
|
|
3079
3096
|
[[package]]
|
|
3080
3097
|
name = "windows_aarch64_msvc"
|
|
3081
|
-
version = "0.
|
|
3098
|
+
version = "0.48.5"
|
|
3082
3099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3083
|
-
checksum = "
|
|
3100
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
3084
3101
|
|
|
3085
3102
|
[[package]]
|
|
3086
3103
|
name = "windows_aarch64_msvc"
|
|
3087
|
-
version = "0.
|
|
3104
|
+
version = "0.52.0"
|
|
3088
3105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3089
|
-
checksum = "
|
|
3106
|
+
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
|
|
3090
3107
|
|
|
3091
3108
|
[[package]]
|
|
3092
3109
|
name = "windows_i686_gnu"
|
|
3093
|
-
version = "0.
|
|
3110
|
+
version = "0.48.5"
|
|
3094
3111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3095
|
-
checksum = "
|
|
3112
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
3096
3113
|
|
|
3097
3114
|
[[package]]
|
|
3098
3115
|
name = "windows_i686_gnu"
|
|
3099
|
-
version = "0.
|
|
3116
|
+
version = "0.52.0"
|
|
3100
3117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3101
|
-
checksum = "
|
|
3118
|
+
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
|
|
3102
3119
|
|
|
3103
3120
|
[[package]]
|
|
3104
3121
|
name = "windows_i686_msvc"
|
|
3105
|
-
version = "0.
|
|
3122
|
+
version = "0.48.5"
|
|
3106
3123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3107
|
-
checksum = "
|
|
3124
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
3108
3125
|
|
|
3109
3126
|
[[package]]
|
|
3110
3127
|
name = "windows_i686_msvc"
|
|
3111
|
-
version = "0.
|
|
3128
|
+
version = "0.52.0"
|
|
3112
3129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3113
|
-
checksum = "
|
|
3130
|
+
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
|
|
3114
3131
|
|
|
3115
3132
|
[[package]]
|
|
3116
3133
|
name = "windows_x86_64_gnu"
|
|
3117
|
-
version = "0.
|
|
3134
|
+
version = "0.48.5"
|
|
3118
3135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3119
|
-
checksum = "
|
|
3136
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
3120
3137
|
|
|
3121
3138
|
[[package]]
|
|
3122
3139
|
name = "windows_x86_64_gnu"
|
|
3123
|
-
version = "0.
|
|
3140
|
+
version = "0.52.0"
|
|
3124
3141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3125
|
-
checksum = "
|
|
3142
|
+
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
|
|
3126
3143
|
|
|
3127
3144
|
[[package]]
|
|
3128
3145
|
name = "windows_x86_64_gnullvm"
|
|
3129
|
-
version = "0.
|
|
3146
|
+
version = "0.48.5"
|
|
3130
3147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3131
|
-
checksum = "
|
|
3148
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
3132
3149
|
|
|
3133
3150
|
[[package]]
|
|
3134
3151
|
name = "windows_x86_64_gnullvm"
|
|
3135
|
-
version = "0.
|
|
3152
|
+
version = "0.52.0"
|
|
3136
3153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3137
|
-
checksum = "
|
|
3154
|
+
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
|
|
3138
3155
|
|
|
3139
3156
|
[[package]]
|
|
3140
3157
|
name = "windows_x86_64_msvc"
|
|
3141
|
-
version = "0.
|
|
3158
|
+
version = "0.48.5"
|
|
3142
3159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3143
|
-
checksum = "
|
|
3160
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
3144
3161
|
|
|
3145
3162
|
[[package]]
|
|
3146
3163
|
name = "windows_x86_64_msvc"
|
|
3147
|
-
version = "0.
|
|
3164
|
+
version = "0.52.0"
|
|
3148
3165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3149
|
-
checksum = "
|
|
3166
|
+
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
|
|
3150
3167
|
|
|
3151
3168
|
[[package]]
|
|
3152
3169
|
name = "winreg"
|
|
3153
|
-
version = "0.
|
|
3170
|
+
version = "0.50.0"
|
|
3154
3171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3155
|
-
checksum = "
|
|
3172
|
+
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
|
3156
3173
|
dependencies = [
|
|
3157
|
-
"
|
|
3174
|
+
"cfg-if",
|
|
3175
|
+
"windows-sys 0.48.0",
|
|
3158
3176
|
]
|
|
3159
3177
|
|
|
3160
3178
|
[[package]]
|
|
3161
3179
|
name = "xattr"
|
|
3162
|
-
version = "
|
|
3180
|
+
version = "1.2.0"
|
|
3163
3181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3164
|
-
checksum = "
|
|
3182
|
+
checksum = "914566e6413e7fa959cc394fb30e563ba80f3541fbd40816d4c05a0fc3f2a0f1"
|
|
3165
3183
|
dependencies = [
|
|
3166
3184
|
"libc",
|
|
3185
|
+
"linux-raw-sys",
|
|
3186
|
+
"rustix",
|
|
3187
|
+
]
|
|
3188
|
+
|
|
3189
|
+
[[package]]
|
|
3190
|
+
name = "zerocopy"
|
|
3191
|
+
version = "0.7.32"
|
|
3192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3193
|
+
checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
|
|
3194
|
+
dependencies = [
|
|
3195
|
+
"zerocopy-derive",
|
|
3196
|
+
]
|
|
3197
|
+
|
|
3198
|
+
[[package]]
|
|
3199
|
+
name = "zerocopy-derive"
|
|
3200
|
+
version = "0.7.32"
|
|
3201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
+
checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
|
|
3203
|
+
dependencies = [
|
|
3204
|
+
"proc-macro2",
|
|
3205
|
+
"quote",
|
|
3206
|
+
"syn 2.0.48",
|
|
3167
3207
|
]
|
|
3168
3208
|
|
|
3169
3209
|
[[package]]
|
|
@@ -3207,11 +3247,10 @@ dependencies = [
|
|
|
3207
3247
|
|
|
3208
3248
|
[[package]]
|
|
3209
3249
|
name = "zstd-sys"
|
|
3210
|
-
version = "2.0.
|
|
3250
|
+
version = "2.0.9+zstd.1.5.5"
|
|
3211
3251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3212
|
-
checksum = "
|
|
3252
|
+
checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
|
|
3213
3253
|
dependencies = [
|
|
3214
3254
|
"cc",
|
|
3215
|
-
"libc",
|
|
3216
3255
|
"pkg-config",
|
|
3217
3256
|
]
|