@temporalio/core-bridge 1.7.0 → 1.7.1
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 +479 -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/core/src/core_tests/determinism.rs +49 -2
- package/sdk-core/core/src/internal_flags.rs +0 -14
- package/sdk-core/core/src/worker/mod.rs +1 -0
- 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 +1 -4
- package/sdk-core/core/src/worker/workflow/managed_run.rs +10 -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/tests/main.rs +15 -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,80 @@ 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
|
|
|
519
520
|
[[package]]
|
|
520
521
|
name = "enum_dispatch"
|
|
521
|
-
version = "0.3.
|
|
522
|
+
version = "0.3.11"
|
|
522
523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
-
checksum = "
|
|
524
|
+
checksum = "11f36e95862220b211a6e2aa5eca09b4fa391b13cd52ceb8035a24bf65a79de2"
|
|
524
525
|
dependencies = [
|
|
525
526
|
"once_cell",
|
|
526
527
|
"proc-macro2",
|
|
527
528
|
"quote",
|
|
528
|
-
"syn 1.0.
|
|
529
|
+
"syn 1.0.109",
|
|
529
530
|
]
|
|
530
531
|
|
|
531
532
|
[[package]]
|
|
532
533
|
name = "erased-serde"
|
|
533
|
-
version = "0.3.
|
|
534
|
+
version = "0.3.25"
|
|
534
535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
-
checksum = "
|
|
536
|
+
checksum = "4f2b0c2380453a92ea8b6c8e5f64ecaafccddde8ceab55ff7a8ac1029f894569"
|
|
536
537
|
dependencies = [
|
|
537
538
|
"serde",
|
|
538
539
|
]
|
|
539
540
|
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "errno"
|
|
543
|
+
version = "0.3.1"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"errno-dragonfly",
|
|
548
|
+
"libc",
|
|
549
|
+
"windows-sys 0.48.0",
|
|
550
|
+
]
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "errno-dragonfly"
|
|
554
|
+
version = "0.1.2"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"cc",
|
|
559
|
+
"libc",
|
|
560
|
+
]
|
|
561
|
+
|
|
540
562
|
[[package]]
|
|
541
563
|
name = "fastrand"
|
|
542
|
-
version = "1.
|
|
564
|
+
version = "1.9.0"
|
|
543
565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
-
checksum = "
|
|
566
|
+
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
|
|
545
567
|
dependencies = [
|
|
546
568
|
"instant",
|
|
547
569
|
]
|
|
548
570
|
|
|
549
571
|
[[package]]
|
|
550
572
|
name = "filetime"
|
|
551
|
-
version = "0.2.
|
|
573
|
+
version = "0.2.21"
|
|
552
574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
-
checksum = "
|
|
575
|
+
checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153"
|
|
554
576
|
dependencies = [
|
|
555
577
|
"cfg-if",
|
|
556
578
|
"libc",
|
|
557
|
-
"redox_syscall",
|
|
558
|
-
"windows-sys 0.
|
|
579
|
+
"redox_syscall 0.2.16",
|
|
580
|
+
"windows-sys 0.48.0",
|
|
559
581
|
]
|
|
560
582
|
|
|
561
583
|
[[package]]
|
|
@@ -566,9 +588,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
566
588
|
|
|
567
589
|
[[package]]
|
|
568
590
|
name = "flate2"
|
|
569
|
-
version = "1.0.
|
|
591
|
+
version = "1.0.25"
|
|
570
592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
-
checksum = "
|
|
593
|
+
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
|
|
572
594
|
dependencies = [
|
|
573
595
|
"crc32fast",
|
|
574
596
|
"miniz_oxide",
|
|
@@ -600,15 +622,15 @@ dependencies = [
|
|
|
600
622
|
|
|
601
623
|
[[package]]
|
|
602
624
|
name = "fragile"
|
|
603
|
-
version = "
|
|
625
|
+
version = "2.0.0"
|
|
604
626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
-
checksum = "
|
|
627
|
+
checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
|
|
606
628
|
|
|
607
629
|
[[package]]
|
|
608
630
|
name = "futures"
|
|
609
|
-
version = "0.3.
|
|
631
|
+
version = "0.3.28"
|
|
610
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
-
checksum = "
|
|
633
|
+
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
|
|
612
634
|
dependencies = [
|
|
613
635
|
"futures-channel",
|
|
614
636
|
"futures-core",
|
|
@@ -621,9 +643,9 @@ dependencies = [
|
|
|
621
643
|
|
|
622
644
|
[[package]]
|
|
623
645
|
name = "futures-channel"
|
|
624
|
-
version = "0.3.
|
|
646
|
+
version = "0.3.28"
|
|
625
647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
-
checksum = "
|
|
648
|
+
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
|
|
627
649
|
dependencies = [
|
|
628
650
|
"futures-core",
|
|
629
651
|
"futures-sink",
|
|
@@ -631,15 +653,15 @@ dependencies = [
|
|
|
631
653
|
|
|
632
654
|
[[package]]
|
|
633
655
|
name = "futures-core"
|
|
634
|
-
version = "0.3.
|
|
656
|
+
version = "0.3.28"
|
|
635
657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
-
checksum = "
|
|
658
|
+
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
|
|
637
659
|
|
|
638
660
|
[[package]]
|
|
639
661
|
name = "futures-executor"
|
|
640
|
-
version = "0.3.
|
|
662
|
+
version = "0.3.28"
|
|
641
663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
-
checksum = "
|
|
664
|
+
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
|
|
643
665
|
dependencies = [
|
|
644
666
|
"futures-core",
|
|
645
667
|
"futures-task",
|
|
@@ -648,19 +670,19 @@ dependencies = [
|
|
|
648
670
|
|
|
649
671
|
[[package]]
|
|
650
672
|
name = "futures-io"
|
|
651
|
-
version = "0.3.
|
|
673
|
+
version = "0.3.28"
|
|
652
674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
-
checksum = "
|
|
675
|
+
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
|
|
654
676
|
|
|
655
677
|
[[package]]
|
|
656
678
|
name = "futures-macro"
|
|
657
|
-
version = "0.3.
|
|
679
|
+
version = "0.3.28"
|
|
658
680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
-
checksum = "
|
|
681
|
+
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
|
660
682
|
dependencies = [
|
|
661
683
|
"proc-macro2",
|
|
662
684
|
"quote",
|
|
663
|
-
"syn
|
|
685
|
+
"syn 2.0.14",
|
|
664
686
|
]
|
|
665
687
|
|
|
666
688
|
[[package]]
|
|
@@ -676,15 +698,15 @@ dependencies = [
|
|
|
676
698
|
|
|
677
699
|
[[package]]
|
|
678
700
|
name = "futures-sink"
|
|
679
|
-
version = "0.3.
|
|
701
|
+
version = "0.3.28"
|
|
680
702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
-
checksum = "
|
|
703
|
+
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
|
|
682
704
|
|
|
683
705
|
[[package]]
|
|
684
706
|
name = "futures-task"
|
|
685
|
-
version = "0.3.
|
|
707
|
+
version = "0.3.28"
|
|
686
708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
-
checksum = "
|
|
709
|
+
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
|
|
688
710
|
|
|
689
711
|
[[package]]
|
|
690
712
|
name = "futures-timer"
|
|
@@ -694,9 +716,9 @@ checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
|
|
|
694
716
|
|
|
695
717
|
[[package]]
|
|
696
718
|
name = "futures-util"
|
|
697
|
-
version = "0.3.
|
|
719
|
+
version = "0.3.28"
|
|
698
720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
-
checksum = "
|
|
721
|
+
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
|
|
700
722
|
dependencies = [
|
|
701
723
|
"futures-channel",
|
|
702
724
|
"futures-core",
|
|
@@ -712,9 +734,9 @@ dependencies = [
|
|
|
712
734
|
|
|
713
735
|
[[package]]
|
|
714
736
|
name = "generic-array"
|
|
715
|
-
version = "0.14.
|
|
737
|
+
version = "0.14.7"
|
|
716
738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
-
checksum = "
|
|
739
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
718
740
|
dependencies = [
|
|
719
741
|
"typenum",
|
|
720
742
|
"version_check",
|
|
@@ -722,9 +744,9 @@ dependencies = [
|
|
|
722
744
|
|
|
723
745
|
[[package]]
|
|
724
746
|
name = "getrandom"
|
|
725
|
-
version = "0.2.
|
|
747
|
+
version = "0.2.9"
|
|
726
748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
-
checksum = "
|
|
749
|
+
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
|
|
728
750
|
dependencies = [
|
|
729
751
|
"cfg-if",
|
|
730
752
|
"libc",
|
|
@@ -733,20 +755,20 @@ dependencies = [
|
|
|
733
755
|
|
|
734
756
|
[[package]]
|
|
735
757
|
name = "ghost"
|
|
736
|
-
version = "0.1.
|
|
758
|
+
version = "0.1.9"
|
|
737
759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
-
checksum = "
|
|
760
|
+
checksum = "e77ac7b51b8e6313251737fcef4b1c01a2ea102bde68415b62c0ee9268fec357"
|
|
739
761
|
dependencies = [
|
|
740
762
|
"proc-macro2",
|
|
741
763
|
"quote",
|
|
742
|
-
"syn
|
|
764
|
+
"syn 2.0.14",
|
|
743
765
|
]
|
|
744
766
|
|
|
745
767
|
[[package]]
|
|
746
768
|
name = "governor"
|
|
747
|
-
version = "0.5.
|
|
769
|
+
version = "0.5.1"
|
|
748
770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
-
checksum = "
|
|
771
|
+
checksum = "c390a940a5d157878dd057c78680a33ce3415bcd05b4799509ea44210914b4d5"
|
|
750
772
|
dependencies = [
|
|
751
773
|
"cfg-if",
|
|
752
774
|
"dashmap",
|
|
@@ -762,9 +784,9 @@ dependencies = [
|
|
|
762
784
|
|
|
763
785
|
[[package]]
|
|
764
786
|
name = "h2"
|
|
765
|
-
version = "0.3.
|
|
787
|
+
version = "0.3.16"
|
|
766
788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
-
checksum = "
|
|
789
|
+
checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d"
|
|
768
790
|
dependencies = [
|
|
769
791
|
"bytes",
|
|
770
792
|
"fnv",
|
|
@@ -796,19 +818,25 @@ dependencies = [
|
|
|
796
818
|
|
|
797
819
|
[[package]]
|
|
798
820
|
name = "heck"
|
|
799
|
-
version = "0.4.
|
|
821
|
+
version = "0.4.1"
|
|
800
822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
-
checksum = "
|
|
823
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
802
824
|
|
|
803
825
|
[[package]]
|
|
804
826
|
name = "hermit-abi"
|
|
805
|
-
version = "0.
|
|
827
|
+
version = "0.2.6"
|
|
806
828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
-
checksum = "
|
|
829
|
+
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
|
|
808
830
|
dependencies = [
|
|
809
831
|
"libc",
|
|
810
832
|
]
|
|
811
833
|
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "hermit-abi"
|
|
836
|
+
version = "0.3.1"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
|
|
839
|
+
|
|
812
840
|
[[package]]
|
|
813
841
|
name = "hmac"
|
|
814
842
|
version = "0.12.1"
|
|
@@ -820,9 +848,9 @@ dependencies = [
|
|
|
820
848
|
|
|
821
849
|
[[package]]
|
|
822
850
|
name = "http"
|
|
823
|
-
version = "0.2.
|
|
851
|
+
version = "0.2.9"
|
|
824
852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
-
checksum = "
|
|
853
|
+
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
|
|
826
854
|
dependencies = [
|
|
827
855
|
"bytes",
|
|
828
856
|
"fnv",
|
|
@@ -840,12 +868,6 @@ dependencies = [
|
|
|
840
868
|
"pin-project-lite",
|
|
841
869
|
]
|
|
842
870
|
|
|
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
871
|
[[package]]
|
|
850
872
|
name = "httparse"
|
|
851
873
|
version = "1.8.0"
|
|
@@ -860,9 +882,9 @@ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
|
|
860
882
|
|
|
861
883
|
[[package]]
|
|
862
884
|
name = "hyper"
|
|
863
|
-
version = "0.14.
|
|
885
|
+
version = "0.14.25"
|
|
864
886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
-
checksum = "
|
|
887
|
+
checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899"
|
|
866
888
|
dependencies = [
|
|
867
889
|
"bytes",
|
|
868
890
|
"futures-channel",
|
|
@@ -884,9 +906,9 @@ dependencies = [
|
|
|
884
906
|
|
|
885
907
|
[[package]]
|
|
886
908
|
name = "hyper-rustls"
|
|
887
|
-
version = "0.23.
|
|
909
|
+
version = "0.23.2"
|
|
888
910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
-
checksum = "
|
|
911
|
+
checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
|
|
890
912
|
dependencies = [
|
|
891
913
|
"http",
|
|
892
914
|
"hyper",
|
|
@@ -925,9 +947,9 @@ dependencies = [
|
|
|
925
947
|
|
|
926
948
|
[[package]]
|
|
927
949
|
name = "indexmap"
|
|
928
|
-
version = "1.9.
|
|
950
|
+
version = "1.9.3"
|
|
929
951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
-
checksum = "
|
|
952
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
931
953
|
dependencies = [
|
|
932
954
|
"autocfg",
|
|
933
955
|
"hashbrown 0.12.3",
|
|
@@ -944,19 +966,30 @@ dependencies = [
|
|
|
944
966
|
|
|
945
967
|
[[package]]
|
|
946
968
|
name = "inventory"
|
|
947
|
-
version = "0.3.
|
|
969
|
+
version = "0.3.5"
|
|
948
970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
-
checksum = "
|
|
971
|
+
checksum = "7741301a6d6a9b28ce77c0fb77a4eb116b6bc8f3bef09923f7743d059c4157d3"
|
|
950
972
|
dependencies = [
|
|
951
973
|
"ctor",
|
|
952
974
|
"ghost",
|
|
953
975
|
]
|
|
954
976
|
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "io-lifetimes"
|
|
979
|
+
version = "1.0.10"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"hermit-abi 0.3.1",
|
|
984
|
+
"libc",
|
|
985
|
+
"windows-sys 0.48.0",
|
|
986
|
+
]
|
|
987
|
+
|
|
955
988
|
[[package]]
|
|
956
989
|
name = "ipnet"
|
|
957
|
-
version = "2.
|
|
990
|
+
version = "2.7.2"
|
|
958
991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
-
checksum = "
|
|
992
|
+
checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
|
|
960
993
|
|
|
961
994
|
[[package]]
|
|
962
995
|
name = "itertools"
|
|
@@ -969,24 +1002,24 @@ dependencies = [
|
|
|
969
1002
|
|
|
970
1003
|
[[package]]
|
|
971
1004
|
name = "itoa"
|
|
972
|
-
version = "1.0.
|
|
1005
|
+
version = "1.0.6"
|
|
973
1006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
-
checksum = "
|
|
1007
|
+
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
|
975
1008
|
|
|
976
1009
|
[[package]]
|
|
977
1010
|
name = "jobserver"
|
|
978
|
-
version = "0.1.
|
|
1011
|
+
version = "0.1.26"
|
|
979
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
-
checksum = "
|
|
1013
|
+
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
|
|
981
1014
|
dependencies = [
|
|
982
1015
|
"libc",
|
|
983
1016
|
]
|
|
984
1017
|
|
|
985
1018
|
[[package]]
|
|
986
1019
|
name = "js-sys"
|
|
987
|
-
version = "0.3.
|
|
1020
|
+
version = "0.3.61"
|
|
988
1021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
-
checksum = "
|
|
1022
|
+
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
|
|
990
1023
|
dependencies = [
|
|
991
1024
|
"wasm-bindgen",
|
|
992
1025
|
]
|
|
@@ -999,9 +1032,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
999
1032
|
|
|
1000
1033
|
[[package]]
|
|
1001
1034
|
name = "libc"
|
|
1002
|
-
version = "0.2.
|
|
1035
|
+
version = "0.2.141"
|
|
1003
1036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
-
checksum = "
|
|
1037
|
+
checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5"
|
|
1005
1038
|
|
|
1006
1039
|
[[package]]
|
|
1007
1040
|
name = "libloading"
|
|
@@ -1013,6 +1046,12 @@ dependencies = [
|
|
|
1013
1046
|
"winapi",
|
|
1014
1047
|
]
|
|
1015
1048
|
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "linux-raw-sys"
|
|
1051
|
+
version = "0.3.1"
|
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
+
checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f"
|
|
1054
|
+
|
|
1016
1055
|
[[package]]
|
|
1017
1056
|
name = "lock_api"
|
|
1018
1057
|
version = "0.4.9"
|
|
@@ -1061,9 +1100,9 @@ dependencies = [
|
|
|
1061
1100
|
|
|
1062
1101
|
[[package]]
|
|
1063
1102
|
name = "matchit"
|
|
1064
|
-
version = "0.
|
|
1103
|
+
version = "0.7.0"
|
|
1065
1104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
-
checksum = "
|
|
1105
|
+
checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
|
|
1067
1106
|
|
|
1068
1107
|
[[package]]
|
|
1069
1108
|
name = "memchr"
|
|
@@ -1073,54 +1112,54 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
|
1073
1112
|
|
|
1074
1113
|
[[package]]
|
|
1075
1114
|
name = "memoffset"
|
|
1076
|
-
version = "0.
|
|
1115
|
+
version = "0.7.1"
|
|
1077
1116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
-
checksum = "
|
|
1117
|
+
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
|
|
1079
1118
|
dependencies = [
|
|
1080
1119
|
"autocfg",
|
|
1081
1120
|
]
|
|
1082
1121
|
|
|
1083
1122
|
[[package]]
|
|
1084
1123
|
name = "memoffset"
|
|
1085
|
-
version = "0.
|
|
1124
|
+
version = "0.8.0"
|
|
1086
1125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
-
checksum = "
|
|
1126
|
+
checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
|
|
1088
1127
|
dependencies = [
|
|
1089
1128
|
"autocfg",
|
|
1090
1129
|
]
|
|
1091
1130
|
|
|
1092
1131
|
[[package]]
|
|
1093
1132
|
name = "mime"
|
|
1094
|
-
version = "0.3.
|
|
1133
|
+
version = "0.3.17"
|
|
1095
1134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
-
checksum = "
|
|
1135
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1097
1136
|
|
|
1098
1137
|
[[package]]
|
|
1099
1138
|
name = "miniz_oxide"
|
|
1100
|
-
version = "0.
|
|
1139
|
+
version = "0.6.2"
|
|
1101
1140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
-
checksum = "
|
|
1141
|
+
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
|
|
1103
1142
|
dependencies = [
|
|
1104
1143
|
"adler",
|
|
1105
1144
|
]
|
|
1106
1145
|
|
|
1107
1146
|
[[package]]
|
|
1108
1147
|
name = "mio"
|
|
1109
|
-
version = "0.8.
|
|
1148
|
+
version = "0.8.6"
|
|
1110
1149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
-
checksum = "
|
|
1150
|
+
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
|
|
1112
1151
|
dependencies = [
|
|
1113
1152
|
"libc",
|
|
1114
1153
|
"log",
|
|
1115
1154
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1116
|
-
"windows-sys 0.
|
|
1155
|
+
"windows-sys 0.45.0",
|
|
1117
1156
|
]
|
|
1118
1157
|
|
|
1119
1158
|
[[package]]
|
|
1120
1159
|
name = "mockall"
|
|
1121
|
-
version = "0.11.
|
|
1160
|
+
version = "0.11.4"
|
|
1122
1161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
-
checksum = "
|
|
1162
|
+
checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96"
|
|
1124
1163
|
dependencies = [
|
|
1125
1164
|
"cfg-if",
|
|
1126
1165
|
"downcast",
|
|
@@ -1133,14 +1172,14 @@ dependencies = [
|
|
|
1133
1172
|
|
|
1134
1173
|
[[package]]
|
|
1135
1174
|
name = "mockall_derive"
|
|
1136
|
-
version = "0.11.
|
|
1175
|
+
version = "0.11.4"
|
|
1137
1176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
-
checksum = "
|
|
1177
|
+
checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb"
|
|
1139
1178
|
dependencies = [
|
|
1140
1179
|
"cfg-if",
|
|
1141
1180
|
"proc-macro2",
|
|
1142
1181
|
"quote",
|
|
1143
|
-
"syn 1.0.
|
|
1182
|
+
"syn 1.0.109",
|
|
1144
1183
|
]
|
|
1145
1184
|
|
|
1146
1185
|
[[package]]
|
|
@@ -1175,7 +1214,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1175
1214
|
checksum = "b7288eac8b54af7913c60e0eb0e2a7683020dffa342ab3fd15e28f035ba897cf"
|
|
1176
1215
|
dependencies = [
|
|
1177
1216
|
"quote",
|
|
1178
|
-
"syn 1.0.
|
|
1217
|
+
"syn 1.0.109",
|
|
1179
1218
|
"syn-mid",
|
|
1180
1219
|
]
|
|
1181
1220
|
|
|
@@ -1192,9 +1231,9 @@ dependencies = [
|
|
|
1192
1231
|
|
|
1193
1232
|
[[package]]
|
|
1194
1233
|
name = "nix"
|
|
1195
|
-
version = "0.26.
|
|
1234
|
+
version = "0.26.2"
|
|
1196
1235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
-
checksum = "
|
|
1236
|
+
checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
|
|
1198
1237
|
dependencies = [
|
|
1199
1238
|
"bitflags",
|
|
1200
1239
|
"cfg-if",
|
|
@@ -1253,28 +1292,19 @@ dependencies = [
|
|
|
1253
1292
|
|
|
1254
1293
|
[[package]]
|
|
1255
1294
|
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"
|
|
1295
|
+
version = "1.15.0"
|
|
1267
1296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
-
checksum = "
|
|
1297
|
+
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
|
|
1269
1298
|
dependencies = [
|
|
1299
|
+
"hermit-abi 0.2.6",
|
|
1270
1300
|
"libc",
|
|
1271
1301
|
]
|
|
1272
1302
|
|
|
1273
1303
|
[[package]]
|
|
1274
1304
|
name = "once_cell"
|
|
1275
|
-
version = "1.
|
|
1305
|
+
version = "1.17.1"
|
|
1276
1306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
|
-
checksum = "
|
|
1307
|
+
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
|
|
1278
1308
|
|
|
1279
1309
|
[[package]]
|
|
1280
1310
|
name = "opaque-debug"
|
|
@@ -1397,15 +1427,15 @@ dependencies = [
|
|
|
1397
1427
|
|
|
1398
1428
|
[[package]]
|
|
1399
1429
|
name = "parking_lot_core"
|
|
1400
|
-
version = "0.9.
|
|
1430
|
+
version = "0.9.7"
|
|
1401
1431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
-
checksum = "
|
|
1432
|
+
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
|
|
1403
1433
|
dependencies = [
|
|
1404
1434
|
"cfg-if",
|
|
1405
1435
|
"libc",
|
|
1406
|
-
"redox_syscall",
|
|
1436
|
+
"redox_syscall 0.2.16",
|
|
1407
1437
|
"smallvec",
|
|
1408
|
-
"windows-sys 0.
|
|
1438
|
+
"windows-sys 0.45.0",
|
|
1409
1439
|
]
|
|
1410
1440
|
|
|
1411
1441
|
[[package]]
|
|
@@ -1439,9 +1469,9 @@ checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
|
|
|
1439
1469
|
|
|
1440
1470
|
[[package]]
|
|
1441
1471
|
name = "petgraph"
|
|
1442
|
-
version = "0.6.
|
|
1472
|
+
version = "0.6.3"
|
|
1443
1473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
-
checksum = "
|
|
1474
|
+
checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4"
|
|
1445
1475
|
dependencies = [
|
|
1446
1476
|
"fixedbitset",
|
|
1447
1477
|
"indexmap",
|
|
@@ -1464,7 +1494,7 @@ checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
|
|
|
1464
1494
|
dependencies = [
|
|
1465
1495
|
"proc-macro2",
|
|
1466
1496
|
"quote",
|
|
1467
|
-
"syn 1.0.
|
|
1497
|
+
"syn 1.0.109",
|
|
1468
1498
|
]
|
|
1469
1499
|
|
|
1470
1500
|
[[package]]
|
|
@@ -1481,21 +1511,21 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1481
1511
|
|
|
1482
1512
|
[[package]]
|
|
1483
1513
|
name = "pkg-config"
|
|
1484
|
-
version = "0.3.
|
|
1514
|
+
version = "0.3.26"
|
|
1485
1515
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
-
checksum = "
|
|
1516
|
+
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
|
1487
1517
|
|
|
1488
1518
|
[[package]]
|
|
1489
1519
|
name = "ppv-lite86"
|
|
1490
|
-
version = "0.2.
|
|
1520
|
+
version = "0.2.17"
|
|
1491
1521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
-
checksum = "
|
|
1522
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1493
1523
|
|
|
1494
1524
|
[[package]]
|
|
1495
1525
|
name = "predicates"
|
|
1496
|
-
version = "2.1.
|
|
1526
|
+
version = "2.1.5"
|
|
1497
1527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
-
checksum = "
|
|
1528
|
+
checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd"
|
|
1499
1529
|
dependencies = [
|
|
1500
1530
|
"difflib",
|
|
1501
1531
|
"float-cmp",
|
|
@@ -1507,15 +1537,15 @@ dependencies = [
|
|
|
1507
1537
|
|
|
1508
1538
|
[[package]]
|
|
1509
1539
|
name = "predicates-core"
|
|
1510
|
-
version = "1.0.
|
|
1540
|
+
version = "1.0.6"
|
|
1511
1541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1512
|
-
checksum = "
|
|
1542
|
+
checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
|
|
1513
1543
|
|
|
1514
1544
|
[[package]]
|
|
1515
1545
|
name = "predicates-tree"
|
|
1516
|
-
version = "1.0.
|
|
1546
|
+
version = "1.0.9"
|
|
1517
1547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
-
checksum = "
|
|
1548
|
+
checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf"
|
|
1519
1549
|
dependencies = [
|
|
1520
1550
|
"predicates-core",
|
|
1521
1551
|
"termtree",
|
|
@@ -1523,28 +1553,28 @@ dependencies = [
|
|
|
1523
1553
|
|
|
1524
1554
|
[[package]]
|
|
1525
1555
|
name = "prettyplease"
|
|
1526
|
-
version = "0.1.
|
|
1556
|
+
version = "0.1.25"
|
|
1527
1557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
-
checksum = "
|
|
1558
|
+
checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86"
|
|
1529
1559
|
dependencies = [
|
|
1530
1560
|
"proc-macro2",
|
|
1531
|
-
"syn 1.0.
|
|
1561
|
+
"syn 1.0.109",
|
|
1532
1562
|
]
|
|
1533
1563
|
|
|
1534
1564
|
[[package]]
|
|
1535
1565
|
name = "proc-macro2"
|
|
1536
|
-
version = "1.0.
|
|
1566
|
+
version = "1.0.56"
|
|
1537
1567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1538
|
-
checksum = "
|
|
1568
|
+
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
|
|
1539
1569
|
dependencies = [
|
|
1540
1570
|
"unicode-ident",
|
|
1541
1571
|
]
|
|
1542
1572
|
|
|
1543
1573
|
[[package]]
|
|
1544
1574
|
name = "prometheus"
|
|
1545
|
-
version = "0.13.
|
|
1575
|
+
version = "0.13.3"
|
|
1546
1576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
-
checksum = "
|
|
1577
|
+
checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c"
|
|
1548
1578
|
dependencies = [
|
|
1549
1579
|
"cfg-if",
|
|
1550
1580
|
"fnv",
|
|
@@ -1557,9 +1587,9 @@ dependencies = [
|
|
|
1557
1587
|
|
|
1558
1588
|
[[package]]
|
|
1559
1589
|
name = "prost"
|
|
1560
|
-
version = "0.11.
|
|
1590
|
+
version = "0.11.9"
|
|
1561
1591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
-
checksum = "
|
|
1592
|
+
checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
|
|
1563
1593
|
dependencies = [
|
|
1564
1594
|
"bytes",
|
|
1565
1595
|
"prost-derive",
|
|
@@ -1567,9 +1597,9 @@ dependencies = [
|
|
|
1567
1597
|
|
|
1568
1598
|
[[package]]
|
|
1569
1599
|
name = "prost-build"
|
|
1570
|
-
version = "0.11.
|
|
1600
|
+
version = "0.11.9"
|
|
1571
1601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
-
checksum = "
|
|
1602
|
+
checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270"
|
|
1573
1603
|
dependencies = [
|
|
1574
1604
|
"bytes",
|
|
1575
1605
|
"heck",
|
|
@@ -1582,39 +1612,38 @@ dependencies = [
|
|
|
1582
1612
|
"prost",
|
|
1583
1613
|
"prost-types",
|
|
1584
1614
|
"regex",
|
|
1585
|
-
"syn 1.0.
|
|
1615
|
+
"syn 1.0.109",
|
|
1586
1616
|
"tempfile",
|
|
1587
1617
|
"which",
|
|
1588
1618
|
]
|
|
1589
1619
|
|
|
1590
1620
|
[[package]]
|
|
1591
1621
|
name = "prost-derive"
|
|
1592
|
-
version = "0.11.
|
|
1622
|
+
version = "0.11.9"
|
|
1593
1623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
-
checksum = "
|
|
1624
|
+
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
|
|
1595
1625
|
dependencies = [
|
|
1596
1626
|
"anyhow",
|
|
1597
1627
|
"itertools",
|
|
1598
1628
|
"proc-macro2",
|
|
1599
1629
|
"quote",
|
|
1600
|
-
"syn 1.0.
|
|
1630
|
+
"syn 1.0.109",
|
|
1601
1631
|
]
|
|
1602
1632
|
|
|
1603
1633
|
[[package]]
|
|
1604
1634
|
name = "prost-types"
|
|
1605
|
-
version = "0.11.
|
|
1635
|
+
version = "0.11.9"
|
|
1606
1636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
-
checksum = "
|
|
1637
|
+
checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
|
|
1608
1638
|
dependencies = [
|
|
1609
|
-
"bytes",
|
|
1610
1639
|
"prost",
|
|
1611
1640
|
]
|
|
1612
1641
|
|
|
1613
1642
|
[[package]]
|
|
1614
1643
|
name = "prost-wkt"
|
|
1615
|
-
version = "0.4.
|
|
1644
|
+
version = "0.4.1"
|
|
1616
1645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
-
checksum = "
|
|
1646
|
+
checksum = "9f82196110c6376d25bf155f6d3a55835151d4f8ad470f203d46ee04c040d2fb"
|
|
1618
1647
|
dependencies = [
|
|
1619
1648
|
"chrono",
|
|
1620
1649
|
"inventory",
|
|
@@ -1627,9 +1656,9 @@ dependencies = [
|
|
|
1627
1656
|
|
|
1628
1657
|
[[package]]
|
|
1629
1658
|
name = "prost-wkt-build"
|
|
1630
|
-
version = "0.4.
|
|
1659
|
+
version = "0.4.1"
|
|
1631
1660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
-
checksum = "
|
|
1661
|
+
checksum = "8958d27269aec14c99c134ebb2796ab4287478bde21453d76aa43d1683265759"
|
|
1633
1662
|
dependencies = [
|
|
1634
1663
|
"heck",
|
|
1635
1664
|
"prost",
|
|
@@ -1640,9 +1669,9 @@ dependencies = [
|
|
|
1640
1669
|
|
|
1641
1670
|
[[package]]
|
|
1642
1671
|
name = "prost-wkt-types"
|
|
1643
|
-
version = "0.4.
|
|
1672
|
+
version = "0.4.1"
|
|
1644
1673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
-
checksum = "
|
|
1674
|
+
checksum = "0c174ca3ca389b401547913b2a92aa9c08d849499138f962a771aedc9d77b2ce"
|
|
1646
1675
|
dependencies = [
|
|
1647
1676
|
"chrono",
|
|
1648
1677
|
"prost",
|
|
@@ -1719,9 +1748,9 @@ dependencies = [
|
|
|
1719
1748
|
|
|
1720
1749
|
[[package]]
|
|
1721
1750
|
name = "raw-cpuid"
|
|
1722
|
-
version = "10.
|
|
1751
|
+
version = "10.7.0"
|
|
1723
1752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
-
checksum = "
|
|
1753
|
+
checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332"
|
|
1725
1754
|
dependencies = [
|
|
1726
1755
|
"bitflags",
|
|
1727
1756
|
]
|
|
@@ -1735,11 +1764,20 @@ dependencies = [
|
|
|
1735
1764
|
"bitflags",
|
|
1736
1765
|
]
|
|
1737
1766
|
|
|
1767
|
+
[[package]]
|
|
1768
|
+
name = "redox_syscall"
|
|
1769
|
+
version = "0.3.5"
|
|
1770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
+
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
|
1772
|
+
dependencies = [
|
|
1773
|
+
"bitflags",
|
|
1774
|
+
]
|
|
1775
|
+
|
|
1738
1776
|
[[package]]
|
|
1739
1777
|
name = "regex"
|
|
1740
|
-
version = "1.
|
|
1778
|
+
version = "1.7.3"
|
|
1741
1779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
|
-
checksum = "
|
|
1780
|
+
checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
|
|
1743
1781
|
dependencies = [
|
|
1744
1782
|
"aho-corasick",
|
|
1745
1783
|
"memchr",
|
|
@@ -1757,26 +1795,17 @@ dependencies = [
|
|
|
1757
1795
|
|
|
1758
1796
|
[[package]]
|
|
1759
1797
|
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"
|
|
1798
|
+
version = "0.6.29"
|
|
1767
1799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
-
checksum = "
|
|
1769
|
-
dependencies = [
|
|
1770
|
-
"winapi",
|
|
1771
|
-
]
|
|
1800
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
1772
1801
|
|
|
1773
1802
|
[[package]]
|
|
1774
1803
|
name = "reqwest"
|
|
1775
|
-
version = "0.11.
|
|
1804
|
+
version = "0.11.16"
|
|
1776
1805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
-
checksum = "
|
|
1806
|
+
checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254"
|
|
1778
1807
|
dependencies = [
|
|
1779
|
-
"base64 0.
|
|
1808
|
+
"base64 0.21.0",
|
|
1780
1809
|
"bytes",
|
|
1781
1810
|
"encoding_rs",
|
|
1782
1811
|
"futures-core",
|
|
@@ -1805,6 +1834,7 @@ dependencies = [
|
|
|
1805
1834
|
"url",
|
|
1806
1835
|
"wasm-bindgen",
|
|
1807
1836
|
"wasm-bindgen-futures",
|
|
1837
|
+
"wasm-streams",
|
|
1808
1838
|
"web-sys",
|
|
1809
1839
|
"webpki-roots",
|
|
1810
1840
|
"winreg",
|
|
@@ -1827,9 +1857,9 @@ dependencies = [
|
|
|
1827
1857
|
|
|
1828
1858
|
[[package]]
|
|
1829
1859
|
name = "ringbuf"
|
|
1830
|
-
version = "0.3.
|
|
1860
|
+
version = "0.3.3"
|
|
1831
1861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
-
checksum = "
|
|
1862
|
+
checksum = "79abed428d1fd2a128201cec72c5f6938e2da607c6f3745f769fabea399d950a"
|
|
1833
1863
|
dependencies = [
|
|
1834
1864
|
"crossbeam-utils",
|
|
1835
1865
|
]
|
|
@@ -1840,7 +1870,7 @@ version = "0.4.0"
|
|
|
1840
1870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
1871
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
1842
1872
|
dependencies = [
|
|
1843
|
-
"semver 1.0.
|
|
1873
|
+
"semver 1.0.17",
|
|
1844
1874
|
]
|
|
1845
1875
|
|
|
1846
1876
|
[[package]]
|
|
@@ -1859,18 +1889,32 @@ dependencies = [
|
|
|
1859
1889
|
"proc-macro2",
|
|
1860
1890
|
"quote",
|
|
1861
1891
|
"rustfsm_trait",
|
|
1862
|
-
"syn 1.0.
|
|
1892
|
+
"syn 1.0.109",
|
|
1863
1893
|
]
|
|
1864
1894
|
|
|
1865
1895
|
[[package]]
|
|
1866
1896
|
name = "rustfsm_trait"
|
|
1867
1897
|
version = "0.1.0"
|
|
1868
1898
|
|
|
1899
|
+
[[package]]
|
|
1900
|
+
name = "rustix"
|
|
1901
|
+
version = "0.37.11"
|
|
1902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1903
|
+
checksum = "85597d61f83914ddeba6a47b3b8ffe7365107221c2e557ed94426489fefb5f77"
|
|
1904
|
+
dependencies = [
|
|
1905
|
+
"bitflags",
|
|
1906
|
+
"errno",
|
|
1907
|
+
"io-lifetimes",
|
|
1908
|
+
"libc",
|
|
1909
|
+
"linux-raw-sys",
|
|
1910
|
+
"windows-sys 0.48.0",
|
|
1911
|
+
]
|
|
1912
|
+
|
|
1869
1913
|
[[package]]
|
|
1870
1914
|
name = "rustls"
|
|
1871
|
-
version = "0.20.
|
|
1915
|
+
version = "0.20.8"
|
|
1872
1916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
-
checksum = "
|
|
1917
|
+
checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
|
|
1874
1918
|
dependencies = [
|
|
1875
1919
|
"log",
|
|
1876
1920
|
"ring",
|
|
@@ -1892,27 +1936,32 @@ dependencies = [
|
|
|
1892
1936
|
|
|
1893
1937
|
[[package]]
|
|
1894
1938
|
name = "rustls-pemfile"
|
|
1895
|
-
version = "1.0.
|
|
1939
|
+
version = "1.0.2"
|
|
1896
1940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
-
checksum = "
|
|
1941
|
+
checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
|
|
1898
1942
|
dependencies = [
|
|
1899
|
-
"base64 0.
|
|
1943
|
+
"base64 0.21.0",
|
|
1900
1944
|
]
|
|
1901
1945
|
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "rustversion"
|
|
1948
|
+
version = "1.0.12"
|
|
1949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
+
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
|
|
1951
|
+
|
|
1902
1952
|
[[package]]
|
|
1903
1953
|
name = "ryu"
|
|
1904
|
-
version = "1.0.
|
|
1954
|
+
version = "1.0.13"
|
|
1905
1955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1906
|
-
checksum = "
|
|
1956
|
+
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
|
|
1907
1957
|
|
|
1908
1958
|
[[package]]
|
|
1909
1959
|
name = "schannel"
|
|
1910
|
-
version = "0.1.
|
|
1960
|
+
version = "0.1.21"
|
|
1911
1961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1912
|
-
checksum = "
|
|
1962
|
+
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
|
|
1913
1963
|
dependencies = [
|
|
1914
|
-
"
|
|
1915
|
-
"windows-sys 0.36.1",
|
|
1964
|
+
"windows-sys 0.42.0",
|
|
1916
1965
|
]
|
|
1917
1966
|
|
|
1918
1967
|
[[package]]
|
|
@@ -1933,9 +1982,9 @@ dependencies = [
|
|
|
1933
1982
|
|
|
1934
1983
|
[[package]]
|
|
1935
1984
|
name = "security-framework"
|
|
1936
|
-
version = "2.
|
|
1985
|
+
version = "2.8.2"
|
|
1937
1986
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
-
checksum = "
|
|
1987
|
+
checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
|
|
1939
1988
|
dependencies = [
|
|
1940
1989
|
"bitflags",
|
|
1941
1990
|
"core-foundation",
|
|
@@ -1946,9 +1995,9 @@ dependencies = [
|
|
|
1946
1995
|
|
|
1947
1996
|
[[package]]
|
|
1948
1997
|
name = "security-framework-sys"
|
|
1949
|
-
version = "2.
|
|
1998
|
+
version = "2.8.0"
|
|
1950
1999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1951
|
-
checksum = "
|
|
2000
|
+
checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
|
|
1952
2001
|
dependencies = [
|
|
1953
2002
|
"core-foundation-sys",
|
|
1954
2003
|
"libc",
|
|
@@ -1965,9 +2014,9 @@ dependencies = [
|
|
|
1965
2014
|
|
|
1966
2015
|
[[package]]
|
|
1967
2016
|
name = "semver"
|
|
1968
|
-
version = "1.0.
|
|
2017
|
+
version = "1.0.17"
|
|
1969
2018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
-
checksum = "
|
|
2019
|
+
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
|
1971
2020
|
|
|
1972
2021
|
[[package]]
|
|
1973
2022
|
name = "semver-parser"
|
|
@@ -1977,29 +2026,29 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
|
1977
2026
|
|
|
1978
2027
|
[[package]]
|
|
1979
2028
|
name = "serde"
|
|
1980
|
-
version = "1.0.
|
|
2029
|
+
version = "1.0.160"
|
|
1981
2030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
-
checksum = "
|
|
2031
|
+
checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c"
|
|
1983
2032
|
dependencies = [
|
|
1984
2033
|
"serde_derive",
|
|
1985
2034
|
]
|
|
1986
2035
|
|
|
1987
2036
|
[[package]]
|
|
1988
2037
|
name = "serde_derive"
|
|
1989
|
-
version = "1.0.
|
|
2038
|
+
version = "1.0.160"
|
|
1990
2039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
-
checksum = "
|
|
2040
|
+
checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df"
|
|
1992
2041
|
dependencies = [
|
|
1993
2042
|
"proc-macro2",
|
|
1994
2043
|
"quote",
|
|
1995
|
-
"syn
|
|
2044
|
+
"syn 2.0.14",
|
|
1996
2045
|
]
|
|
1997
2046
|
|
|
1998
2047
|
[[package]]
|
|
1999
2048
|
name = "serde_json"
|
|
2000
|
-
version = "1.0.
|
|
2049
|
+
version = "1.0.95"
|
|
2001
2050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
-
checksum = "
|
|
2051
|
+
checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744"
|
|
2003
2052
|
dependencies = [
|
|
2004
2053
|
"itoa",
|
|
2005
2054
|
"ryu",
|
|
@@ -2051,9 +2100,9 @@ dependencies = [
|
|
|
2051
2100
|
|
|
2052
2101
|
[[package]]
|
|
2053
2102
|
name = "signal-hook-registry"
|
|
2054
|
-
version = "1.4.
|
|
2103
|
+
version = "1.4.1"
|
|
2055
2104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
|
-
checksum = "
|
|
2105
|
+
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
|
|
2057
2106
|
dependencies = [
|
|
2058
2107
|
"libc",
|
|
2059
2108
|
]
|
|
@@ -2066,9 +2115,9 @@ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
|
|
|
2066
2115
|
|
|
2067
2116
|
[[package]]
|
|
2068
2117
|
name = "slab"
|
|
2069
|
-
version = "0.4.
|
|
2118
|
+
version = "0.4.8"
|
|
2070
2119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2071
|
-
checksum = "
|
|
2120
|
+
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
|
|
2072
2121
|
dependencies = [
|
|
2073
2122
|
"autocfg",
|
|
2074
2123
|
]
|
|
@@ -2124,9 +2173,9 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
|
|
|
2124
2173
|
|
|
2125
2174
|
[[package]]
|
|
2126
2175
|
name = "syn"
|
|
2127
|
-
version = "1.0.
|
|
2176
|
+
version = "1.0.109"
|
|
2128
2177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2129
|
-
checksum = "
|
|
2178
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2130
2179
|
dependencies = [
|
|
2131
2180
|
"proc-macro2",
|
|
2132
2181
|
"quote",
|
|
@@ -2135,9 +2184,9 @@ dependencies = [
|
|
|
2135
2184
|
|
|
2136
2185
|
[[package]]
|
|
2137
2186
|
name = "syn"
|
|
2138
|
-
version = "2.0.
|
|
2187
|
+
version = "2.0.14"
|
|
2139
2188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
-
checksum = "
|
|
2189
|
+
checksum = "fcf316d5356ed6847742d036f8a39c3b8435cac10bd528a4bd461928a6ab34d5"
|
|
2141
2190
|
dependencies = [
|
|
2142
2191
|
"proc-macro2",
|
|
2143
2192
|
"quote",
|
|
@@ -2152,14 +2201,14 @@ checksum = "baa8e7560a164edb1621a55d18a0c59abf49d360f47aa7b821061dd7eea7fac9"
|
|
|
2152
2201
|
dependencies = [
|
|
2153
2202
|
"proc-macro2",
|
|
2154
2203
|
"quote",
|
|
2155
|
-
"syn 1.0.
|
|
2204
|
+
"syn 1.0.109",
|
|
2156
2205
|
]
|
|
2157
2206
|
|
|
2158
2207
|
[[package]]
|
|
2159
2208
|
name = "sync_wrapper"
|
|
2160
|
-
version = "0.1.
|
|
2209
|
+
version = "0.1.2"
|
|
2161
2210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2162
|
-
checksum = "
|
|
2211
|
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
2163
2212
|
|
|
2164
2213
|
[[package]]
|
|
2165
2214
|
name = "tar"
|
|
@@ -2174,16 +2223,15 @@ dependencies = [
|
|
|
2174
2223
|
|
|
2175
2224
|
[[package]]
|
|
2176
2225
|
name = "tempfile"
|
|
2177
|
-
version = "3.
|
|
2226
|
+
version = "3.5.0"
|
|
2178
2227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
-
checksum = "
|
|
2228
|
+
checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
|
|
2180
2229
|
dependencies = [
|
|
2181
2230
|
"cfg-if",
|
|
2182
2231
|
"fastrand",
|
|
2183
|
-
"
|
|
2184
|
-
"
|
|
2185
|
-
"
|
|
2186
|
-
"winapi",
|
|
2232
|
+
"redox_syscall 0.3.5",
|
|
2233
|
+
"rustix",
|
|
2234
|
+
"windows-sys 0.45.0",
|
|
2187
2235
|
]
|
|
2188
2236
|
|
|
2189
2237
|
[[package]]
|
|
@@ -2330,56 +2378,55 @@ dependencies = [
|
|
|
2330
2378
|
|
|
2331
2379
|
[[package]]
|
|
2332
2380
|
name = "termtree"
|
|
2333
|
-
version = "0.
|
|
2381
|
+
version = "0.4.1"
|
|
2334
2382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
-
checksum = "
|
|
2383
|
+
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
|
|
2336
2384
|
|
|
2337
2385
|
[[package]]
|
|
2338
2386
|
name = "thiserror"
|
|
2339
|
-
version = "1.0.
|
|
2387
|
+
version = "1.0.40"
|
|
2340
2388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
-
checksum = "
|
|
2389
|
+
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
|
|
2342
2390
|
dependencies = [
|
|
2343
2391
|
"thiserror-impl",
|
|
2344
2392
|
]
|
|
2345
2393
|
|
|
2346
2394
|
[[package]]
|
|
2347
2395
|
name = "thiserror-impl"
|
|
2348
|
-
version = "1.0.
|
|
2396
|
+
version = "1.0.40"
|
|
2349
2397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
-
checksum = "
|
|
2398
|
+
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
|
2351
2399
|
dependencies = [
|
|
2352
2400
|
"proc-macro2",
|
|
2353
2401
|
"quote",
|
|
2354
|
-
"syn
|
|
2402
|
+
"syn 2.0.14",
|
|
2355
2403
|
]
|
|
2356
2404
|
|
|
2357
2405
|
[[package]]
|
|
2358
2406
|
name = "thread_local"
|
|
2359
|
-
version = "1.1.
|
|
2407
|
+
version = "1.1.7"
|
|
2360
2408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
|
-
checksum = "
|
|
2409
|
+
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
|
|
2362
2410
|
dependencies = [
|
|
2411
|
+
"cfg-if",
|
|
2363
2412
|
"once_cell",
|
|
2364
2413
|
]
|
|
2365
2414
|
|
|
2366
2415
|
[[package]]
|
|
2367
2416
|
name = "time"
|
|
2368
|
-
version = "0.3.
|
|
2417
|
+
version = "0.3.20"
|
|
2369
2418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2370
|
-
checksum = "
|
|
2419
|
+
checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890"
|
|
2371
2420
|
dependencies = [
|
|
2372
|
-
"
|
|
2373
|
-
"
|
|
2374
|
-
"num_threads",
|
|
2375
|
-
"time-macros",
|
|
2421
|
+
"serde",
|
|
2422
|
+
"time-core",
|
|
2376
2423
|
]
|
|
2377
2424
|
|
|
2378
2425
|
[[package]]
|
|
2379
|
-
name = "time-
|
|
2380
|
-
version = "0.
|
|
2426
|
+
name = "time-core"
|
|
2427
|
+
version = "0.1.0"
|
|
2381
2428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2382
|
-
checksum = "
|
|
2429
|
+
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
|
|
2383
2430
|
|
|
2384
2431
|
[[package]]
|
|
2385
2432
|
name = "tinyvec"
|
|
@@ -2392,9 +2439,9 @@ dependencies = [
|
|
|
2392
2439
|
|
|
2393
2440
|
[[package]]
|
|
2394
2441
|
name = "tinyvec_macros"
|
|
2395
|
-
version = "0.1.
|
|
2442
|
+
version = "0.1.1"
|
|
2396
2443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2397
|
-
checksum = "
|
|
2444
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2398
2445
|
|
|
2399
2446
|
[[package]]
|
|
2400
2447
|
name = "tokio"
|
|
@@ -2433,7 +2480,7 @@ checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce"
|
|
|
2433
2480
|
dependencies = [
|
|
2434
2481
|
"proc-macro2",
|
|
2435
2482
|
"quote",
|
|
2436
|
-
"syn 2.0.
|
|
2483
|
+
"syn 2.0.14",
|
|
2437
2484
|
]
|
|
2438
2485
|
|
|
2439
2486
|
[[package]]
|
|
@@ -2449,9 +2496,9 @@ dependencies = [
|
|
|
2449
2496
|
|
|
2450
2497
|
[[package]]
|
|
2451
2498
|
name = "tokio-stream"
|
|
2452
|
-
version = "0.1.
|
|
2499
|
+
version = "0.1.12"
|
|
2453
2500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2454
|
-
checksum = "
|
|
2501
|
+
checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313"
|
|
2455
2502
|
dependencies = [
|
|
2456
2503
|
"futures-core",
|
|
2457
2504
|
"pin-project-lite",
|
|
@@ -2460,9 +2507,9 @@ dependencies = [
|
|
|
2460
2507
|
|
|
2461
2508
|
[[package]]
|
|
2462
2509
|
name = "tokio-util"
|
|
2463
|
-
version = "0.7.
|
|
2510
|
+
version = "0.7.7"
|
|
2464
2511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
-
checksum = "
|
|
2512
|
+
checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2"
|
|
2466
2513
|
dependencies = [
|
|
2467
2514
|
"bytes",
|
|
2468
2515
|
"futures-core",
|
|
@@ -2474,14 +2521,14 @@ dependencies = [
|
|
|
2474
2521
|
|
|
2475
2522
|
[[package]]
|
|
2476
2523
|
name = "tonic"
|
|
2477
|
-
version = "0.8.
|
|
2524
|
+
version = "0.8.3"
|
|
2478
2525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2479
|
-
checksum = "
|
|
2526
|
+
checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb"
|
|
2480
2527
|
dependencies = [
|
|
2481
2528
|
"async-stream",
|
|
2482
2529
|
"async-trait",
|
|
2483
2530
|
"axum",
|
|
2484
|
-
"base64 0.13.
|
|
2531
|
+
"base64 0.13.1",
|
|
2485
2532
|
"bytes",
|
|
2486
2533
|
"futures-core",
|
|
2487
2534
|
"futures-util",
|
|
@@ -2509,15 +2556,15 @@ dependencies = [
|
|
|
2509
2556
|
|
|
2510
2557
|
[[package]]
|
|
2511
2558
|
name = "tonic-build"
|
|
2512
|
-
version = "0.8.
|
|
2559
|
+
version = "0.8.4"
|
|
2513
2560
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2514
|
-
checksum = "
|
|
2561
|
+
checksum = "5bf5e9b9c0f7e0a7c027dcfaba7b2c60816c7049171f679d99ee2ff65d0de8c4"
|
|
2515
2562
|
dependencies = [
|
|
2516
2563
|
"prettyplease",
|
|
2517
2564
|
"proc-macro2",
|
|
2518
2565
|
"prost-build",
|
|
2519
2566
|
"quote",
|
|
2520
|
-
"syn 1.0.
|
|
2567
|
+
"syn 1.0.109",
|
|
2521
2568
|
]
|
|
2522
2569
|
|
|
2523
2570
|
[[package]]
|
|
@@ -2540,25 +2587,6 @@ dependencies = [
|
|
|
2540
2587
|
"tracing",
|
|
2541
2588
|
]
|
|
2542
2589
|
|
|
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
2590
|
[[package]]
|
|
2563
2591
|
name = "tower-layer"
|
|
2564
2592
|
version = "0.3.2"
|
|
@@ -2592,7 +2620,7 @@ checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
|
|
|
2592
2620
|
dependencies = [
|
|
2593
2621
|
"proc-macro2",
|
|
2594
2622
|
"quote",
|
|
2595
|
-
"syn 1.0.
|
|
2623
|
+
"syn 1.0.109",
|
|
2596
2624
|
]
|
|
2597
2625
|
|
|
2598
2626
|
[[package]]
|
|
@@ -2661,21 +2689,21 @@ dependencies = [
|
|
|
2661
2689
|
|
|
2662
2690
|
[[package]]
|
|
2663
2691
|
name = "try-lock"
|
|
2664
|
-
version = "0.2.
|
|
2692
|
+
version = "0.2.4"
|
|
2665
2693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2666
|
-
checksum = "
|
|
2694
|
+
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
|
|
2667
2695
|
|
|
2668
2696
|
[[package]]
|
|
2669
2697
|
name = "typenum"
|
|
2670
|
-
version = "1.
|
|
2698
|
+
version = "1.16.0"
|
|
2671
2699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2672
|
-
checksum = "
|
|
2700
|
+
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
|
|
2673
2701
|
|
|
2674
2702
|
[[package]]
|
|
2675
2703
|
name = "typetag"
|
|
2676
|
-
version = "0.2.
|
|
2704
|
+
version = "0.2.7"
|
|
2677
2705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
|
-
checksum = "
|
|
2706
|
+
checksum = "edc3ebbaab23e6cc369cb48246769d031f5bd85f1b28141f32982e3c0c7b33cf"
|
|
2679
2707
|
dependencies = [
|
|
2680
2708
|
"erased-serde",
|
|
2681
2709
|
"inventory",
|
|
@@ -2686,26 +2714,26 @@ dependencies = [
|
|
|
2686
2714
|
|
|
2687
2715
|
[[package]]
|
|
2688
2716
|
name = "typetag-impl"
|
|
2689
|
-
version = "0.2.
|
|
2717
|
+
version = "0.2.7"
|
|
2690
2718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2691
|
-
checksum = "
|
|
2719
|
+
checksum = "bb01b60fcc3f5e17babb1a9956263f3ccd2cadc3e52908400231441683283c1d"
|
|
2692
2720
|
dependencies = [
|
|
2693
2721
|
"proc-macro2",
|
|
2694
2722
|
"quote",
|
|
2695
|
-
"syn
|
|
2723
|
+
"syn 2.0.14",
|
|
2696
2724
|
]
|
|
2697
2725
|
|
|
2698
2726
|
[[package]]
|
|
2699
2727
|
name = "unicode-bidi"
|
|
2700
|
-
version = "0.3.
|
|
2728
|
+
version = "0.3.13"
|
|
2701
2729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2702
|
-
checksum = "
|
|
2730
|
+
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
|
|
2703
2731
|
|
|
2704
2732
|
[[package]]
|
|
2705
2733
|
name = "unicode-ident"
|
|
2706
|
-
version = "1.0.
|
|
2734
|
+
version = "1.0.8"
|
|
2707
2735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2708
|
-
checksum = "
|
|
2736
|
+
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
|
2709
2737
|
|
|
2710
2738
|
[[package]]
|
|
2711
2739
|
name = "unicode-normalization"
|
|
@@ -2735,9 +2763,9 @@ dependencies = [
|
|
|
2735
2763
|
|
|
2736
2764
|
[[package]]
|
|
2737
2765
|
name = "uuid"
|
|
2738
|
-
version = "1.
|
|
2766
|
+
version = "1.3.1"
|
|
2739
2767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
-
checksum = "
|
|
2768
|
+
checksum = "5b55a3fef2a1e3b3a00ce878640918820d3c51081576ac657d23af9fc7928fdb"
|
|
2741
2769
|
dependencies = [
|
|
2742
2770
|
"getrandom",
|
|
2743
2771
|
]
|
|
@@ -2778,9 +2806,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
2778
2806
|
|
|
2779
2807
|
[[package]]
|
|
2780
2808
|
name = "wasm-bindgen"
|
|
2781
|
-
version = "0.2.
|
|
2809
|
+
version = "0.2.84"
|
|
2782
2810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2783
|
-
checksum = "
|
|
2811
|
+
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
|
|
2784
2812
|
dependencies = [
|
|
2785
2813
|
"cfg-if",
|
|
2786
2814
|
"wasm-bindgen-macro",
|
|
@@ -2788,24 +2816,24 @@ dependencies = [
|
|
|
2788
2816
|
|
|
2789
2817
|
[[package]]
|
|
2790
2818
|
name = "wasm-bindgen-backend"
|
|
2791
|
-
version = "0.2.
|
|
2819
|
+
version = "0.2.84"
|
|
2792
2820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
-
checksum = "
|
|
2821
|
+
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
|
|
2794
2822
|
dependencies = [
|
|
2795
2823
|
"bumpalo",
|
|
2796
2824
|
"log",
|
|
2797
2825
|
"once_cell",
|
|
2798
2826
|
"proc-macro2",
|
|
2799
2827
|
"quote",
|
|
2800
|
-
"syn 1.0.
|
|
2828
|
+
"syn 1.0.109",
|
|
2801
2829
|
"wasm-bindgen-shared",
|
|
2802
2830
|
]
|
|
2803
2831
|
|
|
2804
2832
|
[[package]]
|
|
2805
2833
|
name = "wasm-bindgen-futures"
|
|
2806
|
-
version = "0.4.
|
|
2834
|
+
version = "0.4.34"
|
|
2807
2835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2808
|
-
checksum = "
|
|
2836
|
+
checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
|
|
2809
2837
|
dependencies = [
|
|
2810
2838
|
"cfg-if",
|
|
2811
2839
|
"js-sys",
|
|
@@ -2815,9 +2843,9 @@ dependencies = [
|
|
|
2815
2843
|
|
|
2816
2844
|
[[package]]
|
|
2817
2845
|
name = "wasm-bindgen-macro"
|
|
2818
|
-
version = "0.2.
|
|
2846
|
+
version = "0.2.84"
|
|
2819
2847
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2820
|
-
checksum = "
|
|
2848
|
+
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
|
|
2821
2849
|
dependencies = [
|
|
2822
2850
|
"quote",
|
|
2823
2851
|
"wasm-bindgen-macro-support",
|
|
@@ -2825,28 +2853,41 @@ dependencies = [
|
|
|
2825
2853
|
|
|
2826
2854
|
[[package]]
|
|
2827
2855
|
name = "wasm-bindgen-macro-support"
|
|
2828
|
-
version = "0.2.
|
|
2856
|
+
version = "0.2.84"
|
|
2829
2857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2830
|
-
checksum = "
|
|
2858
|
+
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
|
|
2831
2859
|
dependencies = [
|
|
2832
2860
|
"proc-macro2",
|
|
2833
2861
|
"quote",
|
|
2834
|
-
"syn 1.0.
|
|
2862
|
+
"syn 1.0.109",
|
|
2835
2863
|
"wasm-bindgen-backend",
|
|
2836
2864
|
"wasm-bindgen-shared",
|
|
2837
2865
|
]
|
|
2838
2866
|
|
|
2839
2867
|
[[package]]
|
|
2840
2868
|
name = "wasm-bindgen-shared"
|
|
2841
|
-
version = "0.2.
|
|
2869
|
+
version = "0.2.84"
|
|
2842
2870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
-
checksum = "
|
|
2871
|
+
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
|
|
2872
|
+
|
|
2873
|
+
[[package]]
|
|
2874
|
+
name = "wasm-streams"
|
|
2875
|
+
version = "0.2.3"
|
|
2876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2877
|
+
checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
|
|
2878
|
+
dependencies = [
|
|
2879
|
+
"futures-util",
|
|
2880
|
+
"js-sys",
|
|
2881
|
+
"wasm-bindgen",
|
|
2882
|
+
"wasm-bindgen-futures",
|
|
2883
|
+
"web-sys",
|
|
2884
|
+
]
|
|
2844
2885
|
|
|
2845
2886
|
[[package]]
|
|
2846
2887
|
name = "web-sys"
|
|
2847
|
-
version = "0.3.
|
|
2888
|
+
version = "0.3.61"
|
|
2848
2889
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
-
checksum = "
|
|
2890
|
+
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
|
|
2850
2891
|
dependencies = [
|
|
2851
2892
|
"js-sys",
|
|
2852
2893
|
"wasm-bindgen",
|
|
@@ -2864,18 +2905,18 @@ dependencies = [
|
|
|
2864
2905
|
|
|
2865
2906
|
[[package]]
|
|
2866
2907
|
name = "webpki-roots"
|
|
2867
|
-
version = "0.22.
|
|
2908
|
+
version = "0.22.6"
|
|
2868
2909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
-
checksum = "
|
|
2910
|
+
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
|
|
2870
2911
|
dependencies = [
|
|
2871
2912
|
"webpki",
|
|
2872
2913
|
]
|
|
2873
2914
|
|
|
2874
2915
|
[[package]]
|
|
2875
2916
|
name = "which"
|
|
2876
|
-
version = "4.
|
|
2917
|
+
version = "4.4.0"
|
|
2877
2918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
-
checksum = "
|
|
2919
|
+
checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
|
|
2879
2920
|
dependencies = [
|
|
2880
2921
|
"either",
|
|
2881
2922
|
"libc",
|
|
@@ -2906,15 +2947,17 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
2906
2947
|
|
|
2907
2948
|
[[package]]
|
|
2908
2949
|
name = "windows-sys"
|
|
2909
|
-
version = "0.
|
|
2950
|
+
version = "0.42.0"
|
|
2910
2951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2911
|
-
checksum = "
|
|
2952
|
+
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
|
2912
2953
|
dependencies = [
|
|
2913
|
-
"
|
|
2914
|
-
"
|
|
2915
|
-
"
|
|
2916
|
-
"
|
|
2917
|
-
"
|
|
2954
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
2955
|
+
"windows_aarch64_msvc 0.42.2",
|
|
2956
|
+
"windows_i686_gnu 0.42.2",
|
|
2957
|
+
"windows_i686_msvc 0.42.2",
|
|
2958
|
+
"windows_x86_64_gnu 0.42.2",
|
|
2959
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
2960
|
+
"windows_x86_64_msvc 0.42.2",
|
|
2918
2961
|
]
|
|
2919
2962
|
|
|
2920
2963
|
[[package]]
|
|
@@ -2923,7 +2966,16 @@ version = "0.45.0"
|
|
|
2923
2966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2924
2967
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
2925
2968
|
dependencies = [
|
|
2926
|
-
"windows-targets",
|
|
2969
|
+
"windows-targets 0.42.2",
|
|
2970
|
+
]
|
|
2971
|
+
|
|
2972
|
+
[[package]]
|
|
2973
|
+
name = "windows-sys"
|
|
2974
|
+
version = "0.48.0"
|
|
2975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2976
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2977
|
+
dependencies = [
|
|
2978
|
+
"windows-targets 0.48.0",
|
|
2927
2979
|
]
|
|
2928
2980
|
|
|
2929
2981
|
[[package]]
|
|
@@ -2932,15 +2984,30 @@ version = "0.42.2"
|
|
|
2932
2984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2933
2985
|
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
2934
2986
|
dependencies = [
|
|
2935
|
-
"windows_aarch64_gnullvm",
|
|
2987
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
2936
2988
|
"windows_aarch64_msvc 0.42.2",
|
|
2937
2989
|
"windows_i686_gnu 0.42.2",
|
|
2938
2990
|
"windows_i686_msvc 0.42.2",
|
|
2939
2991
|
"windows_x86_64_gnu 0.42.2",
|
|
2940
|
-
"windows_x86_64_gnullvm",
|
|
2992
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
2941
2993
|
"windows_x86_64_msvc 0.42.2",
|
|
2942
2994
|
]
|
|
2943
2995
|
|
|
2996
|
+
[[package]]
|
|
2997
|
+
name = "windows-targets"
|
|
2998
|
+
version = "0.48.0"
|
|
2999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3000
|
+
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
|
3001
|
+
dependencies = [
|
|
3002
|
+
"windows_aarch64_gnullvm 0.48.0",
|
|
3003
|
+
"windows_aarch64_msvc 0.48.0",
|
|
3004
|
+
"windows_i686_gnu 0.48.0",
|
|
3005
|
+
"windows_i686_msvc 0.48.0",
|
|
3006
|
+
"windows_x86_64_gnu 0.48.0",
|
|
3007
|
+
"windows_x86_64_gnullvm 0.48.0",
|
|
3008
|
+
"windows_x86_64_msvc 0.48.0",
|
|
3009
|
+
]
|
|
3010
|
+
|
|
2944
3011
|
[[package]]
|
|
2945
3012
|
name = "windows_aarch64_gnullvm"
|
|
2946
3013
|
version = "0.42.2"
|
|
@@ -2948,10 +3015,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2948
3015
|
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
2949
3016
|
|
|
2950
3017
|
[[package]]
|
|
2951
|
-
name = "
|
|
2952
|
-
version = "0.
|
|
3018
|
+
name = "windows_aarch64_gnullvm"
|
|
3019
|
+
version = "0.48.0"
|
|
2953
3020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2954
|
-
checksum = "
|
|
3021
|
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
|
2955
3022
|
|
|
2956
3023
|
[[package]]
|
|
2957
3024
|
name = "windows_aarch64_msvc"
|
|
@@ -2960,10 +3027,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2960
3027
|
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
2961
3028
|
|
|
2962
3029
|
[[package]]
|
|
2963
|
-
name = "
|
|
2964
|
-
version = "0.
|
|
3030
|
+
name = "windows_aarch64_msvc"
|
|
3031
|
+
version = "0.48.0"
|
|
2965
3032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2966
|
-
checksum = "
|
|
3033
|
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
|
2967
3034
|
|
|
2968
3035
|
[[package]]
|
|
2969
3036
|
name = "windows_i686_gnu"
|
|
@@ -2972,10 +3039,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2972
3039
|
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
2973
3040
|
|
|
2974
3041
|
[[package]]
|
|
2975
|
-
name = "
|
|
2976
|
-
version = "0.
|
|
3042
|
+
name = "windows_i686_gnu"
|
|
3043
|
+
version = "0.48.0"
|
|
2977
3044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2978
|
-
checksum = "
|
|
3045
|
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
|
2979
3046
|
|
|
2980
3047
|
[[package]]
|
|
2981
3048
|
name = "windows_i686_msvc"
|
|
@@ -2984,10 +3051,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2984
3051
|
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
2985
3052
|
|
|
2986
3053
|
[[package]]
|
|
2987
|
-
name = "
|
|
2988
|
-
version = "0.
|
|
3054
|
+
name = "windows_i686_msvc"
|
|
3055
|
+
version = "0.48.0"
|
|
2989
3056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2990
|
-
checksum = "
|
|
3057
|
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
|
2991
3058
|
|
|
2992
3059
|
[[package]]
|
|
2993
3060
|
name = "windows_x86_64_gnu"
|
|
@@ -2995,6 +3062,12 @@ version = "0.42.2"
|
|
|
2995
3062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2996
3063
|
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
2997
3064
|
|
|
3065
|
+
[[package]]
|
|
3066
|
+
name = "windows_x86_64_gnu"
|
|
3067
|
+
version = "0.48.0"
|
|
3068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3069
|
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
|
3070
|
+
|
|
2998
3071
|
[[package]]
|
|
2999
3072
|
name = "windows_x86_64_gnullvm"
|
|
3000
3073
|
version = "0.42.2"
|
|
@@ -3002,10 +3075,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3002
3075
|
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
3003
3076
|
|
|
3004
3077
|
[[package]]
|
|
3005
|
-
name = "
|
|
3006
|
-
version = "0.
|
|
3078
|
+
name = "windows_x86_64_gnullvm"
|
|
3079
|
+
version = "0.48.0"
|
|
3007
3080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3008
|
-
checksum = "
|
|
3081
|
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
|
3009
3082
|
|
|
3010
3083
|
[[package]]
|
|
3011
3084
|
name = "windows_x86_64_msvc"
|
|
@@ -3013,6 +3086,12 @@ version = "0.42.2"
|
|
|
3013
3086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
3087
|
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
3015
3088
|
|
|
3089
|
+
[[package]]
|
|
3090
|
+
name = "windows_x86_64_msvc"
|
|
3091
|
+
version = "0.48.0"
|
|
3092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3093
|
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
3094
|
+
|
|
3016
3095
|
[[package]]
|
|
3017
3096
|
name = "winreg"
|
|
3018
3097
|
version = "0.10.1"
|
|
@@ -3033,9 +3112,9 @@ dependencies = [
|
|
|
3033
3112
|
|
|
3034
3113
|
[[package]]
|
|
3035
3114
|
name = "zip"
|
|
3036
|
-
version = "0.6.
|
|
3115
|
+
version = "0.6.4"
|
|
3037
3116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3038
|
-
checksum = "
|
|
3117
|
+
checksum = "0445d0fbc924bb93539b4316c11afb121ea39296f99a3c4c9edad09e3658cdef"
|
|
3039
3118
|
dependencies = [
|
|
3040
3119
|
"aes",
|
|
3041
3120
|
"byteorder",
|
|
@@ -3072,9 +3151,9 @@ dependencies = [
|
|
|
3072
3151
|
|
|
3073
3152
|
[[package]]
|
|
3074
3153
|
name = "zstd-sys"
|
|
3075
|
-
version = "2.0.
|
|
3154
|
+
version = "2.0.8+zstd.1.5.5"
|
|
3076
3155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
-
checksum = "
|
|
3156
|
+
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
|
|
3078
3157
|
dependencies = [
|
|
3079
3158
|
"cc",
|
|
3080
3159
|
"libc",
|