velopack 0.0.1331.dev4399__tar.gz
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.
- velopack-0.0.1331.dev4399/Cargo.lock +3203 -0
- velopack-0.0.1331.dev4399/Cargo.toml +102 -0
- velopack-0.0.1331.dev4399/PKG-INFO +33 -0
- velopack-0.0.1331.dev4399/pyproject.toml +22 -0
- velopack-0.0.1331.dev4399/src/lib-python/.gitignore +201 -0
- velopack-0.0.1331.dev4399/src/lib-python/Cargo.toml +24 -0
- velopack-0.0.1331.dev4399/src/lib-python/README.md +20 -0
- velopack-0.0.1331.dev4399/src/lib-python/build.rs +3 -0
- velopack-0.0.1331.dev4399/src/lib-python/src/app.rs +176 -0
- velopack-0.0.1331.dev4399/src/lib-python/src/lib.rs +35 -0
- velopack-0.0.1331.dev4399/src/lib-python/src/manager.rs +80 -0
- velopack-0.0.1331.dev4399/src/lib-python/src/types.rs +258 -0
- velopack-0.0.1331.dev4399/src/lib-python/test/app.py +16 -0
- velopack-0.0.1331.dev4399/src/lib-python/test/run_test.py +110 -0
- velopack-0.0.1331.dev4399/src/lib-python/uv.lock +264 -0
- velopack-0.0.1331.dev4399/src/lib-rust/Cargo.toml +68 -0
- velopack-0.0.1331.dev4399/src/lib-rust/README.md +20 -0
- velopack-0.0.1331.dev4399/src/lib-rust/src/app.rs +194 -0
- velopack-0.0.1331.dev4399/src/lib-rust/src/bundle.rs +531 -0
- velopack-0.0.1331.dev4399/src/lib-rust/src/constants.rs +9 -0
- velopack-0.0.1331.dev4399/src/lib-rust/src/download.rs +164 -0
- velopack-0.0.1331.dev4399/src/lib-rust/src/file_rotate.rs +185 -0
- velopack-0.0.1331.dev4399/src/lib-rust/src/lib.rs +167 -0
- velopack-0.0.1331.dev4399/src/lib-rust/src/locator.rs +601 -0
- velopack-0.0.1331.dev4399/src/lib-rust/src/lockfile.rs +129 -0
- velopack-0.0.1331.dev4399/src/lib-rust/src/logging.rs +141 -0
- velopack-0.0.1331.dev4399/src/lib-rust/src/manager.rs +692 -0
- velopack-0.0.1331.dev4399/src/lib-rust/src/sources.rs +175 -0
- velopack-0.0.1331.dev4399/src/lib-rust/src/util.rs +59 -0
|
@@ -0,0 +1,3203 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
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 = "aho-corasick"
|
|
13
|
+
version = "1.1.3"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "aligned"
|
|
22
|
+
version = "0.4.2"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "377e4c0ba83e4431b10df45c1d4666f178ea9c552cac93e60c3a88bf32785923"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"as-slice",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "android-tzdata"
|
|
31
|
+
version = "0.1.1"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "android_system_properties"
|
|
37
|
+
version = "0.1.5"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"libc",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstream"
|
|
46
|
+
version = "0.6.19"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"anstyle",
|
|
51
|
+
"anstyle-parse",
|
|
52
|
+
"anstyle-query",
|
|
53
|
+
"anstyle-wincon",
|
|
54
|
+
"colorchoice",
|
|
55
|
+
"is_terminal_polyfill",
|
|
56
|
+
"utf8parse",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle"
|
|
61
|
+
version = "1.0.11"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "anstyle-parse"
|
|
67
|
+
version = "0.2.7"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"utf8parse",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "anstyle-query"
|
|
76
|
+
version = "1.1.3"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"windows-sys 0.59.0",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "anstyle-wincon"
|
|
85
|
+
version = "3.0.9"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"anstyle",
|
|
90
|
+
"once_cell_polyfill",
|
|
91
|
+
"windows-sys 0.59.0",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "anyhow"
|
|
96
|
+
version = "1.0.98"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "arbitrary"
|
|
102
|
+
version = "1.4.1"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"derive_arbitrary",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "arc-swap"
|
|
111
|
+
version = "1.7.1"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "as-slice"
|
|
117
|
+
version = "0.2.1"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"stable_deref_trait",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "async-channel"
|
|
126
|
+
version = "1.9.0"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"concurrent-queue",
|
|
131
|
+
"event-listener 2.5.3",
|
|
132
|
+
"futures-core",
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "async-channel"
|
|
137
|
+
version = "2.3.1"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"concurrent-queue",
|
|
142
|
+
"event-listener-strategy",
|
|
143
|
+
"futures-core",
|
|
144
|
+
"pin-project-lite",
|
|
145
|
+
]
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "async-executor"
|
|
149
|
+
version = "1.13.2"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa"
|
|
152
|
+
dependencies = [
|
|
153
|
+
"async-task",
|
|
154
|
+
"concurrent-queue",
|
|
155
|
+
"fastrand",
|
|
156
|
+
"futures-lite",
|
|
157
|
+
"pin-project-lite",
|
|
158
|
+
"slab",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "async-global-executor"
|
|
163
|
+
version = "2.4.1"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"async-channel 2.3.1",
|
|
168
|
+
"async-executor",
|
|
169
|
+
"async-io",
|
|
170
|
+
"async-lock",
|
|
171
|
+
"blocking",
|
|
172
|
+
"futures-lite",
|
|
173
|
+
"once_cell",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "async-io"
|
|
178
|
+
version = "2.4.1"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "1237c0ae75a0f3765f58910ff9cdd0a12eeb39ab2f4c7de23262f337f0aacbb3"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"async-lock",
|
|
183
|
+
"cfg-if 1.0.1",
|
|
184
|
+
"concurrent-queue",
|
|
185
|
+
"futures-io",
|
|
186
|
+
"futures-lite",
|
|
187
|
+
"parking",
|
|
188
|
+
"polling",
|
|
189
|
+
"rustix",
|
|
190
|
+
"slab",
|
|
191
|
+
"tracing",
|
|
192
|
+
"windows-sys 0.59.0",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "async-lock"
|
|
197
|
+
version = "3.4.0"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"event-listener 5.4.0",
|
|
202
|
+
"event-listener-strategy",
|
|
203
|
+
"pin-project-lite",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "async-std"
|
|
208
|
+
version = "1.13.1"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "730294c1c08c2e0f85759590518f6333f0d5a0a766a27d519c1b244c3dfd8a24"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"async-channel 1.9.0",
|
|
213
|
+
"async-global-executor",
|
|
214
|
+
"async-io",
|
|
215
|
+
"async-lock",
|
|
216
|
+
"crossbeam-utils",
|
|
217
|
+
"futures-channel",
|
|
218
|
+
"futures-core",
|
|
219
|
+
"futures-io",
|
|
220
|
+
"futures-lite",
|
|
221
|
+
"gloo-timers",
|
|
222
|
+
"kv-log-macro",
|
|
223
|
+
"log",
|
|
224
|
+
"memchr",
|
|
225
|
+
"once_cell",
|
|
226
|
+
"pin-project-lite",
|
|
227
|
+
"pin-utils",
|
|
228
|
+
"slab",
|
|
229
|
+
"wasm-bindgen-futures",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "async-task"
|
|
234
|
+
version = "4.7.1"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "atomic-waker"
|
|
240
|
+
version = "1.1.2"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "autocfg"
|
|
246
|
+
version = "1.4.0"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "base64"
|
|
252
|
+
version = "0.22.1"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "bitflags"
|
|
258
|
+
version = "1.3.2"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "bitflags"
|
|
264
|
+
version = "2.9.1"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "block-buffer"
|
|
270
|
+
version = "0.10.4"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"generic-array",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "blocking"
|
|
279
|
+
version = "1.6.1"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"async-channel 2.3.1",
|
|
284
|
+
"async-task",
|
|
285
|
+
"futures-io",
|
|
286
|
+
"futures-lite",
|
|
287
|
+
"piper",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "bumpalo"
|
|
292
|
+
version = "3.18.1"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "bytemuck"
|
|
298
|
+
version = "1.23.1"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422"
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "byteorder-lite"
|
|
304
|
+
version = "0.1.0"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "bytes"
|
|
310
|
+
version = "1.10.1"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "cbindgen"
|
|
316
|
+
version = "0.29.0"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "975982cdb7ad6a142be15bdf84aea7ec6a9e5d4d797c004d43185b24cfe4e684"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"clap",
|
|
321
|
+
"heck",
|
|
322
|
+
"indexmap",
|
|
323
|
+
"log",
|
|
324
|
+
"proc-macro2",
|
|
325
|
+
"quote",
|
|
326
|
+
"serde",
|
|
327
|
+
"serde_json",
|
|
328
|
+
"syn 2.0.103",
|
|
329
|
+
"tempfile",
|
|
330
|
+
"toml 0.8.23",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "cc"
|
|
335
|
+
version = "1.2.27"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"jobserver",
|
|
340
|
+
"libc",
|
|
341
|
+
"shlex",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "cfg-if"
|
|
346
|
+
version = "0.1.10"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "cfg-if"
|
|
352
|
+
version = "1.0.1"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "cfg_aliases"
|
|
358
|
+
version = "0.2.1"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "chrono"
|
|
364
|
+
version = "0.4.41"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"android-tzdata",
|
|
369
|
+
"iana-time-zone",
|
|
370
|
+
"js-sys",
|
|
371
|
+
"num-traits",
|
|
372
|
+
"wasm-bindgen",
|
|
373
|
+
"windows-link",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "clap"
|
|
378
|
+
version = "4.5.40"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"clap_builder",
|
|
383
|
+
"clap_derive",
|
|
384
|
+
]
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "clap_builder"
|
|
388
|
+
version = "4.5.40"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"anstream",
|
|
393
|
+
"anstyle",
|
|
394
|
+
"clap_lex",
|
|
395
|
+
"strsim 0.11.1",
|
|
396
|
+
]
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "clap_derive"
|
|
400
|
+
version = "4.5.40"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"heck",
|
|
405
|
+
"proc-macro2",
|
|
406
|
+
"quote",
|
|
407
|
+
"syn 2.0.103",
|
|
408
|
+
]
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "clap_lex"
|
|
412
|
+
version = "0.7.5"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "color_quant"
|
|
418
|
+
version = "1.1.0"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "colorchoice"
|
|
424
|
+
version = "1.0.4"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "concurrent-queue"
|
|
430
|
+
version = "2.5.0"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"crossbeam-utils",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "core-foundation"
|
|
439
|
+
version = "0.10.1"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"core-foundation-sys",
|
|
444
|
+
"libc",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "core-foundation-sys"
|
|
449
|
+
version = "0.8.7"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "cpufeatures"
|
|
455
|
+
version = "0.2.17"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
458
|
+
dependencies = [
|
|
459
|
+
"libc",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "crc32fast"
|
|
464
|
+
version = "1.4.2"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"cfg-if 1.0.1",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "crossbeam-deque"
|
|
473
|
+
version = "0.8.6"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"crossbeam-epoch",
|
|
478
|
+
"crossbeam-utils",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "crossbeam-epoch"
|
|
483
|
+
version = "0.9.18"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"crossbeam-utils",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "crossbeam-utils"
|
|
492
|
+
version = "0.8.21"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "crypto-common"
|
|
498
|
+
version = "0.1.6"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"generic-array",
|
|
503
|
+
"typenum",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "cvt"
|
|
508
|
+
version = "0.1.2"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "d2ae9bf77fbf2d39ef573205d554d87e86c12f1994e9ea335b0651b9b278bcf1"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"cfg-if 1.0.1",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "darling"
|
|
517
|
+
version = "0.10.2"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"darling_core",
|
|
522
|
+
"darling_macro",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "darling_core"
|
|
527
|
+
version = "0.10.2"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"fnv",
|
|
532
|
+
"ident_case",
|
|
533
|
+
"proc-macro2",
|
|
534
|
+
"quote",
|
|
535
|
+
"strsim 0.9.3",
|
|
536
|
+
"syn 1.0.109",
|
|
537
|
+
]
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "darling_macro"
|
|
541
|
+
version = "0.10.2"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
|
|
544
|
+
dependencies = [
|
|
545
|
+
"darling_core",
|
|
546
|
+
"quote",
|
|
547
|
+
"syn 1.0.109",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "deranged"
|
|
552
|
+
version = "0.4.0"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"powerfmt",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "derivative"
|
|
561
|
+
version = "2.2.0"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"proc-macro2",
|
|
566
|
+
"quote",
|
|
567
|
+
"syn 1.0.109",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "derive_arbitrary"
|
|
572
|
+
version = "1.4.1"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"proc-macro2",
|
|
577
|
+
"quote",
|
|
578
|
+
"syn 2.0.103",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "dialog"
|
|
583
|
+
version = "0.3.0"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "736bab36d647d14c985725a57a4110a1182c6852104536cd42f1c97e96d29bf0"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"dirs",
|
|
588
|
+
"rpassword",
|
|
589
|
+
]
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "diff"
|
|
593
|
+
version = "0.1.13"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "digest"
|
|
599
|
+
version = "0.10.7"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"block-buffer",
|
|
604
|
+
"crypto-common",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "dirs"
|
|
609
|
+
version = "2.0.2"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"cfg-if 0.1.10",
|
|
614
|
+
"dirs-sys",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "dirs-sys"
|
|
619
|
+
version = "0.3.7"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"libc",
|
|
624
|
+
"redox_users",
|
|
625
|
+
"winapi 0.3.9",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "displaydoc"
|
|
630
|
+
version = "0.2.5"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"proc-macro2",
|
|
635
|
+
"quote",
|
|
636
|
+
"syn 2.0.103",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "either"
|
|
641
|
+
version = "1.15.0"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "enum-flags"
|
|
647
|
+
version = "0.4.0"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "e1af70a2741b97c7a49b23dc5f73161d1c5278f8c54393c03ed6380d49d78916"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"proc-macro2",
|
|
652
|
+
"quote",
|
|
653
|
+
"syn 1.0.109",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "equivalent"
|
|
658
|
+
version = "1.0.2"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "errno"
|
|
664
|
+
version = "0.3.12"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"libc",
|
|
669
|
+
"windows-sys 0.59.0",
|
|
670
|
+
]
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "event-listener"
|
|
674
|
+
version = "2.5.3"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "event-listener"
|
|
680
|
+
version = "5.4.0"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"concurrent-queue",
|
|
685
|
+
"parking",
|
|
686
|
+
"pin-project-lite",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "event-listener-strategy"
|
|
691
|
+
version = "0.5.4"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"event-listener 5.4.0",
|
|
696
|
+
"pin-project-lite",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "fastrand"
|
|
701
|
+
version = "2.3.0"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "fdeflate"
|
|
707
|
+
version = "0.3.7"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"simd-adler32",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "flate2"
|
|
716
|
+
version = "1.1.2"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
|
719
|
+
dependencies = [
|
|
720
|
+
"crc32fast",
|
|
721
|
+
"libz-rs-sys",
|
|
722
|
+
"miniz_oxide",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "fnv"
|
|
727
|
+
version = "1.0.7"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "form_urlencoded"
|
|
733
|
+
version = "1.2.1"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"percent-encoding",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "fs_at"
|
|
742
|
+
version = "0.2.1"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "14af6c9694ea25db25baa2a1788703b9e7c6648dcaeeebeb98f7561b5384c036"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"aligned",
|
|
747
|
+
"cfg-if 1.0.1",
|
|
748
|
+
"cvt",
|
|
749
|
+
"libc",
|
|
750
|
+
"nix",
|
|
751
|
+
"windows-sys 0.52.0",
|
|
752
|
+
]
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "fs_extra"
|
|
756
|
+
version = "1.3.0"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "futures-channel"
|
|
762
|
+
version = "0.3.31"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
765
|
+
dependencies = [
|
|
766
|
+
"futures-core",
|
|
767
|
+
]
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "futures-core"
|
|
771
|
+
version = "0.3.31"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "futures-io"
|
|
777
|
+
version = "0.3.31"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "futures-lite"
|
|
783
|
+
version = "2.6.0"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"fastrand",
|
|
788
|
+
"futures-core",
|
|
789
|
+
"futures-io",
|
|
790
|
+
"parking",
|
|
791
|
+
"pin-project-lite",
|
|
792
|
+
]
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "generic-array"
|
|
796
|
+
version = "0.14.7"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
799
|
+
dependencies = [
|
|
800
|
+
"typenum",
|
|
801
|
+
"version_check",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "getrandom"
|
|
806
|
+
version = "0.2.16"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"cfg-if 1.0.1",
|
|
811
|
+
"libc",
|
|
812
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
813
|
+
]
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "getrandom"
|
|
817
|
+
version = "0.3.3"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
820
|
+
dependencies = [
|
|
821
|
+
"cfg-if 1.0.1",
|
|
822
|
+
"libc",
|
|
823
|
+
"r-efi",
|
|
824
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
825
|
+
]
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "gif"
|
|
829
|
+
version = "0.13.1"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2"
|
|
832
|
+
dependencies = [
|
|
833
|
+
"color_quant",
|
|
834
|
+
"weezl",
|
|
835
|
+
]
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "glob"
|
|
839
|
+
version = "0.3.2"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "gloo-timers"
|
|
845
|
+
version = "0.3.0"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
|
|
848
|
+
dependencies = [
|
|
849
|
+
"futures-channel",
|
|
850
|
+
"futures-core",
|
|
851
|
+
"js-sys",
|
|
852
|
+
"wasm-bindgen",
|
|
853
|
+
]
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "hashbrown"
|
|
857
|
+
version = "0.15.4"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "heck"
|
|
863
|
+
version = "0.5.0"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "hermit-abi"
|
|
869
|
+
version = "0.5.2"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "http"
|
|
875
|
+
version = "1.3.1"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"bytes",
|
|
880
|
+
"fnv",
|
|
881
|
+
"itoa",
|
|
882
|
+
]
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "httparse"
|
|
886
|
+
version = "1.10.1"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "iana-time-zone"
|
|
892
|
+
version = "0.1.63"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
|
895
|
+
dependencies = [
|
|
896
|
+
"android_system_properties",
|
|
897
|
+
"core-foundation-sys",
|
|
898
|
+
"iana-time-zone-haiku",
|
|
899
|
+
"js-sys",
|
|
900
|
+
"log",
|
|
901
|
+
"wasm-bindgen",
|
|
902
|
+
"windows-core",
|
|
903
|
+
]
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "iana-time-zone-haiku"
|
|
907
|
+
version = "0.1.2"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
910
|
+
dependencies = [
|
|
911
|
+
"cc",
|
|
912
|
+
]
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "icu_collections"
|
|
916
|
+
version = "2.0.0"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
919
|
+
dependencies = [
|
|
920
|
+
"displaydoc",
|
|
921
|
+
"potential_utf",
|
|
922
|
+
"yoke",
|
|
923
|
+
"zerofrom",
|
|
924
|
+
"zerovec",
|
|
925
|
+
]
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "icu_locale_core"
|
|
929
|
+
version = "2.0.0"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
932
|
+
dependencies = [
|
|
933
|
+
"displaydoc",
|
|
934
|
+
"litemap",
|
|
935
|
+
"tinystr",
|
|
936
|
+
"writeable",
|
|
937
|
+
"zerovec",
|
|
938
|
+
]
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "icu_normalizer"
|
|
942
|
+
version = "2.0.0"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"displaydoc",
|
|
947
|
+
"icu_collections",
|
|
948
|
+
"icu_normalizer_data",
|
|
949
|
+
"icu_properties",
|
|
950
|
+
"icu_provider",
|
|
951
|
+
"smallvec",
|
|
952
|
+
"zerovec",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "icu_normalizer_data"
|
|
957
|
+
version = "2.0.0"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "icu_properties"
|
|
963
|
+
version = "2.0.1"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"displaydoc",
|
|
968
|
+
"icu_collections",
|
|
969
|
+
"icu_locale_core",
|
|
970
|
+
"icu_properties_data",
|
|
971
|
+
"icu_provider",
|
|
972
|
+
"potential_utf",
|
|
973
|
+
"zerotrie",
|
|
974
|
+
"zerovec",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "icu_properties_data"
|
|
979
|
+
version = "2.0.1"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "icu_provider"
|
|
985
|
+
version = "2.0.0"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"displaydoc",
|
|
990
|
+
"icu_locale_core",
|
|
991
|
+
"stable_deref_trait",
|
|
992
|
+
"tinystr",
|
|
993
|
+
"writeable",
|
|
994
|
+
"yoke",
|
|
995
|
+
"zerofrom",
|
|
996
|
+
"zerotrie",
|
|
997
|
+
"zerovec",
|
|
998
|
+
]
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "ident_case"
|
|
1002
|
+
version = "1.0.1"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "idna"
|
|
1008
|
+
version = "1.0.3"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
1011
|
+
dependencies = [
|
|
1012
|
+
"idna_adapter",
|
|
1013
|
+
"smallvec",
|
|
1014
|
+
"utf8_iter",
|
|
1015
|
+
]
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "idna_adapter"
|
|
1019
|
+
version = "1.2.1"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1022
|
+
dependencies = [
|
|
1023
|
+
"icu_normalizer",
|
|
1024
|
+
"icu_properties",
|
|
1025
|
+
]
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "image"
|
|
1029
|
+
version = "0.25.6"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a"
|
|
1032
|
+
dependencies = [
|
|
1033
|
+
"bytemuck",
|
|
1034
|
+
"byteorder-lite",
|
|
1035
|
+
"color_quant",
|
|
1036
|
+
"gif",
|
|
1037
|
+
"num-traits",
|
|
1038
|
+
"png",
|
|
1039
|
+
"zune-core",
|
|
1040
|
+
"zune-jpeg",
|
|
1041
|
+
]
|
|
1042
|
+
|
|
1043
|
+
[[package]]
|
|
1044
|
+
name = "indexmap"
|
|
1045
|
+
version = "2.9.0"
|
|
1046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1047
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
1048
|
+
dependencies = [
|
|
1049
|
+
"equivalent",
|
|
1050
|
+
"hashbrown",
|
|
1051
|
+
]
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "indoc"
|
|
1055
|
+
version = "2.0.6"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "is_terminal_polyfill"
|
|
1061
|
+
version = "1.70.1"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "itoa"
|
|
1067
|
+
version = "1.0.15"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1070
|
+
|
|
1071
|
+
[[package]]
|
|
1072
|
+
name = "jobserver"
|
|
1073
|
+
version = "0.1.33"
|
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
1076
|
+
dependencies = [
|
|
1077
|
+
"getrandom 0.3.3",
|
|
1078
|
+
"libc",
|
|
1079
|
+
]
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "js-sys"
|
|
1083
|
+
version = "0.3.77"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
1086
|
+
dependencies = [
|
|
1087
|
+
"once_cell",
|
|
1088
|
+
"wasm-bindgen",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "kernel32-sys"
|
|
1093
|
+
version = "0.2.2"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"winapi 0.2.8",
|
|
1098
|
+
"winapi-build",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "kv-log-macro"
|
|
1103
|
+
version = "1.0.7"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"log",
|
|
1108
|
+
]
|
|
1109
|
+
|
|
1110
|
+
[[package]]
|
|
1111
|
+
name = "lazy_static"
|
|
1112
|
+
version = "1.5.0"
|
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "libc"
|
|
1118
|
+
version = "0.2.173"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "d8cfeafaffdbc32176b64fb251369d52ea9f0a8fbc6f8759edffef7b525d64bb"
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "libloading"
|
|
1124
|
+
version = "0.8.8"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
1127
|
+
dependencies = [
|
|
1128
|
+
"cfg-if 1.0.1",
|
|
1129
|
+
"windows-targets 0.53.2",
|
|
1130
|
+
]
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "libredox"
|
|
1134
|
+
version = "0.1.3"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1137
|
+
dependencies = [
|
|
1138
|
+
"bitflags 2.9.1",
|
|
1139
|
+
"libc",
|
|
1140
|
+
]
|
|
1141
|
+
|
|
1142
|
+
[[package]]
|
|
1143
|
+
name = "libz-rs-sys"
|
|
1144
|
+
version = "0.5.1"
|
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
+
checksum = "172a788537a2221661b480fee8dc5f96c580eb34fa88764d3205dc356c7e4221"
|
|
1147
|
+
dependencies = [
|
|
1148
|
+
"zlib-rs",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "linkme"
|
|
1153
|
+
version = "0.3.33"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "a1b1703c00b2a6a70738920544aa51652532cacddfec2e162d2e29eae01e665c"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"linkme-impl",
|
|
1158
|
+
]
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "linkme-impl"
|
|
1162
|
+
version = "0.3.33"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "04d55ca5d5a14363da83bf3c33874b8feaa34653e760d5216d7ef9829c88001a"
|
|
1165
|
+
dependencies = [
|
|
1166
|
+
"proc-macro2",
|
|
1167
|
+
"quote",
|
|
1168
|
+
"syn 2.0.103",
|
|
1169
|
+
]
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "linux-raw-sys"
|
|
1173
|
+
version = "0.9.4"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "litemap"
|
|
1179
|
+
version = "0.8.0"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
1182
|
+
|
|
1183
|
+
[[package]]
|
|
1184
|
+
name = "log"
|
|
1185
|
+
version = "0.4.27"
|
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1188
|
+
dependencies = [
|
|
1189
|
+
"value-bag",
|
|
1190
|
+
]
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "log-derive"
|
|
1194
|
+
version = "0.4.1"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "6a42526bb432bcd1b43571d5f163984effa25409a29f1a3242a54d0577d55bcf"
|
|
1197
|
+
dependencies = [
|
|
1198
|
+
"darling",
|
|
1199
|
+
"proc-macro2",
|
|
1200
|
+
"quote",
|
|
1201
|
+
"syn 1.0.109",
|
|
1202
|
+
]
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "log-panics"
|
|
1206
|
+
version = "2.1.0"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "68f9dd8546191c1850ecf67d22f5ff00a935b890d0e84713159a55495cc2ac5f"
|
|
1209
|
+
dependencies = [
|
|
1210
|
+
"log",
|
|
1211
|
+
]
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "memchr"
|
|
1215
|
+
version = "2.7.5"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
1218
|
+
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "memmap2"
|
|
1221
|
+
version = "0.9.5"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
|
1224
|
+
dependencies = [
|
|
1225
|
+
"libc",
|
|
1226
|
+
]
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "memoffset"
|
|
1230
|
+
version = "0.9.1"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1233
|
+
dependencies = [
|
|
1234
|
+
"autocfg",
|
|
1235
|
+
]
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "miniz_oxide"
|
|
1239
|
+
version = "0.8.9"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1242
|
+
dependencies = [
|
|
1243
|
+
"adler2",
|
|
1244
|
+
"simd-adler32",
|
|
1245
|
+
]
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "neon"
|
|
1249
|
+
version = "1.1.1"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "74c1d298c79e60a3f5a1e638ace1f9c1229d2a97bd3a9e40a63b67c8efa0f1e1"
|
|
1252
|
+
dependencies = [
|
|
1253
|
+
"either",
|
|
1254
|
+
"getrandom 0.2.16",
|
|
1255
|
+
"libloading",
|
|
1256
|
+
"linkme",
|
|
1257
|
+
"neon-macros",
|
|
1258
|
+
"once_cell",
|
|
1259
|
+
"semver",
|
|
1260
|
+
"send_wrapper",
|
|
1261
|
+
"smallvec",
|
|
1262
|
+
]
|
|
1263
|
+
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "neon-macros"
|
|
1266
|
+
version = "1.1.1"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "c39e43767817fc963f90f400600967a2b2403602c6440685d09a6bc4e02b70b1"
|
|
1269
|
+
dependencies = [
|
|
1270
|
+
"proc-macro2",
|
|
1271
|
+
"quote",
|
|
1272
|
+
"syn 2.0.103",
|
|
1273
|
+
]
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "nix"
|
|
1277
|
+
version = "0.29.0"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
|
|
1280
|
+
dependencies = [
|
|
1281
|
+
"bitflags 2.9.1",
|
|
1282
|
+
"cfg-if 1.0.1",
|
|
1283
|
+
"cfg_aliases",
|
|
1284
|
+
"libc",
|
|
1285
|
+
]
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "normpath"
|
|
1289
|
+
version = "1.3.0"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "c8911957c4b1549ac0dc74e30db9c8b0e66ddcd6d7acc33098f4c63a64a6d7ed"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"windows-sys 0.59.0",
|
|
1294
|
+
]
|
|
1295
|
+
|
|
1296
|
+
[[package]]
|
|
1297
|
+
name = "ntest"
|
|
1298
|
+
version = "0.9.3"
|
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
+
checksum = "fb183f0a1da7a937f672e5ee7b7edb727bf52b8a52d531374ba8ebb9345c0330"
|
|
1301
|
+
dependencies = [
|
|
1302
|
+
"ntest_test_cases",
|
|
1303
|
+
"ntest_timeout",
|
|
1304
|
+
]
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "ntest_test_cases"
|
|
1308
|
+
version = "0.9.3"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "16d0d3f2a488592e5368ebbe996e7f1d44aa13156efad201f5b4d84e150eaa93"
|
|
1311
|
+
dependencies = [
|
|
1312
|
+
"proc-macro2",
|
|
1313
|
+
"quote",
|
|
1314
|
+
"syn 1.0.109",
|
|
1315
|
+
]
|
|
1316
|
+
|
|
1317
|
+
[[package]]
|
|
1318
|
+
name = "ntest_timeout"
|
|
1319
|
+
version = "0.9.3"
|
|
1320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1321
|
+
checksum = "fcc7c92f190c97f79b4a332f5e81dcf68c8420af2045c936c9be0bc9de6f63b5"
|
|
1322
|
+
dependencies = [
|
|
1323
|
+
"proc-macro-crate",
|
|
1324
|
+
"proc-macro2",
|
|
1325
|
+
"quote",
|
|
1326
|
+
"syn 1.0.109",
|
|
1327
|
+
]
|
|
1328
|
+
|
|
1329
|
+
[[package]]
|
|
1330
|
+
name = "num-conv"
|
|
1331
|
+
version = "0.1.0"
|
|
1332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1333
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1334
|
+
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "num-traits"
|
|
1337
|
+
version = "0.2.19"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1340
|
+
dependencies = [
|
|
1341
|
+
"autocfg",
|
|
1342
|
+
]
|
|
1343
|
+
|
|
1344
|
+
[[package]]
|
|
1345
|
+
name = "num_threads"
|
|
1346
|
+
version = "0.1.7"
|
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
+
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
|
1349
|
+
dependencies = [
|
|
1350
|
+
"libc",
|
|
1351
|
+
]
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "once_cell"
|
|
1355
|
+
version = "1.21.3"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "once_cell_polyfill"
|
|
1361
|
+
version = "1.70.1"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "os_info"
|
|
1367
|
+
version = "3.12.0"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "d0e1ac5fde8d43c34139135df8ea9ee9465394b2d8d20f032d38998f64afffc3"
|
|
1370
|
+
dependencies = [
|
|
1371
|
+
"log",
|
|
1372
|
+
"plist",
|
|
1373
|
+
"serde",
|
|
1374
|
+
"windows-sys 0.52.0",
|
|
1375
|
+
]
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "parking"
|
|
1379
|
+
version = "2.2.1"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "percent-encoding"
|
|
1385
|
+
version = "2.3.1"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "pin-project-lite"
|
|
1391
|
+
version = "0.2.16"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1394
|
+
|
|
1395
|
+
[[package]]
|
|
1396
|
+
name = "pin-utils"
|
|
1397
|
+
version = "0.1.0"
|
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "piper"
|
|
1403
|
+
version = "0.2.4"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
|
|
1406
|
+
dependencies = [
|
|
1407
|
+
"atomic-waker",
|
|
1408
|
+
"fastrand",
|
|
1409
|
+
"futures-io",
|
|
1410
|
+
]
|
|
1411
|
+
|
|
1412
|
+
[[package]]
|
|
1413
|
+
name = "pkg-config"
|
|
1414
|
+
version = "0.3.32"
|
|
1415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1417
|
+
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "plist"
|
|
1420
|
+
version = "1.7.2"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "3d77244ce2d584cd84f6a15f86195b8c9b2a0dfbfd817c09e0464244091a58ed"
|
|
1423
|
+
dependencies = [
|
|
1424
|
+
"base64",
|
|
1425
|
+
"indexmap",
|
|
1426
|
+
"quick-xml",
|
|
1427
|
+
"serde",
|
|
1428
|
+
"time 0.3.41",
|
|
1429
|
+
]
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "png"
|
|
1433
|
+
version = "0.17.16"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"bitflags 1.3.2",
|
|
1438
|
+
"crc32fast",
|
|
1439
|
+
"fdeflate",
|
|
1440
|
+
"flate2",
|
|
1441
|
+
"miniz_oxide",
|
|
1442
|
+
]
|
|
1443
|
+
|
|
1444
|
+
[[package]]
|
|
1445
|
+
name = "polling"
|
|
1446
|
+
version = "3.8.0"
|
|
1447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1448
|
+
checksum = "b53a684391ad002dd6a596ceb6c74fd004fdce75f4be2e3f615068abbea5fd50"
|
|
1449
|
+
dependencies = [
|
|
1450
|
+
"cfg-if 1.0.1",
|
|
1451
|
+
"concurrent-queue",
|
|
1452
|
+
"hermit-abi",
|
|
1453
|
+
"pin-project-lite",
|
|
1454
|
+
"rustix",
|
|
1455
|
+
"tracing",
|
|
1456
|
+
"windows-sys 0.59.0",
|
|
1457
|
+
]
|
|
1458
|
+
|
|
1459
|
+
[[package]]
|
|
1460
|
+
name = "portable-atomic"
|
|
1461
|
+
version = "1.11.1"
|
|
1462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1464
|
+
|
|
1465
|
+
[[package]]
|
|
1466
|
+
name = "potential_utf"
|
|
1467
|
+
version = "0.1.2"
|
|
1468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
|
1470
|
+
dependencies = [
|
|
1471
|
+
"zerovec",
|
|
1472
|
+
]
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "powerfmt"
|
|
1476
|
+
version = "0.2.0"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "ppv-lite86"
|
|
1482
|
+
version = "0.2.21"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1485
|
+
dependencies = [
|
|
1486
|
+
"zerocopy",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "pretty-bytes-rust"
|
|
1491
|
+
version = "0.3.0"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "fe9cf90f159a57d064a311cfcc6d65f189c12bf399080a7dd2b64de47181639b"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"clap",
|
|
1496
|
+
]
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "pretty_assertions"
|
|
1500
|
+
version = "1.4.1"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
1503
|
+
dependencies = [
|
|
1504
|
+
"diff",
|
|
1505
|
+
"yansi",
|
|
1506
|
+
]
|
|
1507
|
+
|
|
1508
|
+
[[package]]
|
|
1509
|
+
name = "proc-macro-crate"
|
|
1510
|
+
version = "3.3.0"
|
|
1511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1512
|
+
checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
|
|
1513
|
+
dependencies = [
|
|
1514
|
+
"toml_edit",
|
|
1515
|
+
]
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "proc-macro2"
|
|
1519
|
+
version = "1.0.95"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
1522
|
+
dependencies = [
|
|
1523
|
+
"unicode-ident",
|
|
1524
|
+
]
|
|
1525
|
+
|
|
1526
|
+
[[package]]
|
|
1527
|
+
name = "progress-streams"
|
|
1528
|
+
version = "1.1.0"
|
|
1529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
+
checksum = "e965d96c8162c607b0cd8d66047ad3c9fd35273c134d994327882c6e47f986a7"
|
|
1531
|
+
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "pyo3"
|
|
1534
|
+
version = "0.25.1"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"anyhow",
|
|
1539
|
+
"indoc",
|
|
1540
|
+
"libc",
|
|
1541
|
+
"memoffset",
|
|
1542
|
+
"once_cell",
|
|
1543
|
+
"portable-atomic",
|
|
1544
|
+
"pyo3-build-config",
|
|
1545
|
+
"pyo3-ffi",
|
|
1546
|
+
"pyo3-macros",
|
|
1547
|
+
"unindent",
|
|
1548
|
+
]
|
|
1549
|
+
|
|
1550
|
+
[[package]]
|
|
1551
|
+
name = "pyo3-build-config"
|
|
1552
|
+
version = "0.25.1"
|
|
1553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
1555
|
+
dependencies = [
|
|
1556
|
+
"once_cell",
|
|
1557
|
+
"target-lexicon",
|
|
1558
|
+
]
|
|
1559
|
+
|
|
1560
|
+
[[package]]
|
|
1561
|
+
name = "pyo3-ffi"
|
|
1562
|
+
version = "0.25.1"
|
|
1563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
1565
|
+
dependencies = [
|
|
1566
|
+
"libc",
|
|
1567
|
+
"pyo3-build-config",
|
|
1568
|
+
]
|
|
1569
|
+
|
|
1570
|
+
[[package]]
|
|
1571
|
+
name = "pyo3-log"
|
|
1572
|
+
version = "0.12.4"
|
|
1573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
+
checksum = "45192e5e4a4d2505587e27806c7b710c231c40c56f3bfc19535d0bb25df52264"
|
|
1575
|
+
dependencies = [
|
|
1576
|
+
"arc-swap",
|
|
1577
|
+
"log",
|
|
1578
|
+
"pyo3",
|
|
1579
|
+
]
|
|
1580
|
+
|
|
1581
|
+
[[package]]
|
|
1582
|
+
name = "pyo3-macros"
|
|
1583
|
+
version = "0.25.1"
|
|
1584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1585
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
1586
|
+
dependencies = [
|
|
1587
|
+
"proc-macro2",
|
|
1588
|
+
"pyo3-macros-backend",
|
|
1589
|
+
"quote",
|
|
1590
|
+
"syn 2.0.103",
|
|
1591
|
+
]
|
|
1592
|
+
|
|
1593
|
+
[[package]]
|
|
1594
|
+
name = "pyo3-macros-backend"
|
|
1595
|
+
version = "0.25.1"
|
|
1596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
1598
|
+
dependencies = [
|
|
1599
|
+
"heck",
|
|
1600
|
+
"proc-macro2",
|
|
1601
|
+
"pyo3-build-config",
|
|
1602
|
+
"quote",
|
|
1603
|
+
"syn 2.0.103",
|
|
1604
|
+
]
|
|
1605
|
+
|
|
1606
|
+
[[package]]
|
|
1607
|
+
name = "quick-xml"
|
|
1608
|
+
version = "0.37.5"
|
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
|
1611
|
+
dependencies = [
|
|
1612
|
+
"memchr",
|
|
1613
|
+
]
|
|
1614
|
+
|
|
1615
|
+
[[package]]
|
|
1616
|
+
name = "quote"
|
|
1617
|
+
version = "1.0.40"
|
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
1620
|
+
dependencies = [
|
|
1621
|
+
"proc-macro2",
|
|
1622
|
+
]
|
|
1623
|
+
|
|
1624
|
+
[[package]]
|
|
1625
|
+
name = "r-efi"
|
|
1626
|
+
version = "5.2.0"
|
|
1627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1628
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "rand"
|
|
1632
|
+
version = "0.9.1"
|
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
|
1635
|
+
dependencies = [
|
|
1636
|
+
"rand_chacha",
|
|
1637
|
+
"rand_core",
|
|
1638
|
+
]
|
|
1639
|
+
|
|
1640
|
+
[[package]]
|
|
1641
|
+
name = "rand_chacha"
|
|
1642
|
+
version = "0.9.0"
|
|
1643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1645
|
+
dependencies = [
|
|
1646
|
+
"ppv-lite86",
|
|
1647
|
+
"rand_core",
|
|
1648
|
+
]
|
|
1649
|
+
|
|
1650
|
+
[[package]]
|
|
1651
|
+
name = "rand_core"
|
|
1652
|
+
version = "0.9.3"
|
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
1655
|
+
dependencies = [
|
|
1656
|
+
"getrandom 0.3.3",
|
|
1657
|
+
]
|
|
1658
|
+
|
|
1659
|
+
[[package]]
|
|
1660
|
+
name = "rayon"
|
|
1661
|
+
version = "1.10.0"
|
|
1662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
1664
|
+
dependencies = [
|
|
1665
|
+
"either",
|
|
1666
|
+
"rayon-core",
|
|
1667
|
+
]
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "rayon-core"
|
|
1671
|
+
version = "1.12.1"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
1674
|
+
dependencies = [
|
|
1675
|
+
"crossbeam-deque",
|
|
1676
|
+
"crossbeam-utils",
|
|
1677
|
+
]
|
|
1678
|
+
|
|
1679
|
+
[[package]]
|
|
1680
|
+
name = "redox_users"
|
|
1681
|
+
version = "0.4.6"
|
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1683
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
1684
|
+
dependencies = [
|
|
1685
|
+
"getrandom 0.2.16",
|
|
1686
|
+
"libredox",
|
|
1687
|
+
"thiserror 1.0.69",
|
|
1688
|
+
]
|
|
1689
|
+
|
|
1690
|
+
[[package]]
|
|
1691
|
+
name = "regex"
|
|
1692
|
+
version = "1.11.1"
|
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
1695
|
+
dependencies = [
|
|
1696
|
+
"aho-corasick",
|
|
1697
|
+
"memchr",
|
|
1698
|
+
"regex-automata",
|
|
1699
|
+
"regex-syntax",
|
|
1700
|
+
]
|
|
1701
|
+
|
|
1702
|
+
[[package]]
|
|
1703
|
+
name = "regex-automata"
|
|
1704
|
+
version = "0.4.9"
|
|
1705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1706
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
1707
|
+
dependencies = [
|
|
1708
|
+
"aho-corasick",
|
|
1709
|
+
"memchr",
|
|
1710
|
+
"regex-syntax",
|
|
1711
|
+
]
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "regex-syntax"
|
|
1715
|
+
version = "0.8.5"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
1718
|
+
|
|
1719
|
+
[[package]]
|
|
1720
|
+
name = "remove_dir_all"
|
|
1721
|
+
version = "1.0.0"
|
|
1722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1723
|
+
checksum = "808cc0b475acf76adf36f08ca49429b12aad9f678cb56143d5b3cb49b9a1dd08"
|
|
1724
|
+
dependencies = [
|
|
1725
|
+
"cfg-if 1.0.1",
|
|
1726
|
+
"cvt",
|
|
1727
|
+
"fs_at",
|
|
1728
|
+
"libc",
|
|
1729
|
+
"normpath",
|
|
1730
|
+
"windows-sys 0.59.0",
|
|
1731
|
+
]
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "ring"
|
|
1735
|
+
version = "0.17.14"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1738
|
+
dependencies = [
|
|
1739
|
+
"cc",
|
|
1740
|
+
"cfg-if 1.0.1",
|
|
1741
|
+
"getrandom 0.2.16",
|
|
1742
|
+
"libc",
|
|
1743
|
+
"untrusted",
|
|
1744
|
+
"windows-sys 0.52.0",
|
|
1745
|
+
]
|
|
1746
|
+
|
|
1747
|
+
[[package]]
|
|
1748
|
+
name = "rpassword"
|
|
1749
|
+
version = "2.1.0"
|
|
1750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
+
checksum = "d37473170aedbe66ffa3ad3726939ba677d83c646ad4fd99e5b4bc38712f45ec"
|
|
1752
|
+
dependencies = [
|
|
1753
|
+
"kernel32-sys",
|
|
1754
|
+
"libc",
|
|
1755
|
+
"winapi 0.2.8",
|
|
1756
|
+
]
|
|
1757
|
+
|
|
1758
|
+
[[package]]
|
|
1759
|
+
name = "rustix"
|
|
1760
|
+
version = "1.0.7"
|
|
1761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
|
1763
|
+
dependencies = [
|
|
1764
|
+
"bitflags 2.9.1",
|
|
1765
|
+
"errno",
|
|
1766
|
+
"libc",
|
|
1767
|
+
"linux-raw-sys",
|
|
1768
|
+
"windows-sys 0.59.0",
|
|
1769
|
+
]
|
|
1770
|
+
|
|
1771
|
+
[[package]]
|
|
1772
|
+
name = "rustls"
|
|
1773
|
+
version = "0.23.27"
|
|
1774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1775
|
+
checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
|
|
1776
|
+
dependencies = [
|
|
1777
|
+
"log",
|
|
1778
|
+
"once_cell",
|
|
1779
|
+
"ring",
|
|
1780
|
+
"rustls-pki-types",
|
|
1781
|
+
"rustls-webpki",
|
|
1782
|
+
"subtle",
|
|
1783
|
+
"zeroize",
|
|
1784
|
+
]
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "rustls-pemfile"
|
|
1788
|
+
version = "2.2.0"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
1791
|
+
dependencies = [
|
|
1792
|
+
"rustls-pki-types",
|
|
1793
|
+
]
|
|
1794
|
+
|
|
1795
|
+
[[package]]
|
|
1796
|
+
name = "rustls-pki-types"
|
|
1797
|
+
version = "1.12.0"
|
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
|
1800
|
+
dependencies = [
|
|
1801
|
+
"zeroize",
|
|
1802
|
+
]
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "rustls-webpki"
|
|
1806
|
+
version = "0.103.3"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
|
|
1809
|
+
dependencies = [
|
|
1810
|
+
"ring",
|
|
1811
|
+
"rustls-pki-types",
|
|
1812
|
+
"untrusted",
|
|
1813
|
+
]
|
|
1814
|
+
|
|
1815
|
+
[[package]]
|
|
1816
|
+
name = "rustversion"
|
|
1817
|
+
version = "1.0.21"
|
|
1818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
|
1820
|
+
|
|
1821
|
+
[[package]]
|
|
1822
|
+
name = "ryu"
|
|
1823
|
+
version = "1.0.20"
|
|
1824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1826
|
+
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "same-file"
|
|
1829
|
+
version = "1.0.6"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1832
|
+
dependencies = [
|
|
1833
|
+
"winapi-util",
|
|
1834
|
+
]
|
|
1835
|
+
|
|
1836
|
+
[[package]]
|
|
1837
|
+
name = "semver"
|
|
1838
|
+
version = "1.0.26"
|
|
1839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1840
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
1841
|
+
|
|
1842
|
+
[[package]]
|
|
1843
|
+
name = "send_wrapper"
|
|
1844
|
+
version = "0.6.0"
|
|
1845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
+
checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
|
|
1847
|
+
|
|
1848
|
+
[[package]]
|
|
1849
|
+
name = "serde"
|
|
1850
|
+
version = "1.0.219"
|
|
1851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1852
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
1853
|
+
dependencies = [
|
|
1854
|
+
"serde_derive",
|
|
1855
|
+
]
|
|
1856
|
+
|
|
1857
|
+
[[package]]
|
|
1858
|
+
name = "serde_derive"
|
|
1859
|
+
version = "1.0.219"
|
|
1860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
1862
|
+
dependencies = [
|
|
1863
|
+
"proc-macro2",
|
|
1864
|
+
"quote",
|
|
1865
|
+
"syn 2.0.103",
|
|
1866
|
+
]
|
|
1867
|
+
|
|
1868
|
+
[[package]]
|
|
1869
|
+
name = "serde_json"
|
|
1870
|
+
version = "1.0.140"
|
|
1871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1872
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
1873
|
+
dependencies = [
|
|
1874
|
+
"itoa",
|
|
1875
|
+
"memchr",
|
|
1876
|
+
"ryu",
|
|
1877
|
+
"serde",
|
|
1878
|
+
]
|
|
1879
|
+
|
|
1880
|
+
[[package]]
|
|
1881
|
+
name = "serde_spanned"
|
|
1882
|
+
version = "0.6.9"
|
|
1883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
1885
|
+
dependencies = [
|
|
1886
|
+
"serde",
|
|
1887
|
+
]
|
|
1888
|
+
|
|
1889
|
+
[[package]]
|
|
1890
|
+
name = "sha1"
|
|
1891
|
+
version = "0.10.6"
|
|
1892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1893
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
1894
|
+
dependencies = [
|
|
1895
|
+
"cfg-if 1.0.1",
|
|
1896
|
+
"cpufeatures",
|
|
1897
|
+
"digest",
|
|
1898
|
+
]
|
|
1899
|
+
|
|
1900
|
+
[[package]]
|
|
1901
|
+
name = "sha1_smol"
|
|
1902
|
+
version = "1.0.1"
|
|
1903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1904
|
+
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
1905
|
+
|
|
1906
|
+
[[package]]
|
|
1907
|
+
name = "sha2"
|
|
1908
|
+
version = "0.10.9"
|
|
1909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1911
|
+
dependencies = [
|
|
1912
|
+
"cfg-if 1.0.1",
|
|
1913
|
+
"cpufeatures",
|
|
1914
|
+
"digest",
|
|
1915
|
+
]
|
|
1916
|
+
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "shlex"
|
|
1919
|
+
version = "1.3.0"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1922
|
+
|
|
1923
|
+
[[package]]
|
|
1924
|
+
name = "simd-adler32"
|
|
1925
|
+
version = "0.3.7"
|
|
1926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
1928
|
+
|
|
1929
|
+
[[package]]
|
|
1930
|
+
name = "simple-stopwatch"
|
|
1931
|
+
version = "0.1.4"
|
|
1932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
+
checksum = "ea0b3bc19fbfbbc5823eb4f9f52a94f98a97f7b265e96defe319dfdac9692b51"
|
|
1934
|
+
dependencies = [
|
|
1935
|
+
"time 0.1.45",
|
|
1936
|
+
]
|
|
1937
|
+
|
|
1938
|
+
[[package]]
|
|
1939
|
+
name = "simplelog"
|
|
1940
|
+
version = "0.12.2"
|
|
1941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
+
checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
|
|
1943
|
+
dependencies = [
|
|
1944
|
+
"log",
|
|
1945
|
+
"termcolor",
|
|
1946
|
+
"time 0.3.41",
|
|
1947
|
+
]
|
|
1948
|
+
|
|
1949
|
+
[[package]]
|
|
1950
|
+
name = "slab"
|
|
1951
|
+
version = "0.4.9"
|
|
1952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
1954
|
+
dependencies = [
|
|
1955
|
+
"autocfg",
|
|
1956
|
+
]
|
|
1957
|
+
|
|
1958
|
+
[[package]]
|
|
1959
|
+
name = "smallvec"
|
|
1960
|
+
version = "1.15.1"
|
|
1961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1962
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1963
|
+
|
|
1964
|
+
[[package]]
|
|
1965
|
+
name = "stable_deref_trait"
|
|
1966
|
+
version = "1.2.0"
|
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1968
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
1969
|
+
|
|
1970
|
+
[[package]]
|
|
1971
|
+
name = "strsim"
|
|
1972
|
+
version = "0.9.3"
|
|
1973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1974
|
+
checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
|
|
1975
|
+
|
|
1976
|
+
[[package]]
|
|
1977
|
+
name = "strsim"
|
|
1978
|
+
version = "0.11.1"
|
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1981
|
+
|
|
1982
|
+
[[package]]
|
|
1983
|
+
name = "strum"
|
|
1984
|
+
version = "0.27.1"
|
|
1985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
+
checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
|
|
1987
|
+
dependencies = [
|
|
1988
|
+
"strum_macros",
|
|
1989
|
+
]
|
|
1990
|
+
|
|
1991
|
+
[[package]]
|
|
1992
|
+
name = "strum_macros"
|
|
1993
|
+
version = "0.27.1"
|
|
1994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1995
|
+
checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
|
|
1996
|
+
dependencies = [
|
|
1997
|
+
"heck",
|
|
1998
|
+
"proc-macro2",
|
|
1999
|
+
"quote",
|
|
2000
|
+
"rustversion",
|
|
2001
|
+
"syn 2.0.103",
|
|
2002
|
+
]
|
|
2003
|
+
|
|
2004
|
+
[[package]]
|
|
2005
|
+
name = "subtle"
|
|
2006
|
+
version = "2.6.1"
|
|
2007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2008
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2009
|
+
|
|
2010
|
+
[[package]]
|
|
2011
|
+
name = "syn"
|
|
2012
|
+
version = "1.0.109"
|
|
2013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2015
|
+
dependencies = [
|
|
2016
|
+
"proc-macro2",
|
|
2017
|
+
"quote",
|
|
2018
|
+
"unicode-ident",
|
|
2019
|
+
]
|
|
2020
|
+
|
|
2021
|
+
[[package]]
|
|
2022
|
+
name = "syn"
|
|
2023
|
+
version = "2.0.103"
|
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
+
checksum = "e4307e30089d6fd6aff212f2da3a1f9e32f3223b1f010fb09b7c95f90f3ca1e8"
|
|
2026
|
+
dependencies = [
|
|
2027
|
+
"proc-macro2",
|
|
2028
|
+
"quote",
|
|
2029
|
+
"unicode-ident",
|
|
2030
|
+
]
|
|
2031
|
+
|
|
2032
|
+
[[package]]
|
|
2033
|
+
name = "synstructure"
|
|
2034
|
+
version = "0.13.2"
|
|
2035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2036
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2037
|
+
dependencies = [
|
|
2038
|
+
"proc-macro2",
|
|
2039
|
+
"quote",
|
|
2040
|
+
"syn 2.0.103",
|
|
2041
|
+
]
|
|
2042
|
+
|
|
2043
|
+
[[package]]
|
|
2044
|
+
name = "target-lexicon"
|
|
2045
|
+
version = "0.13.2"
|
|
2046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2047
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
2048
|
+
|
|
2049
|
+
[[package]]
|
|
2050
|
+
name = "tempfile"
|
|
2051
|
+
version = "3.20.0"
|
|
2052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
|
2054
|
+
dependencies = [
|
|
2055
|
+
"fastrand",
|
|
2056
|
+
"getrandom 0.3.3",
|
|
2057
|
+
"once_cell",
|
|
2058
|
+
"rustix",
|
|
2059
|
+
"windows-sys 0.59.0",
|
|
2060
|
+
]
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "termcolor"
|
|
2064
|
+
version = "1.4.1"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
2067
|
+
dependencies = [
|
|
2068
|
+
"winapi-util",
|
|
2069
|
+
]
|
|
2070
|
+
|
|
2071
|
+
[[package]]
|
|
2072
|
+
name = "thiserror"
|
|
2073
|
+
version = "1.0.69"
|
|
2074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2075
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2076
|
+
dependencies = [
|
|
2077
|
+
"thiserror-impl 1.0.69",
|
|
2078
|
+
]
|
|
2079
|
+
|
|
2080
|
+
[[package]]
|
|
2081
|
+
name = "thiserror"
|
|
2082
|
+
version = "2.0.12"
|
|
2083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2084
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
2085
|
+
dependencies = [
|
|
2086
|
+
"thiserror-impl 2.0.12",
|
|
2087
|
+
]
|
|
2088
|
+
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "thiserror-impl"
|
|
2091
|
+
version = "1.0.69"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2094
|
+
dependencies = [
|
|
2095
|
+
"proc-macro2",
|
|
2096
|
+
"quote",
|
|
2097
|
+
"syn 2.0.103",
|
|
2098
|
+
]
|
|
2099
|
+
|
|
2100
|
+
[[package]]
|
|
2101
|
+
name = "thiserror-impl"
|
|
2102
|
+
version = "2.0.12"
|
|
2103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
2105
|
+
dependencies = [
|
|
2106
|
+
"proc-macro2",
|
|
2107
|
+
"quote",
|
|
2108
|
+
"syn 2.0.103",
|
|
2109
|
+
]
|
|
2110
|
+
|
|
2111
|
+
[[package]]
|
|
2112
|
+
name = "time"
|
|
2113
|
+
version = "0.1.45"
|
|
2114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2115
|
+
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
|
|
2116
|
+
dependencies = [
|
|
2117
|
+
"libc",
|
|
2118
|
+
"wasi 0.10.0+wasi-snapshot-preview1",
|
|
2119
|
+
"winapi 0.3.9",
|
|
2120
|
+
]
|
|
2121
|
+
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "time"
|
|
2124
|
+
version = "0.3.41"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
2127
|
+
dependencies = [
|
|
2128
|
+
"deranged",
|
|
2129
|
+
"itoa",
|
|
2130
|
+
"libc",
|
|
2131
|
+
"num-conv",
|
|
2132
|
+
"num_threads",
|
|
2133
|
+
"powerfmt",
|
|
2134
|
+
"serde",
|
|
2135
|
+
"time-core",
|
|
2136
|
+
"time-macros",
|
|
2137
|
+
]
|
|
2138
|
+
|
|
2139
|
+
[[package]]
|
|
2140
|
+
name = "time-core"
|
|
2141
|
+
version = "0.1.4"
|
|
2142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
2144
|
+
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "time-macros"
|
|
2147
|
+
version = "0.2.22"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
|
2150
|
+
dependencies = [
|
|
2151
|
+
"num-conv",
|
|
2152
|
+
"time-core",
|
|
2153
|
+
]
|
|
2154
|
+
|
|
2155
|
+
[[package]]
|
|
2156
|
+
name = "tinystr"
|
|
2157
|
+
version = "0.8.1"
|
|
2158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2159
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
2160
|
+
dependencies = [
|
|
2161
|
+
"displaydoc",
|
|
2162
|
+
"zerovec",
|
|
2163
|
+
]
|
|
2164
|
+
|
|
2165
|
+
[[package]]
|
|
2166
|
+
name = "toml"
|
|
2167
|
+
version = "0.5.11"
|
|
2168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2169
|
+
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
|
2170
|
+
dependencies = [
|
|
2171
|
+
"serde",
|
|
2172
|
+
]
|
|
2173
|
+
|
|
2174
|
+
[[package]]
|
|
2175
|
+
name = "toml"
|
|
2176
|
+
version = "0.8.23"
|
|
2177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2178
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
2179
|
+
dependencies = [
|
|
2180
|
+
"serde",
|
|
2181
|
+
"serde_spanned",
|
|
2182
|
+
"toml_datetime",
|
|
2183
|
+
"toml_edit",
|
|
2184
|
+
]
|
|
2185
|
+
|
|
2186
|
+
[[package]]
|
|
2187
|
+
name = "toml_datetime"
|
|
2188
|
+
version = "0.6.11"
|
|
2189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2190
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
2191
|
+
dependencies = [
|
|
2192
|
+
"serde",
|
|
2193
|
+
]
|
|
2194
|
+
|
|
2195
|
+
[[package]]
|
|
2196
|
+
name = "toml_edit"
|
|
2197
|
+
version = "0.22.27"
|
|
2198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2199
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
2200
|
+
dependencies = [
|
|
2201
|
+
"indexmap",
|
|
2202
|
+
"serde",
|
|
2203
|
+
"serde_spanned",
|
|
2204
|
+
"toml_datetime",
|
|
2205
|
+
"toml_write",
|
|
2206
|
+
"winnow",
|
|
2207
|
+
]
|
|
2208
|
+
|
|
2209
|
+
[[package]]
|
|
2210
|
+
name = "toml_write"
|
|
2211
|
+
version = "0.1.2"
|
|
2212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2213
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
2214
|
+
|
|
2215
|
+
[[package]]
|
|
2216
|
+
name = "tracing"
|
|
2217
|
+
version = "0.1.41"
|
|
2218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
2220
|
+
dependencies = [
|
|
2221
|
+
"pin-project-lite",
|
|
2222
|
+
"tracing-core",
|
|
2223
|
+
]
|
|
2224
|
+
|
|
2225
|
+
[[package]]
|
|
2226
|
+
name = "tracing-core"
|
|
2227
|
+
version = "0.1.34"
|
|
2228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2229
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
2230
|
+
|
|
2231
|
+
[[package]]
|
|
2232
|
+
name = "ts-rs"
|
|
2233
|
+
version = "10.1.0"
|
|
2234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2235
|
+
checksum = "e640d9b0964e9d39df633548591090ab92f7a4567bc31d3891af23471a3365c6"
|
|
2236
|
+
dependencies = [
|
|
2237
|
+
"lazy_static",
|
|
2238
|
+
"thiserror 2.0.12",
|
|
2239
|
+
"ts-rs-macros",
|
|
2240
|
+
]
|
|
2241
|
+
|
|
2242
|
+
[[package]]
|
|
2243
|
+
name = "ts-rs-macros"
|
|
2244
|
+
version = "10.1.0"
|
|
2245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
+
checksum = "0e9d8656589772eeec2cf7a8264d9cda40fb28b9bc53118ceb9e8c07f8f38730"
|
|
2247
|
+
dependencies = [
|
|
2248
|
+
"proc-macro2",
|
|
2249
|
+
"quote",
|
|
2250
|
+
"syn 2.0.103",
|
|
2251
|
+
"termcolor",
|
|
2252
|
+
]
|
|
2253
|
+
|
|
2254
|
+
[[package]]
|
|
2255
|
+
name = "typenum"
|
|
2256
|
+
version = "1.18.0"
|
|
2257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2258
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
2259
|
+
|
|
2260
|
+
[[package]]
|
|
2261
|
+
name = "unicode-ident"
|
|
2262
|
+
version = "1.0.18"
|
|
2263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2264
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
2265
|
+
|
|
2266
|
+
[[package]]
|
|
2267
|
+
name = "unindent"
|
|
2268
|
+
version = "0.2.4"
|
|
2269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2270
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
2271
|
+
|
|
2272
|
+
[[package]]
|
|
2273
|
+
name = "untrusted"
|
|
2274
|
+
version = "0.9.0"
|
|
2275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2276
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2277
|
+
|
|
2278
|
+
[[package]]
|
|
2279
|
+
name = "ureq"
|
|
2280
|
+
version = "3.0.11"
|
|
2281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2282
|
+
checksum = "b7a3e9af6113ecd57b8c63d3cd76a385b2e3881365f1f489e54f49801d0c83ea"
|
|
2283
|
+
dependencies = [
|
|
2284
|
+
"base64",
|
|
2285
|
+
"flate2",
|
|
2286
|
+
"log",
|
|
2287
|
+
"percent-encoding",
|
|
2288
|
+
"rustls",
|
|
2289
|
+
"rustls-pemfile",
|
|
2290
|
+
"rustls-pki-types",
|
|
2291
|
+
"ureq-proto",
|
|
2292
|
+
"utf-8",
|
|
2293
|
+
"webpki-roots 0.26.11",
|
|
2294
|
+
]
|
|
2295
|
+
|
|
2296
|
+
[[package]]
|
|
2297
|
+
name = "ureq-proto"
|
|
2298
|
+
version = "0.4.1"
|
|
2299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2300
|
+
checksum = "fadf18427d33828c311234884b7ba2afb57143e6e7e69fda7ee883b624661e36"
|
|
2301
|
+
dependencies = [
|
|
2302
|
+
"base64",
|
|
2303
|
+
"http",
|
|
2304
|
+
"httparse",
|
|
2305
|
+
"log",
|
|
2306
|
+
]
|
|
2307
|
+
|
|
2308
|
+
[[package]]
|
|
2309
|
+
name = "url"
|
|
2310
|
+
version = "2.5.4"
|
|
2311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
2313
|
+
dependencies = [
|
|
2314
|
+
"form_urlencoded",
|
|
2315
|
+
"idna",
|
|
2316
|
+
"percent-encoding",
|
|
2317
|
+
]
|
|
2318
|
+
|
|
2319
|
+
[[package]]
|
|
2320
|
+
name = "utf-8"
|
|
2321
|
+
version = "0.7.6"
|
|
2322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2323
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
2324
|
+
|
|
2325
|
+
[[package]]
|
|
2326
|
+
name = "utf8_iter"
|
|
2327
|
+
version = "1.0.4"
|
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2330
|
+
|
|
2331
|
+
[[package]]
|
|
2332
|
+
name = "utf8parse"
|
|
2333
|
+
version = "0.2.2"
|
|
2334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2336
|
+
|
|
2337
|
+
[[package]]
|
|
2338
|
+
name = "uuid"
|
|
2339
|
+
version = "1.17.0"
|
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
|
2342
|
+
dependencies = [
|
|
2343
|
+
"getrandom 0.3.3",
|
|
2344
|
+
"js-sys",
|
|
2345
|
+
"rand",
|
|
2346
|
+
"uuid-macro-internal",
|
|
2347
|
+
"wasm-bindgen",
|
|
2348
|
+
]
|
|
2349
|
+
|
|
2350
|
+
[[package]]
|
|
2351
|
+
name = "uuid-macro-internal"
|
|
2352
|
+
version = "1.17.0"
|
|
2353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
+
checksum = "26b682e8c381995ea03130e381928e0e005b7c9eb483c6c8682f50e07b33c2b7"
|
|
2355
|
+
dependencies = [
|
|
2356
|
+
"proc-macro2",
|
|
2357
|
+
"quote",
|
|
2358
|
+
"syn 2.0.103",
|
|
2359
|
+
]
|
|
2360
|
+
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "value-bag"
|
|
2363
|
+
version = "1.11.1"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5"
|
|
2366
|
+
|
|
2367
|
+
[[package]]
|
|
2368
|
+
name = "velopack"
|
|
2369
|
+
version = "0.0.1331-g112f46f"
|
|
2370
|
+
dependencies = [
|
|
2371
|
+
"async-std",
|
|
2372
|
+
"bitflags 2.9.1",
|
|
2373
|
+
"derivative",
|
|
2374
|
+
"glob",
|
|
2375
|
+
"lazy_static",
|
|
2376
|
+
"libc",
|
|
2377
|
+
"log",
|
|
2378
|
+
"log-panics",
|
|
2379
|
+
"normpath",
|
|
2380
|
+
"rand",
|
|
2381
|
+
"regex",
|
|
2382
|
+
"semver",
|
|
2383
|
+
"serde",
|
|
2384
|
+
"serde_json",
|
|
2385
|
+
"sha1",
|
|
2386
|
+
"sha2",
|
|
2387
|
+
"simplelog",
|
|
2388
|
+
"tempfile",
|
|
2389
|
+
"thiserror 2.0.12",
|
|
2390
|
+
"time 0.3.41",
|
|
2391
|
+
"ts-rs",
|
|
2392
|
+
"ureq",
|
|
2393
|
+
"url",
|
|
2394
|
+
"uuid",
|
|
2395
|
+
"windows",
|
|
2396
|
+
"xml",
|
|
2397
|
+
"zip",
|
|
2398
|
+
]
|
|
2399
|
+
|
|
2400
|
+
[[package]]
|
|
2401
|
+
name = "velopack_bins"
|
|
2402
|
+
version = "0.0.1331-g112f46f"
|
|
2403
|
+
dependencies = [
|
|
2404
|
+
"anyhow",
|
|
2405
|
+
"bitflags 2.9.1",
|
|
2406
|
+
"chrono",
|
|
2407
|
+
"clap",
|
|
2408
|
+
"core-foundation",
|
|
2409
|
+
"core-foundation-sys",
|
|
2410
|
+
"derivative",
|
|
2411
|
+
"dialog",
|
|
2412
|
+
"enum-flags",
|
|
2413
|
+
"flate2",
|
|
2414
|
+
"fs_extra",
|
|
2415
|
+
"glob",
|
|
2416
|
+
"image",
|
|
2417
|
+
"lazy_static",
|
|
2418
|
+
"libc",
|
|
2419
|
+
"libloading",
|
|
2420
|
+
"log",
|
|
2421
|
+
"log-panics",
|
|
2422
|
+
"memmap2",
|
|
2423
|
+
"normpath",
|
|
2424
|
+
"ntest",
|
|
2425
|
+
"os_info",
|
|
2426
|
+
"pretty-bytes-rust",
|
|
2427
|
+
"pretty_assertions",
|
|
2428
|
+
"progress-streams",
|
|
2429
|
+
"rand",
|
|
2430
|
+
"rayon",
|
|
2431
|
+
"regex",
|
|
2432
|
+
"remove_dir_all",
|
|
2433
|
+
"same-file",
|
|
2434
|
+
"semver",
|
|
2435
|
+
"sha1_smol",
|
|
2436
|
+
"simple-stopwatch",
|
|
2437
|
+
"simplelog",
|
|
2438
|
+
"strsim 0.11.1",
|
|
2439
|
+
"strum",
|
|
2440
|
+
"tempfile",
|
|
2441
|
+
"time 0.3.41",
|
|
2442
|
+
"velopack",
|
|
2443
|
+
"wait-timeout",
|
|
2444
|
+
"waitpid-any",
|
|
2445
|
+
"walkdir",
|
|
2446
|
+
"webview2-com-sys",
|
|
2447
|
+
"windows",
|
|
2448
|
+
"winres",
|
|
2449
|
+
"winsafe",
|
|
2450
|
+
"zip",
|
|
2451
|
+
"zstd",
|
|
2452
|
+
]
|
|
2453
|
+
|
|
2454
|
+
[[package]]
|
|
2455
|
+
name = "velopack_libc"
|
|
2456
|
+
version = "0.0.1331-g112f46f"
|
|
2457
|
+
dependencies = [
|
|
2458
|
+
"anyhow",
|
|
2459
|
+
"cbindgen",
|
|
2460
|
+
"lazy_static",
|
|
2461
|
+
"libc",
|
|
2462
|
+
"log",
|
|
2463
|
+
"log-derive",
|
|
2464
|
+
"serde_json",
|
|
2465
|
+
"simplelog",
|
|
2466
|
+
"velopack",
|
|
2467
|
+
]
|
|
2468
|
+
|
|
2469
|
+
[[package]]
|
|
2470
|
+
name = "velopack_nodeffi"
|
|
2471
|
+
version = "0.0.1331-g112f46f"
|
|
2472
|
+
dependencies = [
|
|
2473
|
+
"lazy_static",
|
|
2474
|
+
"log",
|
|
2475
|
+
"neon",
|
|
2476
|
+
"semver",
|
|
2477
|
+
"serde_json",
|
|
2478
|
+
"simplelog",
|
|
2479
|
+
"ts-rs",
|
|
2480
|
+
"velopack",
|
|
2481
|
+
]
|
|
2482
|
+
|
|
2483
|
+
[[package]]
|
|
2484
|
+
name = "velopack_python"
|
|
2485
|
+
version = "0.0.0"
|
|
2486
|
+
dependencies = [
|
|
2487
|
+
"anyhow",
|
|
2488
|
+
"pyo3",
|
|
2489
|
+
"pyo3-build-config",
|
|
2490
|
+
"pyo3-log",
|
|
2491
|
+
"velopack",
|
|
2492
|
+
]
|
|
2493
|
+
|
|
2494
|
+
[[package]]
|
|
2495
|
+
name = "version_check"
|
|
2496
|
+
version = "0.9.5"
|
|
2497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2498
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2499
|
+
|
|
2500
|
+
[[package]]
|
|
2501
|
+
name = "wait-timeout"
|
|
2502
|
+
version = "0.2.1"
|
|
2503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2504
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
2505
|
+
dependencies = [
|
|
2506
|
+
"libc",
|
|
2507
|
+
]
|
|
2508
|
+
|
|
2509
|
+
[[package]]
|
|
2510
|
+
name = "waitpid-any"
|
|
2511
|
+
version = "0.3.0"
|
|
2512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2513
|
+
checksum = "18aa3ce681e189f125c4c1e1388c03285e2fd434ef52c7203084012ac29c5e4a"
|
|
2514
|
+
dependencies = [
|
|
2515
|
+
"rustix",
|
|
2516
|
+
"windows-sys 0.59.0",
|
|
2517
|
+
]
|
|
2518
|
+
|
|
2519
|
+
[[package]]
|
|
2520
|
+
name = "walkdir"
|
|
2521
|
+
version = "2.5.0"
|
|
2522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2523
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2524
|
+
dependencies = [
|
|
2525
|
+
"same-file",
|
|
2526
|
+
"winapi-util",
|
|
2527
|
+
]
|
|
2528
|
+
|
|
2529
|
+
[[package]]
|
|
2530
|
+
name = "wasi"
|
|
2531
|
+
version = "0.10.0+wasi-snapshot-preview1"
|
|
2532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2533
|
+
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
|
|
2534
|
+
|
|
2535
|
+
[[package]]
|
|
2536
|
+
name = "wasi"
|
|
2537
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2539
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2540
|
+
|
|
2541
|
+
[[package]]
|
|
2542
|
+
name = "wasi"
|
|
2543
|
+
version = "0.14.2+wasi-0.2.4"
|
|
2544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2545
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
2546
|
+
dependencies = [
|
|
2547
|
+
"wit-bindgen-rt",
|
|
2548
|
+
]
|
|
2549
|
+
|
|
2550
|
+
[[package]]
|
|
2551
|
+
name = "wasm-bindgen"
|
|
2552
|
+
version = "0.2.100"
|
|
2553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2554
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
2555
|
+
dependencies = [
|
|
2556
|
+
"cfg-if 1.0.1",
|
|
2557
|
+
"once_cell",
|
|
2558
|
+
"rustversion",
|
|
2559
|
+
"wasm-bindgen-macro",
|
|
2560
|
+
]
|
|
2561
|
+
|
|
2562
|
+
[[package]]
|
|
2563
|
+
name = "wasm-bindgen-backend"
|
|
2564
|
+
version = "0.2.100"
|
|
2565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2566
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
2567
|
+
dependencies = [
|
|
2568
|
+
"bumpalo",
|
|
2569
|
+
"log",
|
|
2570
|
+
"proc-macro2",
|
|
2571
|
+
"quote",
|
|
2572
|
+
"syn 2.0.103",
|
|
2573
|
+
"wasm-bindgen-shared",
|
|
2574
|
+
]
|
|
2575
|
+
|
|
2576
|
+
[[package]]
|
|
2577
|
+
name = "wasm-bindgen-futures"
|
|
2578
|
+
version = "0.4.50"
|
|
2579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2580
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
2581
|
+
dependencies = [
|
|
2582
|
+
"cfg-if 1.0.1",
|
|
2583
|
+
"js-sys",
|
|
2584
|
+
"once_cell",
|
|
2585
|
+
"wasm-bindgen",
|
|
2586
|
+
"web-sys",
|
|
2587
|
+
]
|
|
2588
|
+
|
|
2589
|
+
[[package]]
|
|
2590
|
+
name = "wasm-bindgen-macro"
|
|
2591
|
+
version = "0.2.100"
|
|
2592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
2594
|
+
dependencies = [
|
|
2595
|
+
"quote",
|
|
2596
|
+
"wasm-bindgen-macro-support",
|
|
2597
|
+
]
|
|
2598
|
+
|
|
2599
|
+
[[package]]
|
|
2600
|
+
name = "wasm-bindgen-macro-support"
|
|
2601
|
+
version = "0.2.100"
|
|
2602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2603
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
2604
|
+
dependencies = [
|
|
2605
|
+
"proc-macro2",
|
|
2606
|
+
"quote",
|
|
2607
|
+
"syn 2.0.103",
|
|
2608
|
+
"wasm-bindgen-backend",
|
|
2609
|
+
"wasm-bindgen-shared",
|
|
2610
|
+
]
|
|
2611
|
+
|
|
2612
|
+
[[package]]
|
|
2613
|
+
name = "wasm-bindgen-shared"
|
|
2614
|
+
version = "0.2.100"
|
|
2615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2616
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
2617
|
+
dependencies = [
|
|
2618
|
+
"unicode-ident",
|
|
2619
|
+
]
|
|
2620
|
+
|
|
2621
|
+
[[package]]
|
|
2622
|
+
name = "web-sys"
|
|
2623
|
+
version = "0.3.77"
|
|
2624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
2626
|
+
dependencies = [
|
|
2627
|
+
"js-sys",
|
|
2628
|
+
"wasm-bindgen",
|
|
2629
|
+
]
|
|
2630
|
+
|
|
2631
|
+
[[package]]
|
|
2632
|
+
name = "webpki-roots"
|
|
2633
|
+
version = "0.26.11"
|
|
2634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2635
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
2636
|
+
dependencies = [
|
|
2637
|
+
"webpki-roots 1.0.0",
|
|
2638
|
+
]
|
|
2639
|
+
|
|
2640
|
+
[[package]]
|
|
2641
|
+
name = "webpki-roots"
|
|
2642
|
+
version = "1.0.0"
|
|
2643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2644
|
+
checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb"
|
|
2645
|
+
dependencies = [
|
|
2646
|
+
"rustls-pki-types",
|
|
2647
|
+
]
|
|
2648
|
+
|
|
2649
|
+
[[package]]
|
|
2650
|
+
name = "webview2-com-sys"
|
|
2651
|
+
version = "0.37.0"
|
|
2652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2653
|
+
checksum = "8ae2d11c4a686e4409659d7891791254cf9286d3cfe0eef54df1523533d22295"
|
|
2654
|
+
dependencies = [
|
|
2655
|
+
"thiserror 2.0.12",
|
|
2656
|
+
"windows",
|
|
2657
|
+
"windows-core",
|
|
2658
|
+
]
|
|
2659
|
+
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "weezl"
|
|
2662
|
+
version = "0.1.10"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3"
|
|
2665
|
+
|
|
2666
|
+
[[package]]
|
|
2667
|
+
name = "winapi"
|
|
2668
|
+
version = "0.2.8"
|
|
2669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2670
|
+
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
|
|
2671
|
+
|
|
2672
|
+
[[package]]
|
|
2673
|
+
name = "winapi"
|
|
2674
|
+
version = "0.3.9"
|
|
2675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2676
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2677
|
+
dependencies = [
|
|
2678
|
+
"winapi-i686-pc-windows-gnu",
|
|
2679
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2680
|
+
]
|
|
2681
|
+
|
|
2682
|
+
[[package]]
|
|
2683
|
+
name = "winapi-build"
|
|
2684
|
+
version = "0.1.1"
|
|
2685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2686
|
+
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
|
|
2687
|
+
|
|
2688
|
+
[[package]]
|
|
2689
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2690
|
+
version = "0.4.0"
|
|
2691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2692
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2693
|
+
|
|
2694
|
+
[[package]]
|
|
2695
|
+
name = "winapi-util"
|
|
2696
|
+
version = "0.1.9"
|
|
2697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2698
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
2699
|
+
dependencies = [
|
|
2700
|
+
"windows-sys 0.59.0",
|
|
2701
|
+
]
|
|
2702
|
+
|
|
2703
|
+
[[package]]
|
|
2704
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2705
|
+
version = "0.4.0"
|
|
2706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2708
|
+
|
|
2709
|
+
[[package]]
|
|
2710
|
+
name = "windows"
|
|
2711
|
+
version = "0.61.3"
|
|
2712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2713
|
+
checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
|
|
2714
|
+
dependencies = [
|
|
2715
|
+
"windows-collections",
|
|
2716
|
+
"windows-core",
|
|
2717
|
+
"windows-future",
|
|
2718
|
+
"windows-link",
|
|
2719
|
+
"windows-numerics",
|
|
2720
|
+
]
|
|
2721
|
+
|
|
2722
|
+
[[package]]
|
|
2723
|
+
name = "windows-collections"
|
|
2724
|
+
version = "0.2.0"
|
|
2725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2726
|
+
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
|
|
2727
|
+
dependencies = [
|
|
2728
|
+
"windows-core",
|
|
2729
|
+
]
|
|
2730
|
+
|
|
2731
|
+
[[package]]
|
|
2732
|
+
name = "windows-core"
|
|
2733
|
+
version = "0.61.2"
|
|
2734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2735
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
2736
|
+
dependencies = [
|
|
2737
|
+
"windows-implement",
|
|
2738
|
+
"windows-interface",
|
|
2739
|
+
"windows-link",
|
|
2740
|
+
"windows-result",
|
|
2741
|
+
"windows-strings",
|
|
2742
|
+
]
|
|
2743
|
+
|
|
2744
|
+
[[package]]
|
|
2745
|
+
name = "windows-future"
|
|
2746
|
+
version = "0.2.1"
|
|
2747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
+
checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
|
|
2749
|
+
dependencies = [
|
|
2750
|
+
"windows-core",
|
|
2751
|
+
"windows-link",
|
|
2752
|
+
"windows-threading",
|
|
2753
|
+
]
|
|
2754
|
+
|
|
2755
|
+
[[package]]
|
|
2756
|
+
name = "windows-implement"
|
|
2757
|
+
version = "0.60.0"
|
|
2758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2759
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
2760
|
+
dependencies = [
|
|
2761
|
+
"proc-macro2",
|
|
2762
|
+
"quote",
|
|
2763
|
+
"syn 2.0.103",
|
|
2764
|
+
]
|
|
2765
|
+
|
|
2766
|
+
[[package]]
|
|
2767
|
+
name = "windows-interface"
|
|
2768
|
+
version = "0.59.1"
|
|
2769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2770
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
2771
|
+
dependencies = [
|
|
2772
|
+
"proc-macro2",
|
|
2773
|
+
"quote",
|
|
2774
|
+
"syn 2.0.103",
|
|
2775
|
+
]
|
|
2776
|
+
|
|
2777
|
+
[[package]]
|
|
2778
|
+
name = "windows-link"
|
|
2779
|
+
version = "0.1.3"
|
|
2780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2781
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
2782
|
+
|
|
2783
|
+
[[package]]
|
|
2784
|
+
name = "windows-numerics"
|
|
2785
|
+
version = "0.2.0"
|
|
2786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2787
|
+
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
|
|
2788
|
+
dependencies = [
|
|
2789
|
+
"windows-core",
|
|
2790
|
+
"windows-link",
|
|
2791
|
+
]
|
|
2792
|
+
|
|
2793
|
+
[[package]]
|
|
2794
|
+
name = "windows-result"
|
|
2795
|
+
version = "0.3.4"
|
|
2796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2797
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
2798
|
+
dependencies = [
|
|
2799
|
+
"windows-link",
|
|
2800
|
+
]
|
|
2801
|
+
|
|
2802
|
+
[[package]]
|
|
2803
|
+
name = "windows-strings"
|
|
2804
|
+
version = "0.4.2"
|
|
2805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2806
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
2807
|
+
dependencies = [
|
|
2808
|
+
"windows-link",
|
|
2809
|
+
]
|
|
2810
|
+
|
|
2811
|
+
[[package]]
|
|
2812
|
+
name = "windows-sys"
|
|
2813
|
+
version = "0.52.0"
|
|
2814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2815
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2816
|
+
dependencies = [
|
|
2817
|
+
"windows-targets 0.52.6",
|
|
2818
|
+
]
|
|
2819
|
+
|
|
2820
|
+
[[package]]
|
|
2821
|
+
name = "windows-sys"
|
|
2822
|
+
version = "0.59.0"
|
|
2823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2824
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
2825
|
+
dependencies = [
|
|
2826
|
+
"windows-targets 0.52.6",
|
|
2827
|
+
]
|
|
2828
|
+
|
|
2829
|
+
[[package]]
|
|
2830
|
+
name = "windows-targets"
|
|
2831
|
+
version = "0.52.6"
|
|
2832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2833
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2834
|
+
dependencies = [
|
|
2835
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2836
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2837
|
+
"windows_i686_gnu 0.52.6",
|
|
2838
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2839
|
+
"windows_i686_msvc 0.52.6",
|
|
2840
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2841
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2842
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2843
|
+
]
|
|
2844
|
+
|
|
2845
|
+
[[package]]
|
|
2846
|
+
name = "windows-targets"
|
|
2847
|
+
version = "0.53.2"
|
|
2848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
+
checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
|
|
2850
|
+
dependencies = [
|
|
2851
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
2852
|
+
"windows_aarch64_msvc 0.53.0",
|
|
2853
|
+
"windows_i686_gnu 0.53.0",
|
|
2854
|
+
"windows_i686_gnullvm 0.53.0",
|
|
2855
|
+
"windows_i686_msvc 0.53.0",
|
|
2856
|
+
"windows_x86_64_gnu 0.53.0",
|
|
2857
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
2858
|
+
"windows_x86_64_msvc 0.53.0",
|
|
2859
|
+
]
|
|
2860
|
+
|
|
2861
|
+
[[package]]
|
|
2862
|
+
name = "windows-threading"
|
|
2863
|
+
version = "0.1.0"
|
|
2864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2865
|
+
checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
|
|
2866
|
+
dependencies = [
|
|
2867
|
+
"windows-link",
|
|
2868
|
+
]
|
|
2869
|
+
|
|
2870
|
+
[[package]]
|
|
2871
|
+
name = "windows_aarch64_gnullvm"
|
|
2872
|
+
version = "0.52.6"
|
|
2873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2874
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2875
|
+
|
|
2876
|
+
[[package]]
|
|
2877
|
+
name = "windows_aarch64_gnullvm"
|
|
2878
|
+
version = "0.53.0"
|
|
2879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2880
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
2881
|
+
|
|
2882
|
+
[[package]]
|
|
2883
|
+
name = "windows_aarch64_msvc"
|
|
2884
|
+
version = "0.52.6"
|
|
2885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2886
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2887
|
+
|
|
2888
|
+
[[package]]
|
|
2889
|
+
name = "windows_aarch64_msvc"
|
|
2890
|
+
version = "0.53.0"
|
|
2891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
2893
|
+
|
|
2894
|
+
[[package]]
|
|
2895
|
+
name = "windows_i686_gnu"
|
|
2896
|
+
version = "0.52.6"
|
|
2897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2898
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2899
|
+
|
|
2900
|
+
[[package]]
|
|
2901
|
+
name = "windows_i686_gnu"
|
|
2902
|
+
version = "0.53.0"
|
|
2903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2904
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
2905
|
+
|
|
2906
|
+
[[package]]
|
|
2907
|
+
name = "windows_i686_gnullvm"
|
|
2908
|
+
version = "0.52.6"
|
|
2909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2911
|
+
|
|
2912
|
+
[[package]]
|
|
2913
|
+
name = "windows_i686_gnullvm"
|
|
2914
|
+
version = "0.53.0"
|
|
2915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2916
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
2917
|
+
|
|
2918
|
+
[[package]]
|
|
2919
|
+
name = "windows_i686_msvc"
|
|
2920
|
+
version = "0.52.6"
|
|
2921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2923
|
+
|
|
2924
|
+
[[package]]
|
|
2925
|
+
name = "windows_i686_msvc"
|
|
2926
|
+
version = "0.53.0"
|
|
2927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
2929
|
+
|
|
2930
|
+
[[package]]
|
|
2931
|
+
name = "windows_x86_64_gnu"
|
|
2932
|
+
version = "0.52.6"
|
|
2933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2934
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2935
|
+
|
|
2936
|
+
[[package]]
|
|
2937
|
+
name = "windows_x86_64_gnu"
|
|
2938
|
+
version = "0.53.0"
|
|
2939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2940
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
2941
|
+
|
|
2942
|
+
[[package]]
|
|
2943
|
+
name = "windows_x86_64_gnullvm"
|
|
2944
|
+
version = "0.52.6"
|
|
2945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2947
|
+
|
|
2948
|
+
[[package]]
|
|
2949
|
+
name = "windows_x86_64_gnullvm"
|
|
2950
|
+
version = "0.53.0"
|
|
2951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
2953
|
+
|
|
2954
|
+
[[package]]
|
|
2955
|
+
name = "windows_x86_64_msvc"
|
|
2956
|
+
version = "0.52.6"
|
|
2957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2958
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2959
|
+
|
|
2960
|
+
[[package]]
|
|
2961
|
+
name = "windows_x86_64_msvc"
|
|
2962
|
+
version = "0.53.0"
|
|
2963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2964
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
2965
|
+
|
|
2966
|
+
[[package]]
|
|
2967
|
+
name = "winnow"
|
|
2968
|
+
version = "0.7.11"
|
|
2969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
|
+
checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
|
|
2971
|
+
dependencies = [
|
|
2972
|
+
"memchr",
|
|
2973
|
+
]
|
|
2974
|
+
|
|
2975
|
+
[[package]]
|
|
2976
|
+
name = "winres"
|
|
2977
|
+
version = "0.1.12"
|
|
2978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2979
|
+
checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c"
|
|
2980
|
+
dependencies = [
|
|
2981
|
+
"toml 0.5.11",
|
|
2982
|
+
]
|
|
2983
|
+
|
|
2984
|
+
[[package]]
|
|
2985
|
+
name = "winsafe"
|
|
2986
|
+
version = "0.0.20"
|
|
2987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2988
|
+
checksum = "a40369220be405a294b88b13ccc3d916fac12423250b30092c8c4ea19001f7f1"
|
|
2989
|
+
|
|
2990
|
+
[[package]]
|
|
2991
|
+
name = "wit-bindgen-rt"
|
|
2992
|
+
version = "0.39.0"
|
|
2993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2994
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
2995
|
+
dependencies = [
|
|
2996
|
+
"bitflags 2.9.1",
|
|
2997
|
+
]
|
|
2998
|
+
|
|
2999
|
+
[[package]]
|
|
3000
|
+
name = "writeable"
|
|
3001
|
+
version = "0.6.1"
|
|
3002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
3004
|
+
|
|
3005
|
+
[[package]]
|
|
3006
|
+
name = "xml"
|
|
3007
|
+
version = "0.8.20"
|
|
3008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3009
|
+
checksum = "ede1c99c55b4b3ad0349018ef0eccbe954ce9c342334410707ee87177fcf2ab4"
|
|
3010
|
+
dependencies = [
|
|
3011
|
+
"xml-rs",
|
|
3012
|
+
]
|
|
3013
|
+
|
|
3014
|
+
[[package]]
|
|
3015
|
+
name = "xml-rs"
|
|
3016
|
+
version = "0.8.26"
|
|
3017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3018
|
+
checksum = "a62ce76d9b56901b19a74f19431b0d8b3bc7ca4ad685a746dfd78ca8f4fc6bda"
|
|
3019
|
+
|
|
3020
|
+
[[package]]
|
|
3021
|
+
name = "yansi"
|
|
3022
|
+
version = "1.0.1"
|
|
3023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3024
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
3025
|
+
|
|
3026
|
+
[[package]]
|
|
3027
|
+
name = "yoke"
|
|
3028
|
+
version = "0.8.0"
|
|
3029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3030
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
3031
|
+
dependencies = [
|
|
3032
|
+
"serde",
|
|
3033
|
+
"stable_deref_trait",
|
|
3034
|
+
"yoke-derive",
|
|
3035
|
+
"zerofrom",
|
|
3036
|
+
]
|
|
3037
|
+
|
|
3038
|
+
[[package]]
|
|
3039
|
+
name = "yoke-derive"
|
|
3040
|
+
version = "0.8.0"
|
|
3041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3042
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
3043
|
+
dependencies = [
|
|
3044
|
+
"proc-macro2",
|
|
3045
|
+
"quote",
|
|
3046
|
+
"syn 2.0.103",
|
|
3047
|
+
"synstructure",
|
|
3048
|
+
]
|
|
3049
|
+
|
|
3050
|
+
[[package]]
|
|
3051
|
+
name = "zerocopy"
|
|
3052
|
+
version = "0.8.25"
|
|
3053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3054
|
+
checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
|
|
3055
|
+
dependencies = [
|
|
3056
|
+
"zerocopy-derive",
|
|
3057
|
+
]
|
|
3058
|
+
|
|
3059
|
+
[[package]]
|
|
3060
|
+
name = "zerocopy-derive"
|
|
3061
|
+
version = "0.8.25"
|
|
3062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3063
|
+
checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
|
|
3064
|
+
dependencies = [
|
|
3065
|
+
"proc-macro2",
|
|
3066
|
+
"quote",
|
|
3067
|
+
"syn 2.0.103",
|
|
3068
|
+
]
|
|
3069
|
+
|
|
3070
|
+
[[package]]
|
|
3071
|
+
name = "zerofrom"
|
|
3072
|
+
version = "0.1.6"
|
|
3073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3074
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
3075
|
+
dependencies = [
|
|
3076
|
+
"zerofrom-derive",
|
|
3077
|
+
]
|
|
3078
|
+
|
|
3079
|
+
[[package]]
|
|
3080
|
+
name = "zerofrom-derive"
|
|
3081
|
+
version = "0.1.6"
|
|
3082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3083
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
3084
|
+
dependencies = [
|
|
3085
|
+
"proc-macro2",
|
|
3086
|
+
"quote",
|
|
3087
|
+
"syn 2.0.103",
|
|
3088
|
+
"synstructure",
|
|
3089
|
+
]
|
|
3090
|
+
|
|
3091
|
+
[[package]]
|
|
3092
|
+
name = "zeroize"
|
|
3093
|
+
version = "1.8.1"
|
|
3094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3095
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
3096
|
+
|
|
3097
|
+
[[package]]
|
|
3098
|
+
name = "zerotrie"
|
|
3099
|
+
version = "0.2.2"
|
|
3100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3101
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
3102
|
+
dependencies = [
|
|
3103
|
+
"displaydoc",
|
|
3104
|
+
"yoke",
|
|
3105
|
+
"zerofrom",
|
|
3106
|
+
]
|
|
3107
|
+
|
|
3108
|
+
[[package]]
|
|
3109
|
+
name = "zerovec"
|
|
3110
|
+
version = "0.11.2"
|
|
3111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3112
|
+
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
|
|
3113
|
+
dependencies = [
|
|
3114
|
+
"yoke",
|
|
3115
|
+
"zerofrom",
|
|
3116
|
+
"zerovec-derive",
|
|
3117
|
+
]
|
|
3118
|
+
|
|
3119
|
+
[[package]]
|
|
3120
|
+
name = "zerovec-derive"
|
|
3121
|
+
version = "0.11.1"
|
|
3122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3123
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
3124
|
+
dependencies = [
|
|
3125
|
+
"proc-macro2",
|
|
3126
|
+
"quote",
|
|
3127
|
+
"syn 2.0.103",
|
|
3128
|
+
]
|
|
3129
|
+
|
|
3130
|
+
[[package]]
|
|
3131
|
+
name = "zip"
|
|
3132
|
+
version = "3.0.0"
|
|
3133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3134
|
+
checksum = "12598812502ed0105f607f941c386f43d441e00148fce9dec3ca5ffb0bde9308"
|
|
3135
|
+
dependencies = [
|
|
3136
|
+
"arbitrary",
|
|
3137
|
+
"crc32fast",
|
|
3138
|
+
"flate2",
|
|
3139
|
+
"indexmap",
|
|
3140
|
+
"memchr",
|
|
3141
|
+
"zopfli",
|
|
3142
|
+
]
|
|
3143
|
+
|
|
3144
|
+
[[package]]
|
|
3145
|
+
name = "zlib-rs"
|
|
3146
|
+
version = "0.5.1"
|
|
3147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3148
|
+
checksum = "626bd9fa9734751fc50d6060752170984d7053f5a39061f524cda68023d4db8a"
|
|
3149
|
+
|
|
3150
|
+
[[package]]
|
|
3151
|
+
name = "zopfli"
|
|
3152
|
+
version = "0.8.2"
|
|
3153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
+
checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7"
|
|
3155
|
+
dependencies = [
|
|
3156
|
+
"bumpalo",
|
|
3157
|
+
"crc32fast",
|
|
3158
|
+
"log",
|
|
3159
|
+
"simd-adler32",
|
|
3160
|
+
]
|
|
3161
|
+
|
|
3162
|
+
[[package]]
|
|
3163
|
+
name = "zstd"
|
|
3164
|
+
version = "0.13.3"
|
|
3165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3166
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
3167
|
+
dependencies = [
|
|
3168
|
+
"zstd-safe",
|
|
3169
|
+
]
|
|
3170
|
+
|
|
3171
|
+
[[package]]
|
|
3172
|
+
name = "zstd-safe"
|
|
3173
|
+
version = "7.2.4"
|
|
3174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3175
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3176
|
+
dependencies = [
|
|
3177
|
+
"zstd-sys",
|
|
3178
|
+
]
|
|
3179
|
+
|
|
3180
|
+
[[package]]
|
|
3181
|
+
name = "zstd-sys"
|
|
3182
|
+
version = "2.0.15+zstd.1.5.7"
|
|
3183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3184
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
3185
|
+
dependencies = [
|
|
3186
|
+
"cc",
|
|
3187
|
+
"pkg-config",
|
|
3188
|
+
]
|
|
3189
|
+
|
|
3190
|
+
[[package]]
|
|
3191
|
+
name = "zune-core"
|
|
3192
|
+
version = "0.4.12"
|
|
3193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3194
|
+
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
|
|
3195
|
+
|
|
3196
|
+
[[package]]
|
|
3197
|
+
name = "zune-jpeg"
|
|
3198
|
+
version = "0.4.17"
|
|
3199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3200
|
+
checksum = "0f6fe2e33d02a98ee64423802e16df3de99c43e5cf5ff983767e1128b394c8ac"
|
|
3201
|
+
dependencies = [
|
|
3202
|
+
"zune-core",
|
|
3203
|
+
]
|