electron-cli 0.3.0-alpha.15 → 0.3.0-alpha.17
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 +2610 -88
- package/Cargo.toml +2 -1
- package/README.md +15 -3
- package/package.json +1 -1
- package/src/commands/package.rs +761 -0
package/Cargo.lock
CHANGED
|
@@ -8,6 +8,27 @@ version = "2.0.1"
|
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
9
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
10
|
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"once_cell",
|
|
19
|
+
"version_check",
|
|
20
|
+
"zerocopy",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "aho-corasick"
|
|
25
|
+
version = "1.1.4"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
28
|
+
dependencies = [
|
|
29
|
+
"memchr",
|
|
30
|
+
]
|
|
31
|
+
|
|
11
32
|
[[package]]
|
|
12
33
|
name = "android_system_properties"
|
|
13
34
|
version = "0.1.5"
|
|
@@ -73,6 +94,97 @@ version = "1.0.102"
|
|
|
73
94
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
95
|
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
75
96
|
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "apple-bundles"
|
|
99
|
+
version = "0.21.0"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "c0f40bb8f844cec39fa3aceae717808c2ac3d2b6c474a9dffbeba07a4a945d10"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"anyhow",
|
|
104
|
+
"plist",
|
|
105
|
+
"simple-file-manifest",
|
|
106
|
+
"walkdir",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "apple-codesign"
|
|
111
|
+
version = "0.29.0"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "f24e9ebdb70a2aee3ca1cea217009fb50776955f0d7678c31d22e48c1524667f"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"anyhow",
|
|
116
|
+
"apple-bundles",
|
|
117
|
+
"apple-flat-package",
|
|
118
|
+
"apple-xar",
|
|
119
|
+
"base64",
|
|
120
|
+
"bcder",
|
|
121
|
+
"bitflags 2.11.1",
|
|
122
|
+
"bytes",
|
|
123
|
+
"chrono",
|
|
124
|
+
"clap",
|
|
125
|
+
"cryptographic-message-syntax",
|
|
126
|
+
"der",
|
|
127
|
+
"dialoguer",
|
|
128
|
+
"difference",
|
|
129
|
+
"digest",
|
|
130
|
+
"dirs",
|
|
131
|
+
"elliptic-curve",
|
|
132
|
+
"env_logger",
|
|
133
|
+
"figment",
|
|
134
|
+
"filetime",
|
|
135
|
+
"glob",
|
|
136
|
+
"goblin",
|
|
137
|
+
"hex",
|
|
138
|
+
"log",
|
|
139
|
+
"md-5",
|
|
140
|
+
"minicbor",
|
|
141
|
+
"num-traits",
|
|
142
|
+
"object",
|
|
143
|
+
"oid-registry",
|
|
144
|
+
"once_cell",
|
|
145
|
+
"p12",
|
|
146
|
+
"p256",
|
|
147
|
+
"pem",
|
|
148
|
+
"pkcs1",
|
|
149
|
+
"pkcs8",
|
|
150
|
+
"plist",
|
|
151
|
+
"rand 0.8.6",
|
|
152
|
+
"rasn",
|
|
153
|
+
"rayon",
|
|
154
|
+
"regex",
|
|
155
|
+
"reqwest",
|
|
156
|
+
"ring",
|
|
157
|
+
"rsa",
|
|
158
|
+
"scroll",
|
|
159
|
+
"security-framework 2.11.1",
|
|
160
|
+
"security-framework-sys",
|
|
161
|
+
"semver",
|
|
162
|
+
"serde",
|
|
163
|
+
"serde_json",
|
|
164
|
+
"serde_yaml",
|
|
165
|
+
"sha2",
|
|
166
|
+
"signature",
|
|
167
|
+
"simple-file-manifest",
|
|
168
|
+
"spake2",
|
|
169
|
+
"spki",
|
|
170
|
+
"subtle",
|
|
171
|
+
"tempfile",
|
|
172
|
+
"thiserror 2.0.18",
|
|
173
|
+
"tokio",
|
|
174
|
+
"tungstenite",
|
|
175
|
+
"uuid",
|
|
176
|
+
"walkdir",
|
|
177
|
+
"widestring",
|
|
178
|
+
"windows-sys 0.59.0",
|
|
179
|
+
"x509",
|
|
180
|
+
"x509-certificate",
|
|
181
|
+
"xml-rs",
|
|
182
|
+
"yasna",
|
|
183
|
+
"zeroize",
|
|
184
|
+
"zip 2.4.2",
|
|
185
|
+
"zip_structs",
|
|
186
|
+
]
|
|
187
|
+
|
|
76
188
|
[[package]]
|
|
77
189
|
name = "apple-dmg"
|
|
78
190
|
version = "0.5.0"
|
|
@@ -93,18 +205,153 @@ dependencies = [
|
|
|
93
205
|
"serde_bytes",
|
|
94
206
|
]
|
|
95
207
|
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "apple-flat-package"
|
|
210
|
+
version = "0.20.0"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "9c9d5a1fd8af4a376cc33d7e816a13f8ce127d52101f5dbc8061fb595397bea0"
|
|
213
|
+
dependencies = [
|
|
214
|
+
"apple-xar",
|
|
215
|
+
"cpio-archive",
|
|
216
|
+
"flate2",
|
|
217
|
+
"scroll",
|
|
218
|
+
"serde",
|
|
219
|
+
"serde-xml-rs",
|
|
220
|
+
"thiserror 2.0.18",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "apple-xar"
|
|
225
|
+
version = "0.20.0"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "9631e781df71ebd049d7b4988cdae88712324cb20eb127fd79026bc8f1335d93"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"base64",
|
|
230
|
+
"bcder",
|
|
231
|
+
"bzip2",
|
|
232
|
+
"chrono",
|
|
233
|
+
"cryptographic-message-syntax",
|
|
234
|
+
"digest",
|
|
235
|
+
"flate2",
|
|
236
|
+
"log",
|
|
237
|
+
"md-5",
|
|
238
|
+
"rand 0.8.6",
|
|
239
|
+
"reqwest",
|
|
240
|
+
"scroll",
|
|
241
|
+
"serde",
|
|
242
|
+
"serde-xml-rs",
|
|
243
|
+
"sha1",
|
|
244
|
+
"sha2",
|
|
245
|
+
"signature",
|
|
246
|
+
"thiserror 2.0.18",
|
|
247
|
+
"url",
|
|
248
|
+
"x509-certificate",
|
|
249
|
+
"xml-rs",
|
|
250
|
+
"xz2",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "arbitrary"
|
|
255
|
+
version = "1.4.2"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"derive_arbitrary",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "arrayvec"
|
|
264
|
+
version = "0.7.6"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "asn1-rs"
|
|
270
|
+
version = "0.6.2"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"asn1-rs-derive",
|
|
275
|
+
"asn1-rs-impl",
|
|
276
|
+
"displaydoc",
|
|
277
|
+
"nom 7.1.3",
|
|
278
|
+
"num-traits",
|
|
279
|
+
"rusticata-macros",
|
|
280
|
+
"thiserror 1.0.69",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "asn1-rs-derive"
|
|
285
|
+
version = "0.5.1"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"proc-macro2",
|
|
290
|
+
"quote",
|
|
291
|
+
"syn 2.0.117",
|
|
292
|
+
"synstructure",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "asn1-rs-impl"
|
|
297
|
+
version = "0.2.0"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"proc-macro2",
|
|
302
|
+
"quote",
|
|
303
|
+
"syn 2.0.117",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "atomic"
|
|
308
|
+
version = "0.6.1"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"bytemuck",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "atomic-waker"
|
|
317
|
+
version = "1.1.2"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
320
|
+
|
|
96
321
|
[[package]]
|
|
97
322
|
name = "autocfg"
|
|
98
323
|
version = "1.5.1"
|
|
99
324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
325
|
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
101
326
|
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "base16ct"
|
|
329
|
+
version = "0.2.0"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
332
|
+
|
|
102
333
|
[[package]]
|
|
103
334
|
name = "base64"
|
|
104
335
|
version = "0.22.1"
|
|
105
336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
337
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
107
338
|
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "base64ct"
|
|
341
|
+
version = "1.8.3"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "bcder"
|
|
347
|
+
version = "0.7.6"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "1f7c42c9913f68cf9390a225e81ad56a5c515347287eb98baa710090ca1de86d"
|
|
350
|
+
dependencies = [
|
|
351
|
+
"bytes",
|
|
352
|
+
"smallvec",
|
|
353
|
+
]
|
|
354
|
+
|
|
108
355
|
[[package]]
|
|
109
356
|
name = "bitflags"
|
|
110
357
|
version = "1.3.2"
|
|
@@ -117,6 +364,28 @@ version = "2.11.1"
|
|
|
117
364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
365
|
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
119
366
|
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "bitvec"
|
|
369
|
+
version = "1.0.1"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"funty",
|
|
374
|
+
"radium",
|
|
375
|
+
"tap",
|
|
376
|
+
"wyz",
|
|
377
|
+
]
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "bitvec-nom2"
|
|
381
|
+
version = "0.2.1"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "d988fcc40055ceaa85edc55875a08f8abd29018582647fd82ad6128dba14a5f0"
|
|
384
|
+
dependencies = [
|
|
385
|
+
"bitvec",
|
|
386
|
+
"nom 7.1.3",
|
|
387
|
+
]
|
|
388
|
+
|
|
120
389
|
[[package]]
|
|
121
390
|
name = "block-buffer"
|
|
122
391
|
version = "0.10.4"
|
|
@@ -126,12 +395,27 @@ dependencies = [
|
|
|
126
395
|
"generic-array",
|
|
127
396
|
]
|
|
128
397
|
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "block-padding"
|
|
400
|
+
version = "0.3.3"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"generic-array",
|
|
405
|
+
]
|
|
406
|
+
|
|
129
407
|
[[package]]
|
|
130
408
|
name = "bumpalo"
|
|
131
409
|
version = "3.20.3"
|
|
132
410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
411
|
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
134
412
|
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "bytemuck"
|
|
415
|
+
version = "1.25.0"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
418
|
+
|
|
135
419
|
[[package]]
|
|
136
420
|
name = "byteorder"
|
|
137
421
|
version = "1.5.0"
|
|
@@ -144,6 +428,32 @@ version = "1.11.1"
|
|
|
144
428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
429
|
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
146
430
|
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "bytesize"
|
|
433
|
+
version = "1.3.3"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "2e93abca9e28e0a1b9877922aacb20576e05d4679ffa78c3d6dc22a26a216659"
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "bzip2"
|
|
439
|
+
version = "0.4.4"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"bzip2-sys",
|
|
444
|
+
"libc",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "bzip2-sys"
|
|
449
|
+
version = "0.1.13+1.0.8"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"cc",
|
|
454
|
+
"pkg-config",
|
|
455
|
+
]
|
|
456
|
+
|
|
147
457
|
[[package]]
|
|
148
458
|
name = "cab"
|
|
149
459
|
version = "0.6.0"
|
|
@@ -165,6 +475,15 @@ dependencies = [
|
|
|
165
475
|
"serde_core",
|
|
166
476
|
]
|
|
167
477
|
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "cbc"
|
|
480
|
+
version = "0.1.2"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"cipher",
|
|
485
|
+
]
|
|
486
|
+
|
|
168
487
|
[[package]]
|
|
169
488
|
name = "cc"
|
|
170
489
|
version = "1.2.63"
|
|
@@ -192,6 +511,12 @@ version = "1.0.4"
|
|
|
192
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
512
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
194
513
|
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "cfg_aliases"
|
|
516
|
+
version = "0.2.1"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
519
|
+
|
|
195
520
|
[[package]]
|
|
196
521
|
name = "chrono"
|
|
197
522
|
version = "0.4.44"
|
|
@@ -201,10 +526,21 @@ dependencies = [
|
|
|
201
526
|
"iana-time-zone",
|
|
202
527
|
"js-sys",
|
|
203
528
|
"num-traits",
|
|
529
|
+
"serde",
|
|
204
530
|
"wasm-bindgen",
|
|
205
531
|
"windows-link",
|
|
206
532
|
]
|
|
207
533
|
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "cipher"
|
|
536
|
+
version = "0.4.4"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"crypto-common",
|
|
541
|
+
"inout",
|
|
542
|
+
]
|
|
543
|
+
|
|
208
544
|
[[package]]
|
|
209
545
|
name = "clap"
|
|
210
546
|
version = "4.6.1"
|
|
@@ -251,6 +587,34 @@ version = "1.0.5"
|
|
|
251
587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
588
|
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
253
589
|
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "console"
|
|
592
|
+
version = "0.15.11"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"encode_unicode",
|
|
597
|
+
"libc",
|
|
598
|
+
"once_cell",
|
|
599
|
+
"unicode-width",
|
|
600
|
+
"windows-sys 0.59.0",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "const-oid"
|
|
605
|
+
version = "0.9.6"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "const_panic"
|
|
611
|
+
version = "0.2.15"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "e262cdaac42494e3ae34c43969f9cdeb7da178bdb4b66fa6a1ea2edb4c8ae652"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"typewit",
|
|
616
|
+
]
|
|
617
|
+
|
|
254
618
|
[[package]]
|
|
255
619
|
name = "cookie"
|
|
256
620
|
version = "0.18.1"
|
|
@@ -262,6 +626,15 @@ dependencies = [
|
|
|
262
626
|
"version_check",
|
|
263
627
|
]
|
|
264
628
|
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "cookie-factory"
|
|
631
|
+
version = "0.3.3"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"futures",
|
|
636
|
+
]
|
|
637
|
+
|
|
265
638
|
[[package]]
|
|
266
639
|
name = "cookie_store"
|
|
267
640
|
version = "0.22.1"
|
|
@@ -280,12 +653,44 @@ dependencies = [
|
|
|
280
653
|
"url",
|
|
281
654
|
]
|
|
282
655
|
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "core-foundation"
|
|
658
|
+
version = "0.9.4"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"core-foundation-sys",
|
|
663
|
+
"libc",
|
|
664
|
+
]
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "core-foundation"
|
|
668
|
+
version = "0.10.1"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"core-foundation-sys",
|
|
673
|
+
"libc",
|
|
674
|
+
]
|
|
675
|
+
|
|
283
676
|
[[package]]
|
|
284
677
|
name = "core-foundation-sys"
|
|
285
678
|
version = "0.8.7"
|
|
286
679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
680
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
288
681
|
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "cpio-archive"
|
|
684
|
+
version = "0.10.0"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "f11d34b07689c21889fc89bd7cc885b3244b0157bbededf4a1c159832cd0df05"
|
|
687
|
+
dependencies = [
|
|
688
|
+
"chrono",
|
|
689
|
+
"is_executable",
|
|
690
|
+
"simple-file-manifest",
|
|
691
|
+
"thiserror 1.0.69",
|
|
692
|
+
]
|
|
693
|
+
|
|
289
694
|
[[package]]
|
|
290
695
|
name = "cpufeatures"
|
|
291
696
|
version = "0.2.17"
|
|
@@ -320,65 +725,238 @@ dependencies = [
|
|
|
320
725
|
]
|
|
321
726
|
|
|
322
727
|
[[package]]
|
|
323
|
-
name = "
|
|
324
|
-
version = "0.
|
|
728
|
+
name = "crossbeam-deque"
|
|
729
|
+
version = "0.8.6"
|
|
325
730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
-
checksum = "
|
|
731
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
327
732
|
dependencies = [
|
|
328
|
-
"
|
|
329
|
-
"
|
|
733
|
+
"crossbeam-epoch",
|
|
734
|
+
"crossbeam-utils",
|
|
330
735
|
]
|
|
331
736
|
|
|
332
737
|
[[package]]
|
|
333
|
-
name = "
|
|
334
|
-
version = "0.
|
|
738
|
+
name = "crossbeam-epoch"
|
|
739
|
+
version = "0.9.18"
|
|
335
740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
-
checksum = "
|
|
741
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
337
742
|
dependencies = [
|
|
338
|
-
"
|
|
743
|
+
"crossbeam-utils",
|
|
339
744
|
]
|
|
340
745
|
|
|
341
746
|
[[package]]
|
|
342
|
-
name = "
|
|
343
|
-
version = "0.
|
|
747
|
+
name = "crossbeam-utils"
|
|
748
|
+
version = "0.8.21"
|
|
344
749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
-
checksum = "
|
|
346
|
-
dependencies = [
|
|
347
|
-
"block-buffer",
|
|
348
|
-
"crypto-common",
|
|
349
|
-
]
|
|
750
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
350
751
|
|
|
351
752
|
[[package]]
|
|
352
|
-
name = "
|
|
353
|
-
version = "0.
|
|
753
|
+
name = "crypto-bigint"
|
|
754
|
+
version = "0.5.5"
|
|
354
755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
-
checksum = "
|
|
756
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
|
356
757
|
dependencies = [
|
|
357
|
-
"
|
|
358
|
-
"
|
|
359
|
-
"
|
|
758
|
+
"generic-array",
|
|
759
|
+
"rand_core 0.6.4",
|
|
760
|
+
"subtle",
|
|
761
|
+
"zeroize",
|
|
360
762
|
]
|
|
361
763
|
|
|
362
764
|
[[package]]
|
|
363
|
-
name = "
|
|
364
|
-
version = "0.
|
|
765
|
+
name = "crypto-common"
|
|
766
|
+
version = "0.1.7"
|
|
365
767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
-
checksum = "
|
|
768
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
367
769
|
dependencies = [
|
|
368
|
-
"
|
|
770
|
+
"generic-array",
|
|
771
|
+
"typenum",
|
|
369
772
|
]
|
|
370
773
|
|
|
371
774
|
[[package]]
|
|
372
|
-
name = "
|
|
373
|
-
version = "
|
|
775
|
+
name = "cryptographic-message-syntax"
|
|
776
|
+
version = "0.27.0"
|
|
374
777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
-
checksum = "
|
|
778
|
+
checksum = "97a99e58d7755c646cb3f2a138d99f90da4c495282e1700b82daff8a48759ce0"
|
|
779
|
+
dependencies = [
|
|
780
|
+
"bcder",
|
|
781
|
+
"bytes",
|
|
782
|
+
"chrono",
|
|
783
|
+
"hex",
|
|
784
|
+
"pem",
|
|
785
|
+
"reqwest",
|
|
786
|
+
"ring",
|
|
787
|
+
"signature",
|
|
788
|
+
"x509-certificate",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "curve25519-dalek"
|
|
793
|
+
version = "4.1.3"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"cfg-if",
|
|
798
|
+
"cpufeatures",
|
|
799
|
+
"curve25519-dalek-derive",
|
|
800
|
+
"fiat-crypto",
|
|
801
|
+
"rand_core 0.6.4",
|
|
802
|
+
"rustc_version",
|
|
803
|
+
"subtle",
|
|
804
|
+
]
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "curve25519-dalek-derive"
|
|
808
|
+
version = "0.1.1"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
811
|
+
dependencies = [
|
|
812
|
+
"proc-macro2",
|
|
813
|
+
"quote",
|
|
814
|
+
"syn 2.0.117",
|
|
815
|
+
]
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "data-encoding"
|
|
819
|
+
version = "2.11.0"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "der"
|
|
825
|
+
version = "0.7.10"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
828
|
+
dependencies = [
|
|
829
|
+
"const-oid",
|
|
830
|
+
"pem-rfc7468",
|
|
831
|
+
"zeroize",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "deranged"
|
|
836
|
+
version = "0.5.8"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"powerfmt",
|
|
841
|
+
]
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "derive_arbitrary"
|
|
845
|
+
version = "1.4.2"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
|
|
848
|
+
dependencies = [
|
|
849
|
+
"proc-macro2",
|
|
850
|
+
"quote",
|
|
851
|
+
"syn 2.0.117",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "des"
|
|
856
|
+
version = "0.8.1"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"cipher",
|
|
861
|
+
]
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "dialoguer"
|
|
865
|
+
version = "0.11.0"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"console",
|
|
870
|
+
"shell-words",
|
|
871
|
+
"tempfile",
|
|
872
|
+
"thiserror 1.0.69",
|
|
873
|
+
"zeroize",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "difference"
|
|
878
|
+
version = "2.0.0"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "digest"
|
|
884
|
+
version = "0.10.7"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"block-buffer",
|
|
889
|
+
"const-oid",
|
|
890
|
+
"crypto-common",
|
|
891
|
+
"subtle",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "dirs"
|
|
896
|
+
version = "5.0.1"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"dirs-sys",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "dirs-sys"
|
|
905
|
+
version = "0.4.1"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
908
|
+
dependencies = [
|
|
909
|
+
"libc",
|
|
910
|
+
"option-ext",
|
|
911
|
+
"redox_users",
|
|
912
|
+
"windows-sys 0.48.0",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "displaydoc"
|
|
917
|
+
version = "0.2.6"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
920
|
+
dependencies = [
|
|
921
|
+
"proc-macro2",
|
|
922
|
+
"quote",
|
|
923
|
+
"syn 2.0.117",
|
|
924
|
+
]
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "document-features"
|
|
928
|
+
version = "0.2.12"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"litrs",
|
|
933
|
+
]
|
|
934
|
+
|
|
935
|
+
[[package]]
|
|
936
|
+
name = "ecdsa"
|
|
937
|
+
version = "0.16.9"
|
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
+
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
|
|
940
|
+
dependencies = [
|
|
941
|
+
"der",
|
|
942
|
+
"digest",
|
|
943
|
+
"elliptic-curve",
|
|
944
|
+
"signature",
|
|
945
|
+
"spki",
|
|
946
|
+
]
|
|
947
|
+
|
|
948
|
+
[[package]]
|
|
949
|
+
name = "either"
|
|
950
|
+
version = "1.16.0"
|
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
376
953
|
|
|
377
954
|
[[package]]
|
|
378
955
|
name = "electron-cli"
|
|
379
|
-
version = "0.3.0-alpha.
|
|
956
|
+
version = "0.3.0-alpha.17"
|
|
380
957
|
dependencies = [
|
|
381
958
|
"anyhow",
|
|
959
|
+
"apple-codesign",
|
|
382
960
|
"apple-dmg",
|
|
383
961
|
"cab",
|
|
384
962
|
"camino",
|
|
@@ -396,9 +974,34 @@ dependencies = [
|
|
|
396
974
|
"tar",
|
|
397
975
|
"ureq",
|
|
398
976
|
"uuid",
|
|
399
|
-
"zip",
|
|
977
|
+
"zip 8.6.0",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "elliptic-curve"
|
|
982
|
+
version = "0.13.8"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"base16ct",
|
|
987
|
+
"crypto-bigint",
|
|
988
|
+
"digest",
|
|
989
|
+
"ff",
|
|
990
|
+
"generic-array",
|
|
991
|
+
"group",
|
|
992
|
+
"pkcs8",
|
|
993
|
+
"rand_core 0.6.4",
|
|
994
|
+
"sec1",
|
|
995
|
+
"subtle",
|
|
996
|
+
"zeroize",
|
|
400
997
|
]
|
|
401
998
|
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "encode_unicode"
|
|
1001
|
+
version = "1.0.0"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
1004
|
+
|
|
402
1005
|
[[package]]
|
|
403
1006
|
name = "encoding_rs"
|
|
404
1007
|
version = "0.8.35"
|
|
@@ -430,6 +1033,29 @@ dependencies = [
|
|
|
430
1033
|
"syn 2.0.117",
|
|
431
1034
|
]
|
|
432
1035
|
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "env_filter"
|
|
1038
|
+
version = "1.0.1"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"log",
|
|
1043
|
+
"regex",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "env_logger"
|
|
1048
|
+
version = "0.11.10"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"anstream",
|
|
1053
|
+
"anstyle",
|
|
1054
|
+
"env_filter",
|
|
1055
|
+
"jiff",
|
|
1056
|
+
"log",
|
|
1057
|
+
]
|
|
1058
|
+
|
|
433
1059
|
[[package]]
|
|
434
1060
|
name = "equivalent"
|
|
435
1061
|
version = "1.0.2"
|
|
@@ -446,6 +1072,12 @@ dependencies = [
|
|
|
446
1072
|
"windows-sys 0.61.2",
|
|
447
1073
|
]
|
|
448
1074
|
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "fastrand"
|
|
1077
|
+
version = "2.4.1"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
1080
|
+
|
|
449
1081
|
[[package]]
|
|
450
1082
|
name = "fatfs"
|
|
451
1083
|
version = "0.3.6"
|
|
@@ -458,6 +1090,36 @@ dependencies = [
|
|
|
458
1090
|
"log",
|
|
459
1091
|
]
|
|
460
1092
|
|
|
1093
|
+
[[package]]
|
|
1094
|
+
name = "ff"
|
|
1095
|
+
version = "0.13.1"
|
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
1098
|
+
dependencies = [
|
|
1099
|
+
"rand_core 0.6.4",
|
|
1100
|
+
"subtle",
|
|
1101
|
+
]
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "fiat-crypto"
|
|
1105
|
+
version = "0.2.9"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "figment"
|
|
1111
|
+
version = "0.10.19"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "8cb01cd46b0cf372153850f4c6c272d9cbea2da513e07538405148f95bd789f3"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"atomic",
|
|
1116
|
+
"pear",
|
|
1117
|
+
"serde",
|
|
1118
|
+
"toml",
|
|
1119
|
+
"uncased",
|
|
1120
|
+
"version_check",
|
|
1121
|
+
]
|
|
1122
|
+
|
|
461
1123
|
[[package]]
|
|
462
1124
|
name = "filetime"
|
|
463
1125
|
version = "0.2.29"
|
|
@@ -515,12 +1177,77 @@ dependencies = [
|
|
|
515
1177
|
"log",
|
|
516
1178
|
]
|
|
517
1179
|
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "funty"
|
|
1182
|
+
version = "2.0.0"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "futures"
|
|
1188
|
+
version = "0.3.32"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
1191
|
+
dependencies = [
|
|
1192
|
+
"futures-channel",
|
|
1193
|
+
"futures-core",
|
|
1194
|
+
"futures-executor",
|
|
1195
|
+
"futures-io",
|
|
1196
|
+
"futures-sink",
|
|
1197
|
+
"futures-task",
|
|
1198
|
+
"futures-util",
|
|
1199
|
+
]
|
|
1200
|
+
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "futures-channel"
|
|
1203
|
+
version = "0.3.32"
|
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
1206
|
+
dependencies = [
|
|
1207
|
+
"futures-core",
|
|
1208
|
+
"futures-sink",
|
|
1209
|
+
]
|
|
1210
|
+
|
|
518
1211
|
[[package]]
|
|
519
1212
|
name = "futures-core"
|
|
520
1213
|
version = "0.3.32"
|
|
521
1214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
1215
|
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
523
1216
|
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "futures-executor"
|
|
1219
|
+
version = "0.3.32"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"futures-core",
|
|
1224
|
+
"futures-task",
|
|
1225
|
+
"futures-util",
|
|
1226
|
+
]
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "futures-io"
|
|
1230
|
+
version = "0.3.32"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
1233
|
+
|
|
1234
|
+
[[package]]
|
|
1235
|
+
name = "futures-macro"
|
|
1236
|
+
version = "0.3.32"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
1239
|
+
dependencies = [
|
|
1240
|
+
"proc-macro2",
|
|
1241
|
+
"quote",
|
|
1242
|
+
"syn 2.0.117",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "futures-sink"
|
|
1247
|
+
version = "0.3.32"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
1250
|
+
|
|
524
1251
|
[[package]]
|
|
525
1252
|
name = "futures-task"
|
|
526
1253
|
version = "0.3.32"
|
|
@@ -533,8 +1260,13 @@ version = "0.3.32"
|
|
|
533
1260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
1261
|
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
535
1262
|
dependencies = [
|
|
1263
|
+
"futures-channel",
|
|
536
1264
|
"futures-core",
|
|
1265
|
+
"futures-io",
|
|
1266
|
+
"futures-macro",
|
|
1267
|
+
"futures-sink",
|
|
537
1268
|
"futures-task",
|
|
1269
|
+
"memchr",
|
|
538
1270
|
"pin-project-lite",
|
|
539
1271
|
"slab",
|
|
540
1272
|
]
|
|
@@ -547,6 +1279,7 @@ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
|
547
1279
|
dependencies = [
|
|
548
1280
|
"typenum",
|
|
549
1281
|
"version_check",
|
|
1282
|
+
"zeroize",
|
|
550
1283
|
]
|
|
551
1284
|
|
|
552
1285
|
[[package]]
|
|
@@ -556,8 +1289,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
556
1289
|
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
557
1290
|
dependencies = [
|
|
558
1291
|
"cfg-if",
|
|
1292
|
+
"js-sys",
|
|
559
1293
|
"libc",
|
|
560
1294
|
"wasi",
|
|
1295
|
+
"wasm-bindgen",
|
|
1296
|
+
]
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "getrandom"
|
|
1300
|
+
version = "0.3.4"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"cfg-if",
|
|
1305
|
+
"js-sys",
|
|
1306
|
+
"libc",
|
|
1307
|
+
"r-efi 5.3.0",
|
|
1308
|
+
"wasip2",
|
|
1309
|
+
"wasm-bindgen",
|
|
561
1310
|
]
|
|
562
1311
|
|
|
563
1312
|
[[package]]
|
|
@@ -568,11 +1317,28 @@ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
|
568
1317
|
dependencies = [
|
|
569
1318
|
"cfg-if",
|
|
570
1319
|
"libc",
|
|
571
|
-
"r-efi",
|
|
1320
|
+
"r-efi 6.0.0",
|
|
572
1321
|
"wasip2",
|
|
573
1322
|
"wasip3",
|
|
574
1323
|
]
|
|
575
1324
|
|
|
1325
|
+
[[package]]
|
|
1326
|
+
name = "glob"
|
|
1327
|
+
version = "0.3.3"
|
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1330
|
+
|
|
1331
|
+
[[package]]
|
|
1332
|
+
name = "goblin"
|
|
1333
|
+
version = "0.9.3"
|
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
+
checksum = "daa0a64d21a7eb230583b4c5f4e23b7e4e57974f96620f42a7e75e08ae66d745"
|
|
1336
|
+
dependencies = [
|
|
1337
|
+
"log",
|
|
1338
|
+
"plain",
|
|
1339
|
+
"scroll",
|
|
1340
|
+
]
|
|
1341
|
+
|
|
576
1342
|
[[package]]
|
|
577
1343
|
name = "gpt"
|
|
578
1344
|
version = "4.1.0"
|
|
@@ -586,32 +1352,89 @@ dependencies = [
|
|
|
586
1352
|
]
|
|
587
1353
|
|
|
588
1354
|
[[package]]
|
|
589
|
-
name = "
|
|
590
|
-
version = "0.
|
|
1355
|
+
name = "group"
|
|
1356
|
+
version = "0.13.0"
|
|
591
1357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
-
checksum = "
|
|
1358
|
+
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
|
|
593
1359
|
dependencies = [
|
|
594
|
-
"
|
|
1360
|
+
"ff",
|
|
1361
|
+
"rand_core 0.6.4",
|
|
1362
|
+
"subtle",
|
|
595
1363
|
]
|
|
596
1364
|
|
|
597
1365
|
[[package]]
|
|
598
|
-
name = "
|
|
599
|
-
version = "0.
|
|
1366
|
+
name = "h2"
|
|
1367
|
+
version = "0.4.14"
|
|
600
1368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
-
checksum = "
|
|
1369
|
+
checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
|
|
1370
|
+
dependencies = [
|
|
1371
|
+
"atomic-waker",
|
|
1372
|
+
"bytes",
|
|
1373
|
+
"fnv",
|
|
1374
|
+
"futures-core",
|
|
1375
|
+
"futures-sink",
|
|
1376
|
+
"http",
|
|
1377
|
+
"indexmap",
|
|
1378
|
+
"slab",
|
|
1379
|
+
"tokio",
|
|
1380
|
+
"tokio-util",
|
|
1381
|
+
"tracing",
|
|
1382
|
+
]
|
|
602
1383
|
|
|
603
1384
|
[[package]]
|
|
604
|
-
name = "
|
|
605
|
-
version = "0.5
|
|
1385
|
+
name = "hashbrown"
|
|
1386
|
+
version = "0.14.5"
|
|
606
1387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
-
checksum = "
|
|
608
|
-
|
|
1388
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1389
|
+
dependencies = [
|
|
1390
|
+
"ahash",
|
|
1391
|
+
]
|
|
1392
|
+
|
|
1393
|
+
[[package]]
|
|
1394
|
+
name = "hashbrown"
|
|
1395
|
+
version = "0.15.5"
|
|
1396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1398
|
+
dependencies = [
|
|
1399
|
+
"foldhash",
|
|
1400
|
+
]
|
|
1401
|
+
|
|
1402
|
+
[[package]]
|
|
1403
|
+
name = "hashbrown"
|
|
1404
|
+
version = "0.17.1"
|
|
1405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1407
|
+
|
|
1408
|
+
[[package]]
|
|
1409
|
+
name = "heck"
|
|
1410
|
+
version = "0.5.0"
|
|
1411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1413
|
+
|
|
609
1414
|
[[package]]
|
|
610
1415
|
name = "hex"
|
|
611
1416
|
version = "0.4.3"
|
|
612
1417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
1418
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
614
1419
|
|
|
1420
|
+
[[package]]
|
|
1421
|
+
name = "hkdf"
|
|
1422
|
+
version = "0.12.4"
|
|
1423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
+
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
1425
|
+
dependencies = [
|
|
1426
|
+
"hmac",
|
|
1427
|
+
]
|
|
1428
|
+
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "hmac"
|
|
1431
|
+
version = "0.12.1"
|
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1434
|
+
dependencies = [
|
|
1435
|
+
"digest",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
615
1438
|
[[package]]
|
|
616
1439
|
name = "http"
|
|
617
1440
|
version = "1.4.1"
|
|
@@ -622,12 +1445,96 @@ dependencies = [
|
|
|
622
1445
|
"itoa",
|
|
623
1446
|
]
|
|
624
1447
|
|
|
1448
|
+
[[package]]
|
|
1449
|
+
name = "http-body"
|
|
1450
|
+
version = "1.0.1"
|
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1453
|
+
dependencies = [
|
|
1454
|
+
"bytes",
|
|
1455
|
+
"http",
|
|
1456
|
+
]
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "http-body-util"
|
|
1460
|
+
version = "0.1.3"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1463
|
+
dependencies = [
|
|
1464
|
+
"bytes",
|
|
1465
|
+
"futures-core",
|
|
1466
|
+
"http",
|
|
1467
|
+
"http-body",
|
|
1468
|
+
"pin-project-lite",
|
|
1469
|
+
]
|
|
1470
|
+
|
|
625
1471
|
[[package]]
|
|
626
1472
|
name = "httparse"
|
|
627
1473
|
version = "1.10.1"
|
|
628
1474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
1475
|
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
630
1476
|
|
|
1477
|
+
[[package]]
|
|
1478
|
+
name = "hyper"
|
|
1479
|
+
version = "1.10.1"
|
|
1480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
1482
|
+
dependencies = [
|
|
1483
|
+
"atomic-waker",
|
|
1484
|
+
"bytes",
|
|
1485
|
+
"futures-channel",
|
|
1486
|
+
"futures-core",
|
|
1487
|
+
"h2",
|
|
1488
|
+
"http",
|
|
1489
|
+
"http-body",
|
|
1490
|
+
"httparse",
|
|
1491
|
+
"itoa",
|
|
1492
|
+
"pin-project-lite",
|
|
1493
|
+
"smallvec",
|
|
1494
|
+
"tokio",
|
|
1495
|
+
"want",
|
|
1496
|
+
]
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "hyper-rustls"
|
|
1500
|
+
version = "0.27.9"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
1503
|
+
dependencies = [
|
|
1504
|
+
"http",
|
|
1505
|
+
"hyper",
|
|
1506
|
+
"hyper-util",
|
|
1507
|
+
"rustls",
|
|
1508
|
+
"rustls-native-certs 0.8.3",
|
|
1509
|
+
"tokio",
|
|
1510
|
+
"tokio-rustls",
|
|
1511
|
+
"tower-service",
|
|
1512
|
+
"webpki-roots",
|
|
1513
|
+
]
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "hyper-util"
|
|
1517
|
+
version = "0.1.20"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1520
|
+
dependencies = [
|
|
1521
|
+
"base64",
|
|
1522
|
+
"bytes",
|
|
1523
|
+
"futures-channel",
|
|
1524
|
+
"futures-util",
|
|
1525
|
+
"http",
|
|
1526
|
+
"http-body",
|
|
1527
|
+
"hyper",
|
|
1528
|
+
"ipnet",
|
|
1529
|
+
"libc",
|
|
1530
|
+
"percent-encoding",
|
|
1531
|
+
"pin-project-lite",
|
|
1532
|
+
"socket2",
|
|
1533
|
+
"tokio",
|
|
1534
|
+
"tower-service",
|
|
1535
|
+
"tracing",
|
|
1536
|
+
]
|
|
1537
|
+
|
|
631
1538
|
[[package]]
|
|
632
1539
|
name = "iana-time-zone"
|
|
633
1540
|
version = "0.1.65"
|
|
@@ -773,12 +1680,52 @@ dependencies = [
|
|
|
773
1680
|
"serde_core",
|
|
774
1681
|
]
|
|
775
1682
|
|
|
1683
|
+
[[package]]
|
|
1684
|
+
name = "inlinable_string"
|
|
1685
|
+
version = "0.1.15"
|
|
1686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
+
checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb"
|
|
1688
|
+
|
|
1689
|
+
[[package]]
|
|
1690
|
+
name = "inout"
|
|
1691
|
+
version = "0.1.4"
|
|
1692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1694
|
+
dependencies = [
|
|
1695
|
+
"block-padding",
|
|
1696
|
+
"generic-array",
|
|
1697
|
+
]
|
|
1698
|
+
|
|
1699
|
+
[[package]]
|
|
1700
|
+
name = "ipnet"
|
|
1701
|
+
version = "2.12.0"
|
|
1702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1703
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1704
|
+
|
|
1705
|
+
[[package]]
|
|
1706
|
+
name = "is_executable"
|
|
1707
|
+
version = "1.0.5"
|
|
1708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1709
|
+
checksum = "baabb8b4867b26294d818bf3f651a454b6901431711abb96e296245888d6e8c4"
|
|
1710
|
+
dependencies = [
|
|
1711
|
+
"windows-sys 0.60.2",
|
|
1712
|
+
]
|
|
1713
|
+
|
|
776
1714
|
[[package]]
|
|
777
1715
|
name = "is_terminal_polyfill"
|
|
778
1716
|
version = "1.70.2"
|
|
779
1717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
1718
|
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
781
1719
|
|
|
1720
|
+
[[package]]
|
|
1721
|
+
name = "itertools"
|
|
1722
|
+
version = "0.13.0"
|
|
1723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1725
|
+
dependencies = [
|
|
1726
|
+
"either",
|
|
1727
|
+
]
|
|
1728
|
+
|
|
782
1729
|
[[package]]
|
|
783
1730
|
name = "itertools"
|
|
784
1731
|
version = "0.14.0"
|
|
@@ -794,6 +1741,30 @@ version = "1.0.18"
|
|
|
794
1741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
1742
|
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
796
1743
|
|
|
1744
|
+
[[package]]
|
|
1745
|
+
name = "jiff"
|
|
1746
|
+
version = "0.2.28"
|
|
1747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1748
|
+
checksum = "4603d3033e49e2b0e31229fcab20a5d40089c607d975cd9c80551dc69eed9102"
|
|
1749
|
+
dependencies = [
|
|
1750
|
+
"jiff-static",
|
|
1751
|
+
"log",
|
|
1752
|
+
"portable-atomic",
|
|
1753
|
+
"portable-atomic-util",
|
|
1754
|
+
"serde_core",
|
|
1755
|
+
]
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "jiff-static"
|
|
1759
|
+
version = "0.2.28"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "782d32378dddf207193ac91cefb848ad41abb58195c95168e1291227a0832b47"
|
|
1762
|
+
dependencies = [
|
|
1763
|
+
"proc-macro2",
|
|
1764
|
+
"quote",
|
|
1765
|
+
"syn 2.0.117",
|
|
1766
|
+
]
|
|
1767
|
+
|
|
797
1768
|
[[package]]
|
|
798
1769
|
name = "js-sys"
|
|
799
1770
|
version = "0.3.99"
|
|
@@ -825,6 +1796,35 @@ dependencies = [
|
|
|
825
1796
|
"cpufeatures",
|
|
826
1797
|
]
|
|
827
1798
|
|
|
1799
|
+
[[package]]
|
|
1800
|
+
name = "konst"
|
|
1801
|
+
version = "0.3.17"
|
|
1802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
+
checksum = "97feab15b395d1860944abe6a8dd8ed9f8eadfae01750fada8427abda531d887"
|
|
1804
|
+
dependencies = [
|
|
1805
|
+
"const_panic",
|
|
1806
|
+
"konst_kernel",
|
|
1807
|
+
"typewit",
|
|
1808
|
+
]
|
|
1809
|
+
|
|
1810
|
+
[[package]]
|
|
1811
|
+
name = "konst_kernel"
|
|
1812
|
+
version = "0.3.15"
|
|
1813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
+
checksum = "e4b1eb7788f3824c629b1116a7a9060d6e898c358ebff59070093d51103dcc3c"
|
|
1815
|
+
dependencies = [
|
|
1816
|
+
"typewit",
|
|
1817
|
+
]
|
|
1818
|
+
|
|
1819
|
+
[[package]]
|
|
1820
|
+
name = "lazy_static"
|
|
1821
|
+
version = "1.5.0"
|
|
1822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1824
|
+
dependencies = [
|
|
1825
|
+
"spin",
|
|
1826
|
+
]
|
|
1827
|
+
|
|
828
1828
|
[[package]]
|
|
829
1829
|
name = "leb128fmt"
|
|
830
1830
|
version = "0.1.0"
|
|
@@ -837,6 +1837,21 @@ version = "0.2.186"
|
|
|
837
1837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
1838
|
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
839
1839
|
|
|
1840
|
+
[[package]]
|
|
1841
|
+
name = "libm"
|
|
1842
|
+
version = "0.2.16"
|
|
1843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1845
|
+
|
|
1846
|
+
[[package]]
|
|
1847
|
+
name = "libredox"
|
|
1848
|
+
version = "0.1.17"
|
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
+
checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
|
|
1851
|
+
dependencies = [
|
|
1852
|
+
"libc",
|
|
1853
|
+
]
|
|
1854
|
+
|
|
840
1855
|
[[package]]
|
|
841
1856
|
name = "linux-raw-sys"
|
|
842
1857
|
version = "0.12.1"
|
|
@@ -861,12 +1876,39 @@ version = "0.4.30"
|
|
|
861
1876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
1877
|
checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
|
|
863
1878
|
|
|
1879
|
+
[[package]]
|
|
1880
|
+
name = "lru-slab"
|
|
1881
|
+
version = "0.1.2"
|
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1884
|
+
|
|
1885
|
+
[[package]]
|
|
1886
|
+
name = "lzma-sys"
|
|
1887
|
+
version = "0.1.20"
|
|
1888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
|
+
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
1890
|
+
dependencies = [
|
|
1891
|
+
"cc",
|
|
1892
|
+
"libc",
|
|
1893
|
+
"pkg-config",
|
|
1894
|
+
]
|
|
1895
|
+
|
|
864
1896
|
[[package]]
|
|
865
1897
|
name = "lzxd"
|
|
866
1898
|
version = "0.2.6"
|
|
867
1899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
1900
|
checksum = "7b29dffab797218e12e4df08ef5d15ab9efca2504038b1b32b9b32fc844b39c9"
|
|
869
1901
|
|
|
1902
|
+
[[package]]
|
|
1903
|
+
name = "md-5"
|
|
1904
|
+
version = "0.10.6"
|
|
1905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1906
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
1907
|
+
dependencies = [
|
|
1908
|
+
"cfg-if",
|
|
1909
|
+
"digest",
|
|
1910
|
+
]
|
|
1911
|
+
|
|
870
1912
|
[[package]]
|
|
871
1913
|
name = "md5"
|
|
872
1914
|
version = "0.7.0"
|
|
@@ -879,6 +1921,32 @@ version = "2.8.1"
|
|
|
879
1921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
1922
|
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
881
1923
|
|
|
1924
|
+
[[package]]
|
|
1925
|
+
name = "minicbor"
|
|
1926
|
+
version = "0.25.1"
|
|
1927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
+
checksum = "c0452a60c1863c1f50b5f77cd295e8d2786849f35883f0b9e18e7e6e1b5691b0"
|
|
1929
|
+
dependencies = [
|
|
1930
|
+
"minicbor-derive",
|
|
1931
|
+
]
|
|
1932
|
+
|
|
1933
|
+
[[package]]
|
|
1934
|
+
name = "minicbor-derive"
|
|
1935
|
+
version = "0.15.3"
|
|
1936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
+
checksum = "bd2209fff77f705b00c737016a48e73733d7fbccb8b007194db148f03561fb70"
|
|
1938
|
+
dependencies = [
|
|
1939
|
+
"proc-macro2",
|
|
1940
|
+
"quote",
|
|
1941
|
+
"syn 2.0.117",
|
|
1942
|
+
]
|
|
1943
|
+
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "minimal-lexical"
|
|
1946
|
+
version = "0.2.1"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1949
|
+
|
|
882
1950
|
[[package]]
|
|
883
1951
|
name = "miniz_oxide"
|
|
884
1952
|
version = "0.8.9"
|
|
@@ -889,6 +1957,17 @@ dependencies = [
|
|
|
889
1957
|
"simd-adler32",
|
|
890
1958
|
]
|
|
891
1959
|
|
|
1960
|
+
[[package]]
|
|
1961
|
+
name = "mio"
|
|
1962
|
+
version = "1.2.1"
|
|
1963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
1965
|
+
dependencies = [
|
|
1966
|
+
"libc",
|
|
1967
|
+
"wasi",
|
|
1968
|
+
"windows-sys 0.61.2",
|
|
1969
|
+
]
|
|
1970
|
+
|
|
892
1971
|
[[package]]
|
|
893
1972
|
name = "msi"
|
|
894
1973
|
version = "0.10.0"
|
|
@@ -901,6 +1980,16 @@ dependencies = [
|
|
|
901
1980
|
"uuid",
|
|
902
1981
|
]
|
|
903
1982
|
|
|
1983
|
+
[[package]]
|
|
1984
|
+
name = "nom"
|
|
1985
|
+
version = "7.1.3"
|
|
1986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1988
|
+
dependencies = [
|
|
1989
|
+
"memchr",
|
|
1990
|
+
"minimal-lexical",
|
|
1991
|
+
]
|
|
1992
|
+
|
|
904
1993
|
[[package]]
|
|
905
1994
|
name = "nom"
|
|
906
1995
|
version = "8.0.0"
|
|
@@ -934,6 +2023,22 @@ dependencies = [
|
|
|
934
2023
|
"num-traits",
|
|
935
2024
|
]
|
|
936
2025
|
|
|
2026
|
+
[[package]]
|
|
2027
|
+
name = "num-bigint-dig"
|
|
2028
|
+
version = "0.8.6"
|
|
2029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2030
|
+
checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
|
|
2031
|
+
dependencies = [
|
|
2032
|
+
"lazy_static",
|
|
2033
|
+
"libm",
|
|
2034
|
+
"num-integer",
|
|
2035
|
+
"num-iter",
|
|
2036
|
+
"num-traits",
|
|
2037
|
+
"rand 0.8.6",
|
|
2038
|
+
"smallvec",
|
|
2039
|
+
"zeroize",
|
|
2040
|
+
]
|
|
2041
|
+
|
|
937
2042
|
[[package]]
|
|
938
2043
|
name = "num-complex"
|
|
939
2044
|
version = "0.4.6"
|
|
@@ -998,6 +2103,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
998
2103
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
999
2104
|
dependencies = [
|
|
1000
2105
|
"autocfg",
|
|
2106
|
+
"libm",
|
|
2107
|
+
]
|
|
2108
|
+
|
|
2109
|
+
[[package]]
|
|
2110
|
+
name = "object"
|
|
2111
|
+
version = "0.36.7"
|
|
2112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2113
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
2114
|
+
dependencies = [
|
|
2115
|
+
"crc32fast",
|
|
2116
|
+
"flate2",
|
|
2117
|
+
"hashbrown 0.15.5",
|
|
2118
|
+
"indexmap",
|
|
2119
|
+
"memchr",
|
|
2120
|
+
"ruzstd",
|
|
2121
|
+
]
|
|
2122
|
+
|
|
2123
|
+
[[package]]
|
|
2124
|
+
name = "oid-registry"
|
|
2125
|
+
version = "0.7.1"
|
|
2126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2127
|
+
checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9"
|
|
2128
|
+
dependencies = [
|
|
2129
|
+
"asn1-rs",
|
|
1001
2130
|
]
|
|
1002
2131
|
|
|
1003
2132
|
[[package]]
|
|
@@ -1013,37 +2142,173 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1013
2142
|
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1014
2143
|
|
|
1015
2144
|
[[package]]
|
|
1016
|
-
name = "
|
|
1017
|
-
version = "
|
|
2145
|
+
name = "openssl-probe"
|
|
2146
|
+
version = "0.1.6"
|
|
1018
2147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
-
checksum = "
|
|
2148
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1020
2149
|
|
|
1021
2150
|
[[package]]
|
|
1022
|
-
name = "
|
|
1023
|
-
version = "0.2.
|
|
2151
|
+
name = "openssl-probe"
|
|
2152
|
+
version = "0.2.1"
|
|
1024
2153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
-
checksum = "
|
|
2154
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1026
2155
|
|
|
1027
2156
|
[[package]]
|
|
1028
|
-
name = "
|
|
1029
|
-
version = "
|
|
2157
|
+
name = "option-ext"
|
|
2158
|
+
version = "0.2.0"
|
|
1030
2159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
-
checksum = "
|
|
2160
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
2161
|
+
|
|
2162
|
+
[[package]]
|
|
2163
|
+
name = "p12"
|
|
2164
|
+
version = "0.6.3"
|
|
2165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2166
|
+
checksum = "d4873306de53fe82e7e484df31e1e947d61514b6ea2ed6cd7b45d63006fd9224"
|
|
1032
2167
|
dependencies = [
|
|
1033
|
-
"
|
|
1034
|
-
"
|
|
1035
|
-
"
|
|
1036
|
-
"
|
|
1037
|
-
"
|
|
2168
|
+
"cbc",
|
|
2169
|
+
"cipher",
|
|
2170
|
+
"des",
|
|
2171
|
+
"getrandom 0.2.17",
|
|
2172
|
+
"hmac",
|
|
2173
|
+
"lazy_static",
|
|
2174
|
+
"rc2",
|
|
2175
|
+
"sha1",
|
|
2176
|
+
"yasna",
|
|
1038
2177
|
]
|
|
1039
2178
|
|
|
1040
2179
|
[[package]]
|
|
1041
|
-
name = "
|
|
1042
|
-
version = "0.
|
|
2180
|
+
name = "p256"
|
|
2181
|
+
version = "0.13.2"
|
|
1043
2182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
-
checksum = "
|
|
2183
|
+
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
|
|
1045
2184
|
dependencies = [
|
|
1046
|
-
"
|
|
2185
|
+
"ecdsa",
|
|
2186
|
+
"elliptic-curve",
|
|
2187
|
+
"primeorder",
|
|
2188
|
+
]
|
|
2189
|
+
|
|
2190
|
+
[[package]]
|
|
2191
|
+
name = "pear"
|
|
2192
|
+
version = "0.2.9"
|
|
2193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
+
checksum = "bdeeaa00ce488657faba8ebf44ab9361f9365a97bd39ffb8a60663f57ff4b467"
|
|
2195
|
+
dependencies = [
|
|
2196
|
+
"inlinable_string",
|
|
2197
|
+
"pear_codegen",
|
|
2198
|
+
"yansi",
|
|
2199
|
+
]
|
|
2200
|
+
|
|
2201
|
+
[[package]]
|
|
2202
|
+
name = "pear_codegen"
|
|
2203
|
+
version = "0.2.9"
|
|
2204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2205
|
+
checksum = "4bab5b985dc082b345f812b7df84e1bef27e7207b39e448439ba8bd69c93f147"
|
|
2206
|
+
dependencies = [
|
|
2207
|
+
"proc-macro2",
|
|
2208
|
+
"proc-macro2-diagnostics",
|
|
2209
|
+
"quote",
|
|
2210
|
+
"syn 2.0.117",
|
|
2211
|
+
]
|
|
2212
|
+
|
|
2213
|
+
[[package]]
|
|
2214
|
+
name = "pem"
|
|
2215
|
+
version = "3.0.6"
|
|
2216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2217
|
+
checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
|
|
2218
|
+
dependencies = [
|
|
2219
|
+
"base64",
|
|
2220
|
+
"serde_core",
|
|
2221
|
+
]
|
|
2222
|
+
|
|
2223
|
+
[[package]]
|
|
2224
|
+
name = "pem-rfc7468"
|
|
2225
|
+
version = "0.7.0"
|
|
2226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
2228
|
+
dependencies = [
|
|
2229
|
+
"base64ct",
|
|
2230
|
+
]
|
|
2231
|
+
|
|
2232
|
+
[[package]]
|
|
2233
|
+
name = "percent-encoding"
|
|
2234
|
+
version = "2.3.2"
|
|
2235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2236
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2237
|
+
|
|
2238
|
+
[[package]]
|
|
2239
|
+
name = "pin-project-lite"
|
|
2240
|
+
version = "0.2.17"
|
|
2241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2242
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "pkcs1"
|
|
2246
|
+
version = "0.7.5"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
|
|
2249
|
+
dependencies = [
|
|
2250
|
+
"der",
|
|
2251
|
+
"pkcs8",
|
|
2252
|
+
"spki",
|
|
2253
|
+
]
|
|
2254
|
+
|
|
2255
|
+
[[package]]
|
|
2256
|
+
name = "pkcs8"
|
|
2257
|
+
version = "0.10.2"
|
|
2258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2259
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
2260
|
+
dependencies = [
|
|
2261
|
+
"der",
|
|
2262
|
+
"spki",
|
|
2263
|
+
]
|
|
2264
|
+
|
|
2265
|
+
[[package]]
|
|
2266
|
+
name = "pkg-config"
|
|
2267
|
+
version = "0.3.33"
|
|
2268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
2270
|
+
|
|
2271
|
+
[[package]]
|
|
2272
|
+
name = "plain"
|
|
2273
|
+
version = "0.2.3"
|
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
+
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
2276
|
+
|
|
2277
|
+
[[package]]
|
|
2278
|
+
name = "plist"
|
|
2279
|
+
version = "1.9.0"
|
|
2280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2281
|
+
checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1"
|
|
2282
|
+
dependencies = [
|
|
2283
|
+
"base64",
|
|
2284
|
+
"indexmap",
|
|
2285
|
+
"quick-xml",
|
|
2286
|
+
"serde",
|
|
2287
|
+
"time",
|
|
2288
|
+
]
|
|
2289
|
+
|
|
2290
|
+
[[package]]
|
|
2291
|
+
name = "portable-atomic"
|
|
2292
|
+
version = "1.13.1"
|
|
2293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2294
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
2295
|
+
|
|
2296
|
+
[[package]]
|
|
2297
|
+
name = "portable-atomic-util"
|
|
2298
|
+
version = "0.2.7"
|
|
2299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2300
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
2301
|
+
dependencies = [
|
|
2302
|
+
"portable-atomic",
|
|
2303
|
+
]
|
|
2304
|
+
|
|
2305
|
+
[[package]]
|
|
2306
|
+
name = "potential_utf"
|
|
2307
|
+
version = "0.1.5"
|
|
2308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2309
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
2310
|
+
dependencies = [
|
|
2311
|
+
"zerovec",
|
|
1047
2312
|
]
|
|
1048
2313
|
|
|
1049
2314
|
[[package]]
|
|
@@ -1052,6 +2317,15 @@ version = "0.2.0"
|
|
|
1052
2317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
2318
|
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1054
2319
|
|
|
2320
|
+
[[package]]
|
|
2321
|
+
name = "ppv-lite86"
|
|
2322
|
+
version = "0.2.21"
|
|
2323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2324
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2325
|
+
dependencies = [
|
|
2326
|
+
"zerocopy",
|
|
2327
|
+
]
|
|
2328
|
+
|
|
1055
2329
|
[[package]]
|
|
1056
2330
|
name = "prettyplease"
|
|
1057
2331
|
version = "0.2.37"
|
|
@@ -1062,6 +2336,15 @@ dependencies = [
|
|
|
1062
2336
|
"syn 2.0.117",
|
|
1063
2337
|
]
|
|
1064
2338
|
|
|
2339
|
+
[[package]]
|
|
2340
|
+
name = "primeorder"
|
|
2341
|
+
version = "0.13.6"
|
|
2342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2343
|
+
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
|
|
2344
|
+
dependencies = [
|
|
2345
|
+
"elliptic-curve",
|
|
2346
|
+
]
|
|
2347
|
+
|
|
1065
2348
|
[[package]]
|
|
1066
2349
|
name = "proc-macro2"
|
|
1067
2350
|
version = "1.0.106"
|
|
@@ -1071,6 +2354,19 @@ dependencies = [
|
|
|
1071
2354
|
"unicode-ident",
|
|
1072
2355
|
]
|
|
1073
2356
|
|
|
2357
|
+
[[package]]
|
|
2358
|
+
name = "proc-macro2-diagnostics"
|
|
2359
|
+
version = "0.10.1"
|
|
2360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
|
+
checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
|
|
2362
|
+
dependencies = [
|
|
2363
|
+
"proc-macro2",
|
|
2364
|
+
"quote",
|
|
2365
|
+
"syn 2.0.117",
|
|
2366
|
+
"version_check",
|
|
2367
|
+
"yansi",
|
|
2368
|
+
]
|
|
2369
|
+
|
|
1074
2370
|
[[package]]
|
|
1075
2371
|
name = "quick-xml"
|
|
1076
2372
|
version = "0.39.4"
|
|
@@ -1080,6 +2376,61 @@ dependencies = [
|
|
|
1080
2376
|
"memchr",
|
|
1081
2377
|
]
|
|
1082
2378
|
|
|
2379
|
+
[[package]]
|
|
2380
|
+
name = "quinn"
|
|
2381
|
+
version = "0.11.9"
|
|
2382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2383
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
2384
|
+
dependencies = [
|
|
2385
|
+
"bytes",
|
|
2386
|
+
"cfg_aliases",
|
|
2387
|
+
"pin-project-lite",
|
|
2388
|
+
"quinn-proto",
|
|
2389
|
+
"quinn-udp",
|
|
2390
|
+
"rustc-hash",
|
|
2391
|
+
"rustls",
|
|
2392
|
+
"socket2",
|
|
2393
|
+
"thiserror 2.0.18",
|
|
2394
|
+
"tokio",
|
|
2395
|
+
"tracing",
|
|
2396
|
+
"web-time",
|
|
2397
|
+
]
|
|
2398
|
+
|
|
2399
|
+
[[package]]
|
|
2400
|
+
name = "quinn-proto"
|
|
2401
|
+
version = "0.11.14"
|
|
2402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2403
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
2404
|
+
dependencies = [
|
|
2405
|
+
"bytes",
|
|
2406
|
+
"getrandom 0.3.4",
|
|
2407
|
+
"lru-slab",
|
|
2408
|
+
"rand 0.9.4",
|
|
2409
|
+
"ring",
|
|
2410
|
+
"rustc-hash",
|
|
2411
|
+
"rustls",
|
|
2412
|
+
"rustls-pki-types",
|
|
2413
|
+
"slab",
|
|
2414
|
+
"thiserror 2.0.18",
|
|
2415
|
+
"tinyvec",
|
|
2416
|
+
"tracing",
|
|
2417
|
+
"web-time",
|
|
2418
|
+
]
|
|
2419
|
+
|
|
2420
|
+
[[package]]
|
|
2421
|
+
name = "quinn-udp"
|
|
2422
|
+
version = "0.5.14"
|
|
2423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2425
|
+
dependencies = [
|
|
2426
|
+
"cfg_aliases",
|
|
2427
|
+
"libc",
|
|
2428
|
+
"once_cell",
|
|
2429
|
+
"socket2",
|
|
2430
|
+
"tracing",
|
|
2431
|
+
"windows-sys 0.52.0",
|
|
2432
|
+
]
|
|
2433
|
+
|
|
1083
2434
|
[[package]]
|
|
1084
2435
|
name = "quote"
|
|
1085
2436
|
version = "1.0.45"
|
|
@@ -1089,12 +2440,233 @@ dependencies = [
|
|
|
1089
2440
|
"proc-macro2",
|
|
1090
2441
|
]
|
|
1091
2442
|
|
|
2443
|
+
[[package]]
|
|
2444
|
+
name = "r-efi"
|
|
2445
|
+
version = "5.3.0"
|
|
2446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2447
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2448
|
+
|
|
1092
2449
|
[[package]]
|
|
1093
2450
|
name = "r-efi"
|
|
1094
2451
|
version = "6.0.0"
|
|
1095
2452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
2453
|
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1097
2454
|
|
|
2455
|
+
[[package]]
|
|
2456
|
+
name = "radium"
|
|
2457
|
+
version = "0.7.0"
|
|
2458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2459
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
2460
|
+
|
|
2461
|
+
[[package]]
|
|
2462
|
+
name = "rand"
|
|
2463
|
+
version = "0.8.6"
|
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
2466
|
+
dependencies = [
|
|
2467
|
+
"libc",
|
|
2468
|
+
"rand_chacha 0.3.1",
|
|
2469
|
+
"rand_core 0.6.4",
|
|
2470
|
+
]
|
|
2471
|
+
|
|
2472
|
+
[[package]]
|
|
2473
|
+
name = "rand"
|
|
2474
|
+
version = "0.9.4"
|
|
2475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2477
|
+
dependencies = [
|
|
2478
|
+
"rand_chacha 0.9.0",
|
|
2479
|
+
"rand_core 0.9.5",
|
|
2480
|
+
]
|
|
2481
|
+
|
|
2482
|
+
[[package]]
|
|
2483
|
+
name = "rand_chacha"
|
|
2484
|
+
version = "0.3.1"
|
|
2485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2486
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2487
|
+
dependencies = [
|
|
2488
|
+
"ppv-lite86",
|
|
2489
|
+
"rand_core 0.6.4",
|
|
2490
|
+
]
|
|
2491
|
+
|
|
2492
|
+
[[package]]
|
|
2493
|
+
name = "rand_chacha"
|
|
2494
|
+
version = "0.9.0"
|
|
2495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2496
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2497
|
+
dependencies = [
|
|
2498
|
+
"ppv-lite86",
|
|
2499
|
+
"rand_core 0.9.5",
|
|
2500
|
+
]
|
|
2501
|
+
|
|
2502
|
+
[[package]]
|
|
2503
|
+
name = "rand_core"
|
|
2504
|
+
version = "0.6.4"
|
|
2505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2507
|
+
dependencies = [
|
|
2508
|
+
"getrandom 0.2.17",
|
|
2509
|
+
]
|
|
2510
|
+
|
|
2511
|
+
[[package]]
|
|
2512
|
+
name = "rand_core"
|
|
2513
|
+
version = "0.9.5"
|
|
2514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2515
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2516
|
+
dependencies = [
|
|
2517
|
+
"getrandom 0.3.4",
|
|
2518
|
+
]
|
|
2519
|
+
|
|
2520
|
+
[[package]]
|
|
2521
|
+
name = "rasn"
|
|
2522
|
+
version = "0.20.2"
|
|
2523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2524
|
+
checksum = "e442690f86da40561d5548e7ffb4a18af90d1c1b3536090de847ca2d5a3a6426"
|
|
2525
|
+
dependencies = [
|
|
2526
|
+
"arrayvec",
|
|
2527
|
+
"bitvec",
|
|
2528
|
+
"bitvec-nom2",
|
|
2529
|
+
"bytes",
|
|
2530
|
+
"chrono",
|
|
2531
|
+
"either",
|
|
2532
|
+
"hashbrown 0.14.5",
|
|
2533
|
+
"konst",
|
|
2534
|
+
"nom 7.1.3",
|
|
2535
|
+
"num-bigint",
|
|
2536
|
+
"num-integer",
|
|
2537
|
+
"num-traits",
|
|
2538
|
+
"once_cell",
|
|
2539
|
+
"rasn-derive",
|
|
2540
|
+
"serde_json",
|
|
2541
|
+
"snafu",
|
|
2542
|
+
]
|
|
2543
|
+
|
|
2544
|
+
[[package]]
|
|
2545
|
+
name = "rasn-derive"
|
|
2546
|
+
version = "0.20.2"
|
|
2547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2548
|
+
checksum = "96b0d374c7e4e985e6bc97ca7e7ad1d9642a8415db2017777d6e383002edaab2"
|
|
2549
|
+
dependencies = [
|
|
2550
|
+
"either",
|
|
2551
|
+
"itertools 0.13.0",
|
|
2552
|
+
"proc-macro2",
|
|
2553
|
+
"quote",
|
|
2554
|
+
"rayon",
|
|
2555
|
+
"syn 2.0.117",
|
|
2556
|
+
"uuid",
|
|
2557
|
+
]
|
|
2558
|
+
|
|
2559
|
+
[[package]]
|
|
2560
|
+
name = "rayon"
|
|
2561
|
+
version = "1.12.0"
|
|
2562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
2564
|
+
dependencies = [
|
|
2565
|
+
"either",
|
|
2566
|
+
"rayon-core",
|
|
2567
|
+
]
|
|
2568
|
+
|
|
2569
|
+
[[package]]
|
|
2570
|
+
name = "rayon-core"
|
|
2571
|
+
version = "1.13.0"
|
|
2572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2574
|
+
dependencies = [
|
|
2575
|
+
"crossbeam-deque",
|
|
2576
|
+
"crossbeam-utils",
|
|
2577
|
+
]
|
|
2578
|
+
|
|
2579
|
+
[[package]]
|
|
2580
|
+
name = "rc2"
|
|
2581
|
+
version = "0.8.1"
|
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
+
checksum = "62c64daa8e9438b84aaae55010a93f396f8e60e3911590fcba770d04643fc1dd"
|
|
2584
|
+
dependencies = [
|
|
2585
|
+
"cipher",
|
|
2586
|
+
]
|
|
2587
|
+
|
|
2588
|
+
[[package]]
|
|
2589
|
+
name = "redox_users"
|
|
2590
|
+
version = "0.4.6"
|
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2593
|
+
dependencies = [
|
|
2594
|
+
"getrandom 0.2.17",
|
|
2595
|
+
"libredox",
|
|
2596
|
+
"thiserror 1.0.69",
|
|
2597
|
+
]
|
|
2598
|
+
|
|
2599
|
+
[[package]]
|
|
2600
|
+
name = "regex"
|
|
2601
|
+
version = "1.12.3"
|
|
2602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2603
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
2604
|
+
dependencies = [
|
|
2605
|
+
"aho-corasick",
|
|
2606
|
+
"memchr",
|
|
2607
|
+
"regex-automata",
|
|
2608
|
+
"regex-syntax",
|
|
2609
|
+
]
|
|
2610
|
+
|
|
2611
|
+
[[package]]
|
|
2612
|
+
name = "regex-automata"
|
|
2613
|
+
version = "0.4.14"
|
|
2614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2615
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2616
|
+
dependencies = [
|
|
2617
|
+
"aho-corasick",
|
|
2618
|
+
"memchr",
|
|
2619
|
+
"regex-syntax",
|
|
2620
|
+
]
|
|
2621
|
+
|
|
2622
|
+
[[package]]
|
|
2623
|
+
name = "regex-syntax"
|
|
2624
|
+
version = "0.8.10"
|
|
2625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2626
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
2627
|
+
|
|
2628
|
+
[[package]]
|
|
2629
|
+
name = "reqwest"
|
|
2630
|
+
version = "0.12.28"
|
|
2631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2632
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
2633
|
+
dependencies = [
|
|
2634
|
+
"base64",
|
|
2635
|
+
"bytes",
|
|
2636
|
+
"futures-channel",
|
|
2637
|
+
"futures-core",
|
|
2638
|
+
"futures-util",
|
|
2639
|
+
"h2",
|
|
2640
|
+
"http",
|
|
2641
|
+
"http-body",
|
|
2642
|
+
"http-body-util",
|
|
2643
|
+
"hyper",
|
|
2644
|
+
"hyper-rustls",
|
|
2645
|
+
"hyper-util",
|
|
2646
|
+
"js-sys",
|
|
2647
|
+
"log",
|
|
2648
|
+
"percent-encoding",
|
|
2649
|
+
"pin-project-lite",
|
|
2650
|
+
"quinn",
|
|
2651
|
+
"rustls",
|
|
2652
|
+
"rustls-native-certs 0.8.3",
|
|
2653
|
+
"rustls-pki-types",
|
|
2654
|
+
"serde",
|
|
2655
|
+
"serde_json",
|
|
2656
|
+
"serde_urlencoded",
|
|
2657
|
+
"sync_wrapper",
|
|
2658
|
+
"tokio",
|
|
2659
|
+
"tokio-rustls",
|
|
2660
|
+
"tower",
|
|
2661
|
+
"tower-http",
|
|
2662
|
+
"tower-service",
|
|
2663
|
+
"url",
|
|
2664
|
+
"wasm-bindgen",
|
|
2665
|
+
"wasm-bindgen-futures",
|
|
2666
|
+
"web-sys",
|
|
2667
|
+
"webpki-roots",
|
|
2668
|
+
]
|
|
2669
|
+
|
|
1098
2670
|
[[package]]
|
|
1099
2671
|
name = "ring"
|
|
1100
2672
|
version = "0.17.14"
|
|
@@ -1122,10 +2694,10 @@ dependencies = [
|
|
|
1122
2694
|
"enum-primitive-derive",
|
|
1123
2695
|
"flate2",
|
|
1124
2696
|
"hex",
|
|
1125
|
-
"itertools",
|
|
2697
|
+
"itertools 0.14.0",
|
|
1126
2698
|
"log",
|
|
1127
2699
|
"memchr",
|
|
1128
|
-
"nom",
|
|
2700
|
+
"nom 8.0.0",
|
|
1129
2701
|
"num",
|
|
1130
2702
|
"num-derive",
|
|
1131
2703
|
"num-traits",
|
|
@@ -1133,7 +2705,7 @@ dependencies = [
|
|
|
1133
2705
|
"sha1",
|
|
1134
2706
|
"sha2",
|
|
1135
2707
|
"sha3",
|
|
1136
|
-
"thiserror",
|
|
2708
|
+
"thiserror 2.0.18",
|
|
1137
2709
|
"zeroize",
|
|
1138
2710
|
]
|
|
1139
2711
|
|
|
@@ -1143,6 +2715,50 @@ version = "0.4.0"
|
|
|
1143
2715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
2716
|
checksum = "e9274efa3f2ce8fe60fd8ea005a49955f92ddd81643eb38084b8e2c6c507018f"
|
|
1145
2717
|
|
|
2718
|
+
[[package]]
|
|
2719
|
+
name = "rsa"
|
|
2720
|
+
version = "0.9.10"
|
|
2721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2722
|
+
checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
|
|
2723
|
+
dependencies = [
|
|
2724
|
+
"const-oid",
|
|
2725
|
+
"digest",
|
|
2726
|
+
"num-bigint-dig",
|
|
2727
|
+
"num-integer",
|
|
2728
|
+
"num-traits",
|
|
2729
|
+
"pkcs1",
|
|
2730
|
+
"pkcs8",
|
|
2731
|
+
"rand_core 0.6.4",
|
|
2732
|
+
"signature",
|
|
2733
|
+
"spki",
|
|
2734
|
+
"subtle",
|
|
2735
|
+
"zeroize",
|
|
2736
|
+
]
|
|
2737
|
+
|
|
2738
|
+
[[package]]
|
|
2739
|
+
name = "rustc-hash"
|
|
2740
|
+
version = "2.1.2"
|
|
2741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2742
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2743
|
+
|
|
2744
|
+
[[package]]
|
|
2745
|
+
name = "rustc_version"
|
|
2746
|
+
version = "0.4.1"
|
|
2747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2749
|
+
dependencies = [
|
|
2750
|
+
"semver",
|
|
2751
|
+
]
|
|
2752
|
+
|
|
2753
|
+
[[package]]
|
|
2754
|
+
name = "rusticata-macros"
|
|
2755
|
+
version = "4.1.0"
|
|
2756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2757
|
+
checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
|
|
2758
|
+
dependencies = [
|
|
2759
|
+
"nom 7.1.3",
|
|
2760
|
+
]
|
|
2761
|
+
|
|
1146
2762
|
[[package]]
|
|
1147
2763
|
name = "rustix"
|
|
1148
2764
|
version = "1.1.4"
|
|
@@ -1171,31 +2787,169 @@ dependencies = [
|
|
|
1171
2787
|
"zeroize",
|
|
1172
2788
|
]
|
|
1173
2789
|
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "rustls-native-certs"
|
|
2792
|
+
version = "0.7.3"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5"
|
|
2795
|
+
dependencies = [
|
|
2796
|
+
"openssl-probe 0.1.6",
|
|
2797
|
+
"rustls-pemfile",
|
|
2798
|
+
"rustls-pki-types",
|
|
2799
|
+
"schannel",
|
|
2800
|
+
"security-framework 2.11.1",
|
|
2801
|
+
]
|
|
2802
|
+
|
|
2803
|
+
[[package]]
|
|
2804
|
+
name = "rustls-native-certs"
|
|
2805
|
+
version = "0.8.3"
|
|
2806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2807
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
2808
|
+
dependencies = [
|
|
2809
|
+
"openssl-probe 0.2.1",
|
|
2810
|
+
"rustls-pki-types",
|
|
2811
|
+
"schannel",
|
|
2812
|
+
"security-framework 3.7.0",
|
|
2813
|
+
]
|
|
2814
|
+
|
|
2815
|
+
[[package]]
|
|
2816
|
+
name = "rustls-pemfile"
|
|
2817
|
+
version = "2.2.0"
|
|
2818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2819
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
2820
|
+
dependencies = [
|
|
2821
|
+
"rustls-pki-types",
|
|
2822
|
+
]
|
|
2823
|
+
|
|
1174
2824
|
[[package]]
|
|
1175
2825
|
name = "rustls-pki-types"
|
|
1176
2826
|
version = "1.14.1"
|
|
1177
2827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
2828
|
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
1179
2829
|
dependencies = [
|
|
2830
|
+
"web-time",
|
|
2831
|
+
"zeroize",
|
|
2832
|
+
]
|
|
2833
|
+
|
|
2834
|
+
[[package]]
|
|
2835
|
+
name = "rustls-webpki"
|
|
2836
|
+
version = "0.103.13"
|
|
2837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
2839
|
+
dependencies = [
|
|
2840
|
+
"ring",
|
|
2841
|
+
"rustls-pki-types",
|
|
2842
|
+
"untrusted",
|
|
2843
|
+
]
|
|
2844
|
+
|
|
2845
|
+
[[package]]
|
|
2846
|
+
name = "rustversion"
|
|
2847
|
+
version = "1.0.22"
|
|
2848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2850
|
+
|
|
2851
|
+
[[package]]
|
|
2852
|
+
name = "ruzstd"
|
|
2853
|
+
version = "0.7.3"
|
|
2854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2855
|
+
checksum = "fad02996bfc73da3e301efe90b1837be9ed8f4a462b6ed410aa35d00381de89f"
|
|
2856
|
+
dependencies = [
|
|
2857
|
+
"twox-hash",
|
|
2858
|
+
]
|
|
2859
|
+
|
|
2860
|
+
[[package]]
|
|
2861
|
+
name = "ryu"
|
|
2862
|
+
version = "1.0.23"
|
|
2863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2864
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2865
|
+
|
|
2866
|
+
[[package]]
|
|
2867
|
+
name = "same-file"
|
|
2868
|
+
version = "1.0.6"
|
|
2869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2870
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2871
|
+
dependencies = [
|
|
2872
|
+
"winapi-util",
|
|
2873
|
+
]
|
|
2874
|
+
|
|
2875
|
+
[[package]]
|
|
2876
|
+
name = "schannel"
|
|
2877
|
+
version = "0.1.29"
|
|
2878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2879
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
2880
|
+
dependencies = [
|
|
2881
|
+
"windows-sys 0.61.2",
|
|
2882
|
+
]
|
|
2883
|
+
|
|
2884
|
+
[[package]]
|
|
2885
|
+
name = "scroll"
|
|
2886
|
+
version = "0.12.0"
|
|
2887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2888
|
+
checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
|
|
2889
|
+
dependencies = [
|
|
2890
|
+
"scroll_derive",
|
|
2891
|
+
]
|
|
2892
|
+
|
|
2893
|
+
[[package]]
|
|
2894
|
+
name = "scroll_derive"
|
|
2895
|
+
version = "0.12.1"
|
|
2896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
+
checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d"
|
|
2898
|
+
dependencies = [
|
|
2899
|
+
"proc-macro2",
|
|
2900
|
+
"quote",
|
|
2901
|
+
"syn 2.0.117",
|
|
2902
|
+
]
|
|
2903
|
+
|
|
2904
|
+
[[package]]
|
|
2905
|
+
name = "sec1"
|
|
2906
|
+
version = "0.7.3"
|
|
2907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2908
|
+
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
|
|
2909
|
+
dependencies = [
|
|
2910
|
+
"base16ct",
|
|
2911
|
+
"der",
|
|
2912
|
+
"generic-array",
|
|
2913
|
+
"pkcs8",
|
|
2914
|
+
"subtle",
|
|
1180
2915
|
"zeroize",
|
|
1181
2916
|
]
|
|
1182
2917
|
|
|
1183
2918
|
[[package]]
|
|
1184
|
-
name = "
|
|
1185
|
-
version = "
|
|
2919
|
+
name = "security-framework"
|
|
2920
|
+
version = "2.11.1"
|
|
2921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
2923
|
+
dependencies = [
|
|
2924
|
+
"bitflags 2.11.1",
|
|
2925
|
+
"core-foundation 0.9.4",
|
|
2926
|
+
"core-foundation-sys",
|
|
2927
|
+
"libc",
|
|
2928
|
+
"security-framework-sys",
|
|
2929
|
+
]
|
|
2930
|
+
|
|
2931
|
+
[[package]]
|
|
2932
|
+
name = "security-framework"
|
|
2933
|
+
version = "3.7.0"
|
|
1186
2934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
-
checksum = "
|
|
2935
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1188
2936
|
dependencies = [
|
|
1189
|
-
"
|
|
1190
|
-
"
|
|
1191
|
-
"
|
|
2937
|
+
"bitflags 2.11.1",
|
|
2938
|
+
"core-foundation 0.10.1",
|
|
2939
|
+
"core-foundation-sys",
|
|
2940
|
+
"libc",
|
|
2941
|
+
"security-framework-sys",
|
|
1192
2942
|
]
|
|
1193
2943
|
|
|
1194
2944
|
[[package]]
|
|
1195
|
-
name = "
|
|
1196
|
-
version = "
|
|
2945
|
+
name = "security-framework-sys"
|
|
2946
|
+
version = "2.17.0"
|
|
1197
2947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
-
checksum = "
|
|
2948
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
2949
|
+
dependencies = [
|
|
2950
|
+
"core-foundation-sys",
|
|
2951
|
+
"libc",
|
|
2952
|
+
]
|
|
1199
2953
|
|
|
1200
2954
|
[[package]]
|
|
1201
2955
|
name = "semver"
|
|
@@ -1213,6 +2967,18 @@ dependencies = [
|
|
|
1213
2967
|
"serde_derive",
|
|
1214
2968
|
]
|
|
1215
2969
|
|
|
2970
|
+
[[package]]
|
|
2971
|
+
name = "serde-xml-rs"
|
|
2972
|
+
version = "0.6.0"
|
|
2973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2974
|
+
checksum = "fb3aa78ecda1ebc9ec9847d5d3aba7d618823446a049ba2491940506da6e2782"
|
|
2975
|
+
dependencies = [
|
|
2976
|
+
"log",
|
|
2977
|
+
"serde",
|
|
2978
|
+
"thiserror 1.0.69",
|
|
2979
|
+
"xml-rs",
|
|
2980
|
+
]
|
|
2981
|
+
|
|
1216
2982
|
[[package]]
|
|
1217
2983
|
name = "serde_bytes"
|
|
1218
2984
|
version = "0.11.19"
|
|
@@ -1256,6 +3022,40 @@ dependencies = [
|
|
|
1256
3022
|
"zmij",
|
|
1257
3023
|
]
|
|
1258
3024
|
|
|
3025
|
+
[[package]]
|
|
3026
|
+
name = "serde_spanned"
|
|
3027
|
+
version = "0.6.9"
|
|
3028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3029
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
3030
|
+
dependencies = [
|
|
3031
|
+
"serde",
|
|
3032
|
+
]
|
|
3033
|
+
|
|
3034
|
+
[[package]]
|
|
3035
|
+
name = "serde_urlencoded"
|
|
3036
|
+
version = "0.7.1"
|
|
3037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3038
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
3039
|
+
dependencies = [
|
|
3040
|
+
"form_urlencoded",
|
|
3041
|
+
"itoa",
|
|
3042
|
+
"ryu",
|
|
3043
|
+
"serde",
|
|
3044
|
+
]
|
|
3045
|
+
|
|
3046
|
+
[[package]]
|
|
3047
|
+
name = "serde_yaml"
|
|
3048
|
+
version = "0.9.34+deprecated"
|
|
3049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3050
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
3051
|
+
dependencies = [
|
|
3052
|
+
"indexmap",
|
|
3053
|
+
"itoa",
|
|
3054
|
+
"ryu",
|
|
3055
|
+
"serde",
|
|
3056
|
+
"unsafe-libyaml",
|
|
3057
|
+
]
|
|
3058
|
+
|
|
1259
3059
|
[[package]]
|
|
1260
3060
|
name = "sha1"
|
|
1261
3061
|
version = "0.10.6"
|
|
@@ -1294,12 +3094,28 @@ dependencies = [
|
|
|
1294
3094
|
"keccak",
|
|
1295
3095
|
]
|
|
1296
3096
|
|
|
3097
|
+
[[package]]
|
|
3098
|
+
name = "shell-words"
|
|
3099
|
+
version = "1.1.1"
|
|
3100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3101
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
3102
|
+
|
|
1297
3103
|
[[package]]
|
|
1298
3104
|
name = "shlex"
|
|
1299
3105
|
version = "2.0.1"
|
|
1300
3106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
3107
|
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1302
3108
|
|
|
3109
|
+
[[package]]
|
|
3110
|
+
name = "signature"
|
|
3111
|
+
version = "2.2.0"
|
|
3112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3113
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
3114
|
+
dependencies = [
|
|
3115
|
+
"digest",
|
|
3116
|
+
"rand_core 0.6.4",
|
|
3117
|
+
]
|
|
3118
|
+
|
|
1303
3119
|
[[package]]
|
|
1304
3120
|
name = "simd-adler32"
|
|
1305
3121
|
version = "0.3.9"
|
|
@@ -1312,6 +3128,12 @@ version = "0.2.14"
|
|
|
1312
3128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
3129
|
checksum = "c11532d9d241904f095185f35dcdaf930b1427a94d5b01d7002d74ba19b44cc4"
|
|
1314
3130
|
|
|
3131
|
+
[[package]]
|
|
3132
|
+
name = "simple-file-manifest"
|
|
3133
|
+
version = "0.11.0"
|
|
3134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3135
|
+
checksum = "5dd19be0257552dd56d1bb6946f89f193c6e5b9f13cc9327c4bc84a357507c74"
|
|
3136
|
+
|
|
1315
3137
|
[[package]]
|
|
1316
3138
|
name = "slab"
|
|
1317
3139
|
version = "0.4.12"
|
|
@@ -1324,12 +3146,77 @@ version = "1.15.1"
|
|
|
1324
3146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
3147
|
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1326
3148
|
|
|
3149
|
+
[[package]]
|
|
3150
|
+
name = "snafu"
|
|
3151
|
+
version = "0.8.9"
|
|
3152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3153
|
+
checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2"
|
|
3154
|
+
dependencies = [
|
|
3155
|
+
"snafu-derive",
|
|
3156
|
+
]
|
|
3157
|
+
|
|
3158
|
+
[[package]]
|
|
3159
|
+
name = "snafu-derive"
|
|
3160
|
+
version = "0.8.9"
|
|
3161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
|
+
checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451"
|
|
3163
|
+
dependencies = [
|
|
3164
|
+
"heck",
|
|
3165
|
+
"proc-macro2",
|
|
3166
|
+
"quote",
|
|
3167
|
+
"syn 2.0.117",
|
|
3168
|
+
]
|
|
3169
|
+
|
|
3170
|
+
[[package]]
|
|
3171
|
+
name = "socket2"
|
|
3172
|
+
version = "0.6.4"
|
|
3173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
3175
|
+
dependencies = [
|
|
3176
|
+
"libc",
|
|
3177
|
+
"windows-sys 0.61.2",
|
|
3178
|
+
]
|
|
3179
|
+
|
|
3180
|
+
[[package]]
|
|
3181
|
+
name = "spake2"
|
|
3182
|
+
version = "0.4.0"
|
|
3183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3184
|
+
checksum = "c5482afe85a0b6ce956c945401598dbc527593c77ba51d0a87a586938b1b893a"
|
|
3185
|
+
dependencies = [
|
|
3186
|
+
"curve25519-dalek",
|
|
3187
|
+
"hkdf",
|
|
3188
|
+
"rand_core 0.6.4",
|
|
3189
|
+
"sha2",
|
|
3190
|
+
]
|
|
3191
|
+
|
|
3192
|
+
[[package]]
|
|
3193
|
+
name = "spin"
|
|
3194
|
+
version = "0.9.8"
|
|
3195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3196
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
3197
|
+
|
|
3198
|
+
[[package]]
|
|
3199
|
+
name = "spki"
|
|
3200
|
+
version = "0.7.3"
|
|
3201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
3203
|
+
dependencies = [
|
|
3204
|
+
"base64ct",
|
|
3205
|
+
"der",
|
|
3206
|
+
]
|
|
3207
|
+
|
|
1327
3208
|
[[package]]
|
|
1328
3209
|
name = "stable_deref_trait"
|
|
1329
3210
|
version = "1.2.1"
|
|
1330
3211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
3212
|
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1332
3213
|
|
|
3214
|
+
[[package]]
|
|
3215
|
+
name = "static_assertions"
|
|
3216
|
+
version = "1.1.0"
|
|
3217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3218
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3219
|
+
|
|
1333
3220
|
[[package]]
|
|
1334
3221
|
name = "strsim"
|
|
1335
3222
|
version = "0.11.1"
|
|
@@ -1364,6 +3251,15 @@ dependencies = [
|
|
|
1364
3251
|
"unicode-ident",
|
|
1365
3252
|
]
|
|
1366
3253
|
|
|
3254
|
+
[[package]]
|
|
3255
|
+
name = "sync_wrapper"
|
|
3256
|
+
version = "1.0.2"
|
|
3257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3258
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
3259
|
+
dependencies = [
|
|
3260
|
+
"futures-core",
|
|
3261
|
+
]
|
|
3262
|
+
|
|
1367
3263
|
[[package]]
|
|
1368
3264
|
name = "synstructure"
|
|
1369
3265
|
version = "0.13.2"
|
|
@@ -1375,6 +3271,12 @@ dependencies = [
|
|
|
1375
3271
|
"syn 2.0.117",
|
|
1376
3272
|
]
|
|
1377
3273
|
|
|
3274
|
+
[[package]]
|
|
3275
|
+
name = "tap"
|
|
3276
|
+
version = "1.0.1"
|
|
3277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3278
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
3279
|
+
|
|
1378
3280
|
[[package]]
|
|
1379
3281
|
name = "tar"
|
|
1380
3282
|
version = "0.4.46"
|
|
@@ -1386,13 +3288,46 @@ dependencies = [
|
|
|
1386
3288
|
"xattr",
|
|
1387
3289
|
]
|
|
1388
3290
|
|
|
3291
|
+
[[package]]
|
|
3292
|
+
name = "tempfile"
|
|
3293
|
+
version = "3.27.0"
|
|
3294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3295
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3296
|
+
dependencies = [
|
|
3297
|
+
"fastrand",
|
|
3298
|
+
"getrandom 0.4.2",
|
|
3299
|
+
"once_cell",
|
|
3300
|
+
"rustix",
|
|
3301
|
+
"windows-sys 0.61.2",
|
|
3302
|
+
]
|
|
3303
|
+
|
|
3304
|
+
[[package]]
|
|
3305
|
+
name = "thiserror"
|
|
3306
|
+
version = "1.0.69"
|
|
3307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3308
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3309
|
+
dependencies = [
|
|
3310
|
+
"thiserror-impl 1.0.69",
|
|
3311
|
+
]
|
|
3312
|
+
|
|
1389
3313
|
[[package]]
|
|
1390
3314
|
name = "thiserror"
|
|
1391
3315
|
version = "2.0.18"
|
|
1392
3316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
3317
|
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1394
3318
|
dependencies = [
|
|
1395
|
-
"thiserror-impl",
|
|
3319
|
+
"thiserror-impl 2.0.18",
|
|
3320
|
+
]
|
|
3321
|
+
|
|
3322
|
+
[[package]]
|
|
3323
|
+
name = "thiserror-impl"
|
|
3324
|
+
version = "1.0.69"
|
|
3325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3326
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3327
|
+
dependencies = [
|
|
3328
|
+
"proc-macro2",
|
|
3329
|
+
"quote",
|
|
3330
|
+
"syn 2.0.117",
|
|
1396
3331
|
]
|
|
1397
3332
|
|
|
1398
3333
|
[[package]]
|
|
@@ -1438,13 +3373,207 @@ dependencies = [
|
|
|
1438
3373
|
]
|
|
1439
3374
|
|
|
1440
3375
|
[[package]]
|
|
1441
|
-
name = "tinystr"
|
|
1442
|
-
version = "0.8.3"
|
|
3376
|
+
name = "tinystr"
|
|
3377
|
+
version = "0.8.3"
|
|
3378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3379
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
3380
|
+
dependencies = [
|
|
3381
|
+
"displaydoc",
|
|
3382
|
+
"zerovec",
|
|
3383
|
+
]
|
|
3384
|
+
|
|
3385
|
+
[[package]]
|
|
3386
|
+
name = "tinyvec"
|
|
3387
|
+
version = "1.11.0"
|
|
3388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3389
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
3390
|
+
dependencies = [
|
|
3391
|
+
"tinyvec_macros",
|
|
3392
|
+
]
|
|
3393
|
+
|
|
3394
|
+
[[package]]
|
|
3395
|
+
name = "tinyvec_macros"
|
|
3396
|
+
version = "0.1.1"
|
|
3397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3398
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3399
|
+
|
|
3400
|
+
[[package]]
|
|
3401
|
+
name = "tokio"
|
|
3402
|
+
version = "1.52.3"
|
|
3403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3404
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
3405
|
+
dependencies = [
|
|
3406
|
+
"bytes",
|
|
3407
|
+
"libc",
|
|
3408
|
+
"mio",
|
|
3409
|
+
"pin-project-lite",
|
|
3410
|
+
"socket2",
|
|
3411
|
+
"windows-sys 0.61.2",
|
|
3412
|
+
]
|
|
3413
|
+
|
|
3414
|
+
[[package]]
|
|
3415
|
+
name = "tokio-rustls"
|
|
3416
|
+
version = "0.26.4"
|
|
3417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3418
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
3419
|
+
dependencies = [
|
|
3420
|
+
"rustls",
|
|
3421
|
+
"tokio",
|
|
3422
|
+
]
|
|
3423
|
+
|
|
3424
|
+
[[package]]
|
|
3425
|
+
name = "tokio-util"
|
|
3426
|
+
version = "0.7.18"
|
|
3427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3428
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
3429
|
+
dependencies = [
|
|
3430
|
+
"bytes",
|
|
3431
|
+
"futures-core",
|
|
3432
|
+
"futures-sink",
|
|
3433
|
+
"pin-project-lite",
|
|
3434
|
+
"tokio",
|
|
3435
|
+
]
|
|
3436
|
+
|
|
3437
|
+
[[package]]
|
|
3438
|
+
name = "toml"
|
|
3439
|
+
version = "0.8.23"
|
|
3440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3441
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
3442
|
+
dependencies = [
|
|
3443
|
+
"serde",
|
|
3444
|
+
"serde_spanned",
|
|
3445
|
+
"toml_datetime",
|
|
3446
|
+
"toml_edit",
|
|
3447
|
+
]
|
|
3448
|
+
|
|
3449
|
+
[[package]]
|
|
3450
|
+
name = "toml_datetime"
|
|
3451
|
+
version = "0.6.11"
|
|
3452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3453
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
3454
|
+
dependencies = [
|
|
3455
|
+
"serde",
|
|
3456
|
+
]
|
|
3457
|
+
|
|
3458
|
+
[[package]]
|
|
3459
|
+
name = "toml_edit"
|
|
3460
|
+
version = "0.22.27"
|
|
3461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3462
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
3463
|
+
dependencies = [
|
|
3464
|
+
"indexmap",
|
|
3465
|
+
"serde",
|
|
3466
|
+
"serde_spanned",
|
|
3467
|
+
"toml_datetime",
|
|
3468
|
+
"toml_write",
|
|
3469
|
+
"winnow",
|
|
3470
|
+
]
|
|
3471
|
+
|
|
3472
|
+
[[package]]
|
|
3473
|
+
name = "toml_write"
|
|
3474
|
+
version = "0.1.2"
|
|
3475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3476
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
3477
|
+
|
|
3478
|
+
[[package]]
|
|
3479
|
+
name = "tower"
|
|
3480
|
+
version = "0.5.3"
|
|
3481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3482
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
3483
|
+
dependencies = [
|
|
3484
|
+
"futures-core",
|
|
3485
|
+
"futures-util",
|
|
3486
|
+
"pin-project-lite",
|
|
3487
|
+
"sync_wrapper",
|
|
3488
|
+
"tokio",
|
|
3489
|
+
"tower-layer",
|
|
3490
|
+
"tower-service",
|
|
3491
|
+
]
|
|
3492
|
+
|
|
3493
|
+
[[package]]
|
|
3494
|
+
name = "tower-http"
|
|
3495
|
+
version = "0.6.11"
|
|
3496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3497
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
3498
|
+
dependencies = [
|
|
3499
|
+
"bitflags 2.11.1",
|
|
3500
|
+
"bytes",
|
|
3501
|
+
"futures-util",
|
|
3502
|
+
"http",
|
|
3503
|
+
"http-body",
|
|
3504
|
+
"pin-project-lite",
|
|
3505
|
+
"tower",
|
|
3506
|
+
"tower-layer",
|
|
3507
|
+
"tower-service",
|
|
3508
|
+
"url",
|
|
3509
|
+
]
|
|
3510
|
+
|
|
3511
|
+
[[package]]
|
|
3512
|
+
name = "tower-layer"
|
|
3513
|
+
version = "0.3.3"
|
|
3514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3515
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3516
|
+
|
|
3517
|
+
[[package]]
|
|
3518
|
+
name = "tower-service"
|
|
3519
|
+
version = "0.3.3"
|
|
3520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3521
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3522
|
+
|
|
3523
|
+
[[package]]
|
|
3524
|
+
name = "tracing"
|
|
3525
|
+
version = "0.1.44"
|
|
3526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3527
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3528
|
+
dependencies = [
|
|
3529
|
+
"pin-project-lite",
|
|
3530
|
+
"tracing-core",
|
|
3531
|
+
]
|
|
3532
|
+
|
|
3533
|
+
[[package]]
|
|
3534
|
+
name = "tracing-core"
|
|
3535
|
+
version = "0.1.36"
|
|
3536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3537
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3538
|
+
dependencies = [
|
|
3539
|
+
"once_cell",
|
|
3540
|
+
]
|
|
3541
|
+
|
|
3542
|
+
[[package]]
|
|
3543
|
+
name = "try-lock"
|
|
3544
|
+
version = "0.2.5"
|
|
3545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3546
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3547
|
+
|
|
3548
|
+
[[package]]
|
|
3549
|
+
name = "tungstenite"
|
|
3550
|
+
version = "0.24.0"
|
|
3551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3552
|
+
checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
|
|
3553
|
+
dependencies = [
|
|
3554
|
+
"byteorder",
|
|
3555
|
+
"bytes",
|
|
3556
|
+
"data-encoding",
|
|
3557
|
+
"http",
|
|
3558
|
+
"httparse",
|
|
3559
|
+
"log",
|
|
3560
|
+
"rand 0.8.6",
|
|
3561
|
+
"rustls",
|
|
3562
|
+
"rustls-native-certs 0.7.3",
|
|
3563
|
+
"rustls-pki-types",
|
|
3564
|
+
"sha1",
|
|
3565
|
+
"thiserror 1.0.69",
|
|
3566
|
+
"utf-8",
|
|
3567
|
+
]
|
|
3568
|
+
|
|
3569
|
+
[[package]]
|
|
3570
|
+
name = "twox-hash"
|
|
3571
|
+
version = "1.6.3"
|
|
1443
3572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
-
checksum = "
|
|
3573
|
+
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
|
1445
3574
|
dependencies = [
|
|
1446
|
-
"
|
|
1447
|
-
"
|
|
3575
|
+
"cfg-if",
|
|
3576
|
+
"static_assertions",
|
|
1448
3577
|
]
|
|
1449
3578
|
|
|
1450
3579
|
[[package]]
|
|
@@ -1459,24 +3588,60 @@ version = "1.20.1"
|
|
|
1459
3588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
3589
|
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
1461
3590
|
|
|
3591
|
+
[[package]]
|
|
3592
|
+
name = "typewit"
|
|
3593
|
+
version = "1.15.2"
|
|
3594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3595
|
+
checksum = "214ca0b2191785cbc06209b9ca1861e048e39b5ba33574b3cedd58363d5bb5f6"
|
|
3596
|
+
dependencies = [
|
|
3597
|
+
"typewit_proc_macros",
|
|
3598
|
+
]
|
|
3599
|
+
|
|
3600
|
+
[[package]]
|
|
3601
|
+
name = "typewit_proc_macros"
|
|
3602
|
+
version = "1.8.1"
|
|
3603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3604
|
+
checksum = "e36a83ea2b3c704935a01b4642946aadd445cea40b10935e3f8bd8052b8193d6"
|
|
3605
|
+
|
|
1462
3606
|
[[package]]
|
|
1463
3607
|
name = "ucd-trie"
|
|
1464
3608
|
version = "0.1.7"
|
|
1465
3609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
3610
|
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
1467
3611
|
|
|
3612
|
+
[[package]]
|
|
3613
|
+
name = "uncased"
|
|
3614
|
+
version = "0.9.10"
|
|
3615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
+
checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
|
|
3617
|
+
dependencies = [
|
|
3618
|
+
"version_check",
|
|
3619
|
+
]
|
|
3620
|
+
|
|
1468
3621
|
[[package]]
|
|
1469
3622
|
name = "unicode-ident"
|
|
1470
3623
|
version = "1.0.24"
|
|
1471
3624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
3625
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1473
3626
|
|
|
3627
|
+
[[package]]
|
|
3628
|
+
name = "unicode-width"
|
|
3629
|
+
version = "0.2.2"
|
|
3630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3631
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3632
|
+
|
|
1474
3633
|
[[package]]
|
|
1475
3634
|
name = "unicode-xid"
|
|
1476
3635
|
version = "0.2.6"
|
|
1477
3636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
3637
|
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1479
3638
|
|
|
3639
|
+
[[package]]
|
|
3640
|
+
name = "unsafe-libyaml"
|
|
3641
|
+
version = "0.2.11"
|
|
3642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3643
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
3644
|
+
|
|
1480
3645
|
[[package]]
|
|
1481
3646
|
name = "untrusted"
|
|
1482
3647
|
version = "0.9.0"
|
|
@@ -1527,6 +3692,12 @@ dependencies = [
|
|
|
1527
3692
|
"serde",
|
|
1528
3693
|
]
|
|
1529
3694
|
|
|
3695
|
+
[[package]]
|
|
3696
|
+
name = "utf-8"
|
|
3697
|
+
version = "0.7.6"
|
|
3698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3699
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
3700
|
+
|
|
1530
3701
|
[[package]]
|
|
1531
3702
|
name = "utf8-zero"
|
|
1532
3703
|
version = "0.8.1"
|
|
@@ -1563,6 +3734,25 @@ version = "0.9.5"
|
|
|
1563
3734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
3735
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1565
3736
|
|
|
3737
|
+
[[package]]
|
|
3738
|
+
name = "walkdir"
|
|
3739
|
+
version = "2.5.0"
|
|
3740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3741
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3742
|
+
dependencies = [
|
|
3743
|
+
"same-file",
|
|
3744
|
+
"winapi-util",
|
|
3745
|
+
]
|
|
3746
|
+
|
|
3747
|
+
[[package]]
|
|
3748
|
+
name = "want"
|
|
3749
|
+
version = "0.3.1"
|
|
3750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3751
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3752
|
+
dependencies = [
|
|
3753
|
+
"try-lock",
|
|
3754
|
+
]
|
|
3755
|
+
|
|
1566
3756
|
[[package]]
|
|
1567
3757
|
name = "wasi"
|
|
1568
3758
|
version = "0.11.1+wasi-snapshot-preview1"
|
|
@@ -1600,6 +3790,16 @@ dependencies = [
|
|
|
1600
3790
|
"wasm-bindgen-shared",
|
|
1601
3791
|
]
|
|
1602
3792
|
|
|
3793
|
+
[[package]]
|
|
3794
|
+
name = "wasm-bindgen-futures"
|
|
3795
|
+
version = "0.4.72"
|
|
3796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3797
|
+
checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
|
|
3798
|
+
dependencies = [
|
|
3799
|
+
"js-sys",
|
|
3800
|
+
"wasm-bindgen",
|
|
3801
|
+
]
|
|
3802
|
+
|
|
1603
3803
|
[[package]]
|
|
1604
3804
|
name = "wasm-bindgen-macro"
|
|
1605
3805
|
version = "0.2.122"
|
|
@@ -1666,6 +3866,16 @@ dependencies = [
|
|
|
1666
3866
|
"semver",
|
|
1667
3867
|
]
|
|
1668
3868
|
|
|
3869
|
+
[[package]]
|
|
3870
|
+
name = "web-sys"
|
|
3871
|
+
version = "0.3.99"
|
|
3872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3873
|
+
checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
|
|
3874
|
+
dependencies = [
|
|
3875
|
+
"js-sys",
|
|
3876
|
+
"wasm-bindgen",
|
|
3877
|
+
]
|
|
3878
|
+
|
|
1669
3879
|
[[package]]
|
|
1670
3880
|
name = "web-time"
|
|
1671
3881
|
version = "1.1.0"
|
|
@@ -1685,6 +3895,21 @@ dependencies = [
|
|
|
1685
3895
|
"rustls-pki-types",
|
|
1686
3896
|
]
|
|
1687
3897
|
|
|
3898
|
+
[[package]]
|
|
3899
|
+
name = "widestring"
|
|
3900
|
+
version = "1.2.1"
|
|
3901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3902
|
+
checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
|
|
3903
|
+
|
|
3904
|
+
[[package]]
|
|
3905
|
+
name = "winapi-util"
|
|
3906
|
+
version = "0.1.11"
|
|
3907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3908
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3909
|
+
dependencies = [
|
|
3910
|
+
"windows-sys 0.61.2",
|
|
3911
|
+
]
|
|
3912
|
+
|
|
1688
3913
|
[[package]]
|
|
1689
3914
|
name = "windows-core"
|
|
1690
3915
|
version = "0.62.2"
|
|
@@ -1744,13 +3969,40 @@ dependencies = [
|
|
|
1744
3969
|
"windows-link",
|
|
1745
3970
|
]
|
|
1746
3971
|
|
|
3972
|
+
[[package]]
|
|
3973
|
+
name = "windows-sys"
|
|
3974
|
+
version = "0.48.0"
|
|
3975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3976
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
3977
|
+
dependencies = [
|
|
3978
|
+
"windows-targets 0.48.5",
|
|
3979
|
+
]
|
|
3980
|
+
|
|
1747
3981
|
[[package]]
|
|
1748
3982
|
name = "windows-sys"
|
|
1749
3983
|
version = "0.52.0"
|
|
1750
3984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
3985
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1752
3986
|
dependencies = [
|
|
1753
|
-
"windows-targets",
|
|
3987
|
+
"windows-targets 0.52.6",
|
|
3988
|
+
]
|
|
3989
|
+
|
|
3990
|
+
[[package]]
|
|
3991
|
+
name = "windows-sys"
|
|
3992
|
+
version = "0.59.0"
|
|
3993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3994
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3995
|
+
dependencies = [
|
|
3996
|
+
"windows-targets 0.52.6",
|
|
3997
|
+
]
|
|
3998
|
+
|
|
3999
|
+
[[package]]
|
|
4000
|
+
name = "windows-sys"
|
|
4001
|
+
version = "0.60.2"
|
|
4002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4003
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
4004
|
+
dependencies = [
|
|
4005
|
+
"windows-targets 0.53.5",
|
|
1754
4006
|
]
|
|
1755
4007
|
|
|
1756
4008
|
[[package]]
|
|
@@ -1762,70 +4014,201 @@ dependencies = [
|
|
|
1762
4014
|
"windows-link",
|
|
1763
4015
|
]
|
|
1764
4016
|
|
|
4017
|
+
[[package]]
|
|
4018
|
+
name = "windows-targets"
|
|
4019
|
+
version = "0.48.5"
|
|
4020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4021
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
4022
|
+
dependencies = [
|
|
4023
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
4024
|
+
"windows_aarch64_msvc 0.48.5",
|
|
4025
|
+
"windows_i686_gnu 0.48.5",
|
|
4026
|
+
"windows_i686_msvc 0.48.5",
|
|
4027
|
+
"windows_x86_64_gnu 0.48.5",
|
|
4028
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
4029
|
+
"windows_x86_64_msvc 0.48.5",
|
|
4030
|
+
]
|
|
4031
|
+
|
|
1765
4032
|
[[package]]
|
|
1766
4033
|
name = "windows-targets"
|
|
1767
4034
|
version = "0.52.6"
|
|
1768
4035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1769
4036
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1770
4037
|
dependencies = [
|
|
1771
|
-
"windows_aarch64_gnullvm",
|
|
1772
|
-
"windows_aarch64_msvc",
|
|
1773
|
-
"windows_i686_gnu",
|
|
1774
|
-
"windows_i686_gnullvm",
|
|
1775
|
-
"windows_i686_msvc",
|
|
1776
|
-
"windows_x86_64_gnu",
|
|
1777
|
-
"windows_x86_64_gnullvm",
|
|
1778
|
-
"windows_x86_64_msvc",
|
|
4038
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
4039
|
+
"windows_aarch64_msvc 0.52.6",
|
|
4040
|
+
"windows_i686_gnu 0.52.6",
|
|
4041
|
+
"windows_i686_gnullvm 0.52.6",
|
|
4042
|
+
"windows_i686_msvc 0.52.6",
|
|
4043
|
+
"windows_x86_64_gnu 0.52.6",
|
|
4044
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
4045
|
+
"windows_x86_64_msvc 0.52.6",
|
|
4046
|
+
]
|
|
4047
|
+
|
|
4048
|
+
[[package]]
|
|
4049
|
+
name = "windows-targets"
|
|
4050
|
+
version = "0.53.5"
|
|
4051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4052
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
4053
|
+
dependencies = [
|
|
4054
|
+
"windows-link",
|
|
4055
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
4056
|
+
"windows_aarch64_msvc 0.53.1",
|
|
4057
|
+
"windows_i686_gnu 0.53.1",
|
|
4058
|
+
"windows_i686_gnullvm 0.53.1",
|
|
4059
|
+
"windows_i686_msvc 0.53.1",
|
|
4060
|
+
"windows_x86_64_gnu 0.53.1",
|
|
4061
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
4062
|
+
"windows_x86_64_msvc 0.53.1",
|
|
1779
4063
|
]
|
|
1780
4064
|
|
|
4065
|
+
[[package]]
|
|
4066
|
+
name = "windows_aarch64_gnullvm"
|
|
4067
|
+
version = "0.48.5"
|
|
4068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4069
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
4070
|
+
|
|
1781
4071
|
[[package]]
|
|
1782
4072
|
name = "windows_aarch64_gnullvm"
|
|
1783
4073
|
version = "0.52.6"
|
|
1784
4074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
4075
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1786
4076
|
|
|
4077
|
+
[[package]]
|
|
4078
|
+
name = "windows_aarch64_gnullvm"
|
|
4079
|
+
version = "0.53.1"
|
|
4080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4081
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4082
|
+
|
|
4083
|
+
[[package]]
|
|
4084
|
+
name = "windows_aarch64_msvc"
|
|
4085
|
+
version = "0.48.5"
|
|
4086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4087
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
4088
|
+
|
|
1787
4089
|
[[package]]
|
|
1788
4090
|
name = "windows_aarch64_msvc"
|
|
1789
4091
|
version = "0.52.6"
|
|
1790
4092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
4093
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1792
4094
|
|
|
4095
|
+
[[package]]
|
|
4096
|
+
name = "windows_aarch64_msvc"
|
|
4097
|
+
version = "0.53.1"
|
|
4098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4099
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
4100
|
+
|
|
4101
|
+
[[package]]
|
|
4102
|
+
name = "windows_i686_gnu"
|
|
4103
|
+
version = "0.48.5"
|
|
4104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4105
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
4106
|
+
|
|
1793
4107
|
[[package]]
|
|
1794
4108
|
name = "windows_i686_gnu"
|
|
1795
4109
|
version = "0.52.6"
|
|
1796
4110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
4111
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1798
4112
|
|
|
4113
|
+
[[package]]
|
|
4114
|
+
name = "windows_i686_gnu"
|
|
4115
|
+
version = "0.53.1"
|
|
4116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4117
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
4118
|
+
|
|
1799
4119
|
[[package]]
|
|
1800
4120
|
name = "windows_i686_gnullvm"
|
|
1801
4121
|
version = "0.52.6"
|
|
1802
4122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
4123
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1804
4124
|
|
|
4125
|
+
[[package]]
|
|
4126
|
+
name = "windows_i686_gnullvm"
|
|
4127
|
+
version = "0.53.1"
|
|
4128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4129
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
4130
|
+
|
|
4131
|
+
[[package]]
|
|
4132
|
+
name = "windows_i686_msvc"
|
|
4133
|
+
version = "0.48.5"
|
|
4134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4135
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
4136
|
+
|
|
1805
4137
|
[[package]]
|
|
1806
4138
|
name = "windows_i686_msvc"
|
|
1807
4139
|
version = "0.52.6"
|
|
1808
4140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1809
4141
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1810
4142
|
|
|
4143
|
+
[[package]]
|
|
4144
|
+
name = "windows_i686_msvc"
|
|
4145
|
+
version = "0.53.1"
|
|
4146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4147
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
4148
|
+
|
|
4149
|
+
[[package]]
|
|
4150
|
+
name = "windows_x86_64_gnu"
|
|
4151
|
+
version = "0.48.5"
|
|
4152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4153
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
4154
|
+
|
|
1811
4155
|
[[package]]
|
|
1812
4156
|
name = "windows_x86_64_gnu"
|
|
1813
4157
|
version = "0.52.6"
|
|
1814
4158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
4159
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1816
4160
|
|
|
4161
|
+
[[package]]
|
|
4162
|
+
name = "windows_x86_64_gnu"
|
|
4163
|
+
version = "0.53.1"
|
|
4164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4165
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4166
|
+
|
|
4167
|
+
[[package]]
|
|
4168
|
+
name = "windows_x86_64_gnullvm"
|
|
4169
|
+
version = "0.48.5"
|
|
4170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4171
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
4172
|
+
|
|
1817
4173
|
[[package]]
|
|
1818
4174
|
name = "windows_x86_64_gnullvm"
|
|
1819
4175
|
version = "0.52.6"
|
|
1820
4176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
4177
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1822
4178
|
|
|
4179
|
+
[[package]]
|
|
4180
|
+
name = "windows_x86_64_gnullvm"
|
|
4181
|
+
version = "0.53.1"
|
|
4182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4183
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4184
|
+
|
|
4185
|
+
[[package]]
|
|
4186
|
+
name = "windows_x86_64_msvc"
|
|
4187
|
+
version = "0.48.5"
|
|
4188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4189
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
4190
|
+
|
|
1823
4191
|
[[package]]
|
|
1824
4192
|
name = "windows_x86_64_msvc"
|
|
1825
4193
|
version = "0.52.6"
|
|
1826
4194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
4195
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1828
4196
|
|
|
4197
|
+
[[package]]
|
|
4198
|
+
name = "windows_x86_64_msvc"
|
|
4199
|
+
version = "0.53.1"
|
|
4200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4201
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
4202
|
+
|
|
4203
|
+
[[package]]
|
|
4204
|
+
name = "winnow"
|
|
4205
|
+
version = "0.7.15"
|
|
4206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4207
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
4208
|
+
dependencies = [
|
|
4209
|
+
"memchr",
|
|
4210
|
+
]
|
|
4211
|
+
|
|
1829
4212
|
[[package]]
|
|
1830
4213
|
name = "wit-bindgen"
|
|
1831
4214
|
version = "0.51.0"
|
|
@@ -1926,6 +4309,44 @@ version = "0.6.3"
|
|
|
1926
4309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
4310
|
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
1928
4311
|
|
|
4312
|
+
[[package]]
|
|
4313
|
+
name = "wyz"
|
|
4314
|
+
version = "0.5.1"
|
|
4315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4316
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
4317
|
+
dependencies = [
|
|
4318
|
+
"tap",
|
|
4319
|
+
]
|
|
4320
|
+
|
|
4321
|
+
[[package]]
|
|
4322
|
+
name = "x509"
|
|
4323
|
+
version = "0.2.0"
|
|
4324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4325
|
+
checksum = "ca3cec94c3999f31341553f358ef55f65fc031291a022cd42ec0ce7219560c76"
|
|
4326
|
+
dependencies = [
|
|
4327
|
+
"chrono",
|
|
4328
|
+
"cookie-factory",
|
|
4329
|
+
]
|
|
4330
|
+
|
|
4331
|
+
[[package]]
|
|
4332
|
+
name = "x509-certificate"
|
|
4333
|
+
version = "0.24.0"
|
|
4334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4335
|
+
checksum = "e57b9f8bcae7c1f36479821ae826d75050c60ce55146fd86d3553ed2573e2762"
|
|
4336
|
+
dependencies = [
|
|
4337
|
+
"bcder",
|
|
4338
|
+
"bytes",
|
|
4339
|
+
"chrono",
|
|
4340
|
+
"der",
|
|
4341
|
+
"hex",
|
|
4342
|
+
"pem",
|
|
4343
|
+
"ring",
|
|
4344
|
+
"signature",
|
|
4345
|
+
"spki",
|
|
4346
|
+
"thiserror 1.0.69",
|
|
4347
|
+
"zeroize",
|
|
4348
|
+
]
|
|
4349
|
+
|
|
1929
4350
|
[[package]]
|
|
1930
4351
|
name = "xattr"
|
|
1931
4352
|
version = "1.6.1"
|
|
@@ -1936,6 +4357,33 @@ dependencies = [
|
|
|
1936
4357
|
"rustix",
|
|
1937
4358
|
]
|
|
1938
4359
|
|
|
4360
|
+
[[package]]
|
|
4361
|
+
name = "xml-rs"
|
|
4362
|
+
version = "0.8.28"
|
|
4363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4364
|
+
checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
|
|
4365
|
+
|
|
4366
|
+
[[package]]
|
|
4367
|
+
name = "xz2"
|
|
4368
|
+
version = "0.1.7"
|
|
4369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4370
|
+
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
4371
|
+
dependencies = [
|
|
4372
|
+
"lzma-sys",
|
|
4373
|
+
]
|
|
4374
|
+
|
|
4375
|
+
[[package]]
|
|
4376
|
+
name = "yansi"
|
|
4377
|
+
version = "1.0.1"
|
|
4378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4379
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
4380
|
+
|
|
4381
|
+
[[package]]
|
|
4382
|
+
name = "yasna"
|
|
4383
|
+
version = "0.5.2"
|
|
4384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4385
|
+
checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
|
|
4386
|
+
|
|
1939
4387
|
[[package]]
|
|
1940
4388
|
name = "yoke"
|
|
1941
4389
|
version = "0.8.2"
|
|
@@ -1959,6 +4407,26 @@ dependencies = [
|
|
|
1959
4407
|
"synstructure",
|
|
1960
4408
|
]
|
|
1961
4409
|
|
|
4410
|
+
[[package]]
|
|
4411
|
+
name = "zerocopy"
|
|
4412
|
+
version = "0.8.50"
|
|
4413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4414
|
+
checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
|
|
4415
|
+
dependencies = [
|
|
4416
|
+
"zerocopy-derive",
|
|
4417
|
+
]
|
|
4418
|
+
|
|
4419
|
+
[[package]]
|
|
4420
|
+
name = "zerocopy-derive"
|
|
4421
|
+
version = "0.8.50"
|
|
4422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4423
|
+
checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
|
|
4424
|
+
dependencies = [
|
|
4425
|
+
"proc-macro2",
|
|
4426
|
+
"quote",
|
|
4427
|
+
"syn 2.0.117",
|
|
4428
|
+
]
|
|
4429
|
+
|
|
1962
4430
|
[[package]]
|
|
1963
4431
|
name = "zerofrom"
|
|
1964
4432
|
version = "0.1.8"
|
|
@@ -1985,6 +4453,20 @@ name = "zeroize"
|
|
|
1985
4453
|
version = "1.8.2"
|
|
1986
4454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
4455
|
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
4456
|
+
dependencies = [
|
|
4457
|
+
"zeroize_derive",
|
|
4458
|
+
]
|
|
4459
|
+
|
|
4460
|
+
[[package]]
|
|
4461
|
+
name = "zeroize_derive"
|
|
4462
|
+
version = "1.4.3"
|
|
4463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4464
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
4465
|
+
dependencies = [
|
|
4466
|
+
"proc-macro2",
|
|
4467
|
+
"quote",
|
|
4468
|
+
"syn 2.0.117",
|
|
4469
|
+
]
|
|
1988
4470
|
|
|
1989
4471
|
[[package]]
|
|
1990
4472
|
name = "zerotrie"
|
|
@@ -2019,6 +4501,23 @@ dependencies = [
|
|
|
2019
4501
|
"syn 2.0.117",
|
|
2020
4502
|
]
|
|
2021
4503
|
|
|
4504
|
+
[[package]]
|
|
4505
|
+
name = "zip"
|
|
4506
|
+
version = "2.4.2"
|
|
4507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4508
|
+
checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
|
|
4509
|
+
dependencies = [
|
|
4510
|
+
"arbitrary",
|
|
4511
|
+
"crc32fast",
|
|
4512
|
+
"crossbeam-utils",
|
|
4513
|
+
"displaydoc",
|
|
4514
|
+
"flate2",
|
|
4515
|
+
"indexmap",
|
|
4516
|
+
"memchr",
|
|
4517
|
+
"thiserror 2.0.18",
|
|
4518
|
+
"zopfli",
|
|
4519
|
+
]
|
|
4520
|
+
|
|
2022
4521
|
[[package]]
|
|
2023
4522
|
name = "zip"
|
|
2024
4523
|
version = "8.6.0"
|
|
@@ -2032,6 +4531,17 @@ dependencies = [
|
|
|
2032
4531
|
"typed-path",
|
|
2033
4532
|
]
|
|
2034
4533
|
|
|
4534
|
+
[[package]]
|
|
4535
|
+
name = "zip_structs"
|
|
4536
|
+
version = "0.2.1"
|
|
4537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4538
|
+
checksum = "ce824a6bfffe8942820fa36d24973b7c83a40896749a42e33de0abdd11750ee5"
|
|
4539
|
+
dependencies = [
|
|
4540
|
+
"byteorder",
|
|
4541
|
+
"bytesize",
|
|
4542
|
+
"thiserror 1.0.69",
|
|
4543
|
+
]
|
|
4544
|
+
|
|
2035
4545
|
[[package]]
|
|
2036
4546
|
name = "zlib-rs"
|
|
2037
4547
|
version = "0.6.3"
|
|
@@ -2043,3 +4553,15 @@ name = "zmij"
|
|
|
2043
4553
|
version = "1.0.21"
|
|
2044
4554
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
4555
|
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
4556
|
+
|
|
4557
|
+
[[package]]
|
|
4558
|
+
name = "zopfli"
|
|
4559
|
+
version = "0.8.3"
|
|
4560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4561
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
4562
|
+
dependencies = [
|
|
4563
|
+
"bumpalo",
|
|
4564
|
+
"crc32fast",
|
|
4565
|
+
"log",
|
|
4566
|
+
"simd-adler32",
|
|
4567
|
+
]
|