diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 640 |
1 files changed, 440 insertions, 200 deletions
@@ -4,9 +4,9 @@ version = 3 | |||
4 | 4 | ||
5 | [[package]] | 5 | [[package]] |
6 | name = "addr2line" | 6 | name = "addr2line" |
7 | version = "0.21.0" | 7 | version = "0.22.0" |
8 | source = "registry+https://github.com/rust-lang/crates.io-index" | 8 | source = "registry+https://github.com/rust-lang/crates.io-index" |
9 | checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" | 9 | checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" |
10 | dependencies = [ | 10 | dependencies = [ |
11 | "gimli", | 11 | "gimli", |
12 | ] | 12 | ] |
@@ -19,47 +19,48 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" | |||
19 | 19 | ||
20 | [[package]] | 20 | [[package]] |
21 | name = "anstream" | 21 | name = "anstream" |
22 | version = "0.6.13" | 22 | version = "0.6.14" |
23 | source = "registry+https://github.com/rust-lang/crates.io-index" | 23 | source = "registry+https://github.com/rust-lang/crates.io-index" |
24 | checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb" | 24 | checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" |
25 | dependencies = [ | 25 | dependencies = [ |
26 | "anstyle", | 26 | "anstyle", |
27 | "anstyle-parse", | 27 | "anstyle-parse", |
28 | "anstyle-query", | 28 | "anstyle-query", |
29 | "anstyle-wincon", | 29 | "anstyle-wincon", |
30 | "colorchoice", | 30 | "colorchoice", |
31 | "is_terminal_polyfill", | ||
31 | "utf8parse", | 32 | "utf8parse", |
32 | ] | 33 | ] |
33 | 34 | ||
34 | [[package]] | 35 | [[package]] |
35 | name = "anstyle" | 36 | name = "anstyle" |
36 | version = "1.0.6" | 37 | version = "1.0.7" |
37 | source = "registry+https://github.com/rust-lang/crates.io-index" | 38 | source = "registry+https://github.com/rust-lang/crates.io-index" |
38 | checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" | 39 | checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" |
39 | 40 | ||
40 | [[package]] | 41 | [[package]] |
41 | name = "anstyle-parse" | 42 | name = "anstyle-parse" |
42 | version = "0.2.3" | 43 | version = "0.2.4" |
43 | source = "registry+https://github.com/rust-lang/crates.io-index" | 44 | source = "registry+https://github.com/rust-lang/crates.io-index" |
44 | checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" | 45 | checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" |
45 | dependencies = [ | 46 | dependencies = [ |
46 | "utf8parse", | 47 | "utf8parse", |
47 | ] | 48 | ] |
48 | 49 | ||
49 | [[package]] | 50 | [[package]] |
50 | name = "anstyle-query" | 51 | name = "anstyle-query" |
51 | version = "1.0.2" | 52 | version = "1.1.0" |
52 | source = "registry+https://github.com/rust-lang/crates.io-index" | 53 | source = "registry+https://github.com/rust-lang/crates.io-index" |
53 | checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" | 54 | checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" |
54 | dependencies = [ | 55 | dependencies = [ |
55 | "windows-sys 0.52.0", | 56 | "windows-sys 0.52.0", |
56 | ] | 57 | ] |
57 | 58 | ||
58 | [[package]] | 59 | [[package]] |
59 | name = "anstyle-wincon" | 60 | name = "anstyle-wincon" |
60 | version = "3.0.2" | 61 | version = "3.0.3" |
61 | source = "registry+https://github.com/rust-lang/crates.io-index" | 62 | source = "registry+https://github.com/rust-lang/crates.io-index" |
62 | checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" | 63 | checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" |
63 | dependencies = [ | 64 | dependencies = [ |
64 | "anstyle", | 65 | "anstyle", |
65 | "windows-sys 0.52.0", | 66 | "windows-sys 0.52.0", |
@@ -67,15 +68,15 @@ dependencies = [ | |||
67 | 68 | ||
68 | [[package]] | 69 | [[package]] |
69 | name = "anyhow" | 70 | name = "anyhow" |
70 | version = "1.0.82" | 71 | version = "1.0.86" |
71 | source = "registry+https://github.com/rust-lang/crates.io-index" | 72 | source = "registry+https://github.com/rust-lang/crates.io-index" |
72 | checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" | 73 | checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" |
73 | 74 | ||
74 | [[package]] | 75 | [[package]] |
75 | name = "async-trait" | 76 | name = "async-trait" |
76 | version = "0.1.79" | 77 | version = "0.1.80" |
77 | source = "registry+https://github.com/rust-lang/crates.io-index" | 78 | source = "registry+https://github.com/rust-lang/crates.io-index" |
78 | checksum = "a507401cad91ec6a857ed5513a2073c82a9b9048762b885bb98655b306964681" | 79 | checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" |
79 | dependencies = [ | 80 | dependencies = [ |
80 | "proc-macro2", | 81 | "proc-macro2", |
81 | "quote", | 82 | "quote", |
@@ -83,16 +84,22 @@ dependencies = [ | |||
83 | ] | 84 | ] |
84 | 85 | ||
85 | [[package]] | 86 | [[package]] |
87 | name = "atomic-waker" | ||
88 | version = "1.1.2" | ||
89 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
90 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" | ||
91 | |||
92 | [[package]] | ||
86 | name = "autocfg" | 93 | name = "autocfg" |
87 | version = "1.2.0" | 94 | version = "1.3.0" |
88 | source = "registry+https://github.com/rust-lang/crates.io-index" | 95 | source = "registry+https://github.com/rust-lang/crates.io-index" |
89 | checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" | 96 | checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" |
90 | 97 | ||
91 | [[package]] | 98 | [[package]] |
92 | name = "backtrace" | 99 | name = "backtrace" |
93 | version = "0.3.71" | 100 | version = "0.3.73" |
94 | source = "registry+https://github.com/rust-lang/crates.io-index" | 101 | source = "registry+https://github.com/rust-lang/crates.io-index" |
95 | checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" | 102 | checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" |
96 | dependencies = [ | 103 | dependencies = [ |
97 | "addr2line", | 104 | "addr2line", |
98 | "cc", | 105 | "cc", |
@@ -111,9 +118,9 @@ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" | |||
111 | 118 | ||
112 | [[package]] | 119 | [[package]] |
113 | name = "base64" | 120 | name = "base64" |
114 | version = "0.22.0" | 121 | version = "0.22.1" |
115 | source = "registry+https://github.com/rust-lang/crates.io-index" | 122 | source = "registry+https://github.com/rust-lang/crates.io-index" |
116 | checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" | 123 | checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" |
117 | 124 | ||
118 | [[package]] | 125 | [[package]] |
119 | name = "bitflags" | 126 | name = "bitflags" |
@@ -159,9 +166,9 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" | |||
159 | 166 | ||
160 | [[package]] | 167 | [[package]] |
161 | name = "cc" | 168 | name = "cc" |
162 | version = "1.0.92" | 169 | version = "1.0.99" |
163 | source = "registry+https://github.com/rust-lang/crates.io-index" | 170 | source = "registry+https://github.com/rust-lang/crates.io-index" |
164 | checksum = "2678b2e3449475e95b0aa6f9b506a28e61b3dc8996592b983695e8ebb58a8b41" | 171 | checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695" |
165 | 172 | ||
166 | [[package]] | 173 | [[package]] |
167 | name = "cfg-if" | 174 | name = "cfg-if" |
@@ -171,9 +178,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | |||
171 | 178 | ||
172 | [[package]] | 179 | [[package]] |
173 | name = "clap" | 180 | name = "clap" |
174 | version = "4.5.4" | 181 | version = "4.5.7" |
175 | source = "registry+https://github.com/rust-lang/crates.io-index" | 182 | source = "registry+https://github.com/rust-lang/crates.io-index" |
176 | checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" | 183 | checksum = "5db83dced34638ad474f39f250d7fea9598bdd239eaced1bdf45d597da0f433f" |
177 | dependencies = [ | 184 | dependencies = [ |
178 | "clap_builder", | 185 | "clap_builder", |
179 | "clap_derive", | 186 | "clap_derive", |
@@ -181,9 +188,9 @@ dependencies = [ | |||
181 | 188 | ||
182 | [[package]] | 189 | [[package]] |
183 | name = "clap_builder" | 190 | name = "clap_builder" |
184 | version = "4.5.2" | 191 | version = "4.5.7" |
185 | source = "registry+https://github.com/rust-lang/crates.io-index" | 192 | source = "registry+https://github.com/rust-lang/crates.io-index" |
186 | checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" | 193 | checksum = "f7e204572485eb3fbf28f871612191521df159bc3e15a9f5064c66dba3a8c05f" |
187 | dependencies = [ | 194 | dependencies = [ |
188 | "anstream", | 195 | "anstream", |
189 | "anstyle", | 196 | "anstyle", |
@@ -193,18 +200,18 @@ dependencies = [ | |||
193 | 200 | ||
194 | [[package]] | 201 | [[package]] |
195 | name = "clap_complete" | 202 | name = "clap_complete" |
196 | version = "4.5.2" | 203 | version = "4.5.5" |
197 | source = "registry+https://github.com/rust-lang/crates.io-index" | 204 | source = "registry+https://github.com/rust-lang/crates.io-index" |
198 | checksum = "dd79504325bf38b10165b02e89b4347300f855f273c4cb30c4a3209e6583275e" | 205 | checksum = "d2020fa13af48afc65a9a87335bda648309ab3d154cd03c7ff95b378c7ed39c4" |
199 | dependencies = [ | 206 | dependencies = [ |
200 | "clap", | 207 | "clap", |
201 | ] | 208 | ] |
202 | 209 | ||
203 | [[package]] | 210 | [[package]] |
204 | name = "clap_derive" | 211 | name = "clap_derive" |
205 | version = "4.5.4" | 212 | version = "4.5.5" |
206 | source = "registry+https://github.com/rust-lang/crates.io-index" | 213 | source = "registry+https://github.com/rust-lang/crates.io-index" |
207 | checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" | 214 | checksum = "c780290ccf4fb26629baa7a1081e68ced113f1d3ec302fa5948f1c381ebf06c6" |
208 | dependencies = [ | 215 | dependencies = [ |
209 | "heck", | 216 | "heck", |
210 | "proc-macro2", | 217 | "proc-macro2", |
@@ -214,15 +221,15 @@ dependencies = [ | |||
214 | 221 | ||
215 | [[package]] | 222 | [[package]] |
216 | name = "clap_lex" | 223 | name = "clap_lex" |
217 | version = "0.7.0" | 224 | version = "0.7.1" |
218 | source = "registry+https://github.com/rust-lang/crates.io-index" | 225 | source = "registry+https://github.com/rust-lang/crates.io-index" |
219 | checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" | 226 | checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" |
220 | 227 | ||
221 | [[package]] | 228 | [[package]] |
222 | name = "colorchoice" | 229 | name = "colorchoice" |
223 | version = "1.0.0" | 230 | version = "1.0.1" |
224 | source = "registry+https://github.com/rust-lang/crates.io-index" | 231 | source = "registry+https://github.com/rust-lang/crates.io-index" |
225 | checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" | 232 | checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" |
226 | 233 | ||
227 | [[package]] | 234 | [[package]] |
228 | name = "config" | 235 | name = "config" |
@@ -329,9 +336,9 @@ dependencies = [ | |||
329 | 336 | ||
330 | [[package]] | 337 | [[package]] |
331 | name = "data-encoding" | 338 | name = "data-encoding" |
332 | version = "2.5.0" | 339 | version = "2.6.0" |
333 | source = "registry+https://github.com/rust-lang/crates.io-index" | 340 | source = "registry+https://github.com/rust-lang/crates.io-index" |
334 | checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" | 341 | checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" |
335 | 342 | ||
336 | [[package]] | 343 | [[package]] |
337 | name = "digest" | 344 | name = "digest" |
@@ -365,6 +372,17 @@ dependencies = [ | |||
365 | ] | 372 | ] |
366 | 373 | ||
367 | [[package]] | 374 | [[package]] |
375 | name = "displaydoc" | ||
376 | version = "0.2.4" | ||
377 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
378 | checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" | ||
379 | dependencies = [ | ||
380 | "proc-macro2", | ||
381 | "quote", | ||
382 | "syn", | ||
383 | ] | ||
384 | |||
385 | [[package]] | ||
368 | name = "dlv-list" | 386 | name = "dlv-list" |
369 | version = "0.5.2" | 387 | version = "0.5.2" |
370 | source = "registry+https://github.com/rust-lang/crates.io-index" | 388 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -396,9 +414,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" | |||
396 | 414 | ||
397 | [[package]] | 415 | [[package]] |
398 | name = "errno" | 416 | name = "errno" |
399 | version = "0.3.8" | 417 | version = "0.3.9" |
400 | source = "registry+https://github.com/rust-lang/crates.io-index" | 418 | source = "registry+https://github.com/rust-lang/crates.io-index" |
401 | checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" | 419 | checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" |
402 | dependencies = [ | 420 | dependencies = [ |
403 | "libc", | 421 | "libc", |
404 | "windows-sys 0.52.0", | 422 | "windows-sys 0.52.0", |
@@ -406,9 +424,9 @@ dependencies = [ | |||
406 | 424 | ||
407 | [[package]] | 425 | [[package]] |
408 | name = "fastrand" | 426 | name = "fastrand" |
409 | version = "2.0.2" | 427 | version = "2.1.0" |
410 | source = "registry+https://github.com/rust-lang/crates.io-index" | 428 | source = "registry+https://github.com/rust-lang/crates.io-index" |
411 | checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984" | 429 | checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" |
412 | 430 | ||
413 | [[package]] | 431 | [[package]] |
414 | name = "fnv" | 432 | name = "fnv" |
@@ -514,9 +532,9 @@ dependencies = [ | |||
514 | 532 | ||
515 | [[package]] | 533 | [[package]] |
516 | name = "getrandom" | 534 | name = "getrandom" |
517 | version = "0.2.14" | 535 | version = "0.2.15" |
518 | source = "registry+https://github.com/rust-lang/crates.io-index" | 536 | source = "registry+https://github.com/rust-lang/crates.io-index" |
519 | checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" | 537 | checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" |
520 | dependencies = [ | 538 | dependencies = [ |
521 | "cfg-if", | 539 | "cfg-if", |
522 | "libc", | 540 | "libc", |
@@ -525,21 +543,21 @@ dependencies = [ | |||
525 | 543 | ||
526 | [[package]] | 544 | [[package]] |
527 | name = "gimli" | 545 | name = "gimli" |
528 | version = "0.28.1" | 546 | version = "0.29.0" |
529 | source = "registry+https://github.com/rust-lang/crates.io-index" | 547 | source = "registry+https://github.com/rust-lang/crates.io-index" |
530 | checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" | 548 | checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" |
531 | 549 | ||
532 | [[package]] | 550 | [[package]] |
533 | name = "h2" | 551 | name = "h2" |
534 | version = "0.4.4" | 552 | version = "0.4.5" |
535 | source = "registry+https://github.com/rust-lang/crates.io-index" | 553 | source = "registry+https://github.com/rust-lang/crates.io-index" |
536 | checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069" | 554 | checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" |
537 | dependencies = [ | 555 | dependencies = [ |
556 | "atomic-waker", | ||
538 | "bytes", | 557 | "bytes", |
539 | "fnv", | 558 | "fnv", |
540 | "futures-core", | 559 | "futures-core", |
541 | "futures-sink", | 560 | "futures-sink", |
542 | "futures-util", | ||
543 | "http", | 561 | "http", |
544 | "indexmap", | 562 | "indexmap", |
545 | "slab", | 563 | "slab", |
@@ -556,9 +574,9 @@ checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" | |||
556 | 574 | ||
557 | [[package]] | 575 | [[package]] |
558 | name = "hashbrown" | 576 | name = "hashbrown" |
559 | version = "0.14.3" | 577 | version = "0.14.5" |
560 | source = "registry+https://github.com/rust-lang/crates.io-index" | 578 | source = "registry+https://github.com/rust-lang/crates.io-index" |
561 | checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" | 579 | checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" |
562 | 580 | ||
563 | [[package]] | 581 | [[package]] |
564 | name = "heck" | 582 | name = "heck" |
@@ -595,12 +613,12 @@ dependencies = [ | |||
595 | 613 | ||
596 | [[package]] | 614 | [[package]] |
597 | name = "http-body-util" | 615 | name = "http-body-util" |
598 | version = "0.1.1" | 616 | version = "0.1.2" |
599 | source = "registry+https://github.com/rust-lang/crates.io-index" | 617 | source = "registry+https://github.com/rust-lang/crates.io-index" |
600 | checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" | 618 | checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" |
601 | dependencies = [ | 619 | dependencies = [ |
602 | "bytes", | 620 | "bytes", |
603 | "futures-core", | 621 | "futures-util", |
604 | "http", | 622 | "http", |
605 | "http-body", | 623 | "http-body", |
606 | "pin-project-lite", | 624 | "pin-project-lite", |
@@ -608,15 +626,15 @@ dependencies = [ | |||
608 | 626 | ||
609 | [[package]] | 627 | [[package]] |
610 | name = "httparse" | 628 | name = "httparse" |
611 | version = "1.8.0" | 629 | version = "1.9.3" |
612 | source = "registry+https://github.com/rust-lang/crates.io-index" | 630 | source = "registry+https://github.com/rust-lang/crates.io-index" |
613 | checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" | 631 | checksum = "d0e7a4dd27b9476dc40cb050d3632d3bba3a70ddbff012285f7f8559a1e7e545" |
614 | 632 | ||
615 | [[package]] | 633 | [[package]] |
616 | name = "hyper" | 634 | name = "hyper" |
617 | version = "1.2.0" | 635 | version = "1.3.1" |
618 | source = "registry+https://github.com/rust-lang/crates.io-index" | 636 | source = "registry+https://github.com/rust-lang/crates.io-index" |
619 | checksum = "186548d73ac615b32a73aafe38fb4f56c0d340e110e5a200bcadbaf2e199263a" | 637 | checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d" |
620 | dependencies = [ | 638 | dependencies = [ |
621 | "bytes", | 639 | "bytes", |
622 | "futures-channel", | 640 | "futures-channel", |
@@ -650,9 +668,9 @@ dependencies = [ | |||
650 | 668 | ||
651 | [[package]] | 669 | [[package]] |
652 | name = "hyper-util" | 670 | name = "hyper-util" |
653 | version = "0.1.3" | 671 | version = "0.1.5" |
654 | source = "registry+https://github.com/rust-lang/crates.io-index" | 672 | source = "registry+https://github.com/rust-lang/crates.io-index" |
655 | checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa" | 673 | checksum = "7b875924a60b96e5d7b9ae7b066540b1dd1cbd90d1828f54c92e02a283351c56" |
656 | dependencies = [ | 674 | dependencies = [ |
657 | "bytes", | 675 | "bytes", |
658 | "futures-channel", | 676 | "futures-channel", |
@@ -669,13 +687,133 @@ dependencies = [ | |||
669 | ] | 687 | ] |
670 | 688 | ||
671 | [[package]] | 689 | [[package]] |
690 | name = "icu_collections" | ||
691 | version = "1.5.0" | ||
692 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
693 | checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" | ||
694 | dependencies = [ | ||
695 | "displaydoc", | ||
696 | "yoke", | ||
697 | "zerofrom", | ||
698 | "zerovec", | ||
699 | ] | ||
700 | |||
701 | [[package]] | ||
702 | name = "icu_locid" | ||
703 | version = "1.5.0" | ||
704 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
705 | checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" | ||
706 | dependencies = [ | ||
707 | "displaydoc", | ||
708 | "litemap", | ||
709 | "tinystr", | ||
710 | "writeable", | ||
711 | "zerovec", | ||
712 | ] | ||
713 | |||
714 | [[package]] | ||
715 | name = "icu_locid_transform" | ||
716 | version = "1.5.0" | ||
717 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
718 | checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" | ||
719 | dependencies = [ | ||
720 | "displaydoc", | ||
721 | "icu_locid", | ||
722 | "icu_locid_transform_data", | ||
723 | "icu_provider", | ||
724 | "tinystr", | ||
725 | "zerovec", | ||
726 | ] | ||
727 | |||
728 | [[package]] | ||
729 | name = "icu_locid_transform_data" | ||
730 | version = "1.5.0" | ||
731 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
732 | checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" | ||
733 | |||
734 | [[package]] | ||
735 | name = "icu_normalizer" | ||
736 | version = "1.5.0" | ||
737 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
738 | checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" | ||
739 | dependencies = [ | ||
740 | "displaydoc", | ||
741 | "icu_collections", | ||
742 | "icu_normalizer_data", | ||
743 | "icu_properties", | ||
744 | "icu_provider", | ||
745 | "smallvec", | ||
746 | "utf16_iter", | ||
747 | "utf8_iter", | ||
748 | "write16", | ||
749 | "zerovec", | ||
750 | ] | ||
751 | |||
752 | [[package]] | ||
753 | name = "icu_normalizer_data" | ||
754 | version = "1.5.0" | ||
755 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
756 | checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" | ||
757 | |||
758 | [[package]] | ||
759 | name = "icu_properties" | ||
760 | version = "1.5.0" | ||
761 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
762 | checksum = "1f8ac670d7422d7f76b32e17a5db556510825b29ec9154f235977c9caba61036" | ||
763 | dependencies = [ | ||
764 | "displaydoc", | ||
765 | "icu_collections", | ||
766 | "icu_locid_transform", | ||
767 | "icu_properties_data", | ||
768 | "icu_provider", | ||
769 | "tinystr", | ||
770 | "zerovec", | ||
771 | ] | ||
772 | |||
773 | [[package]] | ||
774 | name = "icu_properties_data" | ||
775 | version = "1.5.0" | ||
776 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
777 | checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" | ||
778 | |||
779 | [[package]] | ||
780 | name = "icu_provider" | ||
781 | version = "1.5.0" | ||
782 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
783 | checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" | ||
784 | dependencies = [ | ||
785 | "displaydoc", | ||
786 | "icu_locid", | ||
787 | "icu_provider_macros", | ||
788 | "stable_deref_trait", | ||
789 | "tinystr", | ||
790 | "writeable", | ||
791 | "yoke", | ||
792 | "zerofrom", | ||
793 | "zerovec", | ||
794 | ] | ||
795 | |||
796 | [[package]] | ||
797 | name = "icu_provider_macros" | ||
798 | version = "1.5.0" | ||
799 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
800 | checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" | ||
801 | dependencies = [ | ||
802 | "proc-macro2", | ||
803 | "quote", | ||
804 | "syn", | ||
805 | ] | ||
806 | |||
807 | [[package]] | ||
672 | name = "idna" | 808 | name = "idna" |
673 | version = "0.5.0" | 809 | version = "1.0.0" |
674 | source = "registry+https://github.com/rust-lang/crates.io-index" | 810 | source = "registry+https://github.com/rust-lang/crates.io-index" |
675 | checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" | 811 | checksum = "4716a3a0933a1d01c2f72450e89596eb51dd34ef3c211ccd875acdf1f8fe47ed" |
676 | dependencies = [ | 812 | dependencies = [ |
677 | "unicode-bidi", | 813 | "icu_normalizer", |
678 | "unicode-normalization", | 814 | "icu_properties", |
815 | "smallvec", | ||
816 | "utf8_iter", | ||
679 | ] | 817 | ] |
680 | 818 | ||
681 | [[package]] | 819 | [[package]] |
@@ -685,7 +823,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
685 | checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" | 823 | checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" |
686 | dependencies = [ | 824 | dependencies = [ |
687 | "equivalent", | 825 | "equivalent", |
688 | "hashbrown 0.14.3", | 826 | "hashbrown 0.14.5", |
689 | ] | 827 | ] |
690 | 828 | ||
691 | [[package]] | 829 | [[package]] |
@@ -703,9 +841,9 @@ dependencies = [ | |||
703 | 841 | ||
704 | [[package]] | 842 | [[package]] |
705 | name = "instant" | 843 | name = "instant" |
706 | version = "0.1.12" | 844 | version = "0.1.13" |
707 | source = "registry+https://github.com/rust-lang/crates.io-index" | 845 | source = "registry+https://github.com/rust-lang/crates.io-index" |
708 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" | 846 | checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" |
709 | dependencies = [ | 847 | dependencies = [ |
710 | "cfg-if", | 848 | "cfg-if", |
711 | ] | 849 | ] |
@@ -717,6 +855,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
717 | checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" | 855 | checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" |
718 | 856 | ||
719 | [[package]] | 857 | [[package]] |
858 | name = "is_terminal_polyfill" | ||
859 | version = "1.70.0" | ||
860 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
861 | checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" | ||
862 | |||
863 | [[package]] | ||
720 | name = "itoa" | 864 | name = "itoa" |
721 | version = "1.0.11" | 865 | version = "1.0.11" |
722 | source = "registry+https://github.com/rust-lang/crates.io-index" | 866 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -750,9 +894,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | |||
750 | 894 | ||
751 | [[package]] | 895 | [[package]] |
752 | name = "libc" | 896 | name = "libc" |
753 | version = "0.2.153" | 897 | version = "0.2.155" |
754 | source = "registry+https://github.com/rust-lang/crates.io-index" | 898 | source = "registry+https://github.com/rust-lang/crates.io-index" |
755 | checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" | 899 | checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" |
756 | 900 | ||
757 | [[package]] | 901 | [[package]] |
758 | name = "libredox" | 902 | name = "libredox" |
@@ -772,9 +916,15 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" | |||
772 | 916 | ||
773 | [[package]] | 917 | [[package]] |
774 | name = "linux-raw-sys" | 918 | name = "linux-raw-sys" |
775 | version = "0.4.13" | 919 | version = "0.4.14" |
776 | source = "registry+https://github.com/rust-lang/crates.io-index" | 920 | source = "registry+https://github.com/rust-lang/crates.io-index" |
777 | checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" | 921 | checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" |
922 | |||
923 | [[package]] | ||
924 | name = "litemap" | ||
925 | version = "0.7.3" | ||
926 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
927 | checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" | ||
778 | 928 | ||
779 | [[package]] | 929 | [[package]] |
780 | name = "log" | 930 | name = "log" |
@@ -784,9 +934,9 @@ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" | |||
784 | 934 | ||
785 | [[package]] | 935 | [[package]] |
786 | name = "memchr" | 936 | name = "memchr" |
787 | version = "2.7.2" | 937 | version = "2.7.4" |
788 | source = "registry+https://github.com/rust-lang/crates.io-index" | 938 | source = "registry+https://github.com/rust-lang/crates.io-index" |
789 | checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" | 939 | checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" |
790 | 940 | ||
791 | [[package]] | 941 | [[package]] |
792 | name = "mime" | 942 | name = "mime" |
@@ -802,9 +952,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" | |||
802 | 952 | ||
803 | [[package]] | 953 | [[package]] |
804 | name = "miniz_oxide" | 954 | name = "miniz_oxide" |
805 | version = "0.7.2" | 955 | version = "0.7.3" |
806 | source = "registry+https://github.com/rust-lang/crates.io-index" | 956 | source = "registry+https://github.com/rust-lang/crates.io-index" |
807 | checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" | 957 | checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae" |
808 | dependencies = [ | 958 | dependencies = [ |
809 | "adler", | 959 | "adler", |
810 | ] | 960 | ] |
@@ -822,11 +972,10 @@ dependencies = [ | |||
822 | 972 | ||
823 | [[package]] | 973 | [[package]] |
824 | name = "native-tls" | 974 | name = "native-tls" |
825 | version = "0.2.11" | 975 | version = "0.2.12" |
826 | source = "registry+https://github.com/rust-lang/crates.io-index" | 976 | source = "registry+https://github.com/rust-lang/crates.io-index" |
827 | checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" | 977 | checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" |
828 | dependencies = [ | 978 | dependencies = [ |
829 | "lazy_static", | ||
830 | "libc", | 979 | "libc", |
831 | "log", | 980 | "log", |
832 | "openssl", | 981 | "openssl", |
@@ -866,9 +1015,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" | |||
866 | 1015 | ||
867 | [[package]] | 1016 | [[package]] |
868 | name = "object" | 1017 | name = "object" |
869 | version = "0.32.2" | 1018 | version = "0.36.0" |
870 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1019 | source = "registry+https://github.com/rust-lang/crates.io-index" |
871 | checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" | 1020 | checksum = "576dfe1fc8f9df304abb159d767a29d0476f7750fbf8aa7ad07816004a207434" |
872 | dependencies = [ | 1021 | dependencies = [ |
873 | "memchr", | 1022 | "memchr", |
874 | ] | 1023 | ] |
@@ -953,9 +1102,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" | |||
953 | 1102 | ||
954 | [[package]] | 1103 | [[package]] |
955 | name = "pest" | 1104 | name = "pest" |
956 | version = "2.7.9" | 1105 | version = "2.7.10" |
957 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1106 | source = "registry+https://github.com/rust-lang/crates.io-index" |
958 | checksum = "311fb059dee1a7b802f036316d790138c613a4e8b180c822e3925a662e9f0c95" | 1107 | checksum = "560131c633294438da9f7c4b08189194b20946c8274c6b9e38881a7874dc8ee8" |
959 | dependencies = [ | 1108 | dependencies = [ |
960 | "memchr", | 1109 | "memchr", |
961 | "thiserror", | 1110 | "thiserror", |
@@ -964,9 +1113,9 @@ dependencies = [ | |||
964 | 1113 | ||
965 | [[package]] | 1114 | [[package]] |
966 | name = "pest_derive" | 1115 | name = "pest_derive" |
967 | version = "2.7.9" | 1116 | version = "2.7.10" |
968 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1117 | source = "registry+https://github.com/rust-lang/crates.io-index" |
969 | checksum = "f73541b156d32197eecda1a4014d7f868fd2bcb3c550d5386087cfba442bf69c" | 1118 | checksum = "26293c9193fbca7b1a3bf9b79dc1e388e927e6cacaa78b4a3ab705a1d3d41459" |
970 | dependencies = [ | 1119 | dependencies = [ |
971 | "pest", | 1120 | "pest", |
972 | "pest_generator", | 1121 | "pest_generator", |
@@ -974,9 +1123,9 @@ dependencies = [ | |||
974 | 1123 | ||
975 | [[package]] | 1124 | [[package]] |
976 | name = "pest_generator" | 1125 | name = "pest_generator" |
977 | version = "2.7.9" | 1126 | version = "2.7.10" |
978 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1127 | source = "registry+https://github.com/rust-lang/crates.io-index" |
979 | checksum = "c35eeed0a3fab112f75165fdc026b3913f4183133f19b49be773ac9ea966e8bd" | 1128 | checksum = "3ec22af7d3fb470a85dd2ca96b7c577a1eb4ef6f1683a9fe9a8c16e136c04687" |
980 | dependencies = [ | 1129 | dependencies = [ |
981 | "pest", | 1130 | "pest", |
982 | "pest_meta", | 1131 | "pest_meta", |
@@ -987,9 +1136,9 @@ dependencies = [ | |||
987 | 1136 | ||
988 | [[package]] | 1137 | [[package]] |
989 | name = "pest_meta" | 1138 | name = "pest_meta" |
990 | version = "2.7.9" | 1139 | version = "2.7.10" |
991 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1140 | source = "registry+https://github.com/rust-lang/crates.io-index" |
992 | checksum = "2adbf29bb9776f28caece835398781ab24435585fe0d4dc1374a61db5accedca" | 1141 | checksum = "d7a240022f37c361ec1878d646fc5b7d7c4d28d5946e1a80ad5a7a4f4ca0bdcd" |
993 | dependencies = [ | 1142 | dependencies = [ |
994 | "once_cell", | 1143 | "once_cell", |
995 | "pest", | 1144 | "pest", |
@@ -1048,9 +1197,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" | |||
1048 | 1197 | ||
1049 | [[package]] | 1198 | [[package]] |
1050 | name = "proc-macro2" | 1199 | name = "proc-macro2" |
1051 | version = "1.0.79" | 1200 | version = "1.0.85" |
1052 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1201 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1053 | checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e" | 1202 | checksum = "22244ce15aa966053a896d1accb3a6e68469b97c7f33f284b99f0d576879fc23" |
1054 | dependencies = [ | 1203 | dependencies = [ |
1055 | "unicode-ident", | 1204 | "unicode-ident", |
1056 | ] | 1205 | ] |
@@ -1107,11 +1256,11 @@ dependencies = [ | |||
1107 | 1256 | ||
1108 | [[package]] | 1257 | [[package]] |
1109 | name = "reqwest" | 1258 | name = "reqwest" |
1110 | version = "0.12.3" | 1259 | version = "0.12.4" |
1111 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1260 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1112 | checksum = "3e6cc1e89e689536eb5aeede61520e874df5a4707df811cd5da4aa5fbb2aae19" | 1261 | checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10" |
1113 | dependencies = [ | 1262 | dependencies = [ |
1114 | "base64 0.22.0", | 1263 | "base64 0.22.1", |
1115 | "bytes", | 1264 | "bytes", |
1116 | "encoding_rs", | 1265 | "encoding_rs", |
1117 | "futures-channel", | 1266 | "futures-channel", |
@@ -1172,15 +1321,15 @@ dependencies = [ | |||
1172 | 1321 | ||
1173 | [[package]] | 1322 | [[package]] |
1174 | name = "rustc-demangle" | 1323 | name = "rustc-demangle" |
1175 | version = "0.1.23" | 1324 | version = "0.1.24" |
1176 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1325 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1177 | checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" | 1326 | checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" |
1178 | 1327 | ||
1179 | [[package]] | 1328 | [[package]] |
1180 | name = "rustix" | 1329 | name = "rustix" |
1181 | version = "0.38.32" | 1330 | version = "0.38.34" |
1182 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1331 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1183 | checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" | 1332 | checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" |
1184 | dependencies = [ | 1333 | dependencies = [ |
1185 | "bitflags 2.5.0", | 1334 | "bitflags 2.5.0", |
1186 | "errno", | 1335 | "errno", |
@@ -1195,21 +1344,21 @@ version = "2.1.2" | |||
1195 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1344 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1196 | checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" | 1345 | checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" |
1197 | dependencies = [ | 1346 | dependencies = [ |
1198 | "base64 0.22.0", | 1347 | "base64 0.22.1", |
1199 | "rustls-pki-types", | 1348 | "rustls-pki-types", |
1200 | ] | 1349 | ] |
1201 | 1350 | ||
1202 | [[package]] | 1351 | [[package]] |
1203 | name = "rustls-pki-types" | 1352 | name = "rustls-pki-types" |
1204 | version = "1.4.1" | 1353 | version = "1.7.0" |
1205 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1354 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1206 | checksum = "ecd36cc4259e3e4514335c4a138c6b43171a8d61d8f5c9348f9fc7529416f247" | 1355 | checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" |
1207 | 1356 | ||
1208 | [[package]] | 1357 | [[package]] |
1209 | name = "ryu" | 1358 | name = "ryu" |
1210 | version = "1.0.17" | 1359 | version = "1.0.18" |
1211 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1360 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1212 | checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" | 1361 | checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" |
1213 | 1362 | ||
1214 | [[package]] | 1363 | [[package]] |
1215 | name = "schannel" | 1364 | name = "schannel" |
@@ -1222,11 +1371,11 @@ dependencies = [ | |||
1222 | 1371 | ||
1223 | [[package]] | 1372 | [[package]] |
1224 | name = "security-framework" | 1373 | name = "security-framework" |
1225 | version = "2.10.0" | 1374 | version = "2.11.0" |
1226 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1375 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1227 | checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6" | 1376 | checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" |
1228 | dependencies = [ | 1377 | dependencies = [ |
1229 | "bitflags 1.3.2", | 1378 | "bitflags 2.5.0", |
1230 | "core-foundation", | 1379 | "core-foundation", |
1231 | "core-foundation-sys", | 1380 | "core-foundation-sys", |
1232 | "libc", | 1381 | "libc", |
@@ -1235,9 +1384,9 @@ dependencies = [ | |||
1235 | 1384 | ||
1236 | [[package]] | 1385 | [[package]] |
1237 | name = "security-framework-sys" | 1386 | name = "security-framework-sys" |
1238 | version = "2.10.0" | 1387 | version = "2.11.0" |
1239 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1388 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1240 | checksum = "41f3cc463c0ef97e11c3461a9d3787412d30e8e7eb907c79180c4a57bf7c04ef" | 1389 | checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" |
1241 | dependencies = [ | 1390 | dependencies = [ |
1242 | "core-foundation-sys", | 1391 | "core-foundation-sys", |
1243 | "libc", | 1392 | "libc", |
@@ -1245,18 +1394,18 @@ dependencies = [ | |||
1245 | 1394 | ||
1246 | [[package]] | 1395 | [[package]] |
1247 | name = "serde" | 1396 | name = "serde" |
1248 | version = "1.0.197" | 1397 | version = "1.0.203" |
1249 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1398 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1250 | checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" | 1399 | checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" |
1251 | dependencies = [ | 1400 | dependencies = [ |
1252 | "serde_derive", | 1401 | "serde_derive", |
1253 | ] | 1402 | ] |
1254 | 1403 | ||
1255 | [[package]] | 1404 | [[package]] |
1256 | name = "serde_derive" | 1405 | name = "serde_derive" |
1257 | version = "1.0.197" | 1406 | version = "1.0.203" |
1258 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1407 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1259 | checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" | 1408 | checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" |
1260 | dependencies = [ | 1409 | dependencies = [ |
1261 | "proc-macro2", | 1410 | "proc-macro2", |
1262 | "quote", | 1411 | "quote", |
@@ -1265,9 +1414,9 @@ dependencies = [ | |||
1265 | 1414 | ||
1266 | [[package]] | 1415 | [[package]] |
1267 | name = "serde_json" | 1416 | name = "serde_json" |
1268 | version = "1.0.115" | 1417 | version = "1.0.117" |
1269 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1418 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1270 | checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd" | 1419 | checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" |
1271 | dependencies = [ | 1420 | dependencies = [ |
1272 | "itoa", | 1421 | "itoa", |
1273 | "ryu", | 1422 | "ryu", |
@@ -1276,9 +1425,9 @@ dependencies = [ | |||
1276 | 1425 | ||
1277 | [[package]] | 1426 | [[package]] |
1278 | name = "serde_spanned" | 1427 | name = "serde_spanned" |
1279 | version = "0.6.5" | 1428 | version = "0.6.6" |
1280 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1429 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1281 | checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" | 1430 | checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" |
1282 | dependencies = [ | 1431 | dependencies = [ |
1283 | "serde", | 1432 | "serde", |
1284 | ] | 1433 | ] |
@@ -1334,15 +1483,21 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" | |||
1334 | 1483 | ||
1335 | [[package]] | 1484 | [[package]] |
1336 | name = "socket2" | 1485 | name = "socket2" |
1337 | version = "0.5.6" | 1486 | version = "0.5.7" |
1338 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1487 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1339 | checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" | 1488 | checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" |
1340 | dependencies = [ | 1489 | dependencies = [ |
1341 | "libc", | 1490 | "libc", |
1342 | "windows-sys 0.52.0", | 1491 | "windows-sys 0.52.0", |
1343 | ] | 1492 | ] |
1344 | 1493 | ||
1345 | [[package]] | 1494 | [[package]] |
1495 | name = "stable_deref_trait" | ||
1496 | version = "1.2.0" | ||
1497 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1498 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" | ||
1499 | |||
1500 | [[package]] | ||
1346 | name = "strsim" | 1501 | name = "strsim" |
1347 | version = "0.11.1" | 1502 | version = "0.11.1" |
1348 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1503 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1350,9 +1505,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" | |||
1350 | 1505 | ||
1351 | [[package]] | 1506 | [[package]] |
1352 | name = "syn" | 1507 | name = "syn" |
1353 | version = "2.0.58" | 1508 | version = "2.0.66" |
1354 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1509 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1355 | checksum = "44cfb93f38070beee36b3fef7d4f5a16f27751d94b187b666a5cc5e9b0d30687" | 1510 | checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5" |
1356 | dependencies = [ | 1511 | dependencies = [ |
1357 | "proc-macro2", | 1512 | "proc-macro2", |
1358 | "quote", | 1513 | "quote", |
@@ -1366,6 +1521,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1366 | checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" | 1521 | checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" |
1367 | 1522 | ||
1368 | [[package]] | 1523 | [[package]] |
1524 | name = "synstructure" | ||
1525 | version = "0.13.1" | ||
1526 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1527 | checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" | ||
1528 | dependencies = [ | ||
1529 | "proc-macro2", | ||
1530 | "quote", | ||
1531 | "syn", | ||
1532 | ] | ||
1533 | |||
1534 | [[package]] | ||
1369 | name = "system-configuration" | 1535 | name = "system-configuration" |
1370 | version = "0.5.1" | 1536 | version = "0.5.1" |
1371 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1537 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1400,18 +1566,18 @@ dependencies = [ | |||
1400 | 1566 | ||
1401 | [[package]] | 1567 | [[package]] |
1402 | name = "thiserror" | 1568 | name = "thiserror" |
1403 | version = "1.0.58" | 1569 | version = "1.0.61" |
1404 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1570 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1405 | checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" | 1571 | checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" |
1406 | dependencies = [ | 1572 | dependencies = [ |
1407 | "thiserror-impl", | 1573 | "thiserror-impl", |
1408 | ] | 1574 | ] |
1409 | 1575 | ||
1410 | [[package]] | 1576 | [[package]] |
1411 | name = "thiserror-impl" | 1577 | name = "thiserror-impl" |
1412 | version = "1.0.58" | 1578 | version = "1.0.61" |
1413 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1579 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1414 | checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" | 1580 | checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" |
1415 | dependencies = [ | 1581 | dependencies = [ |
1416 | "proc-macro2", | 1582 | "proc-macro2", |
1417 | "quote", | 1583 | "quote", |
@@ -1428,25 +1594,20 @@ dependencies = [ | |||
1428 | ] | 1594 | ] |
1429 | 1595 | ||
1430 | [[package]] | 1596 | [[package]] |
1431 | name = "tinyvec" | 1597 | name = "tinystr" |
1432 | version = "1.6.0" | 1598 | version = "0.7.6" |
1433 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1599 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1434 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" | 1600 | checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" |
1435 | dependencies = [ | 1601 | dependencies = [ |
1436 | "tinyvec_macros", | 1602 | "displaydoc", |
1603 | "zerovec", | ||
1437 | ] | 1604 | ] |
1438 | 1605 | ||
1439 | [[package]] | 1606 | [[package]] |
1440 | name = "tinyvec_macros" | ||
1441 | version = "0.1.1" | ||
1442 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1443 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" | ||
1444 | |||
1445 | [[package]] | ||
1446 | name = "tokio" | 1607 | name = "tokio" |
1447 | version = "1.37.0" | 1608 | version = "1.38.0" |
1448 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1609 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1449 | checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" | 1610 | checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" |
1450 | dependencies = [ | 1611 | dependencies = [ |
1451 | "backtrace", | 1612 | "backtrace", |
1452 | "bytes", | 1613 | "bytes", |
@@ -1461,9 +1622,9 @@ dependencies = [ | |||
1461 | 1622 | ||
1462 | [[package]] | 1623 | [[package]] |
1463 | name = "tokio-macros" | 1624 | name = "tokio-macros" |
1464 | version = "2.2.0" | 1625 | version = "2.3.0" |
1465 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1626 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1466 | checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" | 1627 | checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" |
1467 | dependencies = [ | 1628 | dependencies = [ |
1468 | "proc-macro2", | 1629 | "proc-macro2", |
1469 | "quote", | 1630 | "quote", |
@@ -1482,9 +1643,9 @@ dependencies = [ | |||
1482 | 1643 | ||
1483 | [[package]] | 1644 | [[package]] |
1484 | name = "tokio-tungstenite" | 1645 | name = "tokio-tungstenite" |
1485 | version = "0.21.0" | 1646 | version = "0.23.1" |
1486 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1647 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1487 | checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38" | 1648 | checksum = "c6989540ced10490aaf14e6bad2e3d33728a2813310a0c71d1574304c49631cd" |
1488 | dependencies = [ | 1649 | dependencies = [ |
1489 | "futures-util", | 1650 | "futures-util", |
1490 | "log", | 1651 | "log", |
@@ -1494,23 +1655,22 @@ dependencies = [ | |||
1494 | 1655 | ||
1495 | [[package]] | 1656 | [[package]] |
1496 | name = "tokio-util" | 1657 | name = "tokio-util" |
1497 | version = "0.7.10" | 1658 | version = "0.7.11" |
1498 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1659 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1499 | checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" | 1660 | checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" |
1500 | dependencies = [ | 1661 | dependencies = [ |
1501 | "bytes", | 1662 | "bytes", |
1502 | "futures-core", | 1663 | "futures-core", |
1503 | "futures-sink", | 1664 | "futures-sink", |
1504 | "pin-project-lite", | 1665 | "pin-project-lite", |
1505 | "tokio", | 1666 | "tokio", |
1506 | "tracing", | ||
1507 | ] | 1667 | ] |
1508 | 1668 | ||
1509 | [[package]] | 1669 | [[package]] |
1510 | name = "toml" | 1670 | name = "toml" |
1511 | version = "0.8.12" | 1671 | version = "0.8.14" |
1512 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1672 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1513 | checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3" | 1673 | checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" |
1514 | dependencies = [ | 1674 | dependencies = [ |
1515 | "serde", | 1675 | "serde", |
1516 | "serde_spanned", | 1676 | "serde_spanned", |
@@ -1520,18 +1680,18 @@ dependencies = [ | |||
1520 | 1680 | ||
1521 | [[package]] | 1681 | [[package]] |
1522 | name = "toml_datetime" | 1682 | name = "toml_datetime" |
1523 | version = "0.6.5" | 1683 | version = "0.6.6" |
1524 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1684 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1525 | checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" | 1685 | checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" |
1526 | dependencies = [ | 1686 | dependencies = [ |
1527 | "serde", | 1687 | "serde", |
1528 | ] | 1688 | ] |
1529 | 1689 | ||
1530 | [[package]] | 1690 | [[package]] |
1531 | name = "toml_edit" | 1691 | name = "toml_edit" |
1532 | version = "0.22.9" | 1692 | version = "0.22.14" |
1533 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1693 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1534 | checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4" | 1694 | checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38" |
1535 | dependencies = [ | 1695 | dependencies = [ |
1536 | "indexmap", | 1696 | "indexmap", |
1537 | "serde", | 1697 | "serde", |
@@ -1553,7 +1713,6 @@ dependencies = [ | |||
1553 | "tokio", | 1713 | "tokio", |
1554 | "tower-layer", | 1714 | "tower-layer", |
1555 | "tower-service", | 1715 | "tower-service", |
1556 | "tracing", | ||
1557 | ] | 1716 | ] |
1558 | 1717 | ||
1559 | [[package]] | 1718 | [[package]] |
@@ -1574,7 +1733,6 @@ version = "0.1.40" | |||
1574 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1733 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1575 | checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" | 1734 | checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" |
1576 | dependencies = [ | 1735 | dependencies = [ |
1577 | "log", | ||
1578 | "pin-project-lite", | 1736 | "pin-project-lite", |
1579 | "tracing-core", | 1737 | "tracing-core", |
1580 | ] | 1738 | ] |
@@ -1596,9 +1754,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" | |||
1596 | 1754 | ||
1597 | [[package]] | 1755 | [[package]] |
1598 | name = "tungstenite" | 1756 | name = "tungstenite" |
1599 | version = "0.21.0" | 1757 | version = "0.23.0" |
1600 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1758 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1601 | checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1" | 1759 | checksum = "6e2e2ce1e47ed2994fd43b04c8f618008d4cabdd5ee34027cf14f9d918edd9c8" |
1602 | dependencies = [ | 1760 | dependencies = [ |
1603 | "byteorder", | 1761 | "byteorder", |
1604 | "bytes", | 1762 | "bytes", |
@@ -1609,7 +1767,6 @@ dependencies = [ | |||
1609 | "rand", | 1767 | "rand", |
1610 | "sha1", | 1768 | "sha1", |
1611 | "thiserror", | 1769 | "thiserror", |
1612 | "url", | ||
1613 | "utf-8", | 1770 | "utf-8", |
1614 | ] | 1771 | ] |
1615 | 1772 | ||
@@ -1626,27 +1783,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1626 | checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" | 1783 | checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" |
1627 | 1784 | ||
1628 | [[package]] | 1785 | [[package]] |
1629 | name = "unicode-bidi" | ||
1630 | version = "0.3.15" | ||
1631 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1632 | checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" | ||
1633 | |||
1634 | [[package]] | ||
1635 | name = "unicode-ident" | 1786 | name = "unicode-ident" |
1636 | version = "1.0.12" | 1787 | version = "1.0.12" |
1637 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1788 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1638 | checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" | 1789 | checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" |
1639 | 1790 | ||
1640 | [[package]] | 1791 | [[package]] |
1641 | name = "unicode-normalization" | ||
1642 | version = "0.1.23" | ||
1643 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1644 | checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" | ||
1645 | dependencies = [ | ||
1646 | "tinyvec", | ||
1647 | ] | ||
1648 | |||
1649 | [[package]] | ||
1650 | name = "unicode-segmentation" | 1792 | name = "unicode-segmentation" |
1651 | version = "1.11.0" | 1793 | version = "1.11.0" |
1652 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1794 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1654,15 +1796,15 @@ checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" | |||
1654 | 1796 | ||
1655 | [[package]] | 1797 | [[package]] |
1656 | name = "unicode-width" | 1798 | name = "unicode-width" |
1657 | version = "0.1.11" | 1799 | version = "0.1.13" |
1658 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1800 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1659 | checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" | 1801 | checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" |
1660 | 1802 | ||
1661 | [[package]] | 1803 | [[package]] |
1662 | name = "url" | 1804 | name = "url" |
1663 | version = "2.5.0" | 1805 | version = "2.5.1" |
1664 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1806 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1665 | checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" | 1807 | checksum = "f7c25da092f0a868cdf09e8674cd3b7ef3a7d92a24253e663a2fb85e2496de56" |
1666 | dependencies = [ | 1808 | dependencies = [ |
1667 | "form_urlencoded", | 1809 | "form_urlencoded", |
1668 | "idna", | 1810 | "idna", |
@@ -1676,10 +1818,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1676 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" | 1818 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" |
1677 | 1819 | ||
1678 | [[package]] | 1820 | [[package]] |
1821 | name = "utf16_iter" | ||
1822 | version = "1.0.5" | ||
1823 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1824 | checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" | ||
1825 | |||
1826 | [[package]] | ||
1827 | name = "utf8_iter" | ||
1828 | version = "1.0.4" | ||
1829 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1830 | checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" | ||
1831 | |||
1832 | [[package]] | ||
1679 | name = "utf8parse" | 1833 | name = "utf8parse" |
1680 | version = "0.2.1" | 1834 | version = "0.2.2" |
1681 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1835 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1682 | checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" | 1836 | checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" |
1683 | 1837 | ||
1684 | [[package]] | 1838 | [[package]] |
1685 | name = "vcpkg" | 1839 | name = "vcpkg" |
@@ -1818,7 +1972,7 @@ version = "0.52.0" | |||
1818 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1972 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1819 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" | 1973 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" |
1820 | dependencies = [ | 1974 | dependencies = [ |
1821 | "windows-targets 0.52.4", | 1975 | "windows-targets 0.52.5", |
1822 | ] | 1976 | ] |
1823 | 1977 | ||
1824 | [[package]] | 1978 | [[package]] |
@@ -1838,17 +1992,18 @@ dependencies = [ | |||
1838 | 1992 | ||
1839 | [[package]] | 1993 | [[package]] |
1840 | name = "windows-targets" | 1994 | name = "windows-targets" |
1841 | version = "0.52.4" | 1995 | version = "0.52.5" |
1842 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1996 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1843 | checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" | 1997 | checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" |
1844 | dependencies = [ | 1998 | dependencies = [ |
1845 | "windows_aarch64_gnullvm 0.52.4", | 1999 | "windows_aarch64_gnullvm 0.52.5", |
1846 | "windows_aarch64_msvc 0.52.4", | 2000 | "windows_aarch64_msvc 0.52.5", |
1847 | "windows_i686_gnu 0.52.4", | 2001 | "windows_i686_gnu 0.52.5", |
1848 | "windows_i686_msvc 0.52.4", | 2002 | "windows_i686_gnullvm", |
1849 | "windows_x86_64_gnu 0.52.4", | 2003 | "windows_i686_msvc 0.52.5", |
1850 | "windows_x86_64_gnullvm 0.52.4", | 2004 | "windows_x86_64_gnu 0.52.5", |
1851 | "windows_x86_64_msvc 0.52.4", | 2005 | "windows_x86_64_gnullvm 0.52.5", |
2006 | "windows_x86_64_msvc 0.52.5", | ||
1852 | ] | 2007 | ] |
1853 | 2008 | ||
1854 | [[package]] | 2009 | [[package]] |
@@ -1859,9 +2014,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" | |||
1859 | 2014 | ||
1860 | [[package]] | 2015 | [[package]] |
1861 | name = "windows_aarch64_gnullvm" | 2016 | name = "windows_aarch64_gnullvm" |
1862 | version = "0.52.4" | 2017 | version = "0.52.5" |
1863 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2018 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1864 | checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" | 2019 | checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" |
1865 | 2020 | ||
1866 | [[package]] | 2021 | [[package]] |
1867 | name = "windows_aarch64_msvc" | 2022 | name = "windows_aarch64_msvc" |
@@ -1871,9 +2026,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" | |||
1871 | 2026 | ||
1872 | [[package]] | 2027 | [[package]] |
1873 | name = "windows_aarch64_msvc" | 2028 | name = "windows_aarch64_msvc" |
1874 | version = "0.52.4" | 2029 | version = "0.52.5" |
1875 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2030 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1876 | checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" | 2031 | checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" |
1877 | 2032 | ||
1878 | [[package]] | 2033 | [[package]] |
1879 | name = "windows_i686_gnu" | 2034 | name = "windows_i686_gnu" |
@@ -1883,9 +2038,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" | |||
1883 | 2038 | ||
1884 | [[package]] | 2039 | [[package]] |
1885 | name = "windows_i686_gnu" | 2040 | name = "windows_i686_gnu" |
1886 | version = "0.52.4" | 2041 | version = "0.52.5" |
2042 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2043 | checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" | ||
2044 | |||
2045 | [[package]] | ||
2046 | name = "windows_i686_gnullvm" | ||
2047 | version = "0.52.5" | ||
1887 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2048 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1888 | checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" | 2049 | checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" |
1889 | 2050 | ||
1890 | [[package]] | 2051 | [[package]] |
1891 | name = "windows_i686_msvc" | 2052 | name = "windows_i686_msvc" |
@@ -1895,9 +2056,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" | |||
1895 | 2056 | ||
1896 | [[package]] | 2057 | [[package]] |
1897 | name = "windows_i686_msvc" | 2058 | name = "windows_i686_msvc" |
1898 | version = "0.52.4" | 2059 | version = "0.52.5" |
1899 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2060 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1900 | checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" | 2061 | checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" |
1901 | 2062 | ||
1902 | [[package]] | 2063 | [[package]] |
1903 | name = "windows_x86_64_gnu" | 2064 | name = "windows_x86_64_gnu" |
@@ -1907,9 +2068,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" | |||
1907 | 2068 | ||
1908 | [[package]] | 2069 | [[package]] |
1909 | name = "windows_x86_64_gnu" | 2070 | name = "windows_x86_64_gnu" |
1910 | version = "0.52.4" | 2071 | version = "0.52.5" |
1911 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2072 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1912 | checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" | 2073 | checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" |
1913 | 2074 | ||
1914 | [[package]] | 2075 | [[package]] |
1915 | name = "windows_x86_64_gnullvm" | 2076 | name = "windows_x86_64_gnullvm" |
@@ -1919,9 +2080,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" | |||
1919 | 2080 | ||
1920 | [[package]] | 2081 | [[package]] |
1921 | name = "windows_x86_64_gnullvm" | 2082 | name = "windows_x86_64_gnullvm" |
1922 | version = "0.52.4" | 2083 | version = "0.52.5" |
1923 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2084 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1924 | checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" | 2085 | checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" |
1925 | 2086 | ||
1926 | [[package]] | 2087 | [[package]] |
1927 | name = "windows_x86_64_msvc" | 2088 | name = "windows_x86_64_msvc" |
@@ -1931,15 +2092,15 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" | |||
1931 | 2092 | ||
1932 | [[package]] | 2093 | [[package]] |
1933 | name = "windows_x86_64_msvc" | 2094 | name = "windows_x86_64_msvc" |
1934 | version = "0.52.4" | 2095 | version = "0.52.5" |
1935 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2096 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1936 | checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" | 2097 | checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" |
1937 | 2098 | ||
1938 | [[package]] | 2099 | [[package]] |
1939 | name = "winnow" | 2100 | name = "winnow" |
1940 | version = "0.6.5" | 2101 | version = "0.6.13" |
1941 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2102 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1942 | checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" | 2103 | checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1" |
1943 | dependencies = [ | 2104 | dependencies = [ |
1944 | "memchr", | 2105 | "memchr", |
1945 | ] | 2106 | ] |
@@ -1955,6 +2116,18 @@ dependencies = [ | |||
1955 | ] | 2116 | ] |
1956 | 2117 | ||
1957 | [[package]] | 2118 | [[package]] |
2119 | name = "write16" | ||
2120 | version = "1.0.0" | ||
2121 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2122 | checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" | ||
2123 | |||
2124 | [[package]] | ||
2125 | name = "writeable" | ||
2126 | version = "0.5.5" | ||
2127 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2128 | checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" | ||
2129 | |||
2130 | [[package]] | ||
1958 | name = "yaml-rust" | 2131 | name = "yaml-rust" |
1959 | version = "0.4.5" | 2132 | version = "0.4.5" |
1960 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2133 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1962,3 +2135,70 @@ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" | |||
1962 | dependencies = [ | 2135 | dependencies = [ |
1963 | "linked-hash-map", | 2136 | "linked-hash-map", |
1964 | ] | 2137 | ] |
2138 | |||
2139 | [[package]] | ||
2140 | name = "yoke" | ||
2141 | version = "0.7.4" | ||
2142 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2143 | checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" | ||
2144 | dependencies = [ | ||
2145 | "serde", | ||
2146 | "stable_deref_trait", | ||
2147 | "yoke-derive", | ||
2148 | "zerofrom", | ||
2149 | ] | ||
2150 | |||
2151 | [[package]] | ||
2152 | name = "yoke-derive" | ||
2153 | version = "0.7.4" | ||
2154 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2155 | checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" | ||
2156 | dependencies = [ | ||
2157 | "proc-macro2", | ||
2158 | "quote", | ||
2159 | "syn", | ||
2160 | "synstructure", | ||
2161 | ] | ||
2162 | |||
2163 | [[package]] | ||
2164 | name = "zerofrom" | ||
2165 | version = "0.1.4" | ||
2166 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2167 | checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" | ||
2168 | dependencies = [ | ||
2169 | "zerofrom-derive", | ||
2170 | ] | ||
2171 | |||
2172 | [[package]] | ||
2173 | name = "zerofrom-derive" | ||
2174 | version = "0.1.4" | ||
2175 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2176 | checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" | ||
2177 | dependencies = [ | ||
2178 | "proc-macro2", | ||
2179 | "quote", | ||
2180 | "syn", | ||
2181 | "synstructure", | ||
2182 | ] | ||
2183 | |||
2184 | [[package]] | ||
2185 | name = "zerovec" | ||
2186 | version = "0.10.2" | ||
2187 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2188 | checksum = "bb2cc8827d6c0994478a15c53f374f46fbd41bea663d809b14744bc42e6b109c" | ||
2189 | dependencies = [ | ||
2190 | "yoke", | ||
2191 | "zerofrom", | ||
2192 | "zerovec-derive", | ||
2193 | ] | ||
2194 | |||
2195 | [[package]] | ||
2196 | name = "zerovec-derive" | ||
2197 | version = "0.10.2" | ||
2198 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2199 | checksum = "97cf56601ee5052b4417d90c8755c6683473c926039908196cf35d99f893ebe7" | ||
2200 | dependencies = [ | ||
2201 | "proc-macro2", | ||
2202 | "quote", | ||
2203 | "syn", | ||
2204 | ] | ||