diff options
Diffstat (limited to 'meta/recipes-devtools/rust/cargo-c/0001-Add-Cargo.lock-file.patch')
-rw-r--r-- | meta/recipes-devtools/rust/cargo-c/0001-Add-Cargo.lock-file.patch | 2180 |
1 files changed, 0 insertions, 2180 deletions
diff --git a/meta/recipes-devtools/rust/cargo-c/0001-Add-Cargo.lock-file.patch b/meta/recipes-devtools/rust/cargo-c/0001-Add-Cargo.lock-file.patch deleted file mode 100644 index 11a6d9e71a..0000000000 --- a/meta/recipes-devtools/rust/cargo-c/0001-Add-Cargo.lock-file.patch +++ /dev/null | |||
@@ -1,2180 +0,0 @@ | |||
1 | From bc958b58eb31151ce76e409ce654bf6131d693b3 Mon Sep 17 00:00:00 2001 | ||
2 | From: Frederic Martinsons <frederic.martinsons@gmail.com> | ||
3 | Date: Fri, 11 Aug 2023 06:28:56 +0200 | ||
4 | Subject: [PATCH] Add Cargo.lock file | ||
5 | |||
6 | Upstream-Status: Inappropriate [oe-core specific] | ||
7 | Signed-off-by: Frederic Martinsons <frederic.martinsons@gmail.com> | ||
8 | --- | ||
9 | .gitignore | 1 - | ||
10 | Cargo.lock | 2148 ++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
11 | 2 files changed, 2148 insertions(+), 1 deletion(-) | ||
12 | create mode 100644 Cargo.lock | ||
13 | |||
14 | diff --git a/.gitignore b/.gitignore | ||
15 | index b52f82c..437f557 100644 | ||
16 | --- a/.gitignore | ||
17 | +++ b/.gitignore | ||
18 | @@ -1,5 +1,4 @@ | ||
19 | /target | ||
20 | **/*.rs.bk | ||
21 | -Cargo.lock | ||
22 | /example-project/target/ | ||
23 | /example-project/usage-from-c/run_tests | ||
24 | diff --git a/Cargo.lock b/Cargo.lock | ||
25 | new file mode 100644 | ||
26 | index 0000000..2225b04 | ||
27 | --- /dev/null | ||
28 | +++ b/Cargo.lock | ||
29 | @@ -0,0 +1,2148 @@ | ||
30 | +# This file is automatically @generated by Cargo. | ||
31 | +# It is not intended for manual editing. | ||
32 | +version = 3 | ||
33 | + | ||
34 | +[[package]] | ||
35 | +name = "adler" | ||
36 | +version = "1.0.2" | ||
37 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
38 | +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" | ||
39 | + | ||
40 | +[[package]] | ||
41 | +name = "aho-corasick" | ||
42 | +version = "1.0.3" | ||
43 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
44 | +checksum = "86b8f9420f797f2d9e935edf629310eb938a0d839f984e25327f3c7eed22300c" | ||
45 | +dependencies = [ | ||
46 | + "memchr", | ||
47 | +] | ||
48 | + | ||
49 | +[[package]] | ||
50 | +name = "anstream" | ||
51 | +version = "0.3.2" | ||
52 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
53 | +checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" | ||
54 | +dependencies = [ | ||
55 | + "anstyle", | ||
56 | + "anstyle-parse", | ||
57 | + "anstyle-query", | ||
58 | + "anstyle-wincon", | ||
59 | + "colorchoice", | ||
60 | + "is-terminal", | ||
61 | + "utf8parse", | ||
62 | +] | ||
63 | + | ||
64 | +[[package]] | ||
65 | +name = "anstyle" | ||
66 | +version = "1.0.1" | ||
67 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
68 | +checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd" | ||
69 | + | ||
70 | +[[package]] | ||
71 | +name = "anstyle-parse" | ||
72 | +version = "0.2.1" | ||
73 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
74 | +checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" | ||
75 | +dependencies = [ | ||
76 | + "utf8parse", | ||
77 | +] | ||
78 | + | ||
79 | +[[package]] | ||
80 | +name = "anstyle-query" | ||
81 | +version = "1.0.0" | ||
82 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
83 | +checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" | ||
84 | +dependencies = [ | ||
85 | + "windows-sys 0.48.0", | ||
86 | +] | ||
87 | + | ||
88 | +[[package]] | ||
89 | +name = "anstyle-wincon" | ||
90 | +version = "1.0.2" | ||
91 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
92 | +checksum = "c677ab05e09154296dd37acecd46420c17b9713e8366facafa8fc0885167cf4c" | ||
93 | +dependencies = [ | ||
94 | + "anstyle", | ||
95 | + "windows-sys 0.48.0", | ||
96 | +] | ||
97 | + | ||
98 | +[[package]] | ||
99 | +name = "anyhow" | ||
100 | +version = "1.0.72" | ||
101 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
102 | +checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854" | ||
103 | + | ||
104 | +[[package]] | ||
105 | +name = "arrayvec" | ||
106 | +version = "0.5.2" | ||
107 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
108 | +checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" | ||
109 | + | ||
110 | +[[package]] | ||
111 | +name = "atty" | ||
112 | +version = "0.2.14" | ||
113 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
114 | +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | ||
115 | +dependencies = [ | ||
116 | + "hermit-abi 0.1.19", | ||
117 | + "libc", | ||
118 | + "winapi", | ||
119 | +] | ||
120 | + | ||
121 | +[[package]] | ||
122 | +name = "autocfg" | ||
123 | +version = "1.1.0" | ||
124 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
125 | +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" | ||
126 | + | ||
127 | +[[package]] | ||
128 | +name = "base16ct" | ||
129 | +version = "0.2.0" | ||
130 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
131 | +checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" | ||
132 | + | ||
133 | +[[package]] | ||
134 | +name = "base64" | ||
135 | +version = "0.13.1" | ||
136 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
137 | +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" | ||
138 | + | ||
139 | +[[package]] | ||
140 | +name = "base64ct" | ||
141 | +version = "1.6.0" | ||
142 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
143 | +checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" | ||
144 | + | ||
145 | +[[package]] | ||
146 | +name = "bitflags" | ||
147 | +version = "1.3.2" | ||
148 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
149 | +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | ||
150 | + | ||
151 | +[[package]] | ||
152 | +name = "bitflags" | ||
153 | +version = "2.3.3" | ||
154 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
155 | +checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" | ||
156 | + | ||
157 | +[[package]] | ||
158 | +name = "bitmaps" | ||
159 | +version = "2.1.0" | ||
160 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
161 | +checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2" | ||
162 | +dependencies = [ | ||
163 | + "typenum", | ||
164 | +] | ||
165 | + | ||
166 | +[[package]] | ||
167 | +name = "block-buffer" | ||
168 | +version = "0.10.4" | ||
169 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
170 | +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" | ||
171 | +dependencies = [ | ||
172 | + "generic-array", | ||
173 | +] | ||
174 | + | ||
175 | +[[package]] | ||
176 | +name = "bstr" | ||
177 | +version = "1.6.0" | ||
178 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
179 | +checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" | ||
180 | +dependencies = [ | ||
181 | + "memchr", | ||
182 | + "regex-automata", | ||
183 | + "serde", | ||
184 | +] | ||
185 | + | ||
186 | +[[package]] | ||
187 | +name = "bumpalo" | ||
188 | +version = "3.13.0" | ||
189 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
190 | +checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" | ||
191 | + | ||
192 | +[[package]] | ||
193 | +name = "bytes" | ||
194 | +version = "1.4.0" | ||
195 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
196 | +checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" | ||
197 | + | ||
198 | +[[package]] | ||
199 | +name = "bytesize" | ||
200 | +version = "1.2.0" | ||
201 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
202 | +checksum = "38fcc2979eff34a4b84e1cf9a1e3da42a7d44b3b690a40cdcb23e3d556cfb2e5" | ||
203 | + | ||
204 | +[[package]] | ||
205 | +name = "cargo" | ||
206 | +version = "0.69.1" | ||
207 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
208 | +checksum = "2ecf1ab9246253733b30352b5194b4c3a7038a1c7729e1a18b3ba00e479c4d54" | ||
209 | +dependencies = [ | ||
210 | + "anyhow", | ||
211 | + "base64", | ||
212 | + "bytesize", | ||
213 | + "cargo-platform", | ||
214 | + "cargo-util", | ||
215 | + "clap 4.3.21", | ||
216 | + "crates-io", | ||
217 | + "curl", | ||
218 | + "curl-sys", | ||
219 | + "env_logger", | ||
220 | + "filetime", | ||
221 | + "flate2", | ||
222 | + "fwdansi", | ||
223 | + "git2", | ||
224 | + "git2-curl", | ||
225 | + "glob", | ||
226 | + "hex", | ||
227 | + "hmac", | ||
228 | + "home", | ||
229 | + "http-auth", | ||
230 | + "humantime", | ||
231 | + "ignore", | ||
232 | + "im-rc", | ||
233 | + "indexmap 1.9.3", | ||
234 | + "is-terminal", | ||
235 | + "itertools", | ||
236 | + "jobserver", | ||
237 | + "lazy_static", | ||
238 | + "lazycell", | ||
239 | + "libc", | ||
240 | + "libgit2-sys", | ||
241 | + "log", | ||
242 | + "memchr", | ||
243 | + "opener", | ||
244 | + "openssl", | ||
245 | + "os_info", | ||
246 | + "pasetors", | ||
247 | + "pathdiff", | ||
248 | + "percent-encoding", | ||
249 | + "rustc-workspace-hack", | ||
250 | + "rustfix", | ||
251 | + "semver", | ||
252 | + "serde", | ||
253 | + "serde-value", | ||
254 | + "serde_ignored", | ||
255 | + "serde_json", | ||
256 | + "sha1", | ||
257 | + "shell-escape", | ||
258 | + "strip-ansi-escapes", | ||
259 | + "tar", | ||
260 | + "tempfile", | ||
261 | + "termcolor", | ||
262 | + "time", | ||
263 | + "toml_edit 0.15.0", | ||
264 | + "unicode-width", | ||
265 | + "unicode-xid", | ||
266 | + "url", | ||
267 | + "walkdir", | ||
268 | + "winapi", | ||
269 | +] | ||
270 | + | ||
271 | +[[package]] | ||
272 | +name = "cargo-c" | ||
273 | +version = "0.9.18+cargo-0.69" | ||
274 | +dependencies = [ | ||
275 | + "anyhow", | ||
276 | + "cargo", | ||
277 | + "cargo-util", | ||
278 | + "cbindgen", | ||
279 | + "cc", | ||
280 | + "clap 4.3.21", | ||
281 | + "glob", | ||
282 | + "itertools", | ||
283 | + "log", | ||
284 | + "regex", | ||
285 | + "semver", | ||
286 | + "serde", | ||
287 | + "serde_derive", | ||
288 | + "serde_json", | ||
289 | + "toml 0.7.6", | ||
290 | +] | ||
291 | + | ||
292 | +[[package]] | ||
293 | +name = "cargo-platform" | ||
294 | +version = "0.1.3" | ||
295 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
296 | +checksum = "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479" | ||
297 | +dependencies = [ | ||
298 | + "serde", | ||
299 | +] | ||
300 | + | ||
301 | +[[package]] | ||
302 | +name = "cargo-util" | ||
303 | +version = "0.2.4" | ||
304 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
305 | +checksum = "a5e2320a2b1242f9181a3347ae0884bb497e1853d299da99780fa1e96f9abe23" | ||
306 | +dependencies = [ | ||
307 | + "anyhow", | ||
308 | + "core-foundation", | ||
309 | + "filetime", | ||
310 | + "hex", | ||
311 | + "jobserver", | ||
312 | + "libc", | ||
313 | + "log", | ||
314 | + "miow", | ||
315 | + "same-file", | ||
316 | + "sha2", | ||
317 | + "shell-escape", | ||
318 | + "tempfile", | ||
319 | + "walkdir", | ||
320 | + "windows-sys 0.45.0", | ||
321 | +] | ||
322 | + | ||
323 | +[[package]] | ||
324 | +name = "cbindgen" | ||
325 | +version = "0.24.5" | ||
326 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
327 | +checksum = "4b922faaf31122819ec80c4047cc684c6979a087366c069611e33649bf98e18d" | ||
328 | +dependencies = [ | ||
329 | + "clap 3.2.25", | ||
330 | + "heck", | ||
331 | + "indexmap 1.9.3", | ||
332 | + "log", | ||
333 | + "proc-macro2", | ||
334 | + "quote", | ||
335 | + "serde", | ||
336 | + "serde_json", | ||
337 | + "syn 1.0.109", | ||
338 | + "tempfile", | ||
339 | + "toml 0.5.11", | ||
340 | +] | ||
341 | + | ||
342 | +[[package]] | ||
343 | +name = "cc" | ||
344 | +version = "1.0.82" | ||
345 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
346 | +checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01" | ||
347 | +dependencies = [ | ||
348 | + "jobserver", | ||
349 | + "libc", | ||
350 | +] | ||
351 | + | ||
352 | +[[package]] | ||
353 | +name = "cfg-if" | ||
354 | +version = "1.0.0" | ||
355 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
356 | +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | ||
357 | + | ||
358 | +[[package]] | ||
359 | +name = "clap" | ||
360 | +version = "3.2.25" | ||
361 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
362 | +checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" | ||
363 | +dependencies = [ | ||
364 | + "atty", | ||
365 | + "bitflags 1.3.2", | ||
366 | + "clap_lex 0.2.4", | ||
367 | + "indexmap 1.9.3", | ||
368 | + "strsim", | ||
369 | + "termcolor", | ||
370 | + "textwrap", | ||
371 | +] | ||
372 | + | ||
373 | +[[package]] | ||
374 | +name = "clap" | ||
375 | +version = "4.3.21" | ||
376 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
377 | +checksum = "c27cdf28c0f604ba3f512b0c9a409f8de8513e4816705deb0498b627e7c3a3fd" | ||
378 | +dependencies = [ | ||
379 | + "clap_builder", | ||
380 | + "clap_derive", | ||
381 | + "once_cell", | ||
382 | +] | ||
383 | + | ||
384 | +[[package]] | ||
385 | +name = "clap_builder" | ||
386 | +version = "4.3.21" | ||
387 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
388 | +checksum = "08a9f1ab5e9f01a9b81f202e8562eb9a10de70abf9eaeac1be465c28b75aa4aa" | ||
389 | +dependencies = [ | ||
390 | + "anstream", | ||
391 | + "anstyle", | ||
392 | + "clap_lex 0.5.0", | ||
393 | + "once_cell", | ||
394 | + "strsim", | ||
395 | +] | ||
396 | + | ||
397 | +[[package]] | ||
398 | +name = "clap_derive" | ||
399 | +version = "4.3.12" | ||
400 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
401 | +checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050" | ||
402 | +dependencies = [ | ||
403 | + "heck", | ||
404 | + "proc-macro2", | ||
405 | + "quote", | ||
406 | + "syn 2.0.28", | ||
407 | +] | ||
408 | + | ||
409 | +[[package]] | ||
410 | +name = "clap_lex" | ||
411 | +version = "0.2.4" | ||
412 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
413 | +checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" | ||
414 | +dependencies = [ | ||
415 | + "os_str_bytes", | ||
416 | +] | ||
417 | + | ||
418 | +[[package]] | ||
419 | +name = "clap_lex" | ||
420 | +version = "0.5.0" | ||
421 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
422 | +checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" | ||
423 | + | ||
424 | +[[package]] | ||
425 | +name = "colorchoice" | ||
426 | +version = "1.0.0" | ||
427 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
428 | +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" | ||
429 | + | ||
430 | +[[package]] | ||
431 | +name = "combine" | ||
432 | +version = "4.6.6" | ||
433 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
434 | +checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" | ||
435 | +dependencies = [ | ||
436 | + "bytes", | ||
437 | + "memchr", | ||
438 | +] | ||
439 | + | ||
440 | +[[package]] | ||
441 | +name = "const-oid" | ||
442 | +version = "0.9.5" | ||
443 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
444 | +checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" | ||
445 | + | ||
446 | +[[package]] | ||
447 | +name = "core-foundation" | ||
448 | +version = "0.9.3" | ||
449 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
450 | +checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" | ||
451 | +dependencies = [ | ||
452 | + "core-foundation-sys", | ||
453 | + "libc", | ||
454 | +] | ||
455 | + | ||
456 | +[[package]] | ||
457 | +name = "core-foundation-sys" | ||
458 | +version = "0.8.4" | ||
459 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
460 | +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" | ||
461 | + | ||
462 | +[[package]] | ||
463 | +name = "cpufeatures" | ||
464 | +version = "0.2.9" | ||
465 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
466 | +checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" | ||
467 | +dependencies = [ | ||
468 | + "libc", | ||
469 | +] | ||
470 | + | ||
471 | +[[package]] | ||
472 | +name = "crates-io" | ||
473 | +version = "0.35.1" | ||
474 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
475 | +checksum = "e2dfb6077da60207264ab2eb0e3734f02e0a0c50c347b32c728e42c6fbbf7e2e" | ||
476 | +dependencies = [ | ||
477 | + "anyhow", | ||
478 | + "curl", | ||
479 | + "percent-encoding", | ||
480 | + "serde", | ||
481 | + "serde_json", | ||
482 | + "url", | ||
483 | +] | ||
484 | + | ||
485 | +[[package]] | ||
486 | +name = "crc32fast" | ||
487 | +version = "1.3.2" | ||
488 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
489 | +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" | ||
490 | +dependencies = [ | ||
491 | + "cfg-if", | ||
492 | +] | ||
493 | + | ||
494 | +[[package]] | ||
495 | +name = "crypto-bigint" | ||
496 | +version = "0.5.2" | ||
497 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
498 | +checksum = "cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15" | ||
499 | +dependencies = [ | ||
500 | + "generic-array", | ||
501 | + "rand_core", | ||
502 | + "subtle", | ||
503 | + "zeroize", | ||
504 | +] | ||
505 | + | ||
506 | +[[package]] | ||
507 | +name = "crypto-common" | ||
508 | +version = "0.1.6" | ||
509 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
510 | +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" | ||
511 | +dependencies = [ | ||
512 | + "generic-array", | ||
513 | + "typenum", | ||
514 | +] | ||
515 | + | ||
516 | +[[package]] | ||
517 | +name = "ct-codecs" | ||
518 | +version = "1.1.1" | ||
519 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
520 | +checksum = "f3b7eb4404b8195a9abb6356f4ac07d8ba267045c8d6d220ac4dc992e6cc75df" | ||
521 | + | ||
522 | +[[package]] | ||
523 | +name = "curl" | ||
524 | +version = "0.4.44" | ||
525 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
526 | +checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22" | ||
527 | +dependencies = [ | ||
528 | + "curl-sys", | ||
529 | + "libc", | ||
530 | + "openssl-probe", | ||
531 | + "openssl-sys", | ||
532 | + "schannel", | ||
533 | + "socket2", | ||
534 | + "winapi", | ||
535 | +] | ||
536 | + | ||
537 | +[[package]] | ||
538 | +name = "curl-sys" | ||
539 | +version = "0.4.65+curl-8.2.1" | ||
540 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
541 | +checksum = "961ba061c9ef2fe34bbd12b807152d96f0badd2bebe7b90ce6c8c8b7572a0986" | ||
542 | +dependencies = [ | ||
543 | + "cc", | ||
544 | + "libc", | ||
545 | + "libnghttp2-sys", | ||
546 | + "libz-sys", | ||
547 | + "openssl-sys", | ||
548 | + "pkg-config", | ||
549 | + "vcpkg", | ||
550 | + "winapi", | ||
551 | +] | ||
552 | + | ||
553 | +[[package]] | ||
554 | +name = "der" | ||
555 | +version = "0.7.8" | ||
556 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
557 | +checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" | ||
558 | +dependencies = [ | ||
559 | + "const-oid", | ||
560 | + "pem-rfc7468", | ||
561 | + "zeroize", | ||
562 | +] | ||
563 | + | ||
564 | +[[package]] | ||
565 | +name = "deranged" | ||
566 | +version = "0.3.7" | ||
567 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
568 | +checksum = "7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929" | ||
569 | + | ||
570 | +[[package]] | ||
571 | +name = "digest" | ||
572 | +version = "0.10.7" | ||
573 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
574 | +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" | ||
575 | +dependencies = [ | ||
576 | + "block-buffer", | ||
577 | + "const-oid", | ||
578 | + "crypto-common", | ||
579 | + "subtle", | ||
580 | +] | ||
581 | + | ||
582 | +[[package]] | ||
583 | +name = "ecdsa" | ||
584 | +version = "0.16.8" | ||
585 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
586 | +checksum = "a4b1e0c257a9e9f25f90ff76d7a68360ed497ee519c8e428d1825ef0000799d4" | ||
587 | +dependencies = [ | ||
588 | + "der", | ||
589 | + "digest", | ||
590 | + "elliptic-curve", | ||
591 | + "rfc6979", | ||
592 | + "signature", | ||
593 | + "spki", | ||
594 | +] | ||
595 | + | ||
596 | +[[package]] | ||
597 | +name = "ed25519-compact" | ||
598 | +version = "2.0.4" | ||
599 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
600 | +checksum = "6a3d382e8464107391c8706b4c14b087808ecb909f6c15c34114bc42e53a9e4c" | ||
601 | +dependencies = [ | ||
602 | + "getrandom", | ||
603 | +] | ||
604 | + | ||
605 | +[[package]] | ||
606 | +name = "either" | ||
607 | +version = "1.9.0" | ||
608 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
609 | +checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" | ||
610 | + | ||
611 | +[[package]] | ||
612 | +name = "elliptic-curve" | ||
613 | +version = "0.13.5" | ||
614 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
615 | +checksum = "968405c8fdc9b3bf4df0a6638858cc0b52462836ab6b1c87377785dd09cf1c0b" | ||
616 | +dependencies = [ | ||
617 | + "base16ct", | ||
618 | + "crypto-bigint", | ||
619 | + "digest", | ||
620 | + "ff", | ||
621 | + "generic-array", | ||
622 | + "group", | ||
623 | + "hkdf", | ||
624 | + "pem-rfc7468", | ||
625 | + "pkcs8", | ||
626 | + "rand_core", | ||
627 | + "sec1", | ||
628 | + "subtle", | ||
629 | + "zeroize", | ||
630 | +] | ||
631 | + | ||
632 | +[[package]] | ||
633 | +name = "env_logger" | ||
634 | +version = "0.10.0" | ||
635 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
636 | +checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" | ||
637 | +dependencies = [ | ||
638 | + "humantime", | ||
639 | + "is-terminal", | ||
640 | + "log", | ||
641 | + "regex", | ||
642 | + "termcolor", | ||
643 | +] | ||
644 | + | ||
645 | +[[package]] | ||
646 | +name = "equivalent" | ||
647 | +version = "1.0.1" | ||
648 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
649 | +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" | ||
650 | + | ||
651 | +[[package]] | ||
652 | +name = "errno" | ||
653 | +version = "0.3.2" | ||
654 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
655 | +checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" | ||
656 | +dependencies = [ | ||
657 | + "errno-dragonfly", | ||
658 | + "libc", | ||
659 | + "windows-sys 0.48.0", | ||
660 | +] | ||
661 | + | ||
662 | +[[package]] | ||
663 | +name = "errno-dragonfly" | ||
664 | +version = "0.1.2" | ||
665 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
666 | +checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" | ||
667 | +dependencies = [ | ||
668 | + "cc", | ||
669 | + "libc", | ||
670 | +] | ||
671 | + | ||
672 | +[[package]] | ||
673 | +name = "fastrand" | ||
674 | +version = "2.0.0" | ||
675 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
676 | +checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" | ||
677 | + | ||
678 | +[[package]] | ||
679 | +name = "ff" | ||
680 | +version = "0.13.0" | ||
681 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
682 | +checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" | ||
683 | +dependencies = [ | ||
684 | + "rand_core", | ||
685 | + "subtle", | ||
686 | +] | ||
687 | + | ||
688 | +[[package]] | ||
689 | +name = "fiat-crypto" | ||
690 | +version = "0.1.20" | ||
691 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
692 | +checksum = "e825f6987101665dea6ec934c09ec6d721de7bc1bf92248e1d5810c8cd636b77" | ||
693 | + | ||
694 | +[[package]] | ||
695 | +name = "filetime" | ||
696 | +version = "0.2.22" | ||
697 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
698 | +checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" | ||
699 | +dependencies = [ | ||
700 | + "cfg-if", | ||
701 | + "libc", | ||
702 | + "redox_syscall", | ||
703 | + "windows-sys 0.48.0", | ||
704 | +] | ||
705 | + | ||
706 | +[[package]] | ||
707 | +name = "flate2" | ||
708 | +version = "1.0.26" | ||
709 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
710 | +checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" | ||
711 | +dependencies = [ | ||
712 | + "crc32fast", | ||
713 | + "libz-sys", | ||
714 | + "miniz_oxide", | ||
715 | +] | ||
716 | + | ||
717 | +[[package]] | ||
718 | +name = "fnv" | ||
719 | +version = "1.0.7" | ||
720 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
721 | +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" | ||
722 | + | ||
723 | +[[package]] | ||
724 | +name = "foreign-types" | ||
725 | +version = "0.3.2" | ||
726 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
727 | +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" | ||
728 | +dependencies = [ | ||
729 | + "foreign-types-shared", | ||
730 | +] | ||
731 | + | ||
732 | +[[package]] | ||
733 | +name = "foreign-types-shared" | ||
734 | +version = "0.1.1" | ||
735 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
736 | +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" | ||
737 | + | ||
738 | +[[package]] | ||
739 | +name = "form_urlencoded" | ||
740 | +version = "1.2.0" | ||
741 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
742 | +checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" | ||
743 | +dependencies = [ | ||
744 | + "percent-encoding", | ||
745 | +] | ||
746 | + | ||
747 | +[[package]] | ||
748 | +name = "fwdansi" | ||
749 | +version = "1.1.0" | ||
750 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
751 | +checksum = "08c1f5787fe85505d1f7777268db5103d80a7a374d2316a7ce262e57baf8f208" | ||
752 | +dependencies = [ | ||
753 | + "memchr", | ||
754 | + "termcolor", | ||
755 | +] | ||
756 | + | ||
757 | +[[package]] | ||
758 | +name = "generic-array" | ||
759 | +version = "0.14.7" | ||
760 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
761 | +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" | ||
762 | +dependencies = [ | ||
763 | + "typenum", | ||
764 | + "version_check", | ||
765 | + "zeroize", | ||
766 | +] | ||
767 | + | ||
768 | +[[package]] | ||
769 | +name = "getrandom" | ||
770 | +version = "0.2.10" | ||
771 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
772 | +checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" | ||
773 | +dependencies = [ | ||
774 | + "cfg-if", | ||
775 | + "js-sys", | ||
776 | + "libc", | ||
777 | + "wasi", | ||
778 | + "wasm-bindgen", | ||
779 | +] | ||
780 | + | ||
781 | +[[package]] | ||
782 | +name = "git2" | ||
783 | +version = "0.16.0" | ||
784 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
785 | +checksum = "be36bc9e0546df253c0cc41fd0af34f5e92845ad8509462ec76672fac6997f5b" | ||
786 | +dependencies = [ | ||
787 | + "bitflags 1.3.2", | ||
788 | + "libc", | ||
789 | + "libgit2-sys", | ||
790 | + "log", | ||
791 | + "openssl-probe", | ||
792 | + "openssl-sys", | ||
793 | + "url", | ||
794 | +] | ||
795 | + | ||
796 | +[[package]] | ||
797 | +name = "git2-curl" | ||
798 | +version = "0.17.0" | ||
799 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
800 | +checksum = "7577f4e6341ba7c90d883511130a45b956c274ba5f4d205d9f9da990f654cd33" | ||
801 | +dependencies = [ | ||
802 | + "curl", | ||
803 | + "git2", | ||
804 | + "log", | ||
805 | + "url", | ||
806 | +] | ||
807 | + | ||
808 | +[[package]] | ||
809 | +name = "glob" | ||
810 | +version = "0.3.1" | ||
811 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
812 | +checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" | ||
813 | + | ||
814 | +[[package]] | ||
815 | +name = "globset" | ||
816 | +version = "0.4.13" | ||
817 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
818 | +checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" | ||
819 | +dependencies = [ | ||
820 | + "aho-corasick", | ||
821 | + "bstr", | ||
822 | + "fnv", | ||
823 | + "log", | ||
824 | + "regex", | ||
825 | +] | ||
826 | + | ||
827 | +[[package]] | ||
828 | +name = "group" | ||
829 | +version = "0.13.0" | ||
830 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
831 | +checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" | ||
832 | +dependencies = [ | ||
833 | + "ff", | ||
834 | + "rand_core", | ||
835 | + "subtle", | ||
836 | +] | ||
837 | + | ||
838 | +[[package]] | ||
839 | +name = "hashbrown" | ||
840 | +version = "0.12.3" | ||
841 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
842 | +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" | ||
843 | + | ||
844 | +[[package]] | ||
845 | +name = "hashbrown" | ||
846 | +version = "0.14.0" | ||
847 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
848 | +checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" | ||
849 | + | ||
850 | +[[package]] | ||
851 | +name = "heck" | ||
852 | +version = "0.4.1" | ||
853 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
854 | +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" | ||
855 | + | ||
856 | +[[package]] | ||
857 | +name = "hermit-abi" | ||
858 | +version = "0.1.19" | ||
859 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
860 | +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" | ||
861 | +dependencies = [ | ||
862 | + "libc", | ||
863 | +] | ||
864 | + | ||
865 | +[[package]] | ||
866 | +name = "hermit-abi" | ||
867 | +version = "0.3.2" | ||
868 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
869 | +checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" | ||
870 | + | ||
871 | +[[package]] | ||
872 | +name = "hex" | ||
873 | +version = "0.4.3" | ||
874 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
875 | +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" | ||
876 | + | ||
877 | +[[package]] | ||
878 | +name = "hkdf" | ||
879 | +version = "0.12.3" | ||
880 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
881 | +checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" | ||
882 | +dependencies = [ | ||
883 | + "hmac", | ||
884 | +] | ||
885 | + | ||
886 | +[[package]] | ||
887 | +name = "hmac" | ||
888 | +version = "0.12.1" | ||
889 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
890 | +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" | ||
891 | +dependencies = [ | ||
892 | + "digest", | ||
893 | +] | ||
894 | + | ||
895 | +[[package]] | ||
896 | +name = "home" | ||
897 | +version = "0.5.5" | ||
898 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
899 | +checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" | ||
900 | +dependencies = [ | ||
901 | + "windows-sys 0.48.0", | ||
902 | +] | ||
903 | + | ||
904 | +[[package]] | ||
905 | +name = "http-auth" | ||
906 | +version = "0.1.8" | ||
907 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
908 | +checksum = "5430cacd7a1f9a02fbeb350dfc81a0e5ed42d81f3398cb0ba184017f85bdcfbc" | ||
909 | +dependencies = [ | ||
910 | + "memchr", | ||
911 | +] | ||
912 | + | ||
913 | +[[package]] | ||
914 | +name = "humantime" | ||
915 | +version = "2.1.0" | ||
916 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
917 | +checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" | ||
918 | + | ||
919 | +[[package]] | ||
920 | +name = "idna" | ||
921 | +version = "0.4.0" | ||
922 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
923 | +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" | ||
924 | +dependencies = [ | ||
925 | + "unicode-bidi", | ||
926 | + "unicode-normalization", | ||
927 | +] | ||
928 | + | ||
929 | +[[package]] | ||
930 | +name = "ignore" | ||
931 | +version = "0.4.20" | ||
932 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
933 | +checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492" | ||
934 | +dependencies = [ | ||
935 | + "globset", | ||
936 | + "lazy_static", | ||
937 | + "log", | ||
938 | + "memchr", | ||
939 | + "regex", | ||
940 | + "same-file", | ||
941 | + "thread_local", | ||
942 | + "walkdir", | ||
943 | + "winapi-util", | ||
944 | +] | ||
945 | + | ||
946 | +[[package]] | ||
947 | +name = "im-rc" | ||
948 | +version = "15.1.0" | ||
949 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
950 | +checksum = "af1955a75fa080c677d3972822ec4bad316169ab1cfc6c257a942c2265dbe5fe" | ||
951 | +dependencies = [ | ||
952 | + "bitmaps", | ||
953 | + "rand_core", | ||
954 | + "rand_xoshiro", | ||
955 | + "sized-chunks", | ||
956 | + "typenum", | ||
957 | + "version_check", | ||
958 | +] | ||
959 | + | ||
960 | +[[package]] | ||
961 | +name = "indexmap" | ||
962 | +version = "1.9.3" | ||
963 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
964 | +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" | ||
965 | +dependencies = [ | ||
966 | + "autocfg", | ||
967 | + "hashbrown 0.12.3", | ||
968 | +] | ||
969 | + | ||
970 | +[[package]] | ||
971 | +name = "indexmap" | ||
972 | +version = "2.0.0" | ||
973 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
974 | +checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" | ||
975 | +dependencies = [ | ||
976 | + "equivalent", | ||
977 | + "hashbrown 0.14.0", | ||
978 | +] | ||
979 | + | ||
980 | +[[package]] | ||
981 | +name = "is-terminal" | ||
982 | +version = "0.4.9" | ||
983 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
984 | +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" | ||
985 | +dependencies = [ | ||
986 | + "hermit-abi 0.3.2", | ||
987 | + "rustix", | ||
988 | + "windows-sys 0.48.0", | ||
989 | +] | ||
990 | + | ||
991 | +[[package]] | ||
992 | +name = "itertools" | ||
993 | +version = "0.10.5" | ||
994 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
995 | +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" | ||
996 | +dependencies = [ | ||
997 | + "either", | ||
998 | +] | ||
999 | + | ||
1000 | +[[package]] | ||
1001 | +name = "itoa" | ||
1002 | +version = "1.0.9" | ||
1003 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1004 | +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" | ||
1005 | + | ||
1006 | +[[package]] | ||
1007 | +name = "jobserver" | ||
1008 | +version = "0.1.26" | ||
1009 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1010 | +checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" | ||
1011 | +dependencies = [ | ||
1012 | + "libc", | ||
1013 | +] | ||
1014 | + | ||
1015 | +[[package]] | ||
1016 | +name = "js-sys" | ||
1017 | +version = "0.3.64" | ||
1018 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1019 | +checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" | ||
1020 | +dependencies = [ | ||
1021 | + "wasm-bindgen", | ||
1022 | +] | ||
1023 | + | ||
1024 | +[[package]] | ||
1025 | +name = "kstring" | ||
1026 | +version = "2.0.0" | ||
1027 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1028 | +checksum = "ec3066350882a1cd6d950d055997f379ac37fd39f81cd4d8ed186032eb3c5747" | ||
1029 | +dependencies = [ | ||
1030 | + "static_assertions", | ||
1031 | +] | ||
1032 | + | ||
1033 | +[[package]] | ||
1034 | +name = "lazy_static" | ||
1035 | +version = "1.4.0" | ||
1036 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1037 | +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | ||
1038 | + | ||
1039 | +[[package]] | ||
1040 | +name = "lazycell" | ||
1041 | +version = "1.3.0" | ||
1042 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1043 | +checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" | ||
1044 | + | ||
1045 | +[[package]] | ||
1046 | +name = "libc" | ||
1047 | +version = "0.2.147" | ||
1048 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1049 | +checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" | ||
1050 | + | ||
1051 | +[[package]] | ||
1052 | +name = "libgit2-sys" | ||
1053 | +version = "0.14.1+1.5.0" | ||
1054 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1055 | +checksum = "4a07fb2692bc3593bda59de45a502bb3071659f2c515e28c71e728306b038e17" | ||
1056 | +dependencies = [ | ||
1057 | + "cc", | ||
1058 | + "libc", | ||
1059 | + "libssh2-sys", | ||
1060 | + "libz-sys", | ||
1061 | + "openssl-sys", | ||
1062 | + "pkg-config", | ||
1063 | +] | ||
1064 | + | ||
1065 | +[[package]] | ||
1066 | +name = "libnghttp2-sys" | ||
1067 | +version = "0.1.8+1.55.1" | ||
1068 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1069 | +checksum = "4fae956c192dadcdb5dace96db71fa0b827333cce7c7b38dc71446f024d8a340" | ||
1070 | +dependencies = [ | ||
1071 | + "cc", | ||
1072 | + "libc", | ||
1073 | +] | ||
1074 | + | ||
1075 | +[[package]] | ||
1076 | +name = "libssh2-sys" | ||
1077 | +version = "0.2.23" | ||
1078 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1079 | +checksum = "b094a36eb4b8b8c8a7b4b8ae43b2944502be3e59cd87687595cf6b0a71b3f4ca" | ||
1080 | +dependencies = [ | ||
1081 | + "cc", | ||
1082 | + "libc", | ||
1083 | + "libz-sys", | ||
1084 | + "openssl-sys", | ||
1085 | + "pkg-config", | ||
1086 | + "vcpkg", | ||
1087 | +] | ||
1088 | + | ||
1089 | +[[package]] | ||
1090 | +name = "libz-sys" | ||
1091 | +version = "1.1.12" | ||
1092 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1093 | +checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" | ||
1094 | +dependencies = [ | ||
1095 | + "cc", | ||
1096 | + "libc", | ||
1097 | + "pkg-config", | ||
1098 | + "vcpkg", | ||
1099 | +] | ||
1100 | + | ||
1101 | +[[package]] | ||
1102 | +name = "linux-raw-sys" | ||
1103 | +version = "0.4.5" | ||
1104 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1105 | +checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" | ||
1106 | + | ||
1107 | +[[package]] | ||
1108 | +name = "log" | ||
1109 | +version = "0.4.19" | ||
1110 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1111 | +checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" | ||
1112 | + | ||
1113 | +[[package]] | ||
1114 | +name = "memchr" | ||
1115 | +version = "2.5.0" | ||
1116 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1117 | +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" | ||
1118 | + | ||
1119 | +[[package]] | ||
1120 | +name = "miniz_oxide" | ||
1121 | +version = "0.7.1" | ||
1122 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1123 | +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" | ||
1124 | +dependencies = [ | ||
1125 | + "adler", | ||
1126 | +] | ||
1127 | + | ||
1128 | +[[package]] | ||
1129 | +name = "miow" | ||
1130 | +version = "0.5.0" | ||
1131 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1132 | +checksum = "52ffbca2f655e33c08be35d87278e5b18b89550a37dbd598c20db92f6a471123" | ||
1133 | +dependencies = [ | ||
1134 | + "windows-sys 0.42.0", | ||
1135 | +] | ||
1136 | + | ||
1137 | +[[package]] | ||
1138 | +name = "num-traits" | ||
1139 | +version = "0.2.16" | ||
1140 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1141 | +checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" | ||
1142 | +dependencies = [ | ||
1143 | + "autocfg", | ||
1144 | +] | ||
1145 | + | ||
1146 | +[[package]] | ||
1147 | +name = "once_cell" | ||
1148 | +version = "1.18.0" | ||
1149 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1150 | +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" | ||
1151 | + | ||
1152 | +[[package]] | ||
1153 | +name = "opener" | ||
1154 | +version = "0.5.2" | ||
1155 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1156 | +checksum = "293c15678e37254c15bd2f092314abb4e51d7fdde05c2021279c12631b54f005" | ||
1157 | +dependencies = [ | ||
1158 | + "bstr", | ||
1159 | + "winapi", | ||
1160 | +] | ||
1161 | + | ||
1162 | +[[package]] | ||
1163 | +name = "openssl" | ||
1164 | +version = "0.10.56" | ||
1165 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1166 | +checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e" | ||
1167 | +dependencies = [ | ||
1168 | + "bitflags 1.3.2", | ||
1169 | + "cfg-if", | ||
1170 | + "foreign-types", | ||
1171 | + "libc", | ||
1172 | + "once_cell", | ||
1173 | + "openssl-macros", | ||
1174 | + "openssl-sys", | ||
1175 | +] | ||
1176 | + | ||
1177 | +[[package]] | ||
1178 | +name = "openssl-macros" | ||
1179 | +version = "0.1.1" | ||
1180 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1181 | +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" | ||
1182 | +dependencies = [ | ||
1183 | + "proc-macro2", | ||
1184 | + "quote", | ||
1185 | + "syn 2.0.28", | ||
1186 | +] | ||
1187 | + | ||
1188 | +[[package]] | ||
1189 | +name = "openssl-probe" | ||
1190 | +version = "0.1.5" | ||
1191 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1192 | +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" | ||
1193 | + | ||
1194 | +[[package]] | ||
1195 | +name = "openssl-src" | ||
1196 | +version = "111.27.0+1.1.1v" | ||
1197 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1198 | +checksum = "06e8f197c82d7511c5b014030c9b1efeda40d7d5f99d23b4ceed3524a5e63f02" | ||
1199 | +dependencies = [ | ||
1200 | + "cc", | ||
1201 | +] | ||
1202 | + | ||
1203 | +[[package]] | ||
1204 | +name = "openssl-sys" | ||
1205 | +version = "0.9.91" | ||
1206 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1207 | +checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac" | ||
1208 | +dependencies = [ | ||
1209 | + "cc", | ||
1210 | + "libc", | ||
1211 | + "openssl-src", | ||
1212 | + "pkg-config", | ||
1213 | + "vcpkg", | ||
1214 | +] | ||
1215 | + | ||
1216 | +[[package]] | ||
1217 | +name = "ordered-float" | ||
1218 | +version = "2.10.0" | ||
1219 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1220 | +checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87" | ||
1221 | +dependencies = [ | ||
1222 | + "num-traits", | ||
1223 | +] | ||
1224 | + | ||
1225 | +[[package]] | ||
1226 | +name = "orion" | ||
1227 | +version = "0.17.5" | ||
1228 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1229 | +checksum = "b11468cc6afd61a126fe3f91cc4cc8a0dbe7917d0a4b5e8357ba91cc47444462" | ||
1230 | +dependencies = [ | ||
1231 | + "fiat-crypto", | ||
1232 | + "subtle", | ||
1233 | + "zeroize", | ||
1234 | +] | ||
1235 | + | ||
1236 | +[[package]] | ||
1237 | +name = "os_info" | ||
1238 | +version = "3.7.0" | ||
1239 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1240 | +checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e" | ||
1241 | +dependencies = [ | ||
1242 | + "log", | ||
1243 | + "serde", | ||
1244 | + "winapi", | ||
1245 | +] | ||
1246 | + | ||
1247 | +[[package]] | ||
1248 | +name = "os_str_bytes" | ||
1249 | +version = "6.5.1" | ||
1250 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1251 | +checksum = "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac" | ||
1252 | + | ||
1253 | +[[package]] | ||
1254 | +name = "p384" | ||
1255 | +version = "0.13.0" | ||
1256 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1257 | +checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209" | ||
1258 | +dependencies = [ | ||
1259 | + "ecdsa", | ||
1260 | + "elliptic-curve", | ||
1261 | + "primeorder", | ||
1262 | + "sha2", | ||
1263 | +] | ||
1264 | + | ||
1265 | +[[package]] | ||
1266 | +name = "pasetors" | ||
1267 | +version = "0.6.7" | ||
1268 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1269 | +checksum = "ba765699a309908d55950919a3445e9491453e89b2587b1b2abe4143a48894c0" | ||
1270 | +dependencies = [ | ||
1271 | + "ct-codecs", | ||
1272 | + "ed25519-compact", | ||
1273 | + "getrandom", | ||
1274 | + "orion", | ||
1275 | + "p384", | ||
1276 | + "rand_core", | ||
1277 | + "regex", | ||
1278 | + "serde", | ||
1279 | + "serde_json", | ||
1280 | + "sha2", | ||
1281 | + "subtle", | ||
1282 | + "time", | ||
1283 | + "zeroize", | ||
1284 | +] | ||
1285 | + | ||
1286 | +[[package]] | ||
1287 | +name = "pathdiff" | ||
1288 | +version = "0.2.1" | ||
1289 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1290 | +checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" | ||
1291 | + | ||
1292 | +[[package]] | ||
1293 | +name = "pem-rfc7468" | ||
1294 | +version = "0.7.0" | ||
1295 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1296 | +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" | ||
1297 | +dependencies = [ | ||
1298 | + "base64ct", | ||
1299 | +] | ||
1300 | + | ||
1301 | +[[package]] | ||
1302 | +name = "percent-encoding" | ||
1303 | +version = "2.3.0" | ||
1304 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1305 | +checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" | ||
1306 | + | ||
1307 | +[[package]] | ||
1308 | +name = "pkcs8" | ||
1309 | +version = "0.10.2" | ||
1310 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1311 | +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" | ||
1312 | +dependencies = [ | ||
1313 | + "der", | ||
1314 | + "spki", | ||
1315 | +] | ||
1316 | + | ||
1317 | +[[package]] | ||
1318 | +name = "pkg-config" | ||
1319 | +version = "0.3.27" | ||
1320 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1321 | +checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" | ||
1322 | + | ||
1323 | +[[package]] | ||
1324 | +name = "primeorder" | ||
1325 | +version = "0.13.2" | ||
1326 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1327 | +checksum = "3c2fcef82c0ec6eefcc179b978446c399b3cdf73c392c35604e399eee6df1ee3" | ||
1328 | +dependencies = [ | ||
1329 | + "elliptic-curve", | ||
1330 | +] | ||
1331 | + | ||
1332 | +[[package]] | ||
1333 | +name = "proc-macro2" | ||
1334 | +version = "1.0.66" | ||
1335 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1336 | +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" | ||
1337 | +dependencies = [ | ||
1338 | + "unicode-ident", | ||
1339 | +] | ||
1340 | + | ||
1341 | +[[package]] | ||
1342 | +name = "quote" | ||
1343 | +version = "1.0.32" | ||
1344 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1345 | +checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" | ||
1346 | +dependencies = [ | ||
1347 | + "proc-macro2", | ||
1348 | +] | ||
1349 | + | ||
1350 | +[[package]] | ||
1351 | +name = "rand_core" | ||
1352 | +version = "0.6.4" | ||
1353 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1354 | +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" | ||
1355 | +dependencies = [ | ||
1356 | + "getrandom", | ||
1357 | +] | ||
1358 | + | ||
1359 | +[[package]] | ||
1360 | +name = "rand_xoshiro" | ||
1361 | +version = "0.6.0" | ||
1362 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1363 | +checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa" | ||
1364 | +dependencies = [ | ||
1365 | + "rand_core", | ||
1366 | +] | ||
1367 | + | ||
1368 | +[[package]] | ||
1369 | +name = "redox_syscall" | ||
1370 | +version = "0.3.5" | ||
1371 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1372 | +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" | ||
1373 | +dependencies = [ | ||
1374 | + "bitflags 1.3.2", | ||
1375 | +] | ||
1376 | + | ||
1377 | +[[package]] | ||
1378 | +name = "regex" | ||
1379 | +version = "1.9.3" | ||
1380 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1381 | +checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" | ||
1382 | +dependencies = [ | ||
1383 | + "aho-corasick", | ||
1384 | + "memchr", | ||
1385 | + "regex-automata", | ||
1386 | + "regex-syntax", | ||
1387 | +] | ||
1388 | + | ||
1389 | +[[package]] | ||
1390 | +name = "regex-automata" | ||
1391 | +version = "0.3.6" | ||
1392 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1393 | +checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" | ||
1394 | +dependencies = [ | ||
1395 | + "aho-corasick", | ||
1396 | + "memchr", | ||
1397 | + "regex-syntax", | ||
1398 | +] | ||
1399 | + | ||
1400 | +[[package]] | ||
1401 | +name = "regex-syntax" | ||
1402 | +version = "0.7.4" | ||
1403 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1404 | +checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" | ||
1405 | + | ||
1406 | +[[package]] | ||
1407 | +name = "rfc6979" | ||
1408 | +version = "0.4.0" | ||
1409 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1410 | +checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" | ||
1411 | +dependencies = [ | ||
1412 | + "hmac", | ||
1413 | + "subtle", | ||
1414 | +] | ||
1415 | + | ||
1416 | +[[package]] | ||
1417 | +name = "rustc-workspace-hack" | ||
1418 | +version = "1.0.0" | ||
1419 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1420 | +checksum = "fc71d2faa173b74b232dedc235e3ee1696581bb132fc116fa3626d6151a1a8fb" | ||
1421 | + | ||
1422 | +[[package]] | ||
1423 | +name = "rustfix" | ||
1424 | +version = "0.6.1" | ||
1425 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1426 | +checksum = "ecd2853d9e26988467753bd9912c3a126f642d05d229a4b53f5752ee36c56481" | ||
1427 | +dependencies = [ | ||
1428 | + "anyhow", | ||
1429 | + "log", | ||
1430 | + "serde", | ||
1431 | + "serde_json", | ||
1432 | +] | ||
1433 | + | ||
1434 | +[[package]] | ||
1435 | +name = "rustix" | ||
1436 | +version = "0.38.8" | ||
1437 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1438 | +checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" | ||
1439 | +dependencies = [ | ||
1440 | + "bitflags 2.3.3", | ||
1441 | + "errno", | ||
1442 | + "libc", | ||
1443 | + "linux-raw-sys", | ||
1444 | + "windows-sys 0.48.0", | ||
1445 | +] | ||
1446 | + | ||
1447 | +[[package]] | ||
1448 | +name = "ryu" | ||
1449 | +version = "1.0.15" | ||
1450 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1451 | +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" | ||
1452 | + | ||
1453 | +[[package]] | ||
1454 | +name = "same-file" | ||
1455 | +version = "1.0.6" | ||
1456 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1457 | +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" | ||
1458 | +dependencies = [ | ||
1459 | + "winapi-util", | ||
1460 | +] | ||
1461 | + | ||
1462 | +[[package]] | ||
1463 | +name = "schannel" | ||
1464 | +version = "0.1.22" | ||
1465 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1466 | +checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" | ||
1467 | +dependencies = [ | ||
1468 | + "windows-sys 0.48.0", | ||
1469 | +] | ||
1470 | + | ||
1471 | +[[package]] | ||
1472 | +name = "sec1" | ||
1473 | +version = "0.7.3" | ||
1474 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1475 | +checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" | ||
1476 | +dependencies = [ | ||
1477 | + "base16ct", | ||
1478 | + "der", | ||
1479 | + "generic-array", | ||
1480 | + "pkcs8", | ||
1481 | + "subtle", | ||
1482 | + "zeroize", | ||
1483 | +] | ||
1484 | + | ||
1485 | +[[package]] | ||
1486 | +name = "semver" | ||
1487 | +version = "1.0.18" | ||
1488 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1489 | +checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" | ||
1490 | +dependencies = [ | ||
1491 | + "serde", | ||
1492 | +] | ||
1493 | + | ||
1494 | +[[package]] | ||
1495 | +name = "serde" | ||
1496 | +version = "1.0.183" | ||
1497 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1498 | +checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" | ||
1499 | +dependencies = [ | ||
1500 | + "serde_derive", | ||
1501 | +] | ||
1502 | + | ||
1503 | +[[package]] | ||
1504 | +name = "serde-value" | ||
1505 | +version = "0.7.0" | ||
1506 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1507 | +checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" | ||
1508 | +dependencies = [ | ||
1509 | + "ordered-float", | ||
1510 | + "serde", | ||
1511 | +] | ||
1512 | + | ||
1513 | +[[package]] | ||
1514 | +name = "serde_derive" | ||
1515 | +version = "1.0.183" | ||
1516 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1517 | +checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" | ||
1518 | +dependencies = [ | ||
1519 | + "proc-macro2", | ||
1520 | + "quote", | ||
1521 | + "syn 2.0.28", | ||
1522 | +] | ||
1523 | + | ||
1524 | +[[package]] | ||
1525 | +name = "serde_ignored" | ||
1526 | +version = "0.1.9" | ||
1527 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1528 | +checksum = "80c31d5c53fd39f208e770f5a20a0bb214dee2a8d0d8adba18e19ad95a482ca5" | ||
1529 | +dependencies = [ | ||
1530 | + "serde", | ||
1531 | +] | ||
1532 | + | ||
1533 | +[[package]] | ||
1534 | +name = "serde_json" | ||
1535 | +version = "1.0.104" | ||
1536 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1537 | +checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" | ||
1538 | +dependencies = [ | ||
1539 | + "itoa", | ||
1540 | + "ryu", | ||
1541 | + "serde", | ||
1542 | +] | ||
1543 | + | ||
1544 | +[[package]] | ||
1545 | +name = "serde_spanned" | ||
1546 | +version = "0.6.3" | ||
1547 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1548 | +checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" | ||
1549 | +dependencies = [ | ||
1550 | + "serde", | ||
1551 | +] | ||
1552 | + | ||
1553 | +[[package]] | ||
1554 | +name = "sha1" | ||
1555 | +version = "0.10.5" | ||
1556 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1557 | +checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" | ||
1558 | +dependencies = [ | ||
1559 | + "cfg-if", | ||
1560 | + "cpufeatures", | ||
1561 | + "digest", | ||
1562 | +] | ||
1563 | + | ||
1564 | +[[package]] | ||
1565 | +name = "sha2" | ||
1566 | +version = "0.10.7" | ||
1567 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1568 | +checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" | ||
1569 | +dependencies = [ | ||
1570 | + "cfg-if", | ||
1571 | + "cpufeatures", | ||
1572 | + "digest", | ||
1573 | +] | ||
1574 | + | ||
1575 | +[[package]] | ||
1576 | +name = "shell-escape" | ||
1577 | +version = "0.1.5" | ||
1578 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1579 | +checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f" | ||
1580 | + | ||
1581 | +[[package]] | ||
1582 | +name = "signature" | ||
1583 | +version = "2.1.0" | ||
1584 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1585 | +checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500" | ||
1586 | +dependencies = [ | ||
1587 | + "digest", | ||
1588 | + "rand_core", | ||
1589 | +] | ||
1590 | + | ||
1591 | +[[package]] | ||
1592 | +name = "sized-chunks" | ||
1593 | +version = "0.6.5" | ||
1594 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1595 | +checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e" | ||
1596 | +dependencies = [ | ||
1597 | + "bitmaps", | ||
1598 | + "typenum", | ||
1599 | +] | ||
1600 | + | ||
1601 | +[[package]] | ||
1602 | +name = "socket2" | ||
1603 | +version = "0.4.9" | ||
1604 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1605 | +checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" | ||
1606 | +dependencies = [ | ||
1607 | + "libc", | ||
1608 | + "winapi", | ||
1609 | +] | ||
1610 | + | ||
1611 | +[[package]] | ||
1612 | +name = "spki" | ||
1613 | +version = "0.7.2" | ||
1614 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1615 | +checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a" | ||
1616 | +dependencies = [ | ||
1617 | + "base64ct", | ||
1618 | + "der", | ||
1619 | +] | ||
1620 | + | ||
1621 | +[[package]] | ||
1622 | +name = "static_assertions" | ||
1623 | +version = "1.1.0" | ||
1624 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1625 | +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" | ||
1626 | + | ||
1627 | +[[package]] | ||
1628 | +name = "strip-ansi-escapes" | ||
1629 | +version = "0.1.1" | ||
1630 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1631 | +checksum = "011cbb39cf7c1f62871aea3cc46e5817b0937b49e9447370c93cacbe93a766d8" | ||
1632 | +dependencies = [ | ||
1633 | + "vte", | ||
1634 | +] | ||
1635 | + | ||
1636 | +[[package]] | ||
1637 | +name = "strsim" | ||
1638 | +version = "0.10.0" | ||
1639 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1640 | +checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" | ||
1641 | + | ||
1642 | +[[package]] | ||
1643 | +name = "subtle" | ||
1644 | +version = "2.5.0" | ||
1645 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1646 | +checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" | ||
1647 | + | ||
1648 | +[[package]] | ||
1649 | +name = "syn" | ||
1650 | +version = "1.0.109" | ||
1651 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1652 | +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" | ||
1653 | +dependencies = [ | ||
1654 | + "proc-macro2", | ||
1655 | + "quote", | ||
1656 | + "unicode-ident", | ||
1657 | +] | ||
1658 | + | ||
1659 | +[[package]] | ||
1660 | +name = "syn" | ||
1661 | +version = "2.0.28" | ||
1662 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1663 | +checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567" | ||
1664 | +dependencies = [ | ||
1665 | + "proc-macro2", | ||
1666 | + "quote", | ||
1667 | + "unicode-ident", | ||
1668 | +] | ||
1669 | + | ||
1670 | +[[package]] | ||
1671 | +name = "tar" | ||
1672 | +version = "0.4.40" | ||
1673 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1674 | +checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" | ||
1675 | +dependencies = [ | ||
1676 | + "filetime", | ||
1677 | + "libc", | ||
1678 | +] | ||
1679 | + | ||
1680 | +[[package]] | ||
1681 | +name = "tempfile" | ||
1682 | +version = "3.7.1" | ||
1683 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1684 | +checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651" | ||
1685 | +dependencies = [ | ||
1686 | + "cfg-if", | ||
1687 | + "fastrand", | ||
1688 | + "redox_syscall", | ||
1689 | + "rustix", | ||
1690 | + "windows-sys 0.48.0", | ||
1691 | +] | ||
1692 | + | ||
1693 | +[[package]] | ||
1694 | +name = "termcolor" | ||
1695 | +version = "1.2.0" | ||
1696 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1697 | +checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" | ||
1698 | +dependencies = [ | ||
1699 | + "winapi-util", | ||
1700 | +] | ||
1701 | + | ||
1702 | +[[package]] | ||
1703 | +name = "textwrap" | ||
1704 | +version = "0.16.0" | ||
1705 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1706 | +checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" | ||
1707 | + | ||
1708 | +[[package]] | ||
1709 | +name = "thread_local" | ||
1710 | +version = "1.1.7" | ||
1711 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1712 | +checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" | ||
1713 | +dependencies = [ | ||
1714 | + "cfg-if", | ||
1715 | + "once_cell", | ||
1716 | +] | ||
1717 | + | ||
1718 | +[[package]] | ||
1719 | +name = "time" | ||
1720 | +version = "0.3.25" | ||
1721 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1722 | +checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea" | ||
1723 | +dependencies = [ | ||
1724 | + "deranged", | ||
1725 | + "itoa", | ||
1726 | + "serde", | ||
1727 | + "time-core", | ||
1728 | + "time-macros", | ||
1729 | +] | ||
1730 | + | ||
1731 | +[[package]] | ||
1732 | +name = "time-core" | ||
1733 | +version = "0.1.1" | ||
1734 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1735 | +checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" | ||
1736 | + | ||
1737 | +[[package]] | ||
1738 | +name = "time-macros" | ||
1739 | +version = "0.2.11" | ||
1740 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1741 | +checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd" | ||
1742 | +dependencies = [ | ||
1743 | + "time-core", | ||
1744 | +] | ||
1745 | + | ||
1746 | +[[package]] | ||
1747 | +name = "tinyvec" | ||
1748 | +version = "1.6.0" | ||
1749 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1750 | +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" | ||
1751 | +dependencies = [ | ||
1752 | + "tinyvec_macros", | ||
1753 | +] | ||
1754 | + | ||
1755 | +[[package]] | ||
1756 | +name = "tinyvec_macros" | ||
1757 | +version = "0.1.1" | ||
1758 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1759 | +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" | ||
1760 | + | ||
1761 | +[[package]] | ||
1762 | +name = "toml" | ||
1763 | +version = "0.5.11" | ||
1764 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1765 | +checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" | ||
1766 | +dependencies = [ | ||
1767 | + "serde", | ||
1768 | +] | ||
1769 | + | ||
1770 | +[[package]] | ||
1771 | +name = "toml" | ||
1772 | +version = "0.7.6" | ||
1773 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1774 | +checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" | ||
1775 | +dependencies = [ | ||
1776 | + "serde", | ||
1777 | + "serde_spanned", | ||
1778 | + "toml_datetime 0.6.3", | ||
1779 | + "toml_edit 0.19.14", | ||
1780 | +] | ||
1781 | + | ||
1782 | +[[package]] | ||
1783 | +name = "toml_datetime" | ||
1784 | +version = "0.5.1" | ||
1785 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1786 | +checksum = "4553f467ac8e3d374bc9a177a26801e5d0f9b211aa1673fb137a403afd1c9cf5" | ||
1787 | +dependencies = [ | ||
1788 | + "serde", | ||
1789 | +] | ||
1790 | + | ||
1791 | +[[package]] | ||
1792 | +name = "toml_datetime" | ||
1793 | +version = "0.6.3" | ||
1794 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1795 | +checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" | ||
1796 | +dependencies = [ | ||
1797 | + "serde", | ||
1798 | +] | ||
1799 | + | ||
1800 | +[[package]] | ||
1801 | +name = "toml_edit" | ||
1802 | +version = "0.15.0" | ||
1803 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1804 | +checksum = "b1541ba70885967e662f69d31ab3aeca7b1aaecfcd58679590b893e9239c3646" | ||
1805 | +dependencies = [ | ||
1806 | + "combine", | ||
1807 | + "indexmap 1.9.3", | ||
1808 | + "itertools", | ||
1809 | + "kstring", | ||
1810 | + "serde", | ||
1811 | + "toml_datetime 0.5.1", | ||
1812 | +] | ||
1813 | + | ||
1814 | +[[package]] | ||
1815 | +name = "toml_edit" | ||
1816 | +version = "0.19.14" | ||
1817 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1818 | +checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" | ||
1819 | +dependencies = [ | ||
1820 | + "indexmap 2.0.0", | ||
1821 | + "serde", | ||
1822 | + "serde_spanned", | ||
1823 | + "toml_datetime 0.6.3", | ||
1824 | + "winnow", | ||
1825 | +] | ||
1826 | + | ||
1827 | +[[package]] | ||
1828 | +name = "typenum" | ||
1829 | +version = "1.16.0" | ||
1830 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1831 | +checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" | ||
1832 | + | ||
1833 | +[[package]] | ||
1834 | +name = "unicode-bidi" | ||
1835 | +version = "0.3.13" | ||
1836 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1837 | +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" | ||
1838 | + | ||
1839 | +[[package]] | ||
1840 | +name = "unicode-ident" | ||
1841 | +version = "1.0.11" | ||
1842 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1843 | +checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" | ||
1844 | + | ||
1845 | +[[package]] | ||
1846 | +name = "unicode-normalization" | ||
1847 | +version = "0.1.22" | ||
1848 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1849 | +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" | ||
1850 | +dependencies = [ | ||
1851 | + "tinyvec", | ||
1852 | +] | ||
1853 | + | ||
1854 | +[[package]] | ||
1855 | +name = "unicode-width" | ||
1856 | +version = "0.1.10" | ||
1857 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1858 | +checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" | ||
1859 | + | ||
1860 | +[[package]] | ||
1861 | +name = "unicode-xid" | ||
1862 | +version = "0.2.4" | ||
1863 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1864 | +checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" | ||
1865 | + | ||
1866 | +[[package]] | ||
1867 | +name = "url" | ||
1868 | +version = "2.4.0" | ||
1869 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1870 | +checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" | ||
1871 | +dependencies = [ | ||
1872 | + "form_urlencoded", | ||
1873 | + "idna", | ||
1874 | + "percent-encoding", | ||
1875 | +] | ||
1876 | + | ||
1877 | +[[package]] | ||
1878 | +name = "utf8parse" | ||
1879 | +version = "0.2.1" | ||
1880 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1881 | +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" | ||
1882 | + | ||
1883 | +[[package]] | ||
1884 | +name = "vcpkg" | ||
1885 | +version = "0.2.15" | ||
1886 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1887 | +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" | ||
1888 | + | ||
1889 | +[[package]] | ||
1890 | +name = "version_check" | ||
1891 | +version = "0.9.4" | ||
1892 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1893 | +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" | ||
1894 | + | ||
1895 | +[[package]] | ||
1896 | +name = "vte" | ||
1897 | +version = "0.10.1" | ||
1898 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1899 | +checksum = "6cbce692ab4ca2f1f3047fcf732430249c0e971bfdd2b234cf2c47ad93af5983" | ||
1900 | +dependencies = [ | ||
1901 | + "arrayvec", | ||
1902 | + "utf8parse", | ||
1903 | + "vte_generate_state_changes", | ||
1904 | +] | ||
1905 | + | ||
1906 | +[[package]] | ||
1907 | +name = "vte_generate_state_changes" | ||
1908 | +version = "0.1.1" | ||
1909 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1910 | +checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff" | ||
1911 | +dependencies = [ | ||
1912 | + "proc-macro2", | ||
1913 | + "quote", | ||
1914 | +] | ||
1915 | + | ||
1916 | +[[package]] | ||
1917 | +name = "walkdir" | ||
1918 | +version = "2.3.3" | ||
1919 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1920 | +checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" | ||
1921 | +dependencies = [ | ||
1922 | + "same-file", | ||
1923 | + "winapi-util", | ||
1924 | +] | ||
1925 | + | ||
1926 | +[[package]] | ||
1927 | +name = "wasi" | ||
1928 | +version = "0.11.0+wasi-snapshot-preview1" | ||
1929 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1930 | +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" | ||
1931 | + | ||
1932 | +[[package]] | ||
1933 | +name = "wasm-bindgen" | ||
1934 | +version = "0.2.87" | ||
1935 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1936 | +checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" | ||
1937 | +dependencies = [ | ||
1938 | + "cfg-if", | ||
1939 | + "wasm-bindgen-macro", | ||
1940 | +] | ||
1941 | + | ||
1942 | +[[package]] | ||
1943 | +name = "wasm-bindgen-backend" | ||
1944 | +version = "0.2.87" | ||
1945 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1946 | +checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" | ||
1947 | +dependencies = [ | ||
1948 | + "bumpalo", | ||
1949 | + "log", | ||
1950 | + "once_cell", | ||
1951 | + "proc-macro2", | ||
1952 | + "quote", | ||
1953 | + "syn 2.0.28", | ||
1954 | + "wasm-bindgen-shared", | ||
1955 | +] | ||
1956 | + | ||
1957 | +[[package]] | ||
1958 | +name = "wasm-bindgen-macro" | ||
1959 | +version = "0.2.87" | ||
1960 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1961 | +checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" | ||
1962 | +dependencies = [ | ||
1963 | + "quote", | ||
1964 | + "wasm-bindgen-macro-support", | ||
1965 | +] | ||
1966 | + | ||
1967 | +[[package]] | ||
1968 | +name = "wasm-bindgen-macro-support" | ||
1969 | +version = "0.2.87" | ||
1970 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1971 | +checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" | ||
1972 | +dependencies = [ | ||
1973 | + "proc-macro2", | ||
1974 | + "quote", | ||
1975 | + "syn 2.0.28", | ||
1976 | + "wasm-bindgen-backend", | ||
1977 | + "wasm-bindgen-shared", | ||
1978 | +] | ||
1979 | + | ||
1980 | +[[package]] | ||
1981 | +name = "wasm-bindgen-shared" | ||
1982 | +version = "0.2.87" | ||
1983 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1984 | +checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" | ||
1985 | + | ||
1986 | +[[package]] | ||
1987 | +name = "winapi" | ||
1988 | +version = "0.3.9" | ||
1989 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1990 | +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" | ||
1991 | +dependencies = [ | ||
1992 | + "winapi-i686-pc-windows-gnu", | ||
1993 | + "winapi-x86_64-pc-windows-gnu", | ||
1994 | +] | ||
1995 | + | ||
1996 | +[[package]] | ||
1997 | +name = "winapi-i686-pc-windows-gnu" | ||
1998 | +version = "0.4.0" | ||
1999 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2000 | +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | ||
2001 | + | ||
2002 | +[[package]] | ||
2003 | +name = "winapi-util" | ||
2004 | +version = "0.1.5" | ||
2005 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2006 | +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" | ||
2007 | +dependencies = [ | ||
2008 | + "winapi", | ||
2009 | +] | ||
2010 | + | ||
2011 | +[[package]] | ||
2012 | +name = "winapi-x86_64-pc-windows-gnu" | ||
2013 | +version = "0.4.0" | ||
2014 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2015 | +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | ||
2016 | + | ||
2017 | +[[package]] | ||
2018 | +name = "windows-sys" | ||
2019 | +version = "0.42.0" | ||
2020 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2021 | +checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" | ||
2022 | +dependencies = [ | ||
2023 | + "windows_aarch64_gnullvm 0.42.2", | ||
2024 | + "windows_aarch64_msvc 0.42.2", | ||
2025 | + "windows_i686_gnu 0.42.2", | ||
2026 | + "windows_i686_msvc 0.42.2", | ||
2027 | + "windows_x86_64_gnu 0.42.2", | ||
2028 | + "windows_x86_64_gnullvm 0.42.2", | ||
2029 | + "windows_x86_64_msvc 0.42.2", | ||
2030 | +] | ||
2031 | + | ||
2032 | +[[package]] | ||
2033 | +name = "windows-sys" | ||
2034 | +version = "0.45.0" | ||
2035 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2036 | +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" | ||
2037 | +dependencies = [ | ||
2038 | + "windows-targets 0.42.2", | ||
2039 | +] | ||
2040 | + | ||
2041 | +[[package]] | ||
2042 | +name = "windows-sys" | ||
2043 | +version = "0.48.0" | ||
2044 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2045 | +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" | ||
2046 | +dependencies = [ | ||
2047 | + "windows-targets 0.48.1", | ||
2048 | +] | ||
2049 | + | ||
2050 | +[[package]] | ||
2051 | +name = "windows-targets" | ||
2052 | +version = "0.42.2" | ||
2053 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2054 | +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" | ||
2055 | +dependencies = [ | ||
2056 | + "windows_aarch64_gnullvm 0.42.2", | ||
2057 | + "windows_aarch64_msvc 0.42.2", | ||
2058 | + "windows_i686_gnu 0.42.2", | ||
2059 | + "windows_i686_msvc 0.42.2", | ||
2060 | + "windows_x86_64_gnu 0.42.2", | ||
2061 | + "windows_x86_64_gnullvm 0.42.2", | ||
2062 | + "windows_x86_64_msvc 0.42.2", | ||
2063 | +] | ||
2064 | + | ||
2065 | +[[package]] | ||
2066 | +name = "windows-targets" | ||
2067 | +version = "0.48.1" | ||
2068 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2069 | +checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" | ||
2070 | +dependencies = [ | ||
2071 | + "windows_aarch64_gnullvm 0.48.0", | ||
2072 | + "windows_aarch64_msvc 0.48.0", | ||
2073 | + "windows_i686_gnu 0.48.0", | ||
2074 | + "windows_i686_msvc 0.48.0", | ||
2075 | + "windows_x86_64_gnu 0.48.0", | ||
2076 | + "windows_x86_64_gnullvm 0.48.0", | ||
2077 | + "windows_x86_64_msvc 0.48.0", | ||
2078 | +] | ||
2079 | + | ||
2080 | +[[package]] | ||
2081 | +name = "windows_aarch64_gnullvm" | ||
2082 | +version = "0.42.2" | ||
2083 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2084 | +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" | ||
2085 | + | ||
2086 | +[[package]] | ||
2087 | +name = "windows_aarch64_gnullvm" | ||
2088 | +version = "0.48.0" | ||
2089 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2090 | +checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" | ||
2091 | + | ||
2092 | +[[package]] | ||
2093 | +name = "windows_aarch64_msvc" | ||
2094 | +version = "0.42.2" | ||
2095 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2096 | +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" | ||
2097 | + | ||
2098 | +[[package]] | ||
2099 | +name = "windows_aarch64_msvc" | ||
2100 | +version = "0.48.0" | ||
2101 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2102 | +checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" | ||
2103 | + | ||
2104 | +[[package]] | ||
2105 | +name = "windows_i686_gnu" | ||
2106 | +version = "0.42.2" | ||
2107 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2108 | +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" | ||
2109 | + | ||
2110 | +[[package]] | ||
2111 | +name = "windows_i686_gnu" | ||
2112 | +version = "0.48.0" | ||
2113 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2114 | +checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" | ||
2115 | + | ||
2116 | +[[package]] | ||
2117 | +name = "windows_i686_msvc" | ||
2118 | +version = "0.42.2" | ||
2119 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2120 | +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" | ||
2121 | + | ||
2122 | +[[package]] | ||
2123 | +name = "windows_i686_msvc" | ||
2124 | +version = "0.48.0" | ||
2125 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2126 | +checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" | ||
2127 | + | ||
2128 | +[[package]] | ||
2129 | +name = "windows_x86_64_gnu" | ||
2130 | +version = "0.42.2" | ||
2131 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2132 | +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" | ||
2133 | + | ||
2134 | +[[package]] | ||
2135 | +name = "windows_x86_64_gnu" | ||
2136 | +version = "0.48.0" | ||
2137 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2138 | +checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" | ||
2139 | + | ||
2140 | +[[package]] | ||
2141 | +name = "windows_x86_64_gnullvm" | ||
2142 | +version = "0.42.2" | ||
2143 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2144 | +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" | ||
2145 | + | ||
2146 | +[[package]] | ||
2147 | +name = "windows_x86_64_gnullvm" | ||
2148 | +version = "0.48.0" | ||
2149 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2150 | +checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" | ||
2151 | + | ||
2152 | +[[package]] | ||
2153 | +name = "windows_x86_64_msvc" | ||
2154 | +version = "0.42.2" | ||
2155 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2156 | +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" | ||
2157 | + | ||
2158 | +[[package]] | ||
2159 | +name = "windows_x86_64_msvc" | ||
2160 | +version = "0.48.0" | ||
2161 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2162 | +checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" | ||
2163 | + | ||
2164 | +[[package]] | ||
2165 | +name = "winnow" | ||
2166 | +version = "0.5.7" | ||
2167 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2168 | +checksum = "19f495880723d0999eb3500a9064d8dbcf836460b24c17df80ea7b5794053aac" | ||
2169 | +dependencies = [ | ||
2170 | + "memchr", | ||
2171 | +] | ||
2172 | + | ||
2173 | +[[package]] | ||
2174 | +name = "zeroize" | ||
2175 | +version = "1.6.0" | ||
2176 | +source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2177 | +checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" | ||
2178 | -- | ||
2179 | 2.34.1 | ||
2180 | |||