@temporalio/core-bridge 1.7.0 → 1.7.2
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 +500 -400
- 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/client/src/lib.rs +23 -6
- package/sdk-core/client/src/raw.rs +15 -6
- package/sdk-core/core/Cargo.toml +1 -0
- package/sdk-core/core/src/core_tests/activity_tasks.rs +13 -5
- package/sdk-core/core/src/core_tests/determinism.rs +49 -2
- package/sdk-core/core/src/core_tests/workflow_tasks.rs +21 -39
- package/sdk-core/core/src/internal_flags.rs +132 -60
- package/sdk-core/core/src/worker/activities/activity_task_poller_stream.rs +10 -7
- package/sdk-core/core/src/worker/activities.rs +152 -142
- package/sdk-core/core/src/worker/client.rs +12 -8
- package/sdk-core/core/src/worker/mod.rs +8 -5
- package/sdk-core/core/src/worker/workflow/history_update.rs +86 -2
- package/sdk-core/core/src/worker/workflow/machines/signal_external_state_machine.rs +4 -1
- package/sdk-core/core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs +23 -88
- package/sdk-core/core/src/worker/workflow/machines/workflow_machines.rs +6 -6
- package/sdk-core/core/src/worker/workflow/managed_run.rs +9 -2
- package/sdk-core/core/src/worker/workflow/mod.rs +22 -8
- package/sdk-core/core/src/worker/workflow/workflow_stream.rs +29 -27
- package/sdk-core/protos/api_upstream/.github/workflows/publish-docs.yml +23 -0
- package/sdk-core/protos/api_upstream/Makefile +1 -1
- package/sdk-core/protos/api_upstream/buf.yaml +5 -0
- package/sdk-core/protos/api_upstream/temporal/api/common/v1/message.proto +17 -0
- package/sdk-core/protos/api_upstream/temporal/api/enums/v1/failed_cause.proto +2 -0
- package/sdk-core/protos/api_upstream/temporal/api/history/v1/message.proto +6 -3
- package/sdk-core/protos/api_upstream/temporal/api/protocol/v1/message.proto +1 -1
- package/sdk-core/protos/api_upstream/temporal/api/taskqueue/v1/message.proto +12 -22
- package/sdk-core/protos/api_upstream/temporal/api/update/v1/message.proto +2 -2
- package/sdk-core/protos/api_upstream/temporal/api/workflow/v1/message.proto +2 -0
- package/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/request_response.proto +145 -48
- package/sdk-core/protos/api_upstream/temporal/api/workflowservice/v1/service.proto +19 -8
- package/sdk-core/test-utils/src/lib.rs +29 -7
- package/sdk-core/tests/integ_tests/activity_functions.rs +5 -0
- package/sdk-core/tests/integ_tests/workflow_tests/activities.rs +2 -4
- package/sdk-core/tests/integ_tests/workflow_tests/determinism.rs +0 -1
- package/sdk-core/tests/integ_tests/workflow_tests/local_activities.rs +5 -7
- package/sdk-core/tests/integ_tests/workflow_tests.rs +3 -7
- package/sdk-core/tests/main.rs +16 -24
package/Cargo.lock
CHANGED
|
@@ -33,55 +33,56 @@ dependencies = [
|
|
|
33
33
|
|
|
34
34
|
[[package]]
|
|
35
35
|
name = "aho-corasick"
|
|
36
|
-
version = "0.7.
|
|
36
|
+
version = "0.7.20"
|
|
37
37
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
-
checksum = "
|
|
38
|
+
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
|
|
39
39
|
dependencies = [
|
|
40
40
|
"memchr",
|
|
41
41
|
]
|
|
42
42
|
|
|
43
43
|
[[package]]
|
|
44
44
|
name = "anyhow"
|
|
45
|
-
version = "1.0.
|
|
45
|
+
version = "1.0.70"
|
|
46
46
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
-
checksum = "
|
|
47
|
+
checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
|
|
48
48
|
|
|
49
49
|
[[package]]
|
|
50
50
|
name = "arc-swap"
|
|
51
|
-
version = "1.
|
|
51
|
+
version = "1.6.0"
|
|
52
52
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
-
checksum = "
|
|
53
|
+
checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
|
|
54
54
|
|
|
55
55
|
[[package]]
|
|
56
56
|
name = "async-stream"
|
|
57
|
-
version = "0.3.
|
|
57
|
+
version = "0.3.5"
|
|
58
58
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
-
checksum = "
|
|
59
|
+
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
|
|
60
60
|
dependencies = [
|
|
61
61
|
"async-stream-impl",
|
|
62
62
|
"futures-core",
|
|
63
|
+
"pin-project-lite",
|
|
63
64
|
]
|
|
64
65
|
|
|
65
66
|
[[package]]
|
|
66
67
|
name = "async-stream-impl"
|
|
67
|
-
version = "0.3.
|
|
68
|
+
version = "0.3.5"
|
|
68
69
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "
|
|
70
|
+
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
70
71
|
dependencies = [
|
|
71
72
|
"proc-macro2",
|
|
72
73
|
"quote",
|
|
73
|
-
"syn
|
|
74
|
+
"syn 2.0.14",
|
|
74
75
|
]
|
|
75
76
|
|
|
76
77
|
[[package]]
|
|
77
78
|
name = "async-trait"
|
|
78
|
-
version = "0.1.
|
|
79
|
+
version = "0.1.68"
|
|
79
80
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
-
checksum = "
|
|
81
|
+
checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
|
|
81
82
|
dependencies = [
|
|
82
83
|
"proc-macro2",
|
|
83
84
|
"quote",
|
|
84
|
-
"syn
|
|
85
|
+
"syn 2.0.14",
|
|
85
86
|
]
|
|
86
87
|
|
|
87
88
|
[[package]]
|
|
@@ -92,9 +93,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
|
92
93
|
|
|
93
94
|
[[package]]
|
|
94
95
|
name = "axum"
|
|
95
|
-
version = "0.
|
|
96
|
+
version = "0.6.15"
|
|
96
97
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
-
checksum = "
|
|
98
|
+
checksum = "3b32c5ea3aabaf4deb5f5ced2d688ec0844c881c9e6c696a8b769a05fc691e62"
|
|
98
99
|
dependencies = [
|
|
99
100
|
"async-trait",
|
|
100
101
|
"axum-core",
|
|
@@ -110,20 +111,19 @@ dependencies = [
|
|
|
110
111
|
"mime",
|
|
111
112
|
"percent-encoding",
|
|
112
113
|
"pin-project-lite",
|
|
114
|
+
"rustversion",
|
|
113
115
|
"serde",
|
|
114
116
|
"sync_wrapper",
|
|
115
|
-
"tokio",
|
|
116
117
|
"tower",
|
|
117
|
-
"tower-http",
|
|
118
118
|
"tower-layer",
|
|
119
119
|
"tower-service",
|
|
120
120
|
]
|
|
121
121
|
|
|
122
122
|
[[package]]
|
|
123
123
|
name = "axum-core"
|
|
124
|
-
version = "0.
|
|
124
|
+
version = "0.3.4"
|
|
125
125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
-
checksum = "
|
|
126
|
+
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
|
|
127
127
|
dependencies = [
|
|
128
128
|
"async-trait",
|
|
129
129
|
"bytes",
|
|
@@ -131,6 +131,7 @@ dependencies = [
|
|
|
131
131
|
"http",
|
|
132
132
|
"http-body",
|
|
133
133
|
"mime",
|
|
134
|
+
"rustversion",
|
|
134
135
|
"tower-layer",
|
|
135
136
|
"tower-service",
|
|
136
137
|
]
|
|
@@ -148,9 +149,9 @@ dependencies = [
|
|
|
148
149
|
|
|
149
150
|
[[package]]
|
|
150
151
|
name = "base64"
|
|
151
|
-
version = "0.13.
|
|
152
|
+
version = "0.13.1"
|
|
152
153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
-
checksum = "
|
|
154
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
154
155
|
|
|
155
156
|
[[package]]
|
|
156
157
|
name = "base64"
|
|
@@ -160,9 +161,9 @@ checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
|
|
|
160
161
|
|
|
161
162
|
[[package]]
|
|
162
163
|
name = "base64ct"
|
|
163
|
-
version = "1.0
|
|
164
|
+
version = "1.6.0"
|
|
164
165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
-
checksum = "
|
|
166
|
+
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
|
|
166
167
|
|
|
167
168
|
[[package]]
|
|
168
169
|
name = "bitflags"
|
|
@@ -172,18 +173,18 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
172
173
|
|
|
173
174
|
[[package]]
|
|
174
175
|
name = "block-buffer"
|
|
175
|
-
version = "0.10.
|
|
176
|
+
version = "0.10.4"
|
|
176
177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
-
checksum = "
|
|
178
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
178
179
|
dependencies = [
|
|
179
180
|
"generic-array",
|
|
180
181
|
]
|
|
181
182
|
|
|
182
183
|
[[package]]
|
|
183
184
|
name = "bumpalo"
|
|
184
|
-
version = "3.
|
|
185
|
+
version = "3.12.0"
|
|
185
186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
-
checksum = "
|
|
187
|
+
checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
|
|
187
188
|
|
|
188
189
|
[[package]]
|
|
189
190
|
name = "byteorder"
|
|
@@ -193,15 +194,15 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
|
|
193
194
|
|
|
194
195
|
[[package]]
|
|
195
196
|
name = "bytes"
|
|
196
|
-
version = "1.
|
|
197
|
+
version = "1.4.0"
|
|
197
198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
-
checksum = "
|
|
199
|
+
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
|
|
199
200
|
|
|
200
201
|
[[package]]
|
|
201
202
|
name = "bzip2"
|
|
202
|
-
version = "0.4.
|
|
203
|
+
version = "0.4.4"
|
|
203
204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
-
checksum = "
|
|
205
|
+
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
|
|
205
206
|
dependencies = [
|
|
206
207
|
"bzip2-sys",
|
|
207
208
|
"libc",
|
|
@@ -220,9 +221,9 @@ dependencies = [
|
|
|
220
221
|
|
|
221
222
|
[[package]]
|
|
222
223
|
name = "cc"
|
|
223
|
-
version = "1.0.
|
|
224
|
+
version = "1.0.79"
|
|
224
225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
-
checksum = "
|
|
226
|
+
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
|
|
226
227
|
dependencies = [
|
|
227
228
|
"jobserver",
|
|
228
229
|
]
|
|
@@ -235,9 +236,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
235
236
|
|
|
236
237
|
[[package]]
|
|
237
238
|
name = "chrono"
|
|
238
|
-
version = "0.4.
|
|
239
|
+
version = "0.4.24"
|
|
239
240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
-
checksum = "
|
|
241
|
+
checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
|
|
241
242
|
dependencies = [
|
|
242
243
|
"num-integer",
|
|
243
244
|
"num-traits",
|
|
@@ -277,15 +278,15 @@ dependencies = [
|
|
|
277
278
|
|
|
278
279
|
[[package]]
|
|
279
280
|
name = "core-foundation-sys"
|
|
280
|
-
version = "0.8.
|
|
281
|
+
version = "0.8.4"
|
|
281
282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
-
checksum = "
|
|
283
|
+
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
|
|
283
284
|
|
|
284
285
|
[[package]]
|
|
285
286
|
name = "cpufeatures"
|
|
286
|
-
version = "0.2.
|
|
287
|
+
version = "0.2.6"
|
|
287
288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
-
checksum = "
|
|
289
|
+
checksum = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181"
|
|
289
290
|
dependencies = [
|
|
290
291
|
"libc",
|
|
291
292
|
]
|
|
@@ -315,9 +316,9 @@ dependencies = [
|
|
|
315
316
|
|
|
316
317
|
[[package]]
|
|
317
318
|
name = "crossbeam-channel"
|
|
318
|
-
version = "0.5.
|
|
319
|
+
version = "0.5.8"
|
|
319
320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
-
checksum = "
|
|
321
|
+
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
|
|
321
322
|
dependencies = [
|
|
322
323
|
"cfg-if",
|
|
323
324
|
"crossbeam-utils",
|
|
@@ -325,9 +326,9 @@ dependencies = [
|
|
|
325
326
|
|
|
326
327
|
[[package]]
|
|
327
328
|
name = "crossbeam-deque"
|
|
328
|
-
version = "0.8.
|
|
329
|
+
version = "0.8.3"
|
|
329
330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
-
checksum = "
|
|
331
|
+
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
|
|
331
332
|
dependencies = [
|
|
332
333
|
"cfg-if",
|
|
333
334
|
"crossbeam-epoch",
|
|
@@ -336,22 +337,22 @@ dependencies = [
|
|
|
336
337
|
|
|
337
338
|
[[package]]
|
|
338
339
|
name = "crossbeam-epoch"
|
|
339
|
-
version = "0.9.
|
|
340
|
+
version = "0.9.14"
|
|
340
341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
-
checksum = "
|
|
342
|
+
checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
|
|
342
343
|
dependencies = [
|
|
343
344
|
"autocfg",
|
|
344
345
|
"cfg-if",
|
|
345
346
|
"crossbeam-utils",
|
|
346
|
-
"memoffset 0.
|
|
347
|
+
"memoffset 0.8.0",
|
|
347
348
|
"scopeguard",
|
|
348
349
|
]
|
|
349
350
|
|
|
350
351
|
[[package]]
|
|
351
352
|
name = "crossbeam-queue"
|
|
352
|
-
version = "0.3.
|
|
353
|
+
version = "0.3.8"
|
|
353
354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
-
checksum = "
|
|
355
|
+
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
|
|
355
356
|
dependencies = [
|
|
356
357
|
"cfg-if",
|
|
357
358
|
"crossbeam-utils",
|
|
@@ -359,9 +360,9 @@ dependencies = [
|
|
|
359
360
|
|
|
360
361
|
[[package]]
|
|
361
362
|
name = "crossbeam-utils"
|
|
362
|
-
version = "0.8.
|
|
363
|
+
version = "0.8.15"
|
|
363
364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
-
checksum = "
|
|
365
|
+
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
|
|
365
366
|
dependencies = [
|
|
366
367
|
"cfg-if",
|
|
367
368
|
]
|
|
@@ -378,19 +379,19 @@ dependencies = [
|
|
|
378
379
|
|
|
379
380
|
[[package]]
|
|
380
381
|
name = "ctor"
|
|
381
|
-
version = "0.
|
|
382
|
+
version = "0.2.0"
|
|
382
383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
-
checksum = "
|
|
384
|
+
checksum = "dd4056f63fce3b82d852c3da92b08ea59959890813a7f4ce9c0ff85b10cf301b"
|
|
384
385
|
dependencies = [
|
|
385
386
|
"quote",
|
|
386
|
-
"syn
|
|
387
|
+
"syn 2.0.14",
|
|
387
388
|
]
|
|
388
389
|
|
|
389
390
|
[[package]]
|
|
390
391
|
name = "darling"
|
|
391
|
-
version = "0.14.
|
|
392
|
+
version = "0.14.4"
|
|
392
393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
-
checksum = "
|
|
394
|
+
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
|
|
394
395
|
dependencies = [
|
|
395
396
|
"darling_core",
|
|
396
397
|
"darling_macro",
|
|
@@ -398,27 +399,27 @@ dependencies = [
|
|
|
398
399
|
|
|
399
400
|
[[package]]
|
|
400
401
|
name = "darling_core"
|
|
401
|
-
version = "0.14.
|
|
402
|
+
version = "0.14.4"
|
|
402
403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
-
checksum = "
|
|
404
|
+
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
|
|
404
405
|
dependencies = [
|
|
405
406
|
"fnv",
|
|
406
407
|
"ident_case",
|
|
407
408
|
"proc-macro2",
|
|
408
409
|
"quote",
|
|
409
410
|
"strsim",
|
|
410
|
-
"syn 1.0.
|
|
411
|
+
"syn 1.0.109",
|
|
411
412
|
]
|
|
412
413
|
|
|
413
414
|
[[package]]
|
|
414
415
|
name = "darling_macro"
|
|
415
|
-
version = "0.14.
|
|
416
|
+
version = "0.14.4"
|
|
416
417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
-
checksum = "
|
|
418
|
+
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
|
|
418
419
|
dependencies = [
|
|
419
420
|
"darling_core",
|
|
420
421
|
"quote",
|
|
421
|
-
"syn 1.0.
|
|
422
|
+
"syn 1.0.109",
|
|
422
423
|
]
|
|
423
424
|
|
|
424
425
|
[[package]]
|
|
@@ -452,7 +453,7 @@ dependencies = [
|
|
|
452
453
|
"darling",
|
|
453
454
|
"proc-macro2",
|
|
454
455
|
"quote",
|
|
455
|
-
"syn 1.0.
|
|
456
|
+
"syn 1.0.109",
|
|
456
457
|
]
|
|
457
458
|
|
|
458
459
|
[[package]]
|
|
@@ -462,7 +463,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
462
463
|
checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e"
|
|
463
464
|
dependencies = [
|
|
464
465
|
"derive_builder_core",
|
|
465
|
-
"syn 1.0.
|
|
466
|
+
"syn 1.0.109",
|
|
466
467
|
]
|
|
467
468
|
|
|
468
469
|
[[package]]
|
|
@@ -475,7 +476,7 @@ dependencies = [
|
|
|
475
476
|
"proc-macro2",
|
|
476
477
|
"quote",
|
|
477
478
|
"rustc_version",
|
|
478
|
-
"syn 1.0.
|
|
479
|
+
"syn 1.0.109",
|
|
479
480
|
]
|
|
480
481
|
|
|
481
482
|
[[package]]
|
|
@@ -486,9 +487,9 @@ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
|
486
487
|
|
|
487
488
|
[[package]]
|
|
488
489
|
name = "digest"
|
|
489
|
-
version = "0.10.
|
|
490
|
+
version = "0.10.6"
|
|
490
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
-
checksum = "
|
|
492
|
+
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
|
|
492
493
|
dependencies = [
|
|
493
494
|
"block-buffer",
|
|
494
495
|
"crypto-common",
|
|
@@ -503,59 +504,100 @@ checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
|
|
|
503
504
|
|
|
504
505
|
[[package]]
|
|
505
506
|
name = "either"
|
|
506
|
-
version = "1.8.
|
|
507
|
+
version = "1.8.1"
|
|
507
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
-
checksum = "
|
|
509
|
+
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
|
|
509
510
|
|
|
510
511
|
[[package]]
|
|
511
512
|
name = "encoding_rs"
|
|
512
|
-
version = "0.8.
|
|
513
|
+
version = "0.8.32"
|
|
513
514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
-
checksum = "
|
|
515
|
+
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
|
|
515
516
|
dependencies = [
|
|
516
517
|
"cfg-if",
|
|
517
518
|
]
|
|
518
519
|
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "enum-iterator"
|
|
522
|
+
version = "1.4.0"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "706d9e7cf1c7664859d79cd524e4e53ea2b67ea03c98cc2870c5e539695d597e"
|
|
525
|
+
dependencies = [
|
|
526
|
+
"enum-iterator-derive",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "enum-iterator-derive"
|
|
531
|
+
version = "1.2.0"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "355f93763ef7b0ae1c43c4d8eccc9d5848d84ad1a1d8ce61c421d1ac85a19d05"
|
|
534
|
+
dependencies = [
|
|
535
|
+
"proc-macro2",
|
|
536
|
+
"quote",
|
|
537
|
+
"syn 1.0.109",
|
|
538
|
+
]
|
|
539
|
+
|
|
519
540
|
[[package]]
|
|
520
541
|
name = "enum_dispatch"
|
|
521
|
-
version = "0.3.
|
|
542
|
+
version = "0.3.11"
|
|
522
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
-
checksum = "
|
|
544
|
+
checksum = "11f36e95862220b211a6e2aa5eca09b4fa391b13cd52ceb8035a24bf65a79de2"
|
|
524
545
|
dependencies = [
|
|
525
546
|
"once_cell",
|
|
526
547
|
"proc-macro2",
|
|
527
548
|
"quote",
|
|
528
|
-
"syn 1.0.
|
|
549
|
+
"syn 1.0.109",
|
|
529
550
|
]
|
|
530
551
|
|
|
531
552
|
[[package]]
|
|
532
553
|
name = "erased-serde"
|
|
533
|
-
version = "0.3.
|
|
554
|
+
version = "0.3.25"
|
|
534
555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
-
checksum = "
|
|
556
|
+
checksum = "4f2b0c2380453a92ea8b6c8e5f64ecaafccddde8ceab55ff7a8ac1029f894569"
|
|
536
557
|
dependencies = [
|
|
537
558
|
"serde",
|
|
538
559
|
]
|
|
539
560
|
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "errno"
|
|
563
|
+
version = "0.3.1"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
|
|
566
|
+
dependencies = [
|
|
567
|
+
"errno-dragonfly",
|
|
568
|
+
"libc",
|
|
569
|
+
"windows-sys 0.48.0",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "errno-dragonfly"
|
|
574
|
+
version = "0.1.2"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"cc",
|
|
579
|
+
"libc",
|
|
580
|
+
]
|
|
581
|
+
|
|
540
582
|
[[package]]
|
|
541
583
|
name = "fastrand"
|
|
542
|
-
version = "1.
|
|
584
|
+
version = "1.9.0"
|
|
543
585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
-
checksum = "
|
|
586
|
+
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
|
|
545
587
|
dependencies = [
|
|
546
588
|
"instant",
|
|
547
589
|
]
|
|
548
590
|
|
|
549
591
|
[[package]]
|
|
550
592
|
name = "filetime"
|
|
551
|
-
version = "0.2.
|
|
593
|
+
version = "0.2.21"
|
|
552
594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
-
checksum = "
|
|
595
|
+
checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153"
|
|
554
596
|
dependencies = [
|
|
555
597
|
"cfg-if",
|
|
556
598
|
"libc",
|
|
557
|
-
"redox_syscall",
|
|
558
|
-
"windows-sys 0.
|
|
599
|
+
"redox_syscall 0.2.16",
|
|
600
|
+
"windows-sys 0.48.0",
|
|
559
601
|
]
|
|
560
602
|
|
|
561
603
|
[[package]]
|
|
@@ -566,9 +608,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
566
608
|
|
|
567
609
|
[[package]]
|
|
568
610
|
name = "flate2"
|
|
569
|
-
version = "1.0.
|
|
611
|
+
version = "1.0.25"
|
|
570
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
-
checksum = "
|
|
613
|
+
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
|
|
572
614
|
dependencies = [
|
|
573
615
|
"crc32fast",
|
|
574
616
|
"miniz_oxide",
|
|
@@ -600,15 +642,15 @@ dependencies = [
|
|
|
600
642
|
|
|
601
643
|
[[package]]
|
|
602
644
|
name = "fragile"
|
|
603
|
-
version = "
|
|
645
|
+
version = "2.0.0"
|
|
604
646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
-
checksum = "
|
|
647
|
+
checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
|
|
606
648
|
|
|
607
649
|
[[package]]
|
|
608
650
|
name = "futures"
|
|
609
|
-
version = "0.3.
|
|
651
|
+
version = "0.3.28"
|
|
610
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
-
checksum = "
|
|
653
|
+
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
|
|
612
654
|
dependencies = [
|
|
613
655
|
"futures-channel",
|
|
614
656
|
"futures-core",
|
|
@@ -621,9 +663,9 @@ dependencies = [
|
|
|
621
663
|
|
|
622
664
|
[[package]]
|
|
623
665
|
name = "futures-channel"
|
|
624
|
-
version = "0.3.
|
|
666
|
+
version = "0.3.28"
|
|
625
667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
-
checksum = "
|
|
668
|
+
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
|
|
627
669
|
dependencies = [
|
|
628
670
|
"futures-core",
|
|
629
671
|
"futures-sink",
|
|
@@ -631,15 +673,15 @@ dependencies = [
|
|
|
631
673
|
|
|
632
674
|
[[package]]
|
|
633
675
|
name = "futures-core"
|
|
634
|
-
version = "0.3.
|
|
676
|
+
version = "0.3.28"
|
|
635
677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
-
checksum = "
|
|
678
|
+
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
|
|
637
679
|
|
|
638
680
|
[[package]]
|
|
639
681
|
name = "futures-executor"
|
|
640
|
-
version = "0.3.
|
|
682
|
+
version = "0.3.28"
|
|
641
683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
-
checksum = "
|
|
684
|
+
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
|
|
643
685
|
dependencies = [
|
|
644
686
|
"futures-core",
|
|
645
687
|
"futures-task",
|
|
@@ -648,19 +690,19 @@ dependencies = [
|
|
|
648
690
|
|
|
649
691
|
[[package]]
|
|
650
692
|
name = "futures-io"
|
|
651
|
-
version = "0.3.
|
|
693
|
+
version = "0.3.28"
|
|
652
694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
-
checksum = "
|
|
695
|
+
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
|
|
654
696
|
|
|
655
697
|
[[package]]
|
|
656
698
|
name = "futures-macro"
|
|
657
|
-
version = "0.3.
|
|
699
|
+
version = "0.3.28"
|
|
658
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
-
checksum = "
|
|
701
|
+
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
|
660
702
|
dependencies = [
|
|
661
703
|
"proc-macro2",
|
|
662
704
|
"quote",
|
|
663
|
-
"syn
|
|
705
|
+
"syn 2.0.14",
|
|
664
706
|
]
|
|
665
707
|
|
|
666
708
|
[[package]]
|
|
@@ -676,15 +718,15 @@ dependencies = [
|
|
|
676
718
|
|
|
677
719
|
[[package]]
|
|
678
720
|
name = "futures-sink"
|
|
679
|
-
version = "0.3.
|
|
721
|
+
version = "0.3.28"
|
|
680
722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
-
checksum = "
|
|
723
|
+
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
|
|
682
724
|
|
|
683
725
|
[[package]]
|
|
684
726
|
name = "futures-task"
|
|
685
|
-
version = "0.3.
|
|
727
|
+
version = "0.3.28"
|
|
686
728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
-
checksum = "
|
|
729
|
+
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
|
|
688
730
|
|
|
689
731
|
[[package]]
|
|
690
732
|
name = "futures-timer"
|
|
@@ -694,9 +736,9 @@ checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
|
|
|
694
736
|
|
|
695
737
|
[[package]]
|
|
696
738
|
name = "futures-util"
|
|
697
|
-
version = "0.3.
|
|
739
|
+
version = "0.3.28"
|
|
698
740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
-
checksum = "
|
|
741
|
+
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
|
|
700
742
|
dependencies = [
|
|
701
743
|
"futures-channel",
|
|
702
744
|
"futures-core",
|
|
@@ -712,9 +754,9 @@ dependencies = [
|
|
|
712
754
|
|
|
713
755
|
[[package]]
|
|
714
756
|
name = "generic-array"
|
|
715
|
-
version = "0.14.
|
|
757
|
+
version = "0.14.7"
|
|
716
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
-
checksum = "
|
|
759
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
718
760
|
dependencies = [
|
|
719
761
|
"typenum",
|
|
720
762
|
"version_check",
|
|
@@ -722,9 +764,9 @@ dependencies = [
|
|
|
722
764
|
|
|
723
765
|
[[package]]
|
|
724
766
|
name = "getrandom"
|
|
725
|
-
version = "0.2.
|
|
767
|
+
version = "0.2.9"
|
|
726
768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
-
checksum = "
|
|
769
|
+
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
|
|
728
770
|
dependencies = [
|
|
729
771
|
"cfg-if",
|
|
730
772
|
"libc",
|
|
@@ -733,20 +775,20 @@ dependencies = [
|
|
|
733
775
|
|
|
734
776
|
[[package]]
|
|
735
777
|
name = "ghost"
|
|
736
|
-
version = "0.1.
|
|
778
|
+
version = "0.1.9"
|
|
737
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
-
checksum = "
|
|
780
|
+
checksum = "e77ac7b51b8e6313251737fcef4b1c01a2ea102bde68415b62c0ee9268fec357"
|
|
739
781
|
dependencies = [
|
|
740
782
|
"proc-macro2",
|
|
741
783
|
"quote",
|
|
742
|
-
"syn
|
|
784
|
+
"syn 2.0.14",
|
|
743
785
|
]
|
|
744
786
|
|
|
745
787
|
[[package]]
|
|
746
788
|
name = "governor"
|
|
747
|
-
version = "0.5.
|
|
789
|
+
version = "0.5.1"
|
|
748
790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
-
checksum = "
|
|
791
|
+
checksum = "c390a940a5d157878dd057c78680a33ce3415bcd05b4799509ea44210914b4d5"
|
|
750
792
|
dependencies = [
|
|
751
793
|
"cfg-if",
|
|
752
794
|
"dashmap",
|
|
@@ -762,9 +804,9 @@ dependencies = [
|
|
|
762
804
|
|
|
763
805
|
[[package]]
|
|
764
806
|
name = "h2"
|
|
765
|
-
version = "0.3.
|
|
807
|
+
version = "0.3.16"
|
|
766
808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
-
checksum = "
|
|
809
|
+
checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d"
|
|
768
810
|
dependencies = [
|
|
769
811
|
"bytes",
|
|
770
812
|
"fnv",
|
|
@@ -796,19 +838,25 @@ dependencies = [
|
|
|
796
838
|
|
|
797
839
|
[[package]]
|
|
798
840
|
name = "heck"
|
|
799
|
-
version = "0.4.
|
|
841
|
+
version = "0.4.1"
|
|
800
842
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
-
checksum = "
|
|
843
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
802
844
|
|
|
803
845
|
[[package]]
|
|
804
846
|
name = "hermit-abi"
|
|
805
|
-
version = "0.
|
|
847
|
+
version = "0.2.6"
|
|
806
848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
-
checksum = "
|
|
849
|
+
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
|
|
808
850
|
dependencies = [
|
|
809
851
|
"libc",
|
|
810
852
|
]
|
|
811
853
|
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "hermit-abi"
|
|
856
|
+
version = "0.3.1"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
|
|
859
|
+
|
|
812
860
|
[[package]]
|
|
813
861
|
name = "hmac"
|
|
814
862
|
version = "0.12.1"
|
|
@@ -820,9 +868,9 @@ dependencies = [
|
|
|
820
868
|
|
|
821
869
|
[[package]]
|
|
822
870
|
name = "http"
|
|
823
|
-
version = "0.2.
|
|
871
|
+
version = "0.2.9"
|
|
824
872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
-
checksum = "
|
|
873
|
+
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
|
|
826
874
|
dependencies = [
|
|
827
875
|
"bytes",
|
|
828
876
|
"fnv",
|
|
@@ -840,12 +888,6 @@ dependencies = [
|
|
|
840
888
|
"pin-project-lite",
|
|
841
889
|
]
|
|
842
890
|
|
|
843
|
-
[[package]]
|
|
844
|
-
name = "http-range-header"
|
|
845
|
-
version = "0.3.0"
|
|
846
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
-
checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
|
|
848
|
-
|
|
849
891
|
[[package]]
|
|
850
892
|
name = "httparse"
|
|
851
893
|
version = "1.8.0"
|
|
@@ -860,9 +902,9 @@ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
|
|
860
902
|
|
|
861
903
|
[[package]]
|
|
862
904
|
name = "hyper"
|
|
863
|
-
version = "0.14.
|
|
905
|
+
version = "0.14.25"
|
|
864
906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
-
checksum = "
|
|
907
|
+
checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899"
|
|
866
908
|
dependencies = [
|
|
867
909
|
"bytes",
|
|
868
910
|
"futures-channel",
|
|
@@ -884,9 +926,9 @@ dependencies = [
|
|
|
884
926
|
|
|
885
927
|
[[package]]
|
|
886
928
|
name = "hyper-rustls"
|
|
887
|
-
version = "0.23.
|
|
929
|
+
version = "0.23.2"
|
|
888
930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
-
checksum = "
|
|
931
|
+
checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
|
|
890
932
|
dependencies = [
|
|
891
933
|
"http",
|
|
892
934
|
"hyper",
|
|
@@ -925,9 +967,9 @@ dependencies = [
|
|
|
925
967
|
|
|
926
968
|
[[package]]
|
|
927
969
|
name = "indexmap"
|
|
928
|
-
version = "1.9.
|
|
970
|
+
version = "1.9.3"
|
|
929
971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
-
checksum = "
|
|
972
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
931
973
|
dependencies = [
|
|
932
974
|
"autocfg",
|
|
933
975
|
"hashbrown 0.12.3",
|
|
@@ -944,19 +986,30 @@ dependencies = [
|
|
|
944
986
|
|
|
945
987
|
[[package]]
|
|
946
988
|
name = "inventory"
|
|
947
|
-
version = "0.3.
|
|
989
|
+
version = "0.3.5"
|
|
948
990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
-
checksum = "
|
|
991
|
+
checksum = "7741301a6d6a9b28ce77c0fb77a4eb116b6bc8f3bef09923f7743d059c4157d3"
|
|
950
992
|
dependencies = [
|
|
951
993
|
"ctor",
|
|
952
994
|
"ghost",
|
|
953
995
|
]
|
|
954
996
|
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "io-lifetimes"
|
|
999
|
+
version = "1.0.10"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
|
|
1002
|
+
dependencies = [
|
|
1003
|
+
"hermit-abi 0.3.1",
|
|
1004
|
+
"libc",
|
|
1005
|
+
"windows-sys 0.48.0",
|
|
1006
|
+
]
|
|
1007
|
+
|
|
955
1008
|
[[package]]
|
|
956
1009
|
name = "ipnet"
|
|
957
|
-
version = "2.
|
|
1010
|
+
version = "2.7.2"
|
|
958
1011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
-
checksum = "
|
|
1012
|
+
checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
|
|
960
1013
|
|
|
961
1014
|
[[package]]
|
|
962
1015
|
name = "itertools"
|
|
@@ -969,24 +1022,24 @@ dependencies = [
|
|
|
969
1022
|
|
|
970
1023
|
[[package]]
|
|
971
1024
|
name = "itoa"
|
|
972
|
-
version = "1.0.
|
|
1025
|
+
version = "1.0.6"
|
|
973
1026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
-
checksum = "
|
|
1027
|
+
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
|
975
1028
|
|
|
976
1029
|
[[package]]
|
|
977
1030
|
name = "jobserver"
|
|
978
|
-
version = "0.1.
|
|
1031
|
+
version = "0.1.26"
|
|
979
1032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
-
checksum = "
|
|
1033
|
+
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
|
|
981
1034
|
dependencies = [
|
|
982
1035
|
"libc",
|
|
983
1036
|
]
|
|
984
1037
|
|
|
985
1038
|
[[package]]
|
|
986
1039
|
name = "js-sys"
|
|
987
|
-
version = "0.3.
|
|
1040
|
+
version = "0.3.61"
|
|
988
1041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
-
checksum = "
|
|
1042
|
+
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
|
|
990
1043
|
dependencies = [
|
|
991
1044
|
"wasm-bindgen",
|
|
992
1045
|
]
|
|
@@ -999,9 +1052,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
999
1052
|
|
|
1000
1053
|
[[package]]
|
|
1001
1054
|
name = "libc"
|
|
1002
|
-
version = "0.2.
|
|
1055
|
+
version = "0.2.141"
|
|
1003
1056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
-
checksum = "
|
|
1057
|
+
checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5"
|
|
1005
1058
|
|
|
1006
1059
|
[[package]]
|
|
1007
1060
|
name = "libloading"
|
|
@@ -1013,6 +1066,12 @@ dependencies = [
|
|
|
1013
1066
|
"winapi",
|
|
1014
1067
|
]
|
|
1015
1068
|
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "linux-raw-sys"
|
|
1071
|
+
version = "0.3.1"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f"
|
|
1074
|
+
|
|
1016
1075
|
[[package]]
|
|
1017
1076
|
name = "lock_api"
|
|
1018
1077
|
version = "0.4.9"
|
|
@@ -1061,9 +1120,9 @@ dependencies = [
|
|
|
1061
1120
|
|
|
1062
1121
|
[[package]]
|
|
1063
1122
|
name = "matchit"
|
|
1064
|
-
version = "0.
|
|
1123
|
+
version = "0.7.0"
|
|
1065
1124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
-
checksum = "
|
|
1125
|
+
checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
|
|
1067
1126
|
|
|
1068
1127
|
[[package]]
|
|
1069
1128
|
name = "memchr"
|
|
@@ -1073,54 +1132,54 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
|
1073
1132
|
|
|
1074
1133
|
[[package]]
|
|
1075
1134
|
name = "memoffset"
|
|
1076
|
-
version = "0.
|
|
1135
|
+
version = "0.7.1"
|
|
1077
1136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
-
checksum = "
|
|
1137
|
+
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
|
|
1079
1138
|
dependencies = [
|
|
1080
1139
|
"autocfg",
|
|
1081
1140
|
]
|
|
1082
1141
|
|
|
1083
1142
|
[[package]]
|
|
1084
1143
|
name = "memoffset"
|
|
1085
|
-
version = "0.
|
|
1144
|
+
version = "0.8.0"
|
|
1086
1145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
-
checksum = "
|
|
1146
|
+
checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
|
|
1088
1147
|
dependencies = [
|
|
1089
1148
|
"autocfg",
|
|
1090
1149
|
]
|
|
1091
1150
|
|
|
1092
1151
|
[[package]]
|
|
1093
1152
|
name = "mime"
|
|
1094
|
-
version = "0.3.
|
|
1153
|
+
version = "0.3.17"
|
|
1095
1154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
-
checksum = "
|
|
1155
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1097
1156
|
|
|
1098
1157
|
[[package]]
|
|
1099
1158
|
name = "miniz_oxide"
|
|
1100
|
-
version = "0.
|
|
1159
|
+
version = "0.6.2"
|
|
1101
1160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
-
checksum = "
|
|
1161
|
+
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
|
|
1103
1162
|
dependencies = [
|
|
1104
1163
|
"adler",
|
|
1105
1164
|
]
|
|
1106
1165
|
|
|
1107
1166
|
[[package]]
|
|
1108
1167
|
name = "mio"
|
|
1109
|
-
version = "0.8.
|
|
1168
|
+
version = "0.8.6"
|
|
1110
1169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
-
checksum = "
|
|
1170
|
+
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
|
|
1112
1171
|
dependencies = [
|
|
1113
1172
|
"libc",
|
|
1114
1173
|
"log",
|
|
1115
1174
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1116
|
-
"windows-sys 0.
|
|
1175
|
+
"windows-sys 0.45.0",
|
|
1117
1176
|
]
|
|
1118
1177
|
|
|
1119
1178
|
[[package]]
|
|
1120
1179
|
name = "mockall"
|
|
1121
|
-
version = "0.11.
|
|
1180
|
+
version = "0.11.4"
|
|
1122
1181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
-
checksum = "
|
|
1182
|
+
checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96"
|
|
1124
1183
|
dependencies = [
|
|
1125
1184
|
"cfg-if",
|
|
1126
1185
|
"downcast",
|
|
@@ -1133,14 +1192,14 @@ dependencies = [
|
|
|
1133
1192
|
|
|
1134
1193
|
[[package]]
|
|
1135
1194
|
name = "mockall_derive"
|
|
1136
|
-
version = "0.11.
|
|
1195
|
+
version = "0.11.4"
|
|
1137
1196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
-
checksum = "
|
|
1197
|
+
checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb"
|
|
1139
1198
|
dependencies = [
|
|
1140
1199
|
"cfg-if",
|
|
1141
1200
|
"proc-macro2",
|
|
1142
1201
|
"quote",
|
|
1143
|
-
"syn 1.0.
|
|
1202
|
+
"syn 1.0.109",
|
|
1144
1203
|
]
|
|
1145
1204
|
|
|
1146
1205
|
[[package]]
|
|
@@ -1175,7 +1234,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1175
1234
|
checksum = "b7288eac8b54af7913c60e0eb0e2a7683020dffa342ab3fd15e28f035ba897cf"
|
|
1176
1235
|
dependencies = [
|
|
1177
1236
|
"quote",
|
|
1178
|
-
"syn 1.0.
|
|
1237
|
+
"syn 1.0.109",
|
|
1179
1238
|
"syn-mid",
|
|
1180
1239
|
]
|
|
1181
1240
|
|
|
@@ -1192,9 +1251,9 @@ dependencies = [
|
|
|
1192
1251
|
|
|
1193
1252
|
[[package]]
|
|
1194
1253
|
name = "nix"
|
|
1195
|
-
version = "0.26.
|
|
1254
|
+
version = "0.26.2"
|
|
1196
1255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
-
checksum = "
|
|
1256
|
+
checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
|
|
1198
1257
|
dependencies = [
|
|
1199
1258
|
"bitflags",
|
|
1200
1259
|
"cfg-if",
|
|
@@ -1253,28 +1312,19 @@ dependencies = [
|
|
|
1253
1312
|
|
|
1254
1313
|
[[package]]
|
|
1255
1314
|
name = "num_cpus"
|
|
1256
|
-
version = "1.
|
|
1257
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
-
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
|
|
1259
|
-
dependencies = [
|
|
1260
|
-
"hermit-abi",
|
|
1261
|
-
"libc",
|
|
1262
|
-
]
|
|
1263
|
-
|
|
1264
|
-
[[package]]
|
|
1265
|
-
name = "num_threads"
|
|
1266
|
-
version = "0.1.6"
|
|
1315
|
+
version = "1.15.0"
|
|
1267
1316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
-
checksum = "
|
|
1317
|
+
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
|
|
1269
1318
|
dependencies = [
|
|
1319
|
+
"hermit-abi 0.2.6",
|
|
1270
1320
|
"libc",
|
|
1271
1321
|
]
|
|
1272
1322
|
|
|
1273
1323
|
[[package]]
|
|
1274
1324
|
name = "once_cell"
|
|
1275
|
-
version = "1.
|
|
1325
|
+
version = "1.17.1"
|
|
1276
1326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
|
-
checksum = "
|
|
1327
|
+
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
|
|
1278
1328
|
|
|
1279
1329
|
[[package]]
|
|
1280
1330
|
name = "opaque-debug"
|
|
@@ -1397,15 +1447,15 @@ dependencies = [
|
|
|
1397
1447
|
|
|
1398
1448
|
[[package]]
|
|
1399
1449
|
name = "parking_lot_core"
|
|
1400
|
-
version = "0.9.
|
|
1450
|
+
version = "0.9.7"
|
|
1401
1451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
-
checksum = "
|
|
1452
|
+
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
|
|
1403
1453
|
dependencies = [
|
|
1404
1454
|
"cfg-if",
|
|
1405
1455
|
"libc",
|
|
1406
|
-
"redox_syscall",
|
|
1456
|
+
"redox_syscall 0.2.16",
|
|
1407
1457
|
"smallvec",
|
|
1408
|
-
"windows-sys 0.
|
|
1458
|
+
"windows-sys 0.45.0",
|
|
1409
1459
|
]
|
|
1410
1460
|
|
|
1411
1461
|
[[package]]
|
|
@@ -1439,9 +1489,9 @@ checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
|
|
|
1439
1489
|
|
|
1440
1490
|
[[package]]
|
|
1441
1491
|
name = "petgraph"
|
|
1442
|
-
version = "0.6.
|
|
1492
|
+
version = "0.6.3"
|
|
1443
1493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
-
checksum = "
|
|
1494
|
+
checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4"
|
|
1445
1495
|
dependencies = [
|
|
1446
1496
|
"fixedbitset",
|
|
1447
1497
|
"indexmap",
|
|
@@ -1464,7 +1514,7 @@ checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
|
|
|
1464
1514
|
dependencies = [
|
|
1465
1515
|
"proc-macro2",
|
|
1466
1516
|
"quote",
|
|
1467
|
-
"syn 1.0.
|
|
1517
|
+
"syn 1.0.109",
|
|
1468
1518
|
]
|
|
1469
1519
|
|
|
1470
1520
|
[[package]]
|
|
@@ -1481,21 +1531,21 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1481
1531
|
|
|
1482
1532
|
[[package]]
|
|
1483
1533
|
name = "pkg-config"
|
|
1484
|
-
version = "0.3.
|
|
1534
|
+
version = "0.3.26"
|
|
1485
1535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
-
checksum = "
|
|
1536
|
+
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
|
1487
1537
|
|
|
1488
1538
|
[[package]]
|
|
1489
1539
|
name = "ppv-lite86"
|
|
1490
|
-
version = "0.2.
|
|
1540
|
+
version = "0.2.17"
|
|
1491
1541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
-
checksum = "
|
|
1542
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1493
1543
|
|
|
1494
1544
|
[[package]]
|
|
1495
1545
|
name = "predicates"
|
|
1496
|
-
version = "2.1.
|
|
1546
|
+
version = "2.1.5"
|
|
1497
1547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
-
checksum = "
|
|
1548
|
+
checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd"
|
|
1499
1549
|
dependencies = [
|
|
1500
1550
|
"difflib",
|
|
1501
1551
|
"float-cmp",
|
|
@@ -1507,15 +1557,15 @@ dependencies = [
|
|
|
1507
1557
|
|
|
1508
1558
|
[[package]]
|
|
1509
1559
|
name = "predicates-core"
|
|
1510
|
-
version = "1.0.
|
|
1560
|
+
version = "1.0.6"
|
|
1511
1561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1512
|
-
checksum = "
|
|
1562
|
+
checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
|
|
1513
1563
|
|
|
1514
1564
|
[[package]]
|
|
1515
1565
|
name = "predicates-tree"
|
|
1516
|
-
version = "1.0.
|
|
1566
|
+
version = "1.0.9"
|
|
1517
1567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
-
checksum = "
|
|
1568
|
+
checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf"
|
|
1519
1569
|
dependencies = [
|
|
1520
1570
|
"predicates-core",
|
|
1521
1571
|
"termtree",
|
|
@@ -1523,28 +1573,28 @@ dependencies = [
|
|
|
1523
1573
|
|
|
1524
1574
|
[[package]]
|
|
1525
1575
|
name = "prettyplease"
|
|
1526
|
-
version = "0.1.
|
|
1576
|
+
version = "0.1.25"
|
|
1527
1577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
-
checksum = "
|
|
1578
|
+
checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86"
|
|
1529
1579
|
dependencies = [
|
|
1530
1580
|
"proc-macro2",
|
|
1531
|
-
"syn 1.0.
|
|
1581
|
+
"syn 1.0.109",
|
|
1532
1582
|
]
|
|
1533
1583
|
|
|
1534
1584
|
[[package]]
|
|
1535
1585
|
name = "proc-macro2"
|
|
1536
|
-
version = "1.0.
|
|
1586
|
+
version = "1.0.56"
|
|
1537
1587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1538
|
-
checksum = "
|
|
1588
|
+
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
|
|
1539
1589
|
dependencies = [
|
|
1540
1590
|
"unicode-ident",
|
|
1541
1591
|
]
|
|
1542
1592
|
|
|
1543
1593
|
[[package]]
|
|
1544
1594
|
name = "prometheus"
|
|
1545
|
-
version = "0.13.
|
|
1595
|
+
version = "0.13.3"
|
|
1546
1596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
-
checksum = "
|
|
1597
|
+
checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c"
|
|
1548
1598
|
dependencies = [
|
|
1549
1599
|
"cfg-if",
|
|
1550
1600
|
"fnv",
|
|
@@ -1557,9 +1607,9 @@ dependencies = [
|
|
|
1557
1607
|
|
|
1558
1608
|
[[package]]
|
|
1559
1609
|
name = "prost"
|
|
1560
|
-
version = "0.11.
|
|
1610
|
+
version = "0.11.9"
|
|
1561
1611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
-
checksum = "
|
|
1612
|
+
checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
|
|
1563
1613
|
dependencies = [
|
|
1564
1614
|
"bytes",
|
|
1565
1615
|
"prost-derive",
|
|
@@ -1567,9 +1617,9 @@ dependencies = [
|
|
|
1567
1617
|
|
|
1568
1618
|
[[package]]
|
|
1569
1619
|
name = "prost-build"
|
|
1570
|
-
version = "0.11.
|
|
1620
|
+
version = "0.11.9"
|
|
1571
1621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
-
checksum = "
|
|
1622
|
+
checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270"
|
|
1573
1623
|
dependencies = [
|
|
1574
1624
|
"bytes",
|
|
1575
1625
|
"heck",
|
|
@@ -1582,39 +1632,38 @@ dependencies = [
|
|
|
1582
1632
|
"prost",
|
|
1583
1633
|
"prost-types",
|
|
1584
1634
|
"regex",
|
|
1585
|
-
"syn 1.0.
|
|
1635
|
+
"syn 1.0.109",
|
|
1586
1636
|
"tempfile",
|
|
1587
1637
|
"which",
|
|
1588
1638
|
]
|
|
1589
1639
|
|
|
1590
1640
|
[[package]]
|
|
1591
1641
|
name = "prost-derive"
|
|
1592
|
-
version = "0.11.
|
|
1642
|
+
version = "0.11.9"
|
|
1593
1643
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
-
checksum = "
|
|
1644
|
+
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
|
|
1595
1645
|
dependencies = [
|
|
1596
1646
|
"anyhow",
|
|
1597
1647
|
"itertools",
|
|
1598
1648
|
"proc-macro2",
|
|
1599
1649
|
"quote",
|
|
1600
|
-
"syn 1.0.
|
|
1650
|
+
"syn 1.0.109",
|
|
1601
1651
|
]
|
|
1602
1652
|
|
|
1603
1653
|
[[package]]
|
|
1604
1654
|
name = "prost-types"
|
|
1605
|
-
version = "0.11.
|
|
1655
|
+
version = "0.11.9"
|
|
1606
1656
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
-
checksum = "
|
|
1657
|
+
checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
|
|
1608
1658
|
dependencies = [
|
|
1609
|
-
"bytes",
|
|
1610
1659
|
"prost",
|
|
1611
1660
|
]
|
|
1612
1661
|
|
|
1613
1662
|
[[package]]
|
|
1614
1663
|
name = "prost-wkt"
|
|
1615
|
-
version = "0.4.
|
|
1664
|
+
version = "0.4.1"
|
|
1616
1665
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
-
checksum = "
|
|
1666
|
+
checksum = "9f82196110c6376d25bf155f6d3a55835151d4f8ad470f203d46ee04c040d2fb"
|
|
1618
1667
|
dependencies = [
|
|
1619
1668
|
"chrono",
|
|
1620
1669
|
"inventory",
|
|
@@ -1627,9 +1676,9 @@ dependencies = [
|
|
|
1627
1676
|
|
|
1628
1677
|
[[package]]
|
|
1629
1678
|
name = "prost-wkt-build"
|
|
1630
|
-
version = "0.4.
|
|
1679
|
+
version = "0.4.1"
|
|
1631
1680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
-
checksum = "
|
|
1681
|
+
checksum = "8958d27269aec14c99c134ebb2796ab4287478bde21453d76aa43d1683265759"
|
|
1633
1682
|
dependencies = [
|
|
1634
1683
|
"heck",
|
|
1635
1684
|
"prost",
|
|
@@ -1640,9 +1689,9 @@ dependencies = [
|
|
|
1640
1689
|
|
|
1641
1690
|
[[package]]
|
|
1642
1691
|
name = "prost-wkt-types"
|
|
1643
|
-
version = "0.4.
|
|
1692
|
+
version = "0.4.1"
|
|
1644
1693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
-
checksum = "
|
|
1694
|
+
checksum = "0c174ca3ca389b401547913b2a92aa9c08d849499138f962a771aedc9d77b2ce"
|
|
1646
1695
|
dependencies = [
|
|
1647
1696
|
"chrono",
|
|
1648
1697
|
"prost",
|
|
@@ -1719,9 +1768,9 @@ dependencies = [
|
|
|
1719
1768
|
|
|
1720
1769
|
[[package]]
|
|
1721
1770
|
name = "raw-cpuid"
|
|
1722
|
-
version = "10.
|
|
1771
|
+
version = "10.7.0"
|
|
1723
1772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
-
checksum = "
|
|
1773
|
+
checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332"
|
|
1725
1774
|
dependencies = [
|
|
1726
1775
|
"bitflags",
|
|
1727
1776
|
]
|
|
@@ -1735,11 +1784,20 @@ dependencies = [
|
|
|
1735
1784
|
"bitflags",
|
|
1736
1785
|
]
|
|
1737
1786
|
|
|
1787
|
+
[[package]]
|
|
1788
|
+
name = "redox_syscall"
|
|
1789
|
+
version = "0.3.5"
|
|
1790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
+
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
|
1792
|
+
dependencies = [
|
|
1793
|
+
"bitflags",
|
|
1794
|
+
]
|
|
1795
|
+
|
|
1738
1796
|
[[package]]
|
|
1739
1797
|
name = "regex"
|
|
1740
|
-
version = "1.
|
|
1798
|
+
version = "1.7.3"
|
|
1741
1799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
|
-
checksum = "
|
|
1800
|
+
checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
|
|
1743
1801
|
dependencies = [
|
|
1744
1802
|
"aho-corasick",
|
|
1745
1803
|
"memchr",
|
|
@@ -1757,26 +1815,17 @@ dependencies = [
|
|
|
1757
1815
|
|
|
1758
1816
|
[[package]]
|
|
1759
1817
|
name = "regex-syntax"
|
|
1760
|
-
version = "0.6.
|
|
1761
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
-
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
|
|
1763
|
-
|
|
1764
|
-
[[package]]
|
|
1765
|
-
name = "remove_dir_all"
|
|
1766
|
-
version = "0.5.3"
|
|
1818
|
+
version = "0.6.29"
|
|
1767
1819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
-
checksum = "
|
|
1769
|
-
dependencies = [
|
|
1770
|
-
"winapi",
|
|
1771
|
-
]
|
|
1820
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
1772
1821
|
|
|
1773
1822
|
[[package]]
|
|
1774
1823
|
name = "reqwest"
|
|
1775
|
-
version = "0.11.
|
|
1824
|
+
version = "0.11.16"
|
|
1776
1825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
-
checksum = "
|
|
1826
|
+
checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254"
|
|
1778
1827
|
dependencies = [
|
|
1779
|
-
"base64 0.
|
|
1828
|
+
"base64 0.21.0",
|
|
1780
1829
|
"bytes",
|
|
1781
1830
|
"encoding_rs",
|
|
1782
1831
|
"futures-core",
|
|
@@ -1805,6 +1854,7 @@ dependencies = [
|
|
|
1805
1854
|
"url",
|
|
1806
1855
|
"wasm-bindgen",
|
|
1807
1856
|
"wasm-bindgen-futures",
|
|
1857
|
+
"wasm-streams",
|
|
1808
1858
|
"web-sys",
|
|
1809
1859
|
"webpki-roots",
|
|
1810
1860
|
"winreg",
|
|
@@ -1827,9 +1877,9 @@ dependencies = [
|
|
|
1827
1877
|
|
|
1828
1878
|
[[package]]
|
|
1829
1879
|
name = "ringbuf"
|
|
1830
|
-
version = "0.3.
|
|
1880
|
+
version = "0.3.3"
|
|
1831
1881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
-
checksum = "
|
|
1882
|
+
checksum = "79abed428d1fd2a128201cec72c5f6938e2da607c6f3745f769fabea399d950a"
|
|
1833
1883
|
dependencies = [
|
|
1834
1884
|
"crossbeam-utils",
|
|
1835
1885
|
]
|
|
@@ -1840,7 +1890,7 @@ version = "0.4.0"
|
|
|
1840
1890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
1891
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
1842
1892
|
dependencies = [
|
|
1843
|
-
"semver 1.0.
|
|
1893
|
+
"semver 1.0.17",
|
|
1844
1894
|
]
|
|
1845
1895
|
|
|
1846
1896
|
[[package]]
|
|
@@ -1859,18 +1909,32 @@ dependencies = [
|
|
|
1859
1909
|
"proc-macro2",
|
|
1860
1910
|
"quote",
|
|
1861
1911
|
"rustfsm_trait",
|
|
1862
|
-
"syn 1.0.
|
|
1912
|
+
"syn 1.0.109",
|
|
1863
1913
|
]
|
|
1864
1914
|
|
|
1865
1915
|
[[package]]
|
|
1866
1916
|
name = "rustfsm_trait"
|
|
1867
1917
|
version = "0.1.0"
|
|
1868
1918
|
|
|
1919
|
+
[[package]]
|
|
1920
|
+
name = "rustix"
|
|
1921
|
+
version = "0.37.11"
|
|
1922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1923
|
+
checksum = "85597d61f83914ddeba6a47b3b8ffe7365107221c2e557ed94426489fefb5f77"
|
|
1924
|
+
dependencies = [
|
|
1925
|
+
"bitflags",
|
|
1926
|
+
"errno",
|
|
1927
|
+
"io-lifetimes",
|
|
1928
|
+
"libc",
|
|
1929
|
+
"linux-raw-sys",
|
|
1930
|
+
"windows-sys 0.48.0",
|
|
1931
|
+
]
|
|
1932
|
+
|
|
1869
1933
|
[[package]]
|
|
1870
1934
|
name = "rustls"
|
|
1871
|
-
version = "0.20.
|
|
1935
|
+
version = "0.20.8"
|
|
1872
1936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
-
checksum = "
|
|
1937
|
+
checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
|
|
1874
1938
|
dependencies = [
|
|
1875
1939
|
"log",
|
|
1876
1940
|
"ring",
|
|
@@ -1892,27 +1956,32 @@ dependencies = [
|
|
|
1892
1956
|
|
|
1893
1957
|
[[package]]
|
|
1894
1958
|
name = "rustls-pemfile"
|
|
1895
|
-
version = "1.0.
|
|
1959
|
+
version = "1.0.2"
|
|
1896
1960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
-
checksum = "
|
|
1961
|
+
checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
|
|
1898
1962
|
dependencies = [
|
|
1899
|
-
"base64 0.
|
|
1963
|
+
"base64 0.21.0",
|
|
1900
1964
|
]
|
|
1901
1965
|
|
|
1966
|
+
[[package]]
|
|
1967
|
+
name = "rustversion"
|
|
1968
|
+
version = "1.0.12"
|
|
1969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
+
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
|
|
1971
|
+
|
|
1902
1972
|
[[package]]
|
|
1903
1973
|
name = "ryu"
|
|
1904
|
-
version = "1.0.
|
|
1974
|
+
version = "1.0.13"
|
|
1905
1975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1906
|
-
checksum = "
|
|
1976
|
+
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
|
|
1907
1977
|
|
|
1908
1978
|
[[package]]
|
|
1909
1979
|
name = "schannel"
|
|
1910
|
-
version = "0.1.
|
|
1980
|
+
version = "0.1.21"
|
|
1911
1981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1912
|
-
checksum = "
|
|
1982
|
+
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
|
|
1913
1983
|
dependencies = [
|
|
1914
|
-
"
|
|
1915
|
-
"windows-sys 0.36.1",
|
|
1984
|
+
"windows-sys 0.42.0",
|
|
1916
1985
|
]
|
|
1917
1986
|
|
|
1918
1987
|
[[package]]
|
|
@@ -1933,9 +2002,9 @@ dependencies = [
|
|
|
1933
2002
|
|
|
1934
2003
|
[[package]]
|
|
1935
2004
|
name = "security-framework"
|
|
1936
|
-
version = "2.
|
|
2005
|
+
version = "2.8.2"
|
|
1937
2006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
-
checksum = "
|
|
2007
|
+
checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
|
|
1939
2008
|
dependencies = [
|
|
1940
2009
|
"bitflags",
|
|
1941
2010
|
"core-foundation",
|
|
@@ -1946,9 +2015,9 @@ dependencies = [
|
|
|
1946
2015
|
|
|
1947
2016
|
[[package]]
|
|
1948
2017
|
name = "security-framework-sys"
|
|
1949
|
-
version = "2.
|
|
2018
|
+
version = "2.8.0"
|
|
1950
2019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1951
|
-
checksum = "
|
|
2020
|
+
checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
|
|
1952
2021
|
dependencies = [
|
|
1953
2022
|
"core-foundation-sys",
|
|
1954
2023
|
"libc",
|
|
@@ -1965,9 +2034,9 @@ dependencies = [
|
|
|
1965
2034
|
|
|
1966
2035
|
[[package]]
|
|
1967
2036
|
name = "semver"
|
|
1968
|
-
version = "1.0.
|
|
2037
|
+
version = "1.0.17"
|
|
1969
2038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
-
checksum = "
|
|
2039
|
+
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
|
1971
2040
|
|
|
1972
2041
|
[[package]]
|
|
1973
2042
|
name = "semver-parser"
|
|
@@ -1977,29 +2046,29 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
|
1977
2046
|
|
|
1978
2047
|
[[package]]
|
|
1979
2048
|
name = "serde"
|
|
1980
|
-
version = "1.0.
|
|
2049
|
+
version = "1.0.160"
|
|
1981
2050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
-
checksum = "
|
|
2051
|
+
checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c"
|
|
1983
2052
|
dependencies = [
|
|
1984
2053
|
"serde_derive",
|
|
1985
2054
|
]
|
|
1986
2055
|
|
|
1987
2056
|
[[package]]
|
|
1988
2057
|
name = "serde_derive"
|
|
1989
|
-
version = "1.0.
|
|
2058
|
+
version = "1.0.160"
|
|
1990
2059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
-
checksum = "
|
|
2060
|
+
checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df"
|
|
1992
2061
|
dependencies = [
|
|
1993
2062
|
"proc-macro2",
|
|
1994
2063
|
"quote",
|
|
1995
|
-
"syn
|
|
2064
|
+
"syn 2.0.14",
|
|
1996
2065
|
]
|
|
1997
2066
|
|
|
1998
2067
|
[[package]]
|
|
1999
2068
|
name = "serde_json"
|
|
2000
|
-
version = "1.0.
|
|
2069
|
+
version = "1.0.95"
|
|
2001
2070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
-
checksum = "
|
|
2071
|
+
checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744"
|
|
2003
2072
|
dependencies = [
|
|
2004
2073
|
"itoa",
|
|
2005
2074
|
"ryu",
|
|
@@ -2051,9 +2120,9 @@ dependencies = [
|
|
|
2051
2120
|
|
|
2052
2121
|
[[package]]
|
|
2053
2122
|
name = "signal-hook-registry"
|
|
2054
|
-
version = "1.4.
|
|
2123
|
+
version = "1.4.1"
|
|
2055
2124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
|
-
checksum = "
|
|
2125
|
+
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
|
|
2057
2126
|
dependencies = [
|
|
2058
2127
|
"libc",
|
|
2059
2128
|
]
|
|
@@ -2066,9 +2135,9 @@ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
|
|
|
2066
2135
|
|
|
2067
2136
|
[[package]]
|
|
2068
2137
|
name = "slab"
|
|
2069
|
-
version = "0.4.
|
|
2138
|
+
version = "0.4.8"
|
|
2070
2139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2071
|
-
checksum = "
|
|
2140
|
+
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
|
|
2072
2141
|
dependencies = [
|
|
2073
2142
|
"autocfg",
|
|
2074
2143
|
]
|
|
@@ -2124,9 +2193,9 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
|
|
|
2124
2193
|
|
|
2125
2194
|
[[package]]
|
|
2126
2195
|
name = "syn"
|
|
2127
|
-
version = "1.0.
|
|
2196
|
+
version = "1.0.109"
|
|
2128
2197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2129
|
-
checksum = "
|
|
2198
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2130
2199
|
dependencies = [
|
|
2131
2200
|
"proc-macro2",
|
|
2132
2201
|
"quote",
|
|
@@ -2135,9 +2204,9 @@ dependencies = [
|
|
|
2135
2204
|
|
|
2136
2205
|
[[package]]
|
|
2137
2206
|
name = "syn"
|
|
2138
|
-
version = "2.0.
|
|
2207
|
+
version = "2.0.14"
|
|
2139
2208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
-
checksum = "
|
|
2209
|
+
checksum = "fcf316d5356ed6847742d036f8a39c3b8435cac10bd528a4bd461928a6ab34d5"
|
|
2141
2210
|
dependencies = [
|
|
2142
2211
|
"proc-macro2",
|
|
2143
2212
|
"quote",
|
|
@@ -2152,14 +2221,14 @@ checksum = "baa8e7560a164edb1621a55d18a0c59abf49d360f47aa7b821061dd7eea7fac9"
|
|
|
2152
2221
|
dependencies = [
|
|
2153
2222
|
"proc-macro2",
|
|
2154
2223
|
"quote",
|
|
2155
|
-
"syn 1.0.
|
|
2224
|
+
"syn 1.0.109",
|
|
2156
2225
|
]
|
|
2157
2226
|
|
|
2158
2227
|
[[package]]
|
|
2159
2228
|
name = "sync_wrapper"
|
|
2160
|
-
version = "0.1.
|
|
2229
|
+
version = "0.1.2"
|
|
2161
2230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2162
|
-
checksum = "
|
|
2231
|
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
2163
2232
|
|
|
2164
2233
|
[[package]]
|
|
2165
2234
|
name = "tar"
|
|
@@ -2174,16 +2243,15 @@ dependencies = [
|
|
|
2174
2243
|
|
|
2175
2244
|
[[package]]
|
|
2176
2245
|
name = "tempfile"
|
|
2177
|
-
version = "3.
|
|
2246
|
+
version = "3.5.0"
|
|
2178
2247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
-
checksum = "
|
|
2248
|
+
checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
|
|
2180
2249
|
dependencies = [
|
|
2181
2250
|
"cfg-if",
|
|
2182
2251
|
"fastrand",
|
|
2183
|
-
"
|
|
2184
|
-
"
|
|
2185
|
-
"
|
|
2186
|
-
"winapi",
|
|
2252
|
+
"redox_syscall 0.3.5",
|
|
2253
|
+
"rustix",
|
|
2254
|
+
"windows-sys 0.45.0",
|
|
2187
2255
|
]
|
|
2188
2256
|
|
|
2189
2257
|
[[package]]
|
|
@@ -2224,6 +2292,7 @@ dependencies = [
|
|
|
2224
2292
|
"dashmap",
|
|
2225
2293
|
"derive_builder",
|
|
2226
2294
|
"derive_more",
|
|
2295
|
+
"enum-iterator",
|
|
2227
2296
|
"enum_dispatch",
|
|
2228
2297
|
"flate2",
|
|
2229
2298
|
"futures",
|
|
@@ -2330,56 +2399,55 @@ dependencies = [
|
|
|
2330
2399
|
|
|
2331
2400
|
[[package]]
|
|
2332
2401
|
name = "termtree"
|
|
2333
|
-
version = "0.
|
|
2402
|
+
version = "0.4.1"
|
|
2334
2403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
-
checksum = "
|
|
2404
|
+
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
|
|
2336
2405
|
|
|
2337
2406
|
[[package]]
|
|
2338
2407
|
name = "thiserror"
|
|
2339
|
-
version = "1.0.
|
|
2408
|
+
version = "1.0.40"
|
|
2340
2409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
-
checksum = "
|
|
2410
|
+
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
|
|
2342
2411
|
dependencies = [
|
|
2343
2412
|
"thiserror-impl",
|
|
2344
2413
|
]
|
|
2345
2414
|
|
|
2346
2415
|
[[package]]
|
|
2347
2416
|
name = "thiserror-impl"
|
|
2348
|
-
version = "1.0.
|
|
2417
|
+
version = "1.0.40"
|
|
2349
2418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
-
checksum = "
|
|
2419
|
+
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
|
2351
2420
|
dependencies = [
|
|
2352
2421
|
"proc-macro2",
|
|
2353
2422
|
"quote",
|
|
2354
|
-
"syn
|
|
2423
|
+
"syn 2.0.14",
|
|
2355
2424
|
]
|
|
2356
2425
|
|
|
2357
2426
|
[[package]]
|
|
2358
2427
|
name = "thread_local"
|
|
2359
|
-
version = "1.1.
|
|
2428
|
+
version = "1.1.7"
|
|
2360
2429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
|
-
checksum = "
|
|
2430
|
+
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
|
|
2362
2431
|
dependencies = [
|
|
2432
|
+
"cfg-if",
|
|
2363
2433
|
"once_cell",
|
|
2364
2434
|
]
|
|
2365
2435
|
|
|
2366
2436
|
[[package]]
|
|
2367
2437
|
name = "time"
|
|
2368
|
-
version = "0.3.
|
|
2438
|
+
version = "0.3.20"
|
|
2369
2439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2370
|
-
checksum = "
|
|
2440
|
+
checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890"
|
|
2371
2441
|
dependencies = [
|
|
2372
|
-
"
|
|
2373
|
-
"
|
|
2374
|
-
"num_threads",
|
|
2375
|
-
"time-macros",
|
|
2442
|
+
"serde",
|
|
2443
|
+
"time-core",
|
|
2376
2444
|
]
|
|
2377
2445
|
|
|
2378
2446
|
[[package]]
|
|
2379
|
-
name = "time-
|
|
2380
|
-
version = "0.
|
|
2447
|
+
name = "time-core"
|
|
2448
|
+
version = "0.1.0"
|
|
2381
2449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2382
|
-
checksum = "
|
|
2450
|
+
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
|
|
2383
2451
|
|
|
2384
2452
|
[[package]]
|
|
2385
2453
|
name = "tinyvec"
|
|
@@ -2392,9 +2460,9 @@ dependencies = [
|
|
|
2392
2460
|
|
|
2393
2461
|
[[package]]
|
|
2394
2462
|
name = "tinyvec_macros"
|
|
2395
|
-
version = "0.1.
|
|
2463
|
+
version = "0.1.1"
|
|
2396
2464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2397
|
-
checksum = "
|
|
2465
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2398
2466
|
|
|
2399
2467
|
[[package]]
|
|
2400
2468
|
name = "tokio"
|
|
@@ -2433,7 +2501,7 @@ checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce"
|
|
|
2433
2501
|
dependencies = [
|
|
2434
2502
|
"proc-macro2",
|
|
2435
2503
|
"quote",
|
|
2436
|
-
"syn 2.0.
|
|
2504
|
+
"syn 2.0.14",
|
|
2437
2505
|
]
|
|
2438
2506
|
|
|
2439
2507
|
[[package]]
|
|
@@ -2449,9 +2517,9 @@ dependencies = [
|
|
|
2449
2517
|
|
|
2450
2518
|
[[package]]
|
|
2451
2519
|
name = "tokio-stream"
|
|
2452
|
-
version = "0.1.
|
|
2520
|
+
version = "0.1.12"
|
|
2453
2521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2454
|
-
checksum = "
|
|
2522
|
+
checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313"
|
|
2455
2523
|
dependencies = [
|
|
2456
2524
|
"futures-core",
|
|
2457
2525
|
"pin-project-lite",
|
|
@@ -2460,9 +2528,9 @@ dependencies = [
|
|
|
2460
2528
|
|
|
2461
2529
|
[[package]]
|
|
2462
2530
|
name = "tokio-util"
|
|
2463
|
-
version = "0.7.
|
|
2531
|
+
version = "0.7.7"
|
|
2464
2532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
-
checksum = "
|
|
2533
|
+
checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2"
|
|
2466
2534
|
dependencies = [
|
|
2467
2535
|
"bytes",
|
|
2468
2536
|
"futures-core",
|
|
@@ -2474,14 +2542,14 @@ dependencies = [
|
|
|
2474
2542
|
|
|
2475
2543
|
[[package]]
|
|
2476
2544
|
name = "tonic"
|
|
2477
|
-
version = "0.8.
|
|
2545
|
+
version = "0.8.3"
|
|
2478
2546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2479
|
-
checksum = "
|
|
2547
|
+
checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb"
|
|
2480
2548
|
dependencies = [
|
|
2481
2549
|
"async-stream",
|
|
2482
2550
|
"async-trait",
|
|
2483
2551
|
"axum",
|
|
2484
|
-
"base64 0.13.
|
|
2552
|
+
"base64 0.13.1",
|
|
2485
2553
|
"bytes",
|
|
2486
2554
|
"futures-core",
|
|
2487
2555
|
"futures-util",
|
|
@@ -2509,15 +2577,15 @@ dependencies = [
|
|
|
2509
2577
|
|
|
2510
2578
|
[[package]]
|
|
2511
2579
|
name = "tonic-build"
|
|
2512
|
-
version = "0.8.
|
|
2580
|
+
version = "0.8.4"
|
|
2513
2581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2514
|
-
checksum = "
|
|
2582
|
+
checksum = "5bf5e9b9c0f7e0a7c027dcfaba7b2c60816c7049171f679d99ee2ff65d0de8c4"
|
|
2515
2583
|
dependencies = [
|
|
2516
2584
|
"prettyplease",
|
|
2517
2585
|
"proc-macro2",
|
|
2518
2586
|
"prost-build",
|
|
2519
2587
|
"quote",
|
|
2520
|
-
"syn 1.0.
|
|
2588
|
+
"syn 1.0.109",
|
|
2521
2589
|
]
|
|
2522
2590
|
|
|
2523
2591
|
[[package]]
|
|
@@ -2540,25 +2608,6 @@ dependencies = [
|
|
|
2540
2608
|
"tracing",
|
|
2541
2609
|
]
|
|
2542
2610
|
|
|
2543
|
-
[[package]]
|
|
2544
|
-
name = "tower-http"
|
|
2545
|
-
version = "0.3.4"
|
|
2546
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2547
|
-
checksum = "3c530c8675c1dbf98facee631536fa116b5fb6382d7dd6dc1b118d970eafe3ba"
|
|
2548
|
-
dependencies = [
|
|
2549
|
-
"bitflags",
|
|
2550
|
-
"bytes",
|
|
2551
|
-
"futures-core",
|
|
2552
|
-
"futures-util",
|
|
2553
|
-
"http",
|
|
2554
|
-
"http-body",
|
|
2555
|
-
"http-range-header",
|
|
2556
|
-
"pin-project-lite",
|
|
2557
|
-
"tower",
|
|
2558
|
-
"tower-layer",
|
|
2559
|
-
"tower-service",
|
|
2560
|
-
]
|
|
2561
|
-
|
|
2562
2611
|
[[package]]
|
|
2563
2612
|
name = "tower-layer"
|
|
2564
2613
|
version = "0.3.2"
|
|
@@ -2592,7 +2641,7 @@ checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
|
|
|
2592
2641
|
dependencies = [
|
|
2593
2642
|
"proc-macro2",
|
|
2594
2643
|
"quote",
|
|
2595
|
-
"syn 1.0.
|
|
2644
|
+
"syn 1.0.109",
|
|
2596
2645
|
]
|
|
2597
2646
|
|
|
2598
2647
|
[[package]]
|
|
@@ -2661,21 +2710,21 @@ dependencies = [
|
|
|
2661
2710
|
|
|
2662
2711
|
[[package]]
|
|
2663
2712
|
name = "try-lock"
|
|
2664
|
-
version = "0.2.
|
|
2713
|
+
version = "0.2.4"
|
|
2665
2714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2666
|
-
checksum = "
|
|
2715
|
+
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
|
|
2667
2716
|
|
|
2668
2717
|
[[package]]
|
|
2669
2718
|
name = "typenum"
|
|
2670
|
-
version = "1.
|
|
2719
|
+
version = "1.16.0"
|
|
2671
2720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2672
|
-
checksum = "
|
|
2721
|
+
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
|
|
2673
2722
|
|
|
2674
2723
|
[[package]]
|
|
2675
2724
|
name = "typetag"
|
|
2676
|
-
version = "0.2.
|
|
2725
|
+
version = "0.2.7"
|
|
2677
2726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
|
-
checksum = "
|
|
2727
|
+
checksum = "edc3ebbaab23e6cc369cb48246769d031f5bd85f1b28141f32982e3c0c7b33cf"
|
|
2679
2728
|
dependencies = [
|
|
2680
2729
|
"erased-serde",
|
|
2681
2730
|
"inventory",
|
|
@@ -2686,26 +2735,26 @@ dependencies = [
|
|
|
2686
2735
|
|
|
2687
2736
|
[[package]]
|
|
2688
2737
|
name = "typetag-impl"
|
|
2689
|
-
version = "0.2.
|
|
2738
|
+
version = "0.2.7"
|
|
2690
2739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2691
|
-
checksum = "
|
|
2740
|
+
checksum = "bb01b60fcc3f5e17babb1a9956263f3ccd2cadc3e52908400231441683283c1d"
|
|
2692
2741
|
dependencies = [
|
|
2693
2742
|
"proc-macro2",
|
|
2694
2743
|
"quote",
|
|
2695
|
-
"syn
|
|
2744
|
+
"syn 2.0.14",
|
|
2696
2745
|
]
|
|
2697
2746
|
|
|
2698
2747
|
[[package]]
|
|
2699
2748
|
name = "unicode-bidi"
|
|
2700
|
-
version = "0.3.
|
|
2749
|
+
version = "0.3.13"
|
|
2701
2750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2702
|
-
checksum = "
|
|
2751
|
+
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
|
|
2703
2752
|
|
|
2704
2753
|
[[package]]
|
|
2705
2754
|
name = "unicode-ident"
|
|
2706
|
-
version = "1.0.
|
|
2755
|
+
version = "1.0.8"
|
|
2707
2756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2708
|
-
checksum = "
|
|
2757
|
+
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
|
2709
2758
|
|
|
2710
2759
|
[[package]]
|
|
2711
2760
|
name = "unicode-normalization"
|
|
@@ -2735,9 +2784,9 @@ dependencies = [
|
|
|
2735
2784
|
|
|
2736
2785
|
[[package]]
|
|
2737
2786
|
name = "uuid"
|
|
2738
|
-
version = "1.
|
|
2787
|
+
version = "1.3.1"
|
|
2739
2788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
-
checksum = "
|
|
2789
|
+
checksum = "5b55a3fef2a1e3b3a00ce878640918820d3c51081576ac657d23af9fc7928fdb"
|
|
2741
2790
|
dependencies = [
|
|
2742
2791
|
"getrandom",
|
|
2743
2792
|
]
|
|
@@ -2778,9 +2827,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
2778
2827
|
|
|
2779
2828
|
[[package]]
|
|
2780
2829
|
name = "wasm-bindgen"
|
|
2781
|
-
version = "0.2.
|
|
2830
|
+
version = "0.2.84"
|
|
2782
2831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2783
|
-
checksum = "
|
|
2832
|
+
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
|
|
2784
2833
|
dependencies = [
|
|
2785
2834
|
"cfg-if",
|
|
2786
2835
|
"wasm-bindgen-macro",
|
|
@@ -2788,24 +2837,24 @@ dependencies = [
|
|
|
2788
2837
|
|
|
2789
2838
|
[[package]]
|
|
2790
2839
|
name = "wasm-bindgen-backend"
|
|
2791
|
-
version = "0.2.
|
|
2840
|
+
version = "0.2.84"
|
|
2792
2841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
-
checksum = "
|
|
2842
|
+
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
|
|
2794
2843
|
dependencies = [
|
|
2795
2844
|
"bumpalo",
|
|
2796
2845
|
"log",
|
|
2797
2846
|
"once_cell",
|
|
2798
2847
|
"proc-macro2",
|
|
2799
2848
|
"quote",
|
|
2800
|
-
"syn 1.0.
|
|
2849
|
+
"syn 1.0.109",
|
|
2801
2850
|
"wasm-bindgen-shared",
|
|
2802
2851
|
]
|
|
2803
2852
|
|
|
2804
2853
|
[[package]]
|
|
2805
2854
|
name = "wasm-bindgen-futures"
|
|
2806
|
-
version = "0.4.
|
|
2855
|
+
version = "0.4.34"
|
|
2807
2856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2808
|
-
checksum = "
|
|
2857
|
+
checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
|
|
2809
2858
|
dependencies = [
|
|
2810
2859
|
"cfg-if",
|
|
2811
2860
|
"js-sys",
|
|
@@ -2815,9 +2864,9 @@ dependencies = [
|
|
|
2815
2864
|
|
|
2816
2865
|
[[package]]
|
|
2817
2866
|
name = "wasm-bindgen-macro"
|
|
2818
|
-
version = "0.2.
|
|
2867
|
+
version = "0.2.84"
|
|
2819
2868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2820
|
-
checksum = "
|
|
2869
|
+
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
|
|
2821
2870
|
dependencies = [
|
|
2822
2871
|
"quote",
|
|
2823
2872
|
"wasm-bindgen-macro-support",
|
|
@@ -2825,28 +2874,41 @@ dependencies = [
|
|
|
2825
2874
|
|
|
2826
2875
|
[[package]]
|
|
2827
2876
|
name = "wasm-bindgen-macro-support"
|
|
2828
|
-
version = "0.2.
|
|
2877
|
+
version = "0.2.84"
|
|
2829
2878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2830
|
-
checksum = "
|
|
2879
|
+
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
|
|
2831
2880
|
dependencies = [
|
|
2832
2881
|
"proc-macro2",
|
|
2833
2882
|
"quote",
|
|
2834
|
-
"syn 1.0.
|
|
2883
|
+
"syn 1.0.109",
|
|
2835
2884
|
"wasm-bindgen-backend",
|
|
2836
2885
|
"wasm-bindgen-shared",
|
|
2837
2886
|
]
|
|
2838
2887
|
|
|
2839
2888
|
[[package]]
|
|
2840
2889
|
name = "wasm-bindgen-shared"
|
|
2841
|
-
version = "0.2.
|
|
2890
|
+
version = "0.2.84"
|
|
2891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
+
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
|
|
2893
|
+
|
|
2894
|
+
[[package]]
|
|
2895
|
+
name = "wasm-streams"
|
|
2896
|
+
version = "0.2.3"
|
|
2842
2897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
-
checksum = "
|
|
2898
|
+
checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
|
|
2899
|
+
dependencies = [
|
|
2900
|
+
"futures-util",
|
|
2901
|
+
"js-sys",
|
|
2902
|
+
"wasm-bindgen",
|
|
2903
|
+
"wasm-bindgen-futures",
|
|
2904
|
+
"web-sys",
|
|
2905
|
+
]
|
|
2844
2906
|
|
|
2845
2907
|
[[package]]
|
|
2846
2908
|
name = "web-sys"
|
|
2847
|
-
version = "0.3.
|
|
2909
|
+
version = "0.3.61"
|
|
2848
2910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
-
checksum = "
|
|
2911
|
+
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
|
|
2850
2912
|
dependencies = [
|
|
2851
2913
|
"js-sys",
|
|
2852
2914
|
"wasm-bindgen",
|
|
@@ -2864,18 +2926,18 @@ dependencies = [
|
|
|
2864
2926
|
|
|
2865
2927
|
[[package]]
|
|
2866
2928
|
name = "webpki-roots"
|
|
2867
|
-
version = "0.22.
|
|
2929
|
+
version = "0.22.6"
|
|
2868
2930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
-
checksum = "
|
|
2931
|
+
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
|
|
2870
2932
|
dependencies = [
|
|
2871
2933
|
"webpki",
|
|
2872
2934
|
]
|
|
2873
2935
|
|
|
2874
2936
|
[[package]]
|
|
2875
2937
|
name = "which"
|
|
2876
|
-
version = "4.
|
|
2938
|
+
version = "4.4.0"
|
|
2877
2939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
-
checksum = "
|
|
2940
|
+
checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
|
|
2879
2941
|
dependencies = [
|
|
2880
2942
|
"either",
|
|
2881
2943
|
"libc",
|
|
@@ -2906,15 +2968,17 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
2906
2968
|
|
|
2907
2969
|
[[package]]
|
|
2908
2970
|
name = "windows-sys"
|
|
2909
|
-
version = "0.
|
|
2971
|
+
version = "0.42.0"
|
|
2910
2972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2911
|
-
checksum = "
|
|
2973
|
+
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
|
2912
2974
|
dependencies = [
|
|
2913
|
-
"
|
|
2914
|
-
"
|
|
2915
|
-
"
|
|
2916
|
-
"
|
|
2917
|
-
"
|
|
2975
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
2976
|
+
"windows_aarch64_msvc 0.42.2",
|
|
2977
|
+
"windows_i686_gnu 0.42.2",
|
|
2978
|
+
"windows_i686_msvc 0.42.2",
|
|
2979
|
+
"windows_x86_64_gnu 0.42.2",
|
|
2980
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
2981
|
+
"windows_x86_64_msvc 0.42.2",
|
|
2918
2982
|
]
|
|
2919
2983
|
|
|
2920
2984
|
[[package]]
|
|
@@ -2923,7 +2987,16 @@ version = "0.45.0"
|
|
|
2923
2987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2924
2988
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
2925
2989
|
dependencies = [
|
|
2926
|
-
"windows-targets",
|
|
2990
|
+
"windows-targets 0.42.2",
|
|
2991
|
+
]
|
|
2992
|
+
|
|
2993
|
+
[[package]]
|
|
2994
|
+
name = "windows-sys"
|
|
2995
|
+
version = "0.48.0"
|
|
2996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2998
|
+
dependencies = [
|
|
2999
|
+
"windows-targets 0.48.0",
|
|
2927
3000
|
]
|
|
2928
3001
|
|
|
2929
3002
|
[[package]]
|
|
@@ -2932,15 +3005,30 @@ version = "0.42.2"
|
|
|
2932
3005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2933
3006
|
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
2934
3007
|
dependencies = [
|
|
2935
|
-
"windows_aarch64_gnullvm",
|
|
3008
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
2936
3009
|
"windows_aarch64_msvc 0.42.2",
|
|
2937
3010
|
"windows_i686_gnu 0.42.2",
|
|
2938
3011
|
"windows_i686_msvc 0.42.2",
|
|
2939
3012
|
"windows_x86_64_gnu 0.42.2",
|
|
2940
|
-
"windows_x86_64_gnullvm",
|
|
3013
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
2941
3014
|
"windows_x86_64_msvc 0.42.2",
|
|
2942
3015
|
]
|
|
2943
3016
|
|
|
3017
|
+
[[package]]
|
|
3018
|
+
name = "windows-targets"
|
|
3019
|
+
version = "0.48.0"
|
|
3020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3021
|
+
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
|
3022
|
+
dependencies = [
|
|
3023
|
+
"windows_aarch64_gnullvm 0.48.0",
|
|
3024
|
+
"windows_aarch64_msvc 0.48.0",
|
|
3025
|
+
"windows_i686_gnu 0.48.0",
|
|
3026
|
+
"windows_i686_msvc 0.48.0",
|
|
3027
|
+
"windows_x86_64_gnu 0.48.0",
|
|
3028
|
+
"windows_x86_64_gnullvm 0.48.0",
|
|
3029
|
+
"windows_x86_64_msvc 0.48.0",
|
|
3030
|
+
]
|
|
3031
|
+
|
|
2944
3032
|
[[package]]
|
|
2945
3033
|
name = "windows_aarch64_gnullvm"
|
|
2946
3034
|
version = "0.42.2"
|
|
@@ -2948,10 +3036,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2948
3036
|
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
2949
3037
|
|
|
2950
3038
|
[[package]]
|
|
2951
|
-
name = "
|
|
2952
|
-
version = "0.
|
|
3039
|
+
name = "windows_aarch64_gnullvm"
|
|
3040
|
+
version = "0.48.0"
|
|
2953
3041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2954
|
-
checksum = "
|
|
3042
|
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
|
2955
3043
|
|
|
2956
3044
|
[[package]]
|
|
2957
3045
|
name = "windows_aarch64_msvc"
|
|
@@ -2960,10 +3048,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2960
3048
|
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
2961
3049
|
|
|
2962
3050
|
[[package]]
|
|
2963
|
-
name = "
|
|
2964
|
-
version = "0.
|
|
3051
|
+
name = "windows_aarch64_msvc"
|
|
3052
|
+
version = "0.48.0"
|
|
2965
3053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2966
|
-
checksum = "
|
|
3054
|
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
|
2967
3055
|
|
|
2968
3056
|
[[package]]
|
|
2969
3057
|
name = "windows_i686_gnu"
|
|
@@ -2972,10 +3060,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2972
3060
|
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
2973
3061
|
|
|
2974
3062
|
[[package]]
|
|
2975
|
-
name = "
|
|
2976
|
-
version = "0.
|
|
3063
|
+
name = "windows_i686_gnu"
|
|
3064
|
+
version = "0.48.0"
|
|
2977
3065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2978
|
-
checksum = "
|
|
3066
|
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
|
2979
3067
|
|
|
2980
3068
|
[[package]]
|
|
2981
3069
|
name = "windows_i686_msvc"
|
|
@@ -2984,10 +3072,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2984
3072
|
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
2985
3073
|
|
|
2986
3074
|
[[package]]
|
|
2987
|
-
name = "
|
|
2988
|
-
version = "0.
|
|
3075
|
+
name = "windows_i686_msvc"
|
|
3076
|
+
version = "0.48.0"
|
|
2989
3077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2990
|
-
checksum = "
|
|
3078
|
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
|
2991
3079
|
|
|
2992
3080
|
[[package]]
|
|
2993
3081
|
name = "windows_x86_64_gnu"
|
|
@@ -2995,6 +3083,12 @@ version = "0.42.2"
|
|
|
2995
3083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2996
3084
|
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
2997
3085
|
|
|
3086
|
+
[[package]]
|
|
3087
|
+
name = "windows_x86_64_gnu"
|
|
3088
|
+
version = "0.48.0"
|
|
3089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3090
|
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
|
3091
|
+
|
|
2998
3092
|
[[package]]
|
|
2999
3093
|
name = "windows_x86_64_gnullvm"
|
|
3000
3094
|
version = "0.42.2"
|
|
@@ -3002,10 +3096,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3002
3096
|
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
3003
3097
|
|
|
3004
3098
|
[[package]]
|
|
3005
|
-
name = "
|
|
3006
|
-
version = "0.
|
|
3099
|
+
name = "windows_x86_64_gnullvm"
|
|
3100
|
+
version = "0.48.0"
|
|
3007
3101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3008
|
-
checksum = "
|
|
3102
|
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
|
3009
3103
|
|
|
3010
3104
|
[[package]]
|
|
3011
3105
|
name = "windows_x86_64_msvc"
|
|
@@ -3013,6 +3107,12 @@ version = "0.42.2"
|
|
|
3013
3107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
3108
|
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
3015
3109
|
|
|
3110
|
+
[[package]]
|
|
3111
|
+
name = "windows_x86_64_msvc"
|
|
3112
|
+
version = "0.48.0"
|
|
3113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3114
|
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
3115
|
+
|
|
3016
3116
|
[[package]]
|
|
3017
3117
|
name = "winreg"
|
|
3018
3118
|
version = "0.10.1"
|
|
@@ -3033,9 +3133,9 @@ dependencies = [
|
|
|
3033
3133
|
|
|
3034
3134
|
[[package]]
|
|
3035
3135
|
name = "zip"
|
|
3036
|
-
version = "0.6.
|
|
3136
|
+
version = "0.6.4"
|
|
3037
3137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3038
|
-
checksum = "
|
|
3138
|
+
checksum = "0445d0fbc924bb93539b4316c11afb121ea39296f99a3c4c9edad09e3658cdef"
|
|
3039
3139
|
dependencies = [
|
|
3040
3140
|
"aes",
|
|
3041
3141
|
"byteorder",
|
|
@@ -3072,9 +3172,9 @@ dependencies = [
|
|
|
3072
3172
|
|
|
3073
3173
|
[[package]]
|
|
3074
3174
|
name = "zstd-sys"
|
|
3075
|
-
version = "2.0.
|
|
3175
|
+
version = "2.0.8+zstd.1.5.5"
|
|
3076
3176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
-
checksum = "
|
|
3177
|
+
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
|
|
3078
3178
|
dependencies = [
|
|
3079
3179
|
"cc",
|
|
3080
3180
|
"libc",
|