electron-cli 0.3.0-alpha.1 → 0.3.0-alpha.11
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 +1757 -71
- package/Cargo.toml +11 -1
- package/README.md +57 -11
- package/package.json +2 -1
- package/src/cli.rs +286 -1
- package/src/commands/init.rs +814 -0
- package/src/commands/make.rs +1710 -0
- package/src/commands/mod.rs +5 -0
- package/src/commands/package.rs +1626 -0
- package/src/commands/plan.rs +65 -5
- package/src/commands/publish.rs +1126 -0
- package/src/commands/start.rs +287 -0
- package/src/main.rs +5 -0
- package/src/project.rs +51 -0
- package/templates/minimal/gitignore +5 -0
- package/templates/minimal/src/index.html +82 -0
- package/templates/minimal/src/main.js +33 -0
- package/templates/minimal/src/preload.js +6 -0
- package/templates/minimal/src/renderer.js +5 -0
package/Cargo.lock
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "android_system_properties"
|
|
13
|
+
version = "0.1.5"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"libc",
|
|
18
|
+
]
|
|
19
|
+
|
|
5
20
|
[[package]]
|
|
6
21
|
name = "anstream"
|
|
7
22
|
version = "1.0.0"
|
|
@@ -38,7 +53,7 @@ version = "1.1.5"
|
|
|
38
53
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
54
|
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
40
55
|
dependencies = [
|
|
41
|
-
"windows-sys",
|
|
56
|
+
"windows-sys 0.61.2",
|
|
42
57
|
]
|
|
43
58
|
|
|
44
59
|
[[package]]
|
|
@@ -49,7 +64,7 @@ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
|
49
64
|
dependencies = [
|
|
50
65
|
"anstyle",
|
|
51
66
|
"once_cell_polyfill",
|
|
52
|
-
"windows-sys",
|
|
67
|
+
"windows-sys 0.61.2",
|
|
53
68
|
]
|
|
54
69
|
|
|
55
70
|
[[package]]
|
|
@@ -58,6 +73,77 @@ version = "1.0.102"
|
|
|
58
73
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
74
|
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
60
75
|
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "apple-dmg"
|
|
78
|
+
version = "0.5.0"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "cdbc4a77fe34d67a853e2c472f85b571fc8531e7540ef3dc2fec239d0e6ee6ea"
|
|
81
|
+
dependencies = [
|
|
82
|
+
"anyhow",
|
|
83
|
+
"byteorder",
|
|
84
|
+
"crc32fast",
|
|
85
|
+
"fatfs",
|
|
86
|
+
"flate2",
|
|
87
|
+
"fscommon",
|
|
88
|
+
"getrandom 0.2.17",
|
|
89
|
+
"gpt",
|
|
90
|
+
"md5",
|
|
91
|
+
"plist",
|
|
92
|
+
"serde",
|
|
93
|
+
"serde_bytes",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "autocfg"
|
|
98
|
+
version = "1.5.1"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "base64"
|
|
104
|
+
version = "0.22.1"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "bitflags"
|
|
110
|
+
version = "1.3.2"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "bitflags"
|
|
116
|
+
version = "2.11.1"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "block-buffer"
|
|
122
|
+
version = "0.10.4"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"generic-array",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "bumpalo"
|
|
131
|
+
version = "3.20.3"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "byteorder"
|
|
137
|
+
version = "1.5.0"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "bytes"
|
|
143
|
+
version = "1.11.1"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
146
|
+
|
|
61
147
|
[[package]]
|
|
62
148
|
name = "camino"
|
|
63
149
|
version = "1.2.2"
|
|
@@ -67,6 +153,35 @@ dependencies = [
|
|
|
67
153
|
"serde_core",
|
|
68
154
|
]
|
|
69
155
|
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "cc"
|
|
158
|
+
version = "1.2.63"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"find-msvc-tools",
|
|
163
|
+
"shlex",
|
|
164
|
+
]
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "cfg-if"
|
|
168
|
+
version = "1.0.4"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "chrono"
|
|
174
|
+
version = "0.4.44"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
177
|
+
dependencies = [
|
|
178
|
+
"iana-time-zone",
|
|
179
|
+
"js-sys",
|
|
180
|
+
"num-traits",
|
|
181
|
+
"wasm-bindgen",
|
|
182
|
+
"windows-link",
|
|
183
|
+
]
|
|
184
|
+
|
|
70
185
|
[[package]]
|
|
71
186
|
name = "clap"
|
|
72
187
|
version = "4.6.1"
|
|
@@ -98,7 +213,7 @@ dependencies = [
|
|
|
98
213
|
"heck",
|
|
99
214
|
"proc-macro2",
|
|
100
215
|
"quote",
|
|
101
|
-
"syn",
|
|
216
|
+
"syn 2.0.117",
|
|
102
217
|
]
|
|
103
218
|
|
|
104
219
|
[[package]]
|
|
@@ -113,152 +228,1723 @@ version = "1.0.5"
|
|
|
113
228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
229
|
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
115
230
|
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "cookie"
|
|
233
|
+
version = "0.18.1"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"percent-encoding",
|
|
238
|
+
"time",
|
|
239
|
+
"version_check",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "cookie_store"
|
|
244
|
+
version = "0.22.1"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"cookie",
|
|
249
|
+
"document-features",
|
|
250
|
+
"idna",
|
|
251
|
+
"indexmap",
|
|
252
|
+
"log",
|
|
253
|
+
"serde",
|
|
254
|
+
"serde_derive",
|
|
255
|
+
"serde_json",
|
|
256
|
+
"time",
|
|
257
|
+
"url",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "core-foundation-sys"
|
|
262
|
+
version = "0.8.7"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "cpufeatures"
|
|
268
|
+
version = "0.2.17"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"libc",
|
|
273
|
+
]
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "crc"
|
|
277
|
+
version = "3.4.0"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
|
|
280
|
+
dependencies = [
|
|
281
|
+
"crc-catalog",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "crc-catalog"
|
|
286
|
+
version = "2.5.0"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "crc32fast"
|
|
292
|
+
version = "1.5.0"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"cfg-if",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "crypto-common"
|
|
301
|
+
version = "0.1.7"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"generic-array",
|
|
306
|
+
"typenum",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "deranged"
|
|
311
|
+
version = "0.5.8"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"powerfmt",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "digest"
|
|
320
|
+
version = "0.10.7"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
323
|
+
dependencies = [
|
|
324
|
+
"block-buffer",
|
|
325
|
+
"crypto-common",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "displaydoc"
|
|
330
|
+
version = "0.2.6"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"proc-macro2",
|
|
335
|
+
"quote",
|
|
336
|
+
"syn 2.0.117",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "document-features"
|
|
341
|
+
version = "0.2.12"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"litrs",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "either"
|
|
350
|
+
version = "1.16.0"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
353
|
+
|
|
116
354
|
[[package]]
|
|
117
355
|
name = "electron-cli"
|
|
118
|
-
version = "0.3.0-alpha.
|
|
356
|
+
version = "0.3.0-alpha.11"
|
|
119
357
|
dependencies = [
|
|
120
358
|
"anyhow",
|
|
359
|
+
"apple-dmg",
|
|
121
360
|
"camino",
|
|
122
361
|
"clap",
|
|
362
|
+
"fatfs",
|
|
363
|
+
"flate2",
|
|
364
|
+
"fscommon",
|
|
365
|
+
"md5",
|
|
366
|
+
"plist",
|
|
367
|
+
"rpm",
|
|
123
368
|
"serde",
|
|
124
369
|
"serde_json",
|
|
370
|
+
"tar",
|
|
371
|
+
"ureq",
|
|
372
|
+
"zip",
|
|
125
373
|
]
|
|
126
374
|
|
|
127
375
|
[[package]]
|
|
128
|
-
name = "
|
|
129
|
-
version = "0.
|
|
376
|
+
name = "enum-display-derive"
|
|
377
|
+
version = "0.1.1"
|
|
130
378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
-
checksum = "
|
|
379
|
+
checksum = "f16ef37b2a9b242295d61a154ee91ae884afff6b8b933b486b12481cc58310ca"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"proc-macro2",
|
|
382
|
+
"quote",
|
|
383
|
+
"syn 1.0.109",
|
|
384
|
+
]
|
|
132
385
|
|
|
133
386
|
[[package]]
|
|
134
|
-
name = "
|
|
135
|
-
version = "
|
|
387
|
+
name = "enum-primitive-derive"
|
|
388
|
+
version = "0.3.0"
|
|
136
389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
-
checksum = "
|
|
390
|
+
checksum = "ba7795da175654fe16979af73f81f26a8ea27638d8d9823d317016888a63dc4c"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"num-traits",
|
|
393
|
+
"quote",
|
|
394
|
+
"syn 2.0.117",
|
|
395
|
+
]
|
|
138
396
|
|
|
139
397
|
[[package]]
|
|
140
|
-
name = "
|
|
141
|
-
version = "1.0.
|
|
398
|
+
name = "equivalent"
|
|
399
|
+
version = "1.0.2"
|
|
142
400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
-
checksum = "
|
|
401
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
144
402
|
|
|
145
403
|
[[package]]
|
|
146
|
-
name = "
|
|
147
|
-
version = "
|
|
404
|
+
name = "errno"
|
|
405
|
+
version = "0.3.14"
|
|
148
406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
-
checksum = "
|
|
407
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"libc",
|
|
410
|
+
"windows-sys 0.61.2",
|
|
411
|
+
]
|
|
150
412
|
|
|
151
413
|
[[package]]
|
|
152
|
-
name = "
|
|
153
|
-
version = "
|
|
414
|
+
name = "fatfs"
|
|
415
|
+
version = "0.3.6"
|
|
154
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
-
checksum = "
|
|
417
|
+
checksum = "05669f8e7e2d7badc545c513710f0eba09c2fbef683eb859fd79c46c355048e0"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"bitflags 1.3.2",
|
|
420
|
+
"byteorder",
|
|
421
|
+
"chrono",
|
|
422
|
+
"log",
|
|
423
|
+
]
|
|
156
424
|
|
|
157
425
|
[[package]]
|
|
158
|
-
name = "
|
|
159
|
-
version = "
|
|
426
|
+
name = "filetime"
|
|
427
|
+
version = "0.2.29"
|
|
160
428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
-
checksum = "
|
|
429
|
+
checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
|
|
162
430
|
dependencies = [
|
|
163
|
-
"
|
|
431
|
+
"cfg-if",
|
|
432
|
+
"libc",
|
|
164
433
|
]
|
|
165
434
|
|
|
166
435
|
[[package]]
|
|
167
|
-
name = "
|
|
168
|
-
version = "1.
|
|
436
|
+
name = "find-msvc-tools"
|
|
437
|
+
version = "0.1.9"
|
|
169
438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
-
checksum = "
|
|
439
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "flate2"
|
|
443
|
+
version = "1.1.9"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
171
446
|
dependencies = [
|
|
172
|
-
"
|
|
447
|
+
"crc32fast",
|
|
448
|
+
"miniz_oxide",
|
|
449
|
+
"zlib-rs",
|
|
173
450
|
]
|
|
174
451
|
|
|
175
452
|
[[package]]
|
|
176
|
-
name = "
|
|
177
|
-
version = "1.
|
|
453
|
+
name = "foldhash"
|
|
454
|
+
version = "0.1.5"
|
|
178
455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
-
checksum = "
|
|
456
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "form_urlencoded"
|
|
460
|
+
version = "1.2.2"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
180
463
|
dependencies = [
|
|
181
|
-
"
|
|
182
|
-
"serde_derive",
|
|
464
|
+
"percent-encoding",
|
|
183
465
|
]
|
|
184
466
|
|
|
185
467
|
[[package]]
|
|
186
|
-
name = "
|
|
187
|
-
version = "1.
|
|
468
|
+
name = "fscommon"
|
|
469
|
+
version = "0.1.1"
|
|
188
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
-
checksum = "
|
|
471
|
+
checksum = "315ce685aca5ddcc5a3e7e436ef47d4a5d0064462849b6f0f628c28140103531"
|
|
190
472
|
dependencies = [
|
|
191
|
-
"
|
|
473
|
+
"log",
|
|
192
474
|
]
|
|
193
475
|
|
|
194
476
|
[[package]]
|
|
195
|
-
name = "
|
|
196
|
-
version = "
|
|
477
|
+
name = "futures-core"
|
|
478
|
+
version = "0.3.32"
|
|
197
479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
-
checksum = "
|
|
480
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "futures-task"
|
|
484
|
+
version = "0.3.32"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "futures-util"
|
|
490
|
+
version = "0.3.32"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
199
493
|
dependencies = [
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"
|
|
494
|
+
"futures-core",
|
|
495
|
+
"futures-task",
|
|
496
|
+
"pin-project-lite",
|
|
497
|
+
"slab",
|
|
203
498
|
]
|
|
204
499
|
|
|
205
500
|
[[package]]
|
|
206
|
-
name = "
|
|
207
|
-
version = "
|
|
501
|
+
name = "generic-array"
|
|
502
|
+
version = "0.14.7"
|
|
208
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
-
checksum = "
|
|
504
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"typenum",
|
|
507
|
+
"version_check",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "getrandom"
|
|
512
|
+
version = "0.2.17"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"cfg-if",
|
|
517
|
+
"libc",
|
|
518
|
+
"wasi",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "getrandom"
|
|
523
|
+
version = "0.4.2"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"cfg-if",
|
|
528
|
+
"libc",
|
|
529
|
+
"r-efi",
|
|
530
|
+
"wasip2",
|
|
531
|
+
"wasip3",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "gpt"
|
|
536
|
+
version = "4.1.0"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "3696fafb1ecdcc2ae3ce337de73e9202806068594b77d22fdf2f3573c5ec2219"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"bitflags 2.11.1",
|
|
541
|
+
"crc",
|
|
542
|
+
"simple-bytes",
|
|
543
|
+
"uuid",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "hashbrown"
|
|
548
|
+
version = "0.15.5"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
551
|
+
dependencies = [
|
|
552
|
+
"foldhash",
|
|
553
|
+
]
|
|
554
|
+
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "hashbrown"
|
|
557
|
+
version = "0.17.1"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "heck"
|
|
563
|
+
version = "0.5.0"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "hex"
|
|
569
|
+
version = "0.4.3"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "http"
|
|
575
|
+
version = "1.4.1"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
|
|
210
578
|
dependencies = [
|
|
579
|
+
"bytes",
|
|
211
580
|
"itoa",
|
|
212
|
-
"memchr",
|
|
213
|
-
"serde",
|
|
214
|
-
"serde_core",
|
|
215
|
-
"zmij",
|
|
216
581
|
]
|
|
217
582
|
|
|
218
583
|
[[package]]
|
|
219
|
-
name = "
|
|
220
|
-
version = "
|
|
584
|
+
name = "httparse"
|
|
585
|
+
version = "1.10.1"
|
|
221
586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
-
checksum = "
|
|
587
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
223
588
|
|
|
224
589
|
[[package]]
|
|
225
|
-
name = "
|
|
226
|
-
version = "
|
|
590
|
+
name = "iana-time-zone"
|
|
591
|
+
version = "0.1.65"
|
|
227
592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
-
checksum = "
|
|
593
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
229
594
|
dependencies = [
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
595
|
+
"android_system_properties",
|
|
596
|
+
"core-foundation-sys",
|
|
597
|
+
"iana-time-zone-haiku",
|
|
598
|
+
"js-sys",
|
|
599
|
+
"log",
|
|
600
|
+
"wasm-bindgen",
|
|
601
|
+
"windows-core",
|
|
233
602
|
]
|
|
234
603
|
|
|
235
604
|
[[package]]
|
|
236
|
-
name = "
|
|
237
|
-
version = "1.
|
|
605
|
+
name = "iana-time-zone-haiku"
|
|
606
|
+
version = "0.1.2"
|
|
238
607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
-
checksum = "
|
|
608
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"cc",
|
|
611
|
+
]
|
|
240
612
|
|
|
241
613
|
[[package]]
|
|
242
|
-
name = "
|
|
243
|
-
version = "
|
|
614
|
+
name = "icu_collections"
|
|
615
|
+
version = "2.2.0"
|
|
244
616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
-
checksum = "
|
|
617
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"displaydoc",
|
|
620
|
+
"potential_utf",
|
|
621
|
+
"utf8_iter",
|
|
622
|
+
"yoke",
|
|
623
|
+
"zerofrom",
|
|
624
|
+
"zerovec",
|
|
625
|
+
]
|
|
246
626
|
|
|
247
627
|
[[package]]
|
|
248
|
-
name = "
|
|
249
|
-
version = "
|
|
628
|
+
name = "icu_locale_core"
|
|
629
|
+
version = "2.2.0"
|
|
250
630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
-
checksum = "
|
|
631
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"displaydoc",
|
|
634
|
+
"litemap",
|
|
635
|
+
"tinystr",
|
|
636
|
+
"writeable",
|
|
637
|
+
"zerovec",
|
|
638
|
+
]
|
|
252
639
|
|
|
253
640
|
[[package]]
|
|
254
|
-
name = "
|
|
255
|
-
version = "
|
|
641
|
+
name = "icu_normalizer"
|
|
642
|
+
version = "2.2.0"
|
|
256
643
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
-
checksum = "
|
|
644
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
258
645
|
dependencies = [
|
|
259
|
-
"
|
|
646
|
+
"icu_collections",
|
|
647
|
+
"icu_normalizer_data",
|
|
648
|
+
"icu_properties",
|
|
649
|
+
"icu_provider",
|
|
650
|
+
"smallvec",
|
|
651
|
+
"zerovec",
|
|
260
652
|
]
|
|
261
653
|
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "icu_normalizer_data"
|
|
656
|
+
version = "2.2.0"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "icu_properties"
|
|
662
|
+
version = "2.2.0"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
665
|
+
dependencies = [
|
|
666
|
+
"icu_collections",
|
|
667
|
+
"icu_locale_core",
|
|
668
|
+
"icu_properties_data",
|
|
669
|
+
"icu_provider",
|
|
670
|
+
"zerotrie",
|
|
671
|
+
"zerovec",
|
|
672
|
+
]
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "icu_properties_data"
|
|
676
|
+
version = "2.2.0"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "icu_provider"
|
|
682
|
+
version = "2.2.0"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"displaydoc",
|
|
687
|
+
"icu_locale_core",
|
|
688
|
+
"writeable",
|
|
689
|
+
"yoke",
|
|
690
|
+
"zerofrom",
|
|
691
|
+
"zerotrie",
|
|
692
|
+
"zerovec",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "id-arena"
|
|
697
|
+
version = "2.3.0"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "idna"
|
|
703
|
+
version = "1.1.0"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"idna_adapter",
|
|
708
|
+
"smallvec",
|
|
709
|
+
"utf8_iter",
|
|
710
|
+
]
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "idna_adapter"
|
|
714
|
+
version = "1.2.2"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"icu_normalizer",
|
|
719
|
+
"icu_properties",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "indexmap"
|
|
724
|
+
version = "2.14.0"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
727
|
+
dependencies = [
|
|
728
|
+
"equivalent",
|
|
729
|
+
"hashbrown 0.17.1",
|
|
730
|
+
"serde",
|
|
731
|
+
"serde_core",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "is_terminal_polyfill"
|
|
736
|
+
version = "1.70.2"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "itertools"
|
|
742
|
+
version = "0.14.0"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"either",
|
|
747
|
+
]
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "itoa"
|
|
751
|
+
version = "1.0.18"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "js-sys"
|
|
757
|
+
version = "0.3.99"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"cfg-if",
|
|
762
|
+
"futures-util",
|
|
763
|
+
"once_cell",
|
|
764
|
+
"wasm-bindgen",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "keccak"
|
|
769
|
+
version = "0.1.6"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"cpufeatures",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "leb128fmt"
|
|
778
|
+
version = "0.1.0"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "libc"
|
|
784
|
+
version = "0.2.186"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "linux-raw-sys"
|
|
790
|
+
version = "0.12.1"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "litemap"
|
|
796
|
+
version = "0.8.2"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "litrs"
|
|
802
|
+
version = "1.0.0"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "log"
|
|
808
|
+
version = "0.4.30"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "md5"
|
|
814
|
+
version = "0.7.0"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "memchr"
|
|
820
|
+
version = "2.8.1"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "miniz_oxide"
|
|
826
|
+
version = "0.8.9"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
829
|
+
dependencies = [
|
|
830
|
+
"adler2",
|
|
831
|
+
"simd-adler32",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "nom"
|
|
836
|
+
version = "8.0.0"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"memchr",
|
|
841
|
+
]
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "num"
|
|
845
|
+
version = "0.4.3"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
848
|
+
dependencies = [
|
|
849
|
+
"num-bigint",
|
|
850
|
+
"num-complex",
|
|
851
|
+
"num-integer",
|
|
852
|
+
"num-iter",
|
|
853
|
+
"num-rational",
|
|
854
|
+
"num-traits",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "num-bigint"
|
|
859
|
+
version = "0.4.6"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"num-integer",
|
|
864
|
+
"num-traits",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "num-complex"
|
|
869
|
+
version = "0.4.6"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"num-traits",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "num-conv"
|
|
878
|
+
version = "0.2.2"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "num-derive"
|
|
884
|
+
version = "0.4.2"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"proc-macro2",
|
|
889
|
+
"quote",
|
|
890
|
+
"syn 2.0.117",
|
|
891
|
+
]
|
|
892
|
+
|
|
893
|
+
[[package]]
|
|
894
|
+
name = "num-integer"
|
|
895
|
+
version = "0.1.46"
|
|
896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
898
|
+
dependencies = [
|
|
899
|
+
"num-traits",
|
|
900
|
+
]
|
|
901
|
+
|
|
902
|
+
[[package]]
|
|
903
|
+
name = "num-iter"
|
|
904
|
+
version = "0.1.45"
|
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
907
|
+
dependencies = [
|
|
908
|
+
"autocfg",
|
|
909
|
+
"num-integer",
|
|
910
|
+
"num-traits",
|
|
911
|
+
]
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "num-rational"
|
|
915
|
+
version = "0.4.2"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
918
|
+
dependencies = [
|
|
919
|
+
"num-bigint",
|
|
920
|
+
"num-integer",
|
|
921
|
+
"num-traits",
|
|
922
|
+
]
|
|
923
|
+
|
|
924
|
+
[[package]]
|
|
925
|
+
name = "num-traits"
|
|
926
|
+
version = "0.2.19"
|
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
929
|
+
dependencies = [
|
|
930
|
+
"autocfg",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "once_cell"
|
|
935
|
+
version = "1.21.4"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "once_cell_polyfill"
|
|
941
|
+
version = "1.70.2"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "percent-encoding"
|
|
947
|
+
version = "2.3.2"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "pin-project-lite"
|
|
953
|
+
version = "0.2.17"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "plist"
|
|
959
|
+
version = "1.9.0"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"base64",
|
|
964
|
+
"indexmap",
|
|
965
|
+
"quick-xml",
|
|
966
|
+
"serde",
|
|
967
|
+
"time",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "potential_utf"
|
|
972
|
+
version = "0.1.5"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"zerovec",
|
|
977
|
+
]
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "powerfmt"
|
|
981
|
+
version = "0.2.0"
|
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
984
|
+
|
|
985
|
+
[[package]]
|
|
986
|
+
name = "prettyplease"
|
|
987
|
+
version = "0.2.37"
|
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
990
|
+
dependencies = [
|
|
991
|
+
"proc-macro2",
|
|
992
|
+
"syn 2.0.117",
|
|
993
|
+
]
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "proc-macro2"
|
|
997
|
+
version = "1.0.106"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1000
|
+
dependencies = [
|
|
1001
|
+
"unicode-ident",
|
|
1002
|
+
]
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "quick-xml"
|
|
1006
|
+
version = "0.39.4"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
|
|
1009
|
+
dependencies = [
|
|
1010
|
+
"memchr",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "quote"
|
|
1015
|
+
version = "1.0.45"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"proc-macro2",
|
|
1020
|
+
]
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "r-efi"
|
|
1024
|
+
version = "6.0.0"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1027
|
+
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "ring"
|
|
1030
|
+
version = "0.17.14"
|
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1033
|
+
dependencies = [
|
|
1034
|
+
"cc",
|
|
1035
|
+
"cfg-if",
|
|
1036
|
+
"getrandom 0.2.17",
|
|
1037
|
+
"libc",
|
|
1038
|
+
"untrusted",
|
|
1039
|
+
"windows-sys 0.52.0",
|
|
1040
|
+
]
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "rpm"
|
|
1044
|
+
version = "0.24.0"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "a5f8c4a1267cbbad96d1e7bf080ca20c669df79f638ef4e6c5e05a38b5d32c96"
|
|
1047
|
+
dependencies = [
|
|
1048
|
+
"base64",
|
|
1049
|
+
"bitflags 2.11.1",
|
|
1050
|
+
"digest",
|
|
1051
|
+
"enum-display-derive",
|
|
1052
|
+
"enum-primitive-derive",
|
|
1053
|
+
"flate2",
|
|
1054
|
+
"hex",
|
|
1055
|
+
"itertools",
|
|
1056
|
+
"log",
|
|
1057
|
+
"memchr",
|
|
1058
|
+
"nom",
|
|
1059
|
+
"num",
|
|
1060
|
+
"num-derive",
|
|
1061
|
+
"num-traits",
|
|
1062
|
+
"rpm-version",
|
|
1063
|
+
"sha1",
|
|
1064
|
+
"sha2",
|
|
1065
|
+
"sha3",
|
|
1066
|
+
"thiserror",
|
|
1067
|
+
"zeroize",
|
|
1068
|
+
]
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "rpm-version"
|
|
1072
|
+
version = "0.4.0"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "e9274efa3f2ce8fe60fd8ea005a49955f92ddd81643eb38084b8e2c6c507018f"
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "rustix"
|
|
1078
|
+
version = "1.1.4"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1081
|
+
dependencies = [
|
|
1082
|
+
"bitflags 2.11.1",
|
|
1083
|
+
"errno",
|
|
1084
|
+
"libc",
|
|
1085
|
+
"linux-raw-sys",
|
|
1086
|
+
"windows-sys 0.61.2",
|
|
1087
|
+
]
|
|
1088
|
+
|
|
1089
|
+
[[package]]
|
|
1090
|
+
name = "rustls"
|
|
1091
|
+
version = "0.23.40"
|
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
1094
|
+
dependencies = [
|
|
1095
|
+
"log",
|
|
1096
|
+
"once_cell",
|
|
1097
|
+
"ring",
|
|
1098
|
+
"rustls-pki-types",
|
|
1099
|
+
"rustls-webpki",
|
|
1100
|
+
"subtle",
|
|
1101
|
+
"zeroize",
|
|
1102
|
+
]
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "rustls-pki-types"
|
|
1106
|
+
version = "1.14.1"
|
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
1109
|
+
dependencies = [
|
|
1110
|
+
"zeroize",
|
|
1111
|
+
]
|
|
1112
|
+
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "rustls-webpki"
|
|
1115
|
+
version = "0.103.13"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1118
|
+
dependencies = [
|
|
1119
|
+
"ring",
|
|
1120
|
+
"rustls-pki-types",
|
|
1121
|
+
"untrusted",
|
|
1122
|
+
]
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "rustversion"
|
|
1126
|
+
version = "1.0.22"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "semver"
|
|
1132
|
+
version = "1.0.28"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "serde"
|
|
1138
|
+
version = "1.0.228"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1141
|
+
dependencies = [
|
|
1142
|
+
"serde_core",
|
|
1143
|
+
"serde_derive",
|
|
1144
|
+
]
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "serde_bytes"
|
|
1148
|
+
version = "0.11.19"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
|
|
1151
|
+
dependencies = [
|
|
1152
|
+
"serde",
|
|
1153
|
+
"serde_core",
|
|
1154
|
+
]
|
|
1155
|
+
|
|
1156
|
+
[[package]]
|
|
1157
|
+
name = "serde_core"
|
|
1158
|
+
version = "1.0.228"
|
|
1159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1161
|
+
dependencies = [
|
|
1162
|
+
"serde_derive",
|
|
1163
|
+
]
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "serde_derive"
|
|
1167
|
+
version = "1.0.228"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1170
|
+
dependencies = [
|
|
1171
|
+
"proc-macro2",
|
|
1172
|
+
"quote",
|
|
1173
|
+
"syn 2.0.117",
|
|
1174
|
+
]
|
|
1175
|
+
|
|
1176
|
+
[[package]]
|
|
1177
|
+
name = "serde_json"
|
|
1178
|
+
version = "1.0.150"
|
|
1179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1181
|
+
dependencies = [
|
|
1182
|
+
"itoa",
|
|
1183
|
+
"memchr",
|
|
1184
|
+
"serde",
|
|
1185
|
+
"serde_core",
|
|
1186
|
+
"zmij",
|
|
1187
|
+
]
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "sha1"
|
|
1191
|
+
version = "0.10.6"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
1194
|
+
dependencies = [
|
|
1195
|
+
"cfg-if",
|
|
1196
|
+
"cpufeatures",
|
|
1197
|
+
"digest",
|
|
1198
|
+
]
|
|
1199
|
+
|
|
1200
|
+
[[package]]
|
|
1201
|
+
name = "sha2"
|
|
1202
|
+
version = "0.10.9"
|
|
1203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1205
|
+
dependencies = [
|
|
1206
|
+
"cfg-if",
|
|
1207
|
+
"cpufeatures",
|
|
1208
|
+
"digest",
|
|
1209
|
+
]
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "sha3"
|
|
1213
|
+
version = "0.10.9"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874"
|
|
1216
|
+
dependencies = [
|
|
1217
|
+
"digest",
|
|
1218
|
+
"keccak",
|
|
1219
|
+
]
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "shlex"
|
|
1223
|
+
version = "2.0.1"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "simd-adler32"
|
|
1229
|
+
version = "0.3.9"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "simple-bytes"
|
|
1235
|
+
version = "0.2.14"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "c11532d9d241904f095185f35dcdaf930b1427a94d5b01d7002d74ba19b44cc4"
|
|
1238
|
+
|
|
1239
|
+
[[package]]
|
|
1240
|
+
name = "slab"
|
|
1241
|
+
version = "0.4.12"
|
|
1242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "smallvec"
|
|
1247
|
+
version = "1.15.1"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "stable_deref_trait"
|
|
1253
|
+
version = "1.2.1"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "strsim"
|
|
1259
|
+
version = "0.11.1"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1262
|
+
|
|
1263
|
+
[[package]]
|
|
1264
|
+
name = "subtle"
|
|
1265
|
+
version = "2.6.1"
|
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1268
|
+
|
|
1269
|
+
[[package]]
|
|
1270
|
+
name = "syn"
|
|
1271
|
+
version = "1.0.109"
|
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1273
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1274
|
+
dependencies = [
|
|
1275
|
+
"proc-macro2",
|
|
1276
|
+
"quote",
|
|
1277
|
+
"unicode-ident",
|
|
1278
|
+
]
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "syn"
|
|
1282
|
+
version = "2.0.117"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1285
|
+
dependencies = [
|
|
1286
|
+
"proc-macro2",
|
|
1287
|
+
"quote",
|
|
1288
|
+
"unicode-ident",
|
|
1289
|
+
]
|
|
1290
|
+
|
|
1291
|
+
[[package]]
|
|
1292
|
+
name = "synstructure"
|
|
1293
|
+
version = "0.13.2"
|
|
1294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1295
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1296
|
+
dependencies = [
|
|
1297
|
+
"proc-macro2",
|
|
1298
|
+
"quote",
|
|
1299
|
+
"syn 2.0.117",
|
|
1300
|
+
]
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "tar"
|
|
1304
|
+
version = "0.4.46"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
|
|
1307
|
+
dependencies = [
|
|
1308
|
+
"filetime",
|
|
1309
|
+
"libc",
|
|
1310
|
+
"xattr",
|
|
1311
|
+
]
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "thiserror"
|
|
1315
|
+
version = "2.0.18"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1318
|
+
dependencies = [
|
|
1319
|
+
"thiserror-impl",
|
|
1320
|
+
]
|
|
1321
|
+
|
|
1322
|
+
[[package]]
|
|
1323
|
+
name = "thiserror-impl"
|
|
1324
|
+
version = "2.0.18"
|
|
1325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1326
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1327
|
+
dependencies = [
|
|
1328
|
+
"proc-macro2",
|
|
1329
|
+
"quote",
|
|
1330
|
+
"syn 2.0.117",
|
|
1331
|
+
]
|
|
1332
|
+
|
|
1333
|
+
[[package]]
|
|
1334
|
+
name = "time"
|
|
1335
|
+
version = "0.3.47"
|
|
1336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
1338
|
+
dependencies = [
|
|
1339
|
+
"deranged",
|
|
1340
|
+
"itoa",
|
|
1341
|
+
"num-conv",
|
|
1342
|
+
"powerfmt",
|
|
1343
|
+
"serde_core",
|
|
1344
|
+
"time-core",
|
|
1345
|
+
"time-macros",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "time-core"
|
|
1350
|
+
version = "0.1.8"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "time-macros"
|
|
1356
|
+
version = "0.2.27"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"num-conv",
|
|
1361
|
+
"time-core",
|
|
1362
|
+
]
|
|
1363
|
+
|
|
1364
|
+
[[package]]
|
|
1365
|
+
name = "tinystr"
|
|
1366
|
+
version = "0.8.3"
|
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1369
|
+
dependencies = [
|
|
1370
|
+
"displaydoc",
|
|
1371
|
+
"zerovec",
|
|
1372
|
+
]
|
|
1373
|
+
|
|
1374
|
+
[[package]]
|
|
1375
|
+
name = "typed-path"
|
|
1376
|
+
version = "0.12.3"
|
|
1377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
+
checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
|
|
1379
|
+
|
|
1380
|
+
[[package]]
|
|
1381
|
+
name = "typenum"
|
|
1382
|
+
version = "1.20.1"
|
|
1383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
1385
|
+
|
|
1386
|
+
[[package]]
|
|
1387
|
+
name = "unicode-ident"
|
|
1388
|
+
version = "1.0.24"
|
|
1389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1391
|
+
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "unicode-xid"
|
|
1394
|
+
version = "0.2.6"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1397
|
+
|
|
1398
|
+
[[package]]
|
|
1399
|
+
name = "untrusted"
|
|
1400
|
+
version = "0.9.0"
|
|
1401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "ureq"
|
|
1406
|
+
version = "3.3.0"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
|
|
1409
|
+
dependencies = [
|
|
1410
|
+
"base64",
|
|
1411
|
+
"cookie_store",
|
|
1412
|
+
"flate2",
|
|
1413
|
+
"log",
|
|
1414
|
+
"percent-encoding",
|
|
1415
|
+
"rustls",
|
|
1416
|
+
"rustls-pki-types",
|
|
1417
|
+
"serde",
|
|
1418
|
+
"serde_json",
|
|
1419
|
+
"ureq-proto",
|
|
1420
|
+
"utf8-zero",
|
|
1421
|
+
"webpki-roots",
|
|
1422
|
+
]
|
|
1423
|
+
|
|
1424
|
+
[[package]]
|
|
1425
|
+
name = "ureq-proto"
|
|
1426
|
+
version = "0.6.0"
|
|
1427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1428
|
+
checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
|
|
1429
|
+
dependencies = [
|
|
1430
|
+
"base64",
|
|
1431
|
+
"http",
|
|
1432
|
+
"httparse",
|
|
1433
|
+
"log",
|
|
1434
|
+
]
|
|
1435
|
+
|
|
1436
|
+
[[package]]
|
|
1437
|
+
name = "url"
|
|
1438
|
+
version = "2.5.8"
|
|
1439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1441
|
+
dependencies = [
|
|
1442
|
+
"form_urlencoded",
|
|
1443
|
+
"idna",
|
|
1444
|
+
"percent-encoding",
|
|
1445
|
+
"serde",
|
|
1446
|
+
]
|
|
1447
|
+
|
|
1448
|
+
[[package]]
|
|
1449
|
+
name = "utf8-zero"
|
|
1450
|
+
version = "0.8.1"
|
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
+
checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
|
|
1453
|
+
|
|
1454
|
+
[[package]]
|
|
1455
|
+
name = "utf8_iter"
|
|
1456
|
+
version = "1.0.4"
|
|
1457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1458
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1459
|
+
|
|
1460
|
+
[[package]]
|
|
1461
|
+
name = "utf8parse"
|
|
1462
|
+
version = "0.2.2"
|
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1465
|
+
|
|
1466
|
+
[[package]]
|
|
1467
|
+
name = "uuid"
|
|
1468
|
+
version = "1.23.2"
|
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
+
checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
|
|
1471
|
+
dependencies = [
|
|
1472
|
+
"getrandom 0.4.2",
|
|
1473
|
+
"js-sys",
|
|
1474
|
+
"wasm-bindgen",
|
|
1475
|
+
]
|
|
1476
|
+
|
|
1477
|
+
[[package]]
|
|
1478
|
+
name = "version_check"
|
|
1479
|
+
version = "0.9.5"
|
|
1480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1482
|
+
|
|
1483
|
+
[[package]]
|
|
1484
|
+
name = "wasi"
|
|
1485
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "wasip2"
|
|
1491
|
+
version = "1.0.3+wasi-0.2.9"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"wit-bindgen 0.57.1",
|
|
1496
|
+
]
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "wasip3"
|
|
1500
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1503
|
+
dependencies = [
|
|
1504
|
+
"wit-bindgen 0.51.0",
|
|
1505
|
+
]
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "wasm-bindgen"
|
|
1509
|
+
version = "0.2.122"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"cfg-if",
|
|
1514
|
+
"once_cell",
|
|
1515
|
+
"rustversion",
|
|
1516
|
+
"wasm-bindgen-macro",
|
|
1517
|
+
"wasm-bindgen-shared",
|
|
1518
|
+
]
|
|
1519
|
+
|
|
1520
|
+
[[package]]
|
|
1521
|
+
name = "wasm-bindgen-macro"
|
|
1522
|
+
version = "0.2.122"
|
|
1523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
1525
|
+
dependencies = [
|
|
1526
|
+
"quote",
|
|
1527
|
+
"wasm-bindgen-macro-support",
|
|
1528
|
+
]
|
|
1529
|
+
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "wasm-bindgen-macro-support"
|
|
1532
|
+
version = "0.2.122"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
1535
|
+
dependencies = [
|
|
1536
|
+
"bumpalo",
|
|
1537
|
+
"proc-macro2",
|
|
1538
|
+
"quote",
|
|
1539
|
+
"syn 2.0.117",
|
|
1540
|
+
"wasm-bindgen-shared",
|
|
1541
|
+
]
|
|
1542
|
+
|
|
1543
|
+
[[package]]
|
|
1544
|
+
name = "wasm-bindgen-shared"
|
|
1545
|
+
version = "0.2.122"
|
|
1546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
1548
|
+
dependencies = [
|
|
1549
|
+
"unicode-ident",
|
|
1550
|
+
]
|
|
1551
|
+
|
|
1552
|
+
[[package]]
|
|
1553
|
+
name = "wasm-encoder"
|
|
1554
|
+
version = "0.244.0"
|
|
1555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1557
|
+
dependencies = [
|
|
1558
|
+
"leb128fmt",
|
|
1559
|
+
"wasmparser",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "wasm-metadata"
|
|
1564
|
+
version = "0.244.0"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
1567
|
+
dependencies = [
|
|
1568
|
+
"anyhow",
|
|
1569
|
+
"indexmap",
|
|
1570
|
+
"wasm-encoder",
|
|
1571
|
+
"wasmparser",
|
|
1572
|
+
]
|
|
1573
|
+
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "wasmparser"
|
|
1576
|
+
version = "0.244.0"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1579
|
+
dependencies = [
|
|
1580
|
+
"bitflags 2.11.1",
|
|
1581
|
+
"hashbrown 0.15.5",
|
|
1582
|
+
"indexmap",
|
|
1583
|
+
"semver",
|
|
1584
|
+
]
|
|
1585
|
+
|
|
1586
|
+
[[package]]
|
|
1587
|
+
name = "webpki-roots"
|
|
1588
|
+
version = "1.0.7"
|
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
+
checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
|
|
1591
|
+
dependencies = [
|
|
1592
|
+
"rustls-pki-types",
|
|
1593
|
+
]
|
|
1594
|
+
|
|
1595
|
+
[[package]]
|
|
1596
|
+
name = "windows-core"
|
|
1597
|
+
version = "0.62.2"
|
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1600
|
+
dependencies = [
|
|
1601
|
+
"windows-implement",
|
|
1602
|
+
"windows-interface",
|
|
1603
|
+
"windows-link",
|
|
1604
|
+
"windows-result",
|
|
1605
|
+
"windows-strings",
|
|
1606
|
+
]
|
|
1607
|
+
|
|
1608
|
+
[[package]]
|
|
1609
|
+
name = "windows-implement"
|
|
1610
|
+
version = "0.60.2"
|
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1612
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1613
|
+
dependencies = [
|
|
1614
|
+
"proc-macro2",
|
|
1615
|
+
"quote",
|
|
1616
|
+
"syn 2.0.117",
|
|
1617
|
+
]
|
|
1618
|
+
|
|
1619
|
+
[[package]]
|
|
1620
|
+
name = "windows-interface"
|
|
1621
|
+
version = "0.59.3"
|
|
1622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1624
|
+
dependencies = [
|
|
1625
|
+
"proc-macro2",
|
|
1626
|
+
"quote",
|
|
1627
|
+
"syn 2.0.117",
|
|
1628
|
+
]
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "windows-link"
|
|
1632
|
+
version = "0.2.1"
|
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1635
|
+
|
|
1636
|
+
[[package]]
|
|
1637
|
+
name = "windows-result"
|
|
1638
|
+
version = "0.4.1"
|
|
1639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1640
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1641
|
+
dependencies = [
|
|
1642
|
+
"windows-link",
|
|
1643
|
+
]
|
|
1644
|
+
|
|
1645
|
+
[[package]]
|
|
1646
|
+
name = "windows-strings"
|
|
1647
|
+
version = "0.5.1"
|
|
1648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1649
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1650
|
+
dependencies = [
|
|
1651
|
+
"windows-link",
|
|
1652
|
+
]
|
|
1653
|
+
|
|
1654
|
+
[[package]]
|
|
1655
|
+
name = "windows-sys"
|
|
1656
|
+
version = "0.52.0"
|
|
1657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1659
|
+
dependencies = [
|
|
1660
|
+
"windows-targets",
|
|
1661
|
+
]
|
|
1662
|
+
|
|
1663
|
+
[[package]]
|
|
1664
|
+
name = "windows-sys"
|
|
1665
|
+
version = "0.61.2"
|
|
1666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1667
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1668
|
+
dependencies = [
|
|
1669
|
+
"windows-link",
|
|
1670
|
+
]
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "windows-targets"
|
|
1674
|
+
version = "0.52.6"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1677
|
+
dependencies = [
|
|
1678
|
+
"windows_aarch64_gnullvm",
|
|
1679
|
+
"windows_aarch64_msvc",
|
|
1680
|
+
"windows_i686_gnu",
|
|
1681
|
+
"windows_i686_gnullvm",
|
|
1682
|
+
"windows_i686_msvc",
|
|
1683
|
+
"windows_x86_64_gnu",
|
|
1684
|
+
"windows_x86_64_gnullvm",
|
|
1685
|
+
"windows_x86_64_msvc",
|
|
1686
|
+
]
|
|
1687
|
+
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "windows_aarch64_gnullvm"
|
|
1690
|
+
version = "0.52.6"
|
|
1691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1693
|
+
|
|
1694
|
+
[[package]]
|
|
1695
|
+
name = "windows_aarch64_msvc"
|
|
1696
|
+
version = "0.52.6"
|
|
1697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "windows_i686_gnu"
|
|
1702
|
+
version = "0.52.6"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "windows_i686_gnullvm"
|
|
1708
|
+
version = "0.52.6"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "windows_i686_msvc"
|
|
1714
|
+
version = "0.52.6"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "windows_x86_64_gnu"
|
|
1720
|
+
version = "0.52.6"
|
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1723
|
+
|
|
1724
|
+
[[package]]
|
|
1725
|
+
name = "windows_x86_64_gnullvm"
|
|
1726
|
+
version = "0.52.6"
|
|
1727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1729
|
+
|
|
1730
|
+
[[package]]
|
|
1731
|
+
name = "windows_x86_64_msvc"
|
|
1732
|
+
version = "0.52.6"
|
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "wit-bindgen"
|
|
1738
|
+
version = "0.51.0"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1741
|
+
dependencies = [
|
|
1742
|
+
"wit-bindgen-rust-macro",
|
|
1743
|
+
]
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "wit-bindgen"
|
|
1747
|
+
version = "0.57.1"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1750
|
+
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "wit-bindgen-core"
|
|
1753
|
+
version = "0.51.0"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1756
|
+
dependencies = [
|
|
1757
|
+
"anyhow",
|
|
1758
|
+
"heck",
|
|
1759
|
+
"wit-parser",
|
|
1760
|
+
]
|
|
1761
|
+
|
|
1762
|
+
[[package]]
|
|
1763
|
+
name = "wit-bindgen-rust"
|
|
1764
|
+
version = "0.51.0"
|
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1767
|
+
dependencies = [
|
|
1768
|
+
"anyhow",
|
|
1769
|
+
"heck",
|
|
1770
|
+
"indexmap",
|
|
1771
|
+
"prettyplease",
|
|
1772
|
+
"syn 2.0.117",
|
|
1773
|
+
"wasm-metadata",
|
|
1774
|
+
"wit-bindgen-core",
|
|
1775
|
+
"wit-component",
|
|
1776
|
+
]
|
|
1777
|
+
|
|
1778
|
+
[[package]]
|
|
1779
|
+
name = "wit-bindgen-rust-macro"
|
|
1780
|
+
version = "0.51.0"
|
|
1781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1783
|
+
dependencies = [
|
|
1784
|
+
"anyhow",
|
|
1785
|
+
"prettyplease",
|
|
1786
|
+
"proc-macro2",
|
|
1787
|
+
"quote",
|
|
1788
|
+
"syn 2.0.117",
|
|
1789
|
+
"wit-bindgen-core",
|
|
1790
|
+
"wit-bindgen-rust",
|
|
1791
|
+
]
|
|
1792
|
+
|
|
1793
|
+
[[package]]
|
|
1794
|
+
name = "wit-component"
|
|
1795
|
+
version = "0.244.0"
|
|
1796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1798
|
+
dependencies = [
|
|
1799
|
+
"anyhow",
|
|
1800
|
+
"bitflags 2.11.1",
|
|
1801
|
+
"indexmap",
|
|
1802
|
+
"log",
|
|
1803
|
+
"serde",
|
|
1804
|
+
"serde_derive",
|
|
1805
|
+
"serde_json",
|
|
1806
|
+
"wasm-encoder",
|
|
1807
|
+
"wasm-metadata",
|
|
1808
|
+
"wasmparser",
|
|
1809
|
+
"wit-parser",
|
|
1810
|
+
]
|
|
1811
|
+
|
|
1812
|
+
[[package]]
|
|
1813
|
+
name = "wit-parser"
|
|
1814
|
+
version = "0.244.0"
|
|
1815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1817
|
+
dependencies = [
|
|
1818
|
+
"anyhow",
|
|
1819
|
+
"id-arena",
|
|
1820
|
+
"indexmap",
|
|
1821
|
+
"log",
|
|
1822
|
+
"semver",
|
|
1823
|
+
"serde",
|
|
1824
|
+
"serde_derive",
|
|
1825
|
+
"serde_json",
|
|
1826
|
+
"unicode-xid",
|
|
1827
|
+
"wasmparser",
|
|
1828
|
+
]
|
|
1829
|
+
|
|
1830
|
+
[[package]]
|
|
1831
|
+
name = "writeable"
|
|
1832
|
+
version = "0.6.3"
|
|
1833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1834
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
1835
|
+
|
|
1836
|
+
[[package]]
|
|
1837
|
+
name = "xattr"
|
|
1838
|
+
version = "1.6.1"
|
|
1839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1840
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
1841
|
+
dependencies = [
|
|
1842
|
+
"libc",
|
|
1843
|
+
"rustix",
|
|
1844
|
+
]
|
|
1845
|
+
|
|
1846
|
+
[[package]]
|
|
1847
|
+
name = "yoke"
|
|
1848
|
+
version = "0.8.2"
|
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
1851
|
+
dependencies = [
|
|
1852
|
+
"stable_deref_trait",
|
|
1853
|
+
"yoke-derive",
|
|
1854
|
+
"zerofrom",
|
|
1855
|
+
]
|
|
1856
|
+
|
|
1857
|
+
[[package]]
|
|
1858
|
+
name = "yoke-derive"
|
|
1859
|
+
version = "0.8.2"
|
|
1860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1862
|
+
dependencies = [
|
|
1863
|
+
"proc-macro2",
|
|
1864
|
+
"quote",
|
|
1865
|
+
"syn 2.0.117",
|
|
1866
|
+
"synstructure",
|
|
1867
|
+
]
|
|
1868
|
+
|
|
1869
|
+
[[package]]
|
|
1870
|
+
name = "zerofrom"
|
|
1871
|
+
version = "0.1.8"
|
|
1872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
1874
|
+
dependencies = [
|
|
1875
|
+
"zerofrom-derive",
|
|
1876
|
+
]
|
|
1877
|
+
|
|
1878
|
+
[[package]]
|
|
1879
|
+
name = "zerofrom-derive"
|
|
1880
|
+
version = "0.1.7"
|
|
1881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
1883
|
+
dependencies = [
|
|
1884
|
+
"proc-macro2",
|
|
1885
|
+
"quote",
|
|
1886
|
+
"syn 2.0.117",
|
|
1887
|
+
"synstructure",
|
|
1888
|
+
]
|
|
1889
|
+
|
|
1890
|
+
[[package]]
|
|
1891
|
+
name = "zeroize"
|
|
1892
|
+
version = "1.8.2"
|
|
1893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1894
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1895
|
+
|
|
1896
|
+
[[package]]
|
|
1897
|
+
name = "zerotrie"
|
|
1898
|
+
version = "0.2.4"
|
|
1899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1900
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
1901
|
+
dependencies = [
|
|
1902
|
+
"displaydoc",
|
|
1903
|
+
"yoke",
|
|
1904
|
+
"zerofrom",
|
|
1905
|
+
]
|
|
1906
|
+
|
|
1907
|
+
[[package]]
|
|
1908
|
+
name = "zerovec"
|
|
1909
|
+
version = "0.11.6"
|
|
1910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1911
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
1912
|
+
dependencies = [
|
|
1913
|
+
"yoke",
|
|
1914
|
+
"zerofrom",
|
|
1915
|
+
"zerovec-derive",
|
|
1916
|
+
]
|
|
1917
|
+
|
|
1918
|
+
[[package]]
|
|
1919
|
+
name = "zerovec-derive"
|
|
1920
|
+
version = "0.11.3"
|
|
1921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1922
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
1923
|
+
dependencies = [
|
|
1924
|
+
"proc-macro2",
|
|
1925
|
+
"quote",
|
|
1926
|
+
"syn 2.0.117",
|
|
1927
|
+
]
|
|
1928
|
+
|
|
1929
|
+
[[package]]
|
|
1930
|
+
name = "zip"
|
|
1931
|
+
version = "8.6.0"
|
|
1932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
+
checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
|
|
1934
|
+
dependencies = [
|
|
1935
|
+
"crc32fast",
|
|
1936
|
+
"flate2",
|
|
1937
|
+
"indexmap",
|
|
1938
|
+
"memchr",
|
|
1939
|
+
"typed-path",
|
|
1940
|
+
]
|
|
1941
|
+
|
|
1942
|
+
[[package]]
|
|
1943
|
+
name = "zlib-rs"
|
|
1944
|
+
version = "0.6.3"
|
|
1945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1946
|
+
checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
|
|
1947
|
+
|
|
262
1948
|
[[package]]
|
|
263
1949
|
name = "zmij"
|
|
264
1950
|
version = "1.0.21"
|