diff options
author | Minijackson <minijackson@riseup.net> | 2023-03-03 09:03:12 +0100 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2023-03-03 09:03:12 +0100 |
commit | f0db30c92348b0a71633c25d25569c925d0c77b7 (patch) | |
tree | dd26413cda95d1ed441f41aab921855c79f30f85 /Cargo.lock | |
parent | 1535dea8ab8e0a5a9d00664de3509db84c1908a9 (diff) | |
download | diaphragm-f0db30c92348b0a71633c25d25569c925d0c77b7.tar.gz diaphragm-f0db30c92348b0a71633c25d25569c925d0c77b7.zip |
cairo-renderer: add support for SVG images
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 1642 |
1 files changed, 1553 insertions, 89 deletions
@@ -12,6 +12,15 @@ dependencies = [ | |||
12 | ] | 12 | ] |
13 | 13 | ||
14 | [[package]] | 14 | [[package]] |
15 | name = "android_system_properties" | ||
16 | version = "0.1.5" | ||
17 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
18 | checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" | ||
19 | dependencies = [ | ||
20 | "libc", | ||
21 | ] | ||
22 | |||
23 | [[package]] | ||
15 | name = "ansi_term" | 24 | name = "ansi_term" |
16 | version = "0.12.1" | 25 | version = "0.12.1" |
17 | source = "registry+https://github.com/rust-lang/crates.io-index" | 26 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -22,9 +31,9 @@ dependencies = [ | |||
22 | 31 | ||
23 | [[package]] | 32 | [[package]] |
24 | name = "anyhow" | 33 | name = "anyhow" |
25 | version = "1.0.68" | 34 | version = "1.0.69" |
26 | source = "registry+https://github.com/rust-lang/crates.io-index" | 35 | source = "registry+https://github.com/rust-lang/crates.io-index" |
27 | checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61" | 36 | checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800" |
28 | 37 | ||
29 | [[package]] | 38 | [[package]] |
30 | name = "approx" | 39 | name = "approx" |
@@ -41,7 +50,7 @@ version = "0.2.14" | |||
41 | source = "registry+https://github.com/rust-lang/crates.io-index" | 50 | source = "registry+https://github.com/rust-lang/crates.io-index" |
42 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | 51 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" |
43 | dependencies = [ | 52 | dependencies = [ |
44 | "hermit-abi", | 53 | "hermit-abi 0.1.19", |
45 | "libc", | 54 | "libc", |
46 | "winapi", | 55 | "winapi", |
47 | ] | 56 | ] |
@@ -61,7 +70,7 @@ dependencies = [ | |||
61 | "bitflags", | 70 | "bitflags", |
62 | "cexpr", | 71 | "cexpr", |
63 | "clang-sys", | 72 | "clang-sys", |
64 | "clap", | 73 | "clap 2.34.0", |
65 | "env_logger", | 74 | "env_logger", |
66 | "lazy_static", | 75 | "lazy_static", |
67 | "lazycell", | 76 | "lazycell", |
@@ -82,6 +91,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
82 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | 91 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" |
83 | 92 | ||
84 | [[package]] | 93 | [[package]] |
94 | name = "block" | ||
95 | version = "0.1.6" | ||
96 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
97 | checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" | ||
98 | |||
99 | [[package]] | ||
85 | name = "bstr" | 100 | name = "bstr" |
86 | version = "0.2.17" | 101 | version = "0.2.17" |
87 | source = "registry+https://github.com/rust-lang/crates.io-index" | 102 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -91,10 +106,28 @@ dependencies = [ | |||
91 | ] | 106 | ] |
92 | 107 | ||
93 | [[package]] | 108 | [[package]] |
109 | name = "bumpalo" | ||
110 | version = "3.12.0" | ||
111 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
112 | checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" | ||
113 | |||
114 | [[package]] | ||
115 | name = "bytemuck" | ||
116 | version = "1.13.1" | ||
117 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
118 | checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" | ||
119 | |||
120 | [[package]] | ||
121 | name = "byteorder" | ||
122 | version = "1.4.3" | ||
123 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
124 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" | ||
125 | |||
126 | [[package]] | ||
94 | name = "cairo-rs" | 127 | name = "cairo-rs" |
95 | version = "0.16.7" | 128 | version = "0.17.0" |
96 | source = "registry+https://github.com/rust-lang/crates.io-index" | 129 | source = "registry+https://github.com/rust-lang/crates.io-index" |
97 | checksum = "f3125b15ec28b84c238f6f476c6034016a5f6cc0221cb514ca46c532139fc97d" | 130 | checksum = "a8af54f5d48af1226928adc1f57edd22f5df1349e7da1fc96ae15cf43db0e871" |
98 | dependencies = [ | 131 | dependencies = [ |
99 | "bitflags", | 132 | "bitflags", |
100 | "cairo-sys-rs", | 133 | "cairo-sys-rs", |
@@ -106,9 +139,9 @@ dependencies = [ | |||
106 | 139 | ||
107 | [[package]] | 140 | [[package]] |
108 | name = "cairo-sys-rs" | 141 | name = "cairo-sys-rs" |
109 | version = "0.16.3" | 142 | version = "0.17.0" |
110 | source = "registry+https://github.com/rust-lang/crates.io-index" | 143 | source = "registry+https://github.com/rust-lang/crates.io-index" |
111 | checksum = "7c48f4af05fabdcfa9658178e1326efa061853f040ce7d72e33af6885196f421" | 144 | checksum = "f55382a01d30e5e53f185eee269124f5e21ab526595b872751278dfbb463594e" |
112 | dependencies = [ | 145 | dependencies = [ |
113 | "glib-sys", | 146 | "glib-sys", |
114 | "libc", | 147 | "libc", |
@@ -116,10 +149,16 @@ dependencies = [ | |||
116 | ] | 149 | ] |
117 | 150 | ||
118 | [[package]] | 151 | [[package]] |
152 | name = "cast" | ||
153 | version = "0.3.0" | ||
154 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
155 | checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" | ||
156 | |||
157 | [[package]] | ||
119 | name = "cc" | 158 | name = "cc" |
120 | version = "1.0.78" | 159 | version = "1.0.79" |
121 | source = "registry+https://github.com/rust-lang/crates.io-index" | 160 | source = "registry+https://github.com/rust-lang/crates.io-index" |
122 | checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" | 161 | checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" |
123 | 162 | ||
124 | [[package]] | 163 | [[package]] |
125 | name = "cexpr" | 164 | name = "cexpr" |
@@ -146,10 +185,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
146 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | 185 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
147 | 186 | ||
148 | [[package]] | 187 | [[package]] |
188 | name = "chrono" | ||
189 | version = "0.4.23" | ||
190 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
191 | checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" | ||
192 | dependencies = [ | ||
193 | "iana-time-zone", | ||
194 | "js-sys", | ||
195 | "num-integer", | ||
196 | "num-traits", | ||
197 | "time", | ||
198 | "wasm-bindgen", | ||
199 | "winapi", | ||
200 | ] | ||
201 | |||
202 | [[package]] | ||
149 | name = "clang-sys" | 203 | name = "clang-sys" |
150 | version = "1.4.0" | 204 | version = "1.6.0" |
151 | source = "registry+https://github.com/rust-lang/crates.io-index" | 205 | source = "registry+https://github.com/rust-lang/crates.io-index" |
152 | checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" | 206 | checksum = "77ed9a53e5d4d9c573ae844bfac6872b159cb1d1585a83b29e7a64b7eef7332a" |
153 | dependencies = [ | 207 | dependencies = [ |
154 | "glob", | 208 | "glob", |
155 | "libc", | 209 | "libc", |
@@ -165,19 +219,222 @@ dependencies = [ | |||
165 | "ansi_term", | 219 | "ansi_term", |
166 | "atty", | 220 | "atty", |
167 | "bitflags", | 221 | "bitflags", |
168 | "strsim", | 222 | "strsim 0.8.0", |
169 | "textwrap", | 223 | "textwrap", |
170 | "unicode-width", | 224 | "unicode-width", |
171 | "vec_map", | 225 | "vec_map", |
172 | ] | 226 | ] |
173 | 227 | ||
174 | [[package]] | 228 | [[package]] |
229 | name = "clap" | ||
230 | version = "4.1.8" | ||
231 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
232 | checksum = "c3d7ae14b20b94cb02149ed21a86c423859cbe18dc7ed69845cace50e52b40a5" | ||
233 | dependencies = [ | ||
234 | "bitflags", | ||
235 | "clap_derive", | ||
236 | "clap_lex", | ||
237 | "is-terminal", | ||
238 | "once_cell", | ||
239 | "strsim 0.10.0", | ||
240 | "termcolor", | ||
241 | ] | ||
242 | |||
243 | [[package]] | ||
244 | name = "clap_complete" | ||
245 | version = "4.1.4" | ||
246 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
247 | checksum = "501ff0a401473ea1d4c3b125ff95506b62c5bc5768d818634195fbb7c4ad5ff4" | ||
248 | dependencies = [ | ||
249 | "clap 4.1.8", | ||
250 | ] | ||
251 | |||
252 | [[package]] | ||
253 | name = "clap_derive" | ||
254 | version = "4.1.8" | ||
255 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
256 | checksum = "44bec8e5c9d09e439c4335b1af0abaab56dcf3b94999a936e1bb47b9134288f0" | ||
257 | dependencies = [ | ||
258 | "heck", | ||
259 | "proc-macro-error", | ||
260 | "proc-macro2", | ||
261 | "quote", | ||
262 | "syn", | ||
263 | ] | ||
264 | |||
265 | [[package]] | ||
266 | name = "clap_lex" | ||
267 | version = "0.3.2" | ||
268 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
269 | checksum = "350b9cf31731f9957399229e9b2adc51eeabdfbe9d71d9a0552275fd12710d09" | ||
270 | dependencies = [ | ||
271 | "os_str_bytes", | ||
272 | ] | ||
273 | |||
274 | [[package]] | ||
275 | name = "codespan-reporting" | ||
276 | version = "0.11.1" | ||
277 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
278 | checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" | ||
279 | dependencies = [ | ||
280 | "termcolor", | ||
281 | "unicode-width", | ||
282 | ] | ||
283 | |||
284 | [[package]] | ||
285 | name = "convert_case" | ||
286 | version = "0.4.0" | ||
287 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
288 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" | ||
289 | |||
290 | [[package]] | ||
291 | name = "core-foundation-sys" | ||
292 | version = "0.8.3" | ||
293 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
294 | checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" | ||
295 | |||
296 | [[package]] | ||
297 | name = "crossbeam-channel" | ||
298 | version = "0.5.7" | ||
299 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
300 | checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c" | ||
301 | dependencies = [ | ||
302 | "cfg-if", | ||
303 | "crossbeam-utils", | ||
304 | ] | ||
305 | |||
306 | [[package]] | ||
307 | name = "crossbeam-deque" | ||
308 | version = "0.8.3" | ||
309 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
310 | checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" | ||
311 | dependencies = [ | ||
312 | "cfg-if", | ||
313 | "crossbeam-epoch", | ||
314 | "crossbeam-utils", | ||
315 | ] | ||
316 | |||
317 | [[package]] | ||
318 | name = "crossbeam-epoch" | ||
319 | version = "0.9.14" | ||
320 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
321 | checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" | ||
322 | dependencies = [ | ||
323 | "autocfg", | ||
324 | "cfg-if", | ||
325 | "crossbeam-utils", | ||
326 | "memoffset", | ||
327 | "scopeguard", | ||
328 | ] | ||
329 | |||
330 | [[package]] | ||
331 | name = "crossbeam-utils" | ||
332 | version = "0.8.15" | ||
333 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
334 | checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" | ||
335 | dependencies = [ | ||
336 | "cfg-if", | ||
337 | ] | ||
338 | |||
339 | [[package]] | ||
340 | name = "cssparser" | ||
341 | version = "0.29.6" | ||
342 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
343 | checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa" | ||
344 | dependencies = [ | ||
345 | "cssparser-macros", | ||
346 | "dtoa-short", | ||
347 | "itoa", | ||
348 | "matches", | ||
349 | "phf 0.10.1", | ||
350 | "proc-macro2", | ||
351 | "quote", | ||
352 | "smallvec", | ||
353 | "syn", | ||
354 | ] | ||
355 | |||
356 | [[package]] | ||
357 | name = "cssparser-macros" | ||
358 | version = "0.6.0" | ||
359 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
360 | checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" | ||
361 | dependencies = [ | ||
362 | "quote", | ||
363 | "syn", | ||
364 | ] | ||
365 | |||
366 | [[package]] | ||
367 | name = "cxx" | ||
368 | version = "1.0.91" | ||
369 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
370 | checksum = "86d3488e7665a7a483b57e25bdd90d0aeb2bc7608c8d0346acf2ad3f1caf1d62" | ||
371 | dependencies = [ | ||
372 | "cc", | ||
373 | "cxxbridge-flags", | ||
374 | "cxxbridge-macro", | ||
375 | "link-cplusplus", | ||
376 | ] | ||
377 | |||
378 | [[package]] | ||
379 | name = "cxx-build" | ||
380 | version = "1.0.91" | ||
381 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
382 | checksum = "48fcaf066a053a41a81dfb14d57d99738b767febb8b735c3016e469fac5da690" | ||
383 | dependencies = [ | ||
384 | "cc", | ||
385 | "codespan-reporting", | ||
386 | "once_cell", | ||
387 | "proc-macro2", | ||
388 | "quote", | ||
389 | "scratch", | ||
390 | "syn", | ||
391 | ] | ||
392 | |||
393 | [[package]] | ||
394 | name = "cxxbridge-flags" | ||
395 | version = "1.0.91" | ||
396 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
397 | checksum = "a2ef98b8b717a829ca5603af80e1f9e2e48013ab227b68ef37872ef84ee479bf" | ||
398 | |||
399 | [[package]] | ||
400 | name = "cxxbridge-macro" | ||
401 | version = "1.0.91" | ||
402 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
403 | checksum = "086c685979a698443656e5cf7856c95c642295a38599f12fb1ff76fb28d19892" | ||
404 | dependencies = [ | ||
405 | "proc-macro2", | ||
406 | "quote", | ||
407 | "syn", | ||
408 | ] | ||
409 | |||
410 | [[package]] | ||
411 | name = "data-url" | ||
412 | version = "0.2.0" | ||
413 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
414 | checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5" | ||
415 | |||
416 | [[package]] | ||
417 | name = "derive_more" | ||
418 | version = "0.99.17" | ||
419 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
420 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" | ||
421 | dependencies = [ | ||
422 | "convert_case", | ||
423 | "proc-macro2", | ||
424 | "quote", | ||
425 | "rustc_version", | ||
426 | "syn", | ||
427 | ] | ||
428 | |||
429 | [[package]] | ||
175 | name = "diaphragm-cairo-renderer" | 430 | name = "diaphragm-cairo-renderer" |
176 | version = "0.1.0" | 431 | version = "0.1.0" |
177 | dependencies = [ | 432 | dependencies = [ |
178 | "cairo-rs", | 433 | "cairo-rs", |
179 | "diaphragm-core", | 434 | "diaphragm-core", |
180 | "gdk", | 435 | "gdk", |
436 | "librsvg", | ||
437 | "mime_guess", | ||
181 | "pango", | 438 | "pango", |
182 | "pangocairo", | 439 | "pangocairo", |
183 | ] | 440 | ] |
@@ -208,6 +465,91 @@ dependencies = [ | |||
208 | ] | 465 | ] |
209 | 466 | ||
210 | [[package]] | 467 | [[package]] |
468 | name = "dtoa" | ||
469 | version = "0.4.8" | ||
470 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
471 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" | ||
472 | |||
473 | [[package]] | ||
474 | name = "dtoa-short" | ||
475 | version = "0.3.3" | ||
476 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
477 | checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" | ||
478 | dependencies = [ | ||
479 | "dtoa", | ||
480 | ] | ||
481 | |||
482 | [[package]] | ||
483 | name = "either" | ||
484 | version = "1.8.1" | ||
485 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
486 | checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" | ||
487 | |||
488 | [[package]] | ||
489 | name = "encoding" | ||
490 | version = "0.2.33" | ||
491 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
492 | checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec" | ||
493 | dependencies = [ | ||
494 | "encoding-index-japanese", | ||
495 | "encoding-index-korean", | ||
496 | "encoding-index-simpchinese", | ||
497 | "encoding-index-singlebyte", | ||
498 | "encoding-index-tradchinese", | ||
499 | ] | ||
500 | |||
501 | [[package]] | ||
502 | name = "encoding-index-japanese" | ||
503 | version = "1.20141219.5" | ||
504 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
505 | checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91" | ||
506 | dependencies = [ | ||
507 | "encoding_index_tests", | ||
508 | ] | ||
509 | |||
510 | [[package]] | ||
511 | name = "encoding-index-korean" | ||
512 | version = "1.20141219.5" | ||
513 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
514 | checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81" | ||
515 | dependencies = [ | ||
516 | "encoding_index_tests", | ||
517 | ] | ||
518 | |||
519 | [[package]] | ||
520 | name = "encoding-index-simpchinese" | ||
521 | version = "1.20141219.5" | ||
522 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
523 | checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7" | ||
524 | dependencies = [ | ||
525 | "encoding_index_tests", | ||
526 | ] | ||
527 | |||
528 | [[package]] | ||
529 | name = "encoding-index-singlebyte" | ||
530 | version = "1.20141219.5" | ||
531 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
532 | checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a" | ||
533 | dependencies = [ | ||
534 | "encoding_index_tests", | ||
535 | ] | ||
536 | |||
537 | [[package]] | ||
538 | name = "encoding-index-tradchinese" | ||
539 | version = "1.20141219.5" | ||
540 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
541 | checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18" | ||
542 | dependencies = [ | ||
543 | "encoding_index_tests", | ||
544 | ] | ||
545 | |||
546 | [[package]] | ||
547 | name = "encoding_index_tests" | ||
548 | version = "0.1.4" | ||
549 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
550 | checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569" | ||
551 | |||
552 | [[package]] | ||
211 | name = "env_logger" | 553 | name = "env_logger" |
212 | version = "0.8.4" | 554 | version = "0.8.4" |
213 | source = "registry+https://github.com/rust-lang/crates.io-index" | 555 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -221,6 +563,27 @@ dependencies = [ | |||
221 | ] | 563 | ] |
222 | 564 | ||
223 | [[package]] | 565 | [[package]] |
566 | name = "errno" | ||
567 | version = "0.2.8" | ||
568 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
569 | checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" | ||
570 | dependencies = [ | ||
571 | "errno-dragonfly", | ||
572 | "libc", | ||
573 | "winapi", | ||
574 | ] | ||
575 | |||
576 | [[package]] | ||
577 | name = "errno-dragonfly" | ||
578 | version = "0.1.2" | ||
579 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
580 | checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" | ||
581 | dependencies = [ | ||
582 | "cc", | ||
583 | "libc", | ||
584 | ] | ||
585 | |||
586 | [[package]] | ||
224 | name = "find-crate" | 587 | name = "find-crate" |
225 | version = "0.6.3" | 588 | version = "0.6.3" |
226 | source = "registry+https://github.com/rust-lang/crates.io-index" | 589 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -230,25 +593,53 @@ dependencies = [ | |||
230 | ] | 593 | ] |
231 | 594 | ||
232 | [[package]] | 595 | [[package]] |
596 | name = "float-cmp" | ||
597 | version = "0.9.0" | ||
598 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
599 | checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" | ||
600 | dependencies = [ | ||
601 | "num-traits", | ||
602 | ] | ||
603 | |||
604 | [[package]] | ||
605 | name = "form_urlencoded" | ||
606 | version = "1.1.0" | ||
607 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
608 | checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" | ||
609 | dependencies = [ | ||
610 | "percent-encoding", | ||
611 | ] | ||
612 | |||
613 | [[package]] | ||
614 | name = "futf" | ||
615 | version = "0.1.5" | ||
616 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
617 | checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" | ||
618 | dependencies = [ | ||
619 | "mac", | ||
620 | "new_debug_unreachable", | ||
621 | ] | ||
622 | |||
623 | [[package]] | ||
233 | name = "futures-channel" | 624 | name = "futures-channel" |
234 | version = "0.3.25" | 625 | version = "0.3.26" |
235 | source = "registry+https://github.com/rust-lang/crates.io-index" | 626 | source = "registry+https://github.com/rust-lang/crates.io-index" |
236 | checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" | 627 | checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" |
237 | dependencies = [ | 628 | dependencies = [ |
238 | "futures-core", | 629 | "futures-core", |
239 | ] | 630 | ] |
240 | 631 | ||
241 | [[package]] | 632 | [[package]] |
242 | name = "futures-core" | 633 | name = "futures-core" |
243 | version = "0.3.25" | 634 | version = "0.3.26" |
244 | source = "registry+https://github.com/rust-lang/crates.io-index" | 635 | source = "registry+https://github.com/rust-lang/crates.io-index" |
245 | checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" | 636 | checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" |
246 | 637 | ||
247 | [[package]] | 638 | [[package]] |
248 | name = "futures-executor" | 639 | name = "futures-executor" |
249 | version = "0.3.25" | 640 | version = "0.3.26" |
250 | source = "registry+https://github.com/rust-lang/crates.io-index" | 641 | source = "registry+https://github.com/rust-lang/crates.io-index" |
251 | checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" | 642 | checksum = "e8de0a35a6ab97ec8869e32a2473f4b1324459e14c29275d14b10cb1fd19b50e" |
252 | dependencies = [ | 643 | dependencies = [ |
253 | "futures-core", | 644 | "futures-core", |
254 | "futures-task", | 645 | "futures-task", |
@@ -257,15 +648,15 @@ dependencies = [ | |||
257 | 648 | ||
258 | [[package]] | 649 | [[package]] |
259 | name = "futures-io" | 650 | name = "futures-io" |
260 | version = "0.3.25" | 651 | version = "0.3.26" |
261 | source = "registry+https://github.com/rust-lang/crates.io-index" | 652 | source = "registry+https://github.com/rust-lang/crates.io-index" |
262 | checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" | 653 | checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531" |
263 | 654 | ||
264 | [[package]] | 655 | [[package]] |
265 | name = "futures-macro" | 656 | name = "futures-macro" |
266 | version = "0.3.25" | 657 | version = "0.3.26" |
267 | source = "registry+https://github.com/rust-lang/crates.io-index" | 658 | source = "registry+https://github.com/rust-lang/crates.io-index" |
268 | checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" | 659 | checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70" |
269 | dependencies = [ | 660 | dependencies = [ |
270 | "proc-macro2", | 661 | "proc-macro2", |
271 | "quote", | 662 | "quote", |
@@ -274,15 +665,15 @@ dependencies = [ | |||
274 | 665 | ||
275 | [[package]] | 666 | [[package]] |
276 | name = "futures-task" | 667 | name = "futures-task" |
277 | version = "0.3.25" | 668 | version = "0.3.26" |
278 | source = "registry+https://github.com/rust-lang/crates.io-index" | 669 | source = "registry+https://github.com/rust-lang/crates.io-index" |
279 | checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" | 670 | checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" |
280 | 671 | ||
281 | [[package]] | 672 | [[package]] |
282 | name = "futures-util" | 673 | name = "futures-util" |
283 | version = "0.3.25" | 674 | version = "0.3.26" |
284 | source = "registry+https://github.com/rust-lang/crates.io-index" | 675 | source = "registry+https://github.com/rust-lang/crates.io-index" |
285 | checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" | 676 | checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" |
286 | dependencies = [ | 677 | dependencies = [ |
287 | "futures-core", | 678 | "futures-core", |
288 | "futures-macro", | 679 | "futures-macro", |
@@ -293,10 +684,19 @@ dependencies = [ | |||
293 | ] | 684 | ] |
294 | 685 | ||
295 | [[package]] | 686 | [[package]] |
687 | name = "fxhash" | ||
688 | version = "0.2.1" | ||
689 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
690 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" | ||
691 | dependencies = [ | ||
692 | "byteorder", | ||
693 | ] | ||
694 | |||
695 | [[package]] | ||
296 | name = "gdk" | 696 | name = "gdk" |
297 | version = "0.16.2" | 697 | version = "0.17.0" |
298 | source = "registry+https://github.com/rust-lang/crates.io-index" | 698 | source = "registry+https://github.com/rust-lang/crates.io-index" |
299 | checksum = "aa9cb33da481c6c040404a11f8212d193889e9b435db2c14fd86987f630d3ce1" | 699 | checksum = "01aaa57fff872150a6eca1ee3d47df93151cbe8942c03f4964dcb2c4633af04c" |
300 | dependencies = [ | 700 | dependencies = [ |
301 | "bitflags", | 701 | "bitflags", |
302 | "cairo-rs", | 702 | "cairo-rs", |
@@ -310,22 +710,23 @@ dependencies = [ | |||
310 | 710 | ||
311 | [[package]] | 711 | [[package]] |
312 | name = "gdk-pixbuf" | 712 | name = "gdk-pixbuf" |
313 | version = "0.16.7" | 713 | version = "0.17.0" |
314 | source = "registry+https://github.com/rust-lang/crates.io-index" | 714 | source = "registry+https://github.com/rust-lang/crates.io-index" |
315 | checksum = "c3578c60dee9d029ad86593ed88cb40f35c1b83360e12498d055022385dd9a05" | 715 | checksum = "b023fbe0c6b407bd3d9805d107d9800da3829dc5a676653210f1d5f16d7f59bf" |
316 | dependencies = [ | 716 | dependencies = [ |
317 | "bitflags", | 717 | "bitflags", |
318 | "gdk-pixbuf-sys", | 718 | "gdk-pixbuf-sys", |
319 | "gio", | 719 | "gio", |
320 | "glib", | 720 | "glib", |
321 | "libc", | 721 | "libc", |
722 | "once_cell", | ||
322 | ] | 723 | ] |
323 | 724 | ||
324 | [[package]] | 725 | [[package]] |
325 | name = "gdk-pixbuf-sys" | 726 | name = "gdk-pixbuf-sys" |
326 | version = "0.16.3" | 727 | version = "0.17.0" |
327 | source = "registry+https://github.com/rust-lang/crates.io-index" | 728 | source = "registry+https://github.com/rust-lang/crates.io-index" |
328 | checksum = "3092cf797a5f1210479ea38070d9ae8a5b8e9f8f1be9f32f4643c529c7d70016" | 729 | checksum = "7b41bd2b44ed49d99277d3925652a163038bd5ed943ec9809338ffb2f4391e3b" |
329 | dependencies = [ | 730 | dependencies = [ |
330 | "gio-sys", | 731 | "gio-sys", |
331 | "glib-sys", | 732 | "glib-sys", |
@@ -336,9 +737,9 @@ dependencies = [ | |||
336 | 737 | ||
337 | [[package]] | 738 | [[package]] |
338 | name = "gdk-sys" | 739 | name = "gdk-sys" |
339 | version = "0.16.0" | 740 | version = "0.17.0" |
340 | source = "registry+https://github.com/rust-lang/crates.io-index" | 741 | source = "registry+https://github.com/rust-lang/crates.io-index" |
341 | checksum = "d76354f97a913e55b984759a997b693aa7dc71068c9e98bcce51aa167a0a5c5a" | 742 | checksum = "2152de9d38bc67a17b3fe49dc0823af5bf874df59ea088c5f28f31cf103de703" |
342 | dependencies = [ | 743 | dependencies = [ |
343 | "cairo-sys-rs", | 744 | "cairo-sys-rs", |
344 | "gdk-pixbuf-sys", | 745 | "gdk-pixbuf-sys", |
@@ -352,10 +753,32 @@ dependencies = [ | |||
352 | ] | 753 | ] |
353 | 754 | ||
354 | [[package]] | 755 | [[package]] |
756 | name = "getrandom" | ||
757 | version = "0.1.16" | ||
758 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
759 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" | ||
760 | dependencies = [ | ||
761 | "cfg-if", | ||
762 | "libc", | ||
763 | "wasi 0.9.0+wasi-snapshot-preview1", | ||
764 | ] | ||
765 | |||
766 | [[package]] | ||
767 | name = "getrandom" | ||
768 | version = "0.2.8" | ||
769 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
770 | checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" | ||
771 | dependencies = [ | ||
772 | "cfg-if", | ||
773 | "libc", | ||
774 | "wasi 0.11.0+wasi-snapshot-preview1", | ||
775 | ] | ||
776 | |||
777 | [[package]] | ||
355 | name = "gio" | 778 | name = "gio" |
356 | version = "0.16.7" | 779 | version = "0.17.2" |
357 | source = "registry+https://github.com/rust-lang/crates.io-index" | 780 | source = "registry+https://github.com/rust-lang/crates.io-index" |
358 | checksum = "2a1c84b4534a290a29160ef5c6eff2a9c95833111472e824fc5cb78b513dd092" | 781 | checksum = "65acfc24267314eee46f49e0a531e08fd6c3025040d1cfb4a7cd8e41c5e06116" |
359 | dependencies = [ | 782 | dependencies = [ |
360 | "bitflags", | 783 | "bitflags", |
361 | "futures-channel", | 784 | "futures-channel", |
@@ -373,9 +796,9 @@ dependencies = [ | |||
373 | 796 | ||
374 | [[package]] | 797 | [[package]] |
375 | name = "gio-sys" | 798 | name = "gio-sys" |
376 | version = "0.16.3" | 799 | version = "0.17.0" |
377 | source = "registry+https://github.com/rust-lang/crates.io-index" | 800 | source = "registry+https://github.com/rust-lang/crates.io-index" |
378 | checksum = "e9b693b8e39d042a95547fc258a7b07349b1f0b48f4b2fa3108ba3c51c0b5229" | 801 | checksum = "b5d3076ecb86c8c3a672c9843d6232b3a344fb81d304d0ba1ac64b23343efa46" |
379 | dependencies = [ | 802 | dependencies = [ |
380 | "glib-sys", | 803 | "glib-sys", |
381 | "gobject-sys", | 804 | "gobject-sys", |
@@ -386,9 +809,9 @@ dependencies = [ | |||
386 | 809 | ||
387 | [[package]] | 810 | [[package]] |
388 | name = "glib" | 811 | name = "glib" |
389 | version = "0.16.7" | 812 | version = "0.17.2" |
390 | source = "registry+https://github.com/rust-lang/crates.io-index" | 813 | source = "registry+https://github.com/rust-lang/crates.io-index" |
391 | checksum = "ddd4df61a866ed7259d6189b8bcb1464989a77f1d85d25d002279bbe9dd38b2f" | 814 | checksum = "a78b6a0901e258cb03c761ca94c84d519427ede489cae12cd5ba0d7d584e69e9" |
392 | dependencies = [ | 815 | dependencies = [ |
393 | "bitflags", | 816 | "bitflags", |
394 | "futures-channel", | 817 | "futures-channel", |
@@ -401,6 +824,7 @@ dependencies = [ | |||
401 | "glib-sys", | 824 | "glib-sys", |
402 | "gobject-sys", | 825 | "gobject-sys", |
403 | "libc", | 826 | "libc", |
827 | "memchr", | ||
404 | "once_cell", | 828 | "once_cell", |
405 | "smallvec", | 829 | "smallvec", |
406 | "thiserror", | 830 | "thiserror", |
@@ -408,9 +832,9 @@ dependencies = [ | |||
408 | 832 | ||
409 | [[package]] | 833 | [[package]] |
410 | name = "glib-macros" | 834 | name = "glib-macros" |
411 | version = "0.16.3" | 835 | version = "0.17.2" |
412 | source = "registry+https://github.com/rust-lang/crates.io-index" | 836 | source = "registry+https://github.com/rust-lang/crates.io-index" |
413 | checksum = "e084807350b01348b6d9dbabb724d1a0bb987f47a2c85de200e98e12e30733bf" | 837 | checksum = "55e93d79ed130f0f0b58bc0aa29fb0e40c9dfd63997fec51f8adf780d1520bc4" |
414 | dependencies = [ | 838 | dependencies = [ |
415 | "anyhow", | 839 | "anyhow", |
416 | "heck", | 840 | "heck", |
@@ -423,9 +847,9 @@ dependencies = [ | |||
423 | 847 | ||
424 | [[package]] | 848 | [[package]] |
425 | name = "glib-sys" | 849 | name = "glib-sys" |
426 | version = "0.16.3" | 850 | version = "0.17.2" |
427 | source = "registry+https://github.com/rust-lang/crates.io-index" | 851 | source = "registry+https://github.com/rust-lang/crates.io-index" |
428 | checksum = "c61a4f46316d06bfa33a7ac22df6f0524c8be58e3db2d9ca99ccb1f357b62a65" | 852 | checksum = "72a0985cf568e18cf63b443c9a14f4bdaa947fed7437476000dba84926a20b25" |
429 | dependencies = [ | 853 | dependencies = [ |
430 | "libc", | 854 | "libc", |
431 | "system-deps", | 855 | "system-deps", |
@@ -433,15 +857,15 @@ dependencies = [ | |||
433 | 857 | ||
434 | [[package]] | 858 | [[package]] |
435 | name = "glob" | 859 | name = "glob" |
436 | version = "0.3.0" | 860 | version = "0.3.1" |
437 | source = "registry+https://github.com/rust-lang/crates.io-index" | 861 | source = "registry+https://github.com/rust-lang/crates.io-index" |
438 | checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" | 862 | checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" |
439 | 863 | ||
440 | [[package]] | 864 | [[package]] |
441 | name = "gobject-sys" | 865 | name = "gobject-sys" |
442 | version = "0.16.3" | 866 | version = "0.17.0" |
443 | source = "registry+https://github.com/rust-lang/crates.io-index" | 867 | source = "registry+https://github.com/rust-lang/crates.io-index" |
444 | checksum = "3520bb9c07ae2a12c7f2fbb24d4efc11231c8146a86956413fb1a79bb760a0f1" | 868 | checksum = "9a0155d388840c77d61b033b66ef4f9bc7f4133d83df83572d6b4fb234a3be7d" |
445 | dependencies = [ | 869 | dependencies = [ |
446 | "glib-sys", | 870 | "glib-sys", |
447 | "libc", | 871 | "libc", |
@@ -449,10 +873,16 @@ dependencies = [ | |||
449 | ] | 873 | ] |
450 | 874 | ||
451 | [[package]] | 875 | [[package]] |
876 | name = "hashbrown" | ||
877 | version = "0.12.3" | ||
878 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
879 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" | ||
880 | |||
881 | [[package]] | ||
452 | name = "heck" | 882 | name = "heck" |
453 | version = "0.4.0" | 883 | version = "0.4.1" |
454 | source = "registry+https://github.com/rust-lang/crates.io-index" | 884 | source = "registry+https://github.com/rust-lang/crates.io-index" |
455 | checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" | 885 | checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" |
456 | 886 | ||
457 | [[package]] | 887 | [[package]] |
458 | name = "hermit-abi" | 888 | name = "hermit-abi" |
@@ -464,12 +894,123 @@ dependencies = [ | |||
464 | ] | 894 | ] |
465 | 895 | ||
466 | [[package]] | 896 | [[package]] |
897 | name = "hermit-abi" | ||
898 | version = "0.2.6" | ||
899 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
900 | checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" | ||
901 | dependencies = [ | ||
902 | "libc", | ||
903 | ] | ||
904 | |||
905 | [[package]] | ||
906 | name = "hermit-abi" | ||
907 | version = "0.3.1" | ||
908 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
909 | checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" | ||
910 | |||
911 | [[package]] | ||
467 | name = "humantime" | 912 | name = "humantime" |
468 | version = "2.1.0" | 913 | version = "2.1.0" |
469 | source = "registry+https://github.com/rust-lang/crates.io-index" | 914 | source = "registry+https://github.com/rust-lang/crates.io-index" |
470 | checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" | 915 | checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" |
471 | 916 | ||
472 | [[package]] | 917 | [[package]] |
918 | name = "iana-time-zone" | ||
919 | version = "0.1.53" | ||
920 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
921 | checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" | ||
922 | dependencies = [ | ||
923 | "android_system_properties", | ||
924 | "core-foundation-sys", | ||
925 | "iana-time-zone-haiku", | ||
926 | "js-sys", | ||
927 | "wasm-bindgen", | ||
928 | "winapi", | ||
929 | ] | ||
930 | |||
931 | [[package]] | ||
932 | name = "iana-time-zone-haiku" | ||
933 | version = "0.1.1" | ||
934 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
935 | checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" | ||
936 | dependencies = [ | ||
937 | "cxx", | ||
938 | "cxx-build", | ||
939 | ] | ||
940 | |||
941 | [[package]] | ||
942 | name = "idna" | ||
943 | version = "0.3.0" | ||
944 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
945 | checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" | ||
946 | dependencies = [ | ||
947 | "unicode-bidi", | ||
948 | "unicode-normalization", | ||
949 | ] | ||
950 | |||
951 | [[package]] | ||
952 | name = "indexmap" | ||
953 | version = "1.9.2" | ||
954 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
955 | checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" | ||
956 | dependencies = [ | ||
957 | "autocfg", | ||
958 | "hashbrown", | ||
959 | ] | ||
960 | |||
961 | [[package]] | ||
962 | name = "io-lifetimes" | ||
963 | version = "1.0.5" | ||
964 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
965 | checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3" | ||
966 | dependencies = [ | ||
967 | "libc", | ||
968 | "windows-sys", | ||
969 | ] | ||
970 | |||
971 | [[package]] | ||
972 | name = "is-terminal" | ||
973 | version = "0.4.4" | ||
974 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
975 | checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857" | ||
976 | dependencies = [ | ||
977 | "hermit-abi 0.3.1", | ||
978 | "io-lifetimes", | ||
979 | "rustix", | ||
980 | "windows-sys", | ||
981 | ] | ||
982 | |||
983 | [[package]] | ||
984 | name = "itertools" | ||
985 | version = "0.10.5" | ||
986 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
987 | checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" | ||
988 | dependencies = [ | ||
989 | "either", | ||
990 | ] | ||
991 | |||
992 | [[package]] | ||
993 | name = "itoa" | ||
994 | version = "1.0.5" | ||
995 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
996 | checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" | ||
997 | |||
998 | [[package]] | ||
999 | name = "js-sys" | ||
1000 | version = "0.3.61" | ||
1001 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1002 | checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" | ||
1003 | dependencies = [ | ||
1004 | "wasm-bindgen", | ||
1005 | ] | ||
1006 | |||
1007 | [[package]] | ||
1008 | name = "language-tags" | ||
1009 | version = "0.3.2" | ||
1010 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1011 | checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" | ||
1012 | |||
1013 | [[package]] | ||
473 | name = "lazy_static" | 1014 | name = "lazy_static" |
474 | version = "1.4.0" | 1015 | version = "1.4.0" |
475 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1016 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -498,6 +1039,86 @@ dependencies = [ | |||
498 | ] | 1039 | ] |
499 | 1040 | ||
500 | [[package]] | 1041 | [[package]] |
1042 | name = "librsvg" | ||
1043 | version = "2.55.91" | ||
1044 | source = "git+https://gitlab.gnome.org/GNOME/librsvg#1f11b3c236c374c58d929baafa0841fef59c4155" | ||
1045 | dependencies = [ | ||
1046 | "anyhow", | ||
1047 | "byteorder", | ||
1048 | "cairo-rs", | ||
1049 | "cast", | ||
1050 | "chrono", | ||
1051 | "clap 4.1.8", | ||
1052 | "clap_complete", | ||
1053 | "cssparser", | ||
1054 | "data-url", | ||
1055 | "encoding", | ||
1056 | "float-cmp", | ||
1057 | "gdk-pixbuf", | ||
1058 | "gio", | ||
1059 | "glib", | ||
1060 | "itertools", | ||
1061 | "language-tags", | ||
1062 | "libc", | ||
1063 | "locale_config", | ||
1064 | "markup5ever", | ||
1065 | "nalgebra", | ||
1066 | "num-traits", | ||
1067 | "once_cell", | ||
1068 | "pango", | ||
1069 | "pangocairo", | ||
1070 | "rayon", | ||
1071 | "rctree", | ||
1072 | "regex", | ||
1073 | "rgb", | ||
1074 | "selectors", | ||
1075 | "string_cache", | ||
1076 | "system-deps", | ||
1077 | "thiserror", | ||
1078 | "tinyvec", | ||
1079 | "url", | ||
1080 | "xml5ever", | ||
1081 | ] | ||
1082 | |||
1083 | [[package]] | ||
1084 | name = "link-cplusplus" | ||
1085 | version = "1.0.8" | ||
1086 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1087 | checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" | ||
1088 | dependencies = [ | ||
1089 | "cc", | ||
1090 | ] | ||
1091 | |||
1092 | [[package]] | ||
1093 | name = "linux-raw-sys" | ||
1094 | version = "0.1.4" | ||
1095 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1096 | checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" | ||
1097 | |||
1098 | [[package]] | ||
1099 | name = "locale_config" | ||
1100 | version = "0.3.0" | ||
1101 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1102 | checksum = "08d2c35b16f4483f6c26f0e4e9550717a2f6575bcd6f12a53ff0c490a94a6934" | ||
1103 | dependencies = [ | ||
1104 | "lazy_static", | ||
1105 | "objc", | ||
1106 | "objc-foundation", | ||
1107 | "regex", | ||
1108 | "winapi", | ||
1109 | ] | ||
1110 | |||
1111 | [[package]] | ||
1112 | name = "lock_api" | ||
1113 | version = "0.4.9" | ||
1114 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1115 | checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" | ||
1116 | dependencies = [ | ||
1117 | "autocfg", | ||
1118 | "scopeguard", | ||
1119 | ] | ||
1120 | |||
1121 | [[package]] | ||
501 | name = "log" | 1122 | name = "log" |
502 | version = "0.4.17" | 1123 | version = "0.4.17" |
503 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1124 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -507,16 +1128,85 @@ dependencies = [ | |||
507 | ] | 1128 | ] |
508 | 1129 | ||
509 | [[package]] | 1130 | [[package]] |
1131 | name = "mac" | ||
1132 | version = "0.1.1" | ||
1133 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1134 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" | ||
1135 | |||
1136 | [[package]] | ||
1137 | name = "malloc_buf" | ||
1138 | version = "0.0.6" | ||
1139 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1140 | checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" | ||
1141 | dependencies = [ | ||
1142 | "libc", | ||
1143 | ] | ||
1144 | |||
1145 | [[package]] | ||
1146 | name = "markup5ever" | ||
1147 | version = "0.11.0" | ||
1148 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1149 | checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" | ||
1150 | dependencies = [ | ||
1151 | "log", | ||
1152 | "phf 0.10.1", | ||
1153 | "phf_codegen 0.10.0", | ||
1154 | "string_cache", | ||
1155 | "string_cache_codegen", | ||
1156 | "tendril", | ||
1157 | ] | ||
1158 | |||
1159 | [[package]] | ||
1160 | name = "matches" | ||
1161 | version = "0.1.10" | ||
1162 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1163 | checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" | ||
1164 | |||
1165 | [[package]] | ||
1166 | name = "matrixmultiply" | ||
1167 | version = "0.3.2" | ||
1168 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1169 | checksum = "add85d4dd35074e6fedc608f8c8f513a3548619a9024b751949ef0e8e45a4d84" | ||
1170 | dependencies = [ | ||
1171 | "rawpointer", | ||
1172 | ] | ||
1173 | |||
1174 | [[package]] | ||
510 | name = "memchr" | 1175 | name = "memchr" |
511 | version = "2.5.0" | 1176 | version = "2.5.0" |
512 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1177 | source = "registry+https://github.com/rust-lang/crates.io-index" |
513 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" | 1178 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" |
514 | 1179 | ||
515 | [[package]] | 1180 | [[package]] |
1181 | name = "memoffset" | ||
1182 | version = "0.8.0" | ||
1183 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1184 | checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" | ||
1185 | dependencies = [ | ||
1186 | "autocfg", | ||
1187 | ] | ||
1188 | |||
1189 | [[package]] | ||
1190 | name = "mime" | ||
1191 | version = "0.3.16" | ||
1192 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1193 | checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" | ||
1194 | |||
1195 | [[package]] | ||
1196 | name = "mime_guess" | ||
1197 | version = "2.0.4" | ||
1198 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1199 | checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" | ||
1200 | dependencies = [ | ||
1201 | "mime", | ||
1202 | "unicase", | ||
1203 | ] | ||
1204 | |||
1205 | [[package]] | ||
516 | name = "mlua" | 1206 | name = "mlua" |
517 | version = "0.8.6" | 1207 | version = "0.8.7" |
518 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1208 | source = "registry+https://github.com/rust-lang/crates.io-index" |
519 | checksum = "4351dbcc863fb6249c81b3bd0c8001214e9d4d44d22cabda17026353a77fe612" | 1209 | checksum = "2ee2ad7a9aa69056b148d9d590344bc155d3ce0d2200e3b2838f7034f6ba33c1" |
520 | dependencies = [ | 1210 | dependencies = [ |
521 | "bstr", | 1211 | "bstr", |
522 | "cc", | 1212 | "cc", |
@@ -539,6 +1229,45 @@ dependencies = [ | |||
539 | ] | 1229 | ] |
540 | 1230 | ||
541 | [[package]] | 1231 | [[package]] |
1232 | name = "nalgebra" | ||
1233 | version = "0.32.1" | ||
1234 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1235 | checksum = "f6515c882ebfddccaa73ead7320ca28036c4bc84c9bcca3cc0cbba8efe89223a" | ||
1236 | dependencies = [ | ||
1237 | "approx", | ||
1238 | "matrixmultiply", | ||
1239 | "nalgebra-macros", | ||
1240 | "num-complex", | ||
1241 | "num-rational", | ||
1242 | "num-traits", | ||
1243 | "simba", | ||
1244 | "typenum", | ||
1245 | ] | ||
1246 | |||
1247 | [[package]] | ||
1248 | name = "nalgebra-macros" | ||
1249 | version = "0.2.0" | ||
1250 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1251 | checksum = "d232c68884c0c99810a5a4d333ef7e47689cfd0edc85efc9e54e1e6bf5212766" | ||
1252 | dependencies = [ | ||
1253 | "proc-macro2", | ||
1254 | "quote", | ||
1255 | "syn", | ||
1256 | ] | ||
1257 | |||
1258 | [[package]] | ||
1259 | name = "new_debug_unreachable" | ||
1260 | version = "1.0.4" | ||
1261 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1262 | checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" | ||
1263 | |||
1264 | [[package]] | ||
1265 | name = "nodrop" | ||
1266 | version = "0.1.14" | ||
1267 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1268 | checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" | ||
1269 | |||
1270 | [[package]] | ||
542 | name = "nom" | 1271 | name = "nom" |
543 | version = "5.1.2" | 1272 | version = "5.1.2" |
544 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1273 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -549,6 +1278,36 @@ dependencies = [ | |||
549 | ] | 1278 | ] |
550 | 1279 | ||
551 | [[package]] | 1280 | [[package]] |
1281 | name = "num-complex" | ||
1282 | version = "0.4.3" | ||
1283 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1284 | checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d" | ||
1285 | dependencies = [ | ||
1286 | "num-traits", | ||
1287 | ] | ||
1288 | |||
1289 | [[package]] | ||
1290 | name = "num-integer" | ||
1291 | version = "0.1.45" | ||
1292 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1293 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" | ||
1294 | dependencies = [ | ||
1295 | "autocfg", | ||
1296 | "num-traits", | ||
1297 | ] | ||
1298 | |||
1299 | [[package]] | ||
1300 | name = "num-rational" | ||
1301 | version = "0.4.1" | ||
1302 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1303 | checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" | ||
1304 | dependencies = [ | ||
1305 | "autocfg", | ||
1306 | "num-integer", | ||
1307 | "num-traits", | ||
1308 | ] | ||
1309 | |||
1310 | [[package]] | ||
552 | name = "num-traits" | 1311 | name = "num-traits" |
553 | version = "0.2.15" | 1312 | version = "0.2.15" |
554 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1313 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -558,10 +1317,55 @@ dependencies = [ | |||
558 | ] | 1317 | ] |
559 | 1318 | ||
560 | [[package]] | 1319 | [[package]] |
1320 | name = "num_cpus" | ||
1321 | version = "1.15.0" | ||
1322 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1323 | checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" | ||
1324 | dependencies = [ | ||
1325 | "hermit-abi 0.2.6", | ||
1326 | "libc", | ||
1327 | ] | ||
1328 | |||
1329 | [[package]] | ||
1330 | name = "objc" | ||
1331 | version = "0.2.7" | ||
1332 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1333 | checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" | ||
1334 | dependencies = [ | ||
1335 | "malloc_buf", | ||
1336 | ] | ||
1337 | |||
1338 | [[package]] | ||
1339 | name = "objc-foundation" | ||
1340 | version = "0.1.1" | ||
1341 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1342 | checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" | ||
1343 | dependencies = [ | ||
1344 | "block", | ||
1345 | "objc", | ||
1346 | "objc_id", | ||
1347 | ] | ||
1348 | |||
1349 | [[package]] | ||
1350 | name = "objc_id" | ||
1351 | version = "0.1.1" | ||
1352 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1353 | checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" | ||
1354 | dependencies = [ | ||
1355 | "objc", | ||
1356 | ] | ||
1357 | |||
1358 | [[package]] | ||
561 | name = "once_cell" | 1359 | name = "once_cell" |
562 | version = "1.16.0" | 1360 | version = "1.17.1" |
563 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1361 | source = "registry+https://github.com/rust-lang/crates.io-index" |
564 | checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" | 1362 | checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" |
1363 | |||
1364 | [[package]] | ||
1365 | name = "os_str_bytes" | ||
1366 | version = "6.4.1" | ||
1367 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1368 | checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" | ||
565 | 1369 | ||
566 | [[package]] | 1370 | [[package]] |
567 | name = "palette" | 1371 | name = "palette" |
@@ -572,7 +1376,7 @@ dependencies = [ | |||
572 | "approx", | 1376 | "approx", |
573 | "num-traits", | 1377 | "num-traits", |
574 | "palette_derive", | 1378 | "palette_derive", |
575 | "phf", | 1379 | "phf 0.11.1", |
576 | ] | 1380 | ] |
577 | 1381 | ||
578 | [[package]] | 1382 | [[package]] |
@@ -589,9 +1393,9 @@ dependencies = [ | |||
589 | 1393 | ||
590 | [[package]] | 1394 | [[package]] |
591 | name = "pango" | 1395 | name = "pango" |
592 | version = "0.16.5" | 1396 | version = "0.17.0" |
593 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1397 | source = "registry+https://github.com/rust-lang/crates.io-index" |
594 | checksum = "cdff66b271861037b89d028656184059e03b0b6ccb36003820be19f7200b1e94" | 1398 | checksum = "243c048be90312220fb3bd578176eed8290568274a93c95040289d39349384bc" |
595 | dependencies = [ | 1399 | dependencies = [ |
596 | "bitflags", | 1400 | "bitflags", |
597 | "gio", | 1401 | "gio", |
@@ -603,9 +1407,9 @@ dependencies = [ | |||
603 | 1407 | ||
604 | [[package]] | 1408 | [[package]] |
605 | name = "pango-sys" | 1409 | name = "pango-sys" |
606 | version = "0.16.3" | 1410 | version = "0.17.0" |
607 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1411 | source = "registry+https://github.com/rust-lang/crates.io-index" |
608 | checksum = "9e134909a9a293e04d2cc31928aa95679c5e4df954d0b85483159bd20d8f047f" | 1412 | checksum = "4293d0f0b5525eb5c24734d30b0ed02cd02aa734f216883f376b54de49625de8" |
609 | dependencies = [ | 1413 | dependencies = [ |
610 | "glib-sys", | 1414 | "glib-sys", |
611 | "gobject-sys", | 1415 | "gobject-sys", |
@@ -615,9 +1419,9 @@ dependencies = [ | |||
615 | 1419 | ||
616 | [[package]] | 1420 | [[package]] |
617 | name = "pangocairo" | 1421 | name = "pangocairo" |
618 | version = "0.16.3" | 1422 | version = "0.17.0" |
619 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1423 | source = "registry+https://github.com/rust-lang/crates.io-index" |
620 | checksum = "16ad2ec87789371b551fd2367c10aa37060412ffd3e60abd99491b21b93a3f9b" | 1424 | checksum = "2feeb7ea7874507f83f5e7ba869c54e321959431c8fbd70d4b735c8b15d90506" |
621 | dependencies = [ | 1425 | dependencies = [ |
622 | "bitflags", | 1426 | "bitflags", |
623 | "cairo-rs", | 1427 | "cairo-rs", |
@@ -629,9 +1433,9 @@ dependencies = [ | |||
629 | 1433 | ||
630 | [[package]] | 1434 | [[package]] |
631 | name = "pangocairo-sys" | 1435 | name = "pangocairo-sys" |
632 | version = "0.16.3" | 1436 | version = "0.17.0" |
633 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1437 | source = "registry+https://github.com/rust-lang/crates.io-index" |
634 | checksum = "848d2df9b7f1a8c7a19d994de443bcbe5d4382610ccb8e64247f932be74fcf76" | 1438 | checksum = "71abd374a8322e2e382039ff2e020c4cc9ef2e12ea488e38d9cec4a55e296470" |
635 | dependencies = [ | 1439 | dependencies = [ |
636 | "cairo-sys-rs", | 1440 | "cairo-sys-rs", |
637 | "glib-sys", | 1441 | "glib-sys", |
@@ -641,19 +1445,114 @@ dependencies = [ | |||
641 | ] | 1445 | ] |
642 | 1446 | ||
643 | [[package]] | 1447 | [[package]] |
1448 | name = "parking_lot" | ||
1449 | version = "0.12.1" | ||
1450 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1451 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" | ||
1452 | dependencies = [ | ||
1453 | "lock_api", | ||
1454 | "parking_lot_core", | ||
1455 | ] | ||
1456 | |||
1457 | [[package]] | ||
1458 | name = "parking_lot_core" | ||
1459 | version = "0.9.7" | ||
1460 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1461 | checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" | ||
1462 | dependencies = [ | ||
1463 | "cfg-if", | ||
1464 | "libc", | ||
1465 | "redox_syscall", | ||
1466 | "smallvec", | ||
1467 | "windows-sys", | ||
1468 | ] | ||
1469 | |||
1470 | [[package]] | ||
1471 | name = "paste" | ||
1472 | version = "1.0.11" | ||
1473 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1474 | checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba" | ||
1475 | |||
1476 | [[package]] | ||
644 | name = "peeking_take_while" | 1477 | name = "peeking_take_while" |
645 | version = "0.1.2" | 1478 | version = "0.1.2" |
646 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1479 | source = "registry+https://github.com/rust-lang/crates.io-index" |
647 | checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" | 1480 | checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" |
648 | 1481 | ||
649 | [[package]] | 1482 | [[package]] |
1483 | name = "percent-encoding" | ||
1484 | version = "2.2.0" | ||
1485 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1486 | checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" | ||
1487 | |||
1488 | [[package]] | ||
1489 | name = "phf" | ||
1490 | version = "0.8.0" | ||
1491 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1492 | checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" | ||
1493 | dependencies = [ | ||
1494 | "phf_shared 0.8.0", | ||
1495 | ] | ||
1496 | |||
1497 | [[package]] | ||
1498 | name = "phf" | ||
1499 | version = "0.10.1" | ||
1500 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1501 | checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" | ||
1502 | dependencies = [ | ||
1503 | "phf_macros 0.10.0", | ||
1504 | "phf_shared 0.10.0", | ||
1505 | "proc-macro-hack", | ||
1506 | ] | ||
1507 | |||
1508 | [[package]] | ||
650 | name = "phf" | 1509 | name = "phf" |
651 | version = "0.11.1" | 1510 | version = "0.11.1" |
652 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1511 | source = "registry+https://github.com/rust-lang/crates.io-index" |
653 | checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" | 1512 | checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" |
654 | dependencies = [ | 1513 | dependencies = [ |
655 | "phf_macros", | 1514 | "phf_macros 0.11.1", |
656 | "phf_shared", | 1515 | "phf_shared 0.11.1", |
1516 | ] | ||
1517 | |||
1518 | [[package]] | ||
1519 | name = "phf_codegen" | ||
1520 | version = "0.8.0" | ||
1521 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1522 | checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" | ||
1523 | dependencies = [ | ||
1524 | "phf_generator 0.8.0", | ||
1525 | "phf_shared 0.8.0", | ||
1526 | ] | ||
1527 | |||
1528 | [[package]] | ||
1529 | name = "phf_codegen" | ||
1530 | version = "0.10.0" | ||
1531 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1532 | checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" | ||
1533 | dependencies = [ | ||
1534 | "phf_generator 0.10.0", | ||
1535 | "phf_shared 0.10.0", | ||
1536 | ] | ||
1537 | |||
1538 | [[package]] | ||
1539 | name = "phf_generator" | ||
1540 | version = "0.8.0" | ||
1541 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1542 | checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" | ||
1543 | dependencies = [ | ||
1544 | "phf_shared 0.8.0", | ||
1545 | "rand 0.7.3", | ||
1546 | ] | ||
1547 | |||
1548 | [[package]] | ||
1549 | name = "phf_generator" | ||
1550 | version = "0.10.0" | ||
1551 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1552 | checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" | ||
1553 | dependencies = [ | ||
1554 | "phf_shared 0.10.0", | ||
1555 | "rand 0.8.5", | ||
657 | ] | 1556 | ] |
658 | 1557 | ||
659 | [[package]] | 1558 | [[package]] |
@@ -662,8 +1561,22 @@ version = "0.11.1" | |||
662 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1561 | source = "registry+https://github.com/rust-lang/crates.io-index" |
663 | checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" | 1562 | checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" |
664 | dependencies = [ | 1563 | dependencies = [ |
665 | "phf_shared", | 1564 | "phf_shared 0.11.1", |
666 | "rand", | 1565 | "rand 0.8.5", |
1566 | ] | ||
1567 | |||
1568 | [[package]] | ||
1569 | name = "phf_macros" | ||
1570 | version = "0.10.0" | ||
1571 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1572 | checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" | ||
1573 | dependencies = [ | ||
1574 | "phf_generator 0.10.0", | ||
1575 | "phf_shared 0.10.0", | ||
1576 | "proc-macro-hack", | ||
1577 | "proc-macro2", | ||
1578 | "quote", | ||
1579 | "syn", | ||
667 | ] | 1580 | ] |
668 | 1581 | ||
669 | [[package]] | 1582 | [[package]] |
@@ -672,8 +1585,8 @@ version = "0.11.1" | |||
672 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1585 | source = "registry+https://github.com/rust-lang/crates.io-index" |
673 | checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66" | 1586 | checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66" |
674 | dependencies = [ | 1587 | dependencies = [ |
675 | "phf_generator", | 1588 | "phf_generator 0.11.1", |
676 | "phf_shared", | 1589 | "phf_shared 0.11.1", |
677 | "proc-macro2", | 1590 | "proc-macro2", |
678 | "quote", | 1591 | "quote", |
679 | "syn", | 1592 | "syn", |
@@ -681,6 +1594,24 @@ dependencies = [ | |||
681 | 1594 | ||
682 | [[package]] | 1595 | [[package]] |
683 | name = "phf_shared" | 1596 | name = "phf_shared" |
1597 | version = "0.8.0" | ||
1598 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1599 | checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" | ||
1600 | dependencies = [ | ||
1601 | "siphasher", | ||
1602 | ] | ||
1603 | |||
1604 | [[package]] | ||
1605 | name = "phf_shared" | ||
1606 | version = "0.10.0" | ||
1607 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1608 | checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" | ||
1609 | dependencies = [ | ||
1610 | "siphasher", | ||
1611 | ] | ||
1612 | |||
1613 | [[package]] | ||
1614 | name = "phf_shared" | ||
684 | version = "0.11.1" | 1615 | version = "0.11.1" |
685 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1616 | source = "registry+https://github.com/rust-lang/crates.io-index" |
686 | checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" | 1617 | checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" |
@@ -707,14 +1638,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
707 | checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" | 1638 | checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" |
708 | 1639 | ||
709 | [[package]] | 1640 | [[package]] |
1641 | name = "ppv-lite86" | ||
1642 | version = "0.2.17" | ||
1643 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1644 | checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" | ||
1645 | |||
1646 | [[package]] | ||
1647 | name = "precomputed-hash" | ||
1648 | version = "0.1.1" | ||
1649 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1650 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" | ||
1651 | |||
1652 | [[package]] | ||
710 | name = "proc-macro-crate" | 1653 | name = "proc-macro-crate" |
711 | version = "1.2.1" | 1654 | version = "1.3.1" |
712 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1655 | source = "registry+https://github.com/rust-lang/crates.io-index" |
713 | checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" | 1656 | checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" |
714 | dependencies = [ | 1657 | dependencies = [ |
715 | "once_cell", | 1658 | "once_cell", |
716 | "thiserror", | 1659 | "toml_edit", |
717 | "toml", | ||
718 | ] | 1660 | ] |
719 | 1661 | ||
720 | [[package]] | 1662 | [[package]] |
@@ -742,10 +1684,16 @@ dependencies = [ | |||
742 | ] | 1684 | ] |
743 | 1685 | ||
744 | [[package]] | 1686 | [[package]] |
1687 | name = "proc-macro-hack" | ||
1688 | version = "0.5.20+deprecated" | ||
1689 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1690 | checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" | ||
1691 | |||
1692 | [[package]] | ||
745 | name = "proc-macro2" | 1693 | name = "proc-macro2" |
746 | version = "1.0.49" | 1694 | version = "1.0.51" |
747 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1695 | source = "registry+https://github.com/rust-lang/crates.io-index" |
748 | checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5" | 1696 | checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6" |
749 | dependencies = [ | 1697 | dependencies = [ |
750 | "unicode-ident", | 1698 | "unicode-ident", |
751 | ] | 1699 | ] |
@@ -761,11 +1709,56 @@ dependencies = [ | |||
761 | 1709 | ||
762 | [[package]] | 1710 | [[package]] |
763 | name = "rand" | 1711 | name = "rand" |
1712 | version = "0.7.3" | ||
1713 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1714 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" | ||
1715 | dependencies = [ | ||
1716 | "getrandom 0.1.16", | ||
1717 | "libc", | ||
1718 | "rand_chacha 0.2.2", | ||
1719 | "rand_core 0.5.1", | ||
1720 | "rand_hc", | ||
1721 | "rand_pcg", | ||
1722 | ] | ||
1723 | |||
1724 | [[package]] | ||
1725 | name = "rand" | ||
764 | version = "0.8.5" | 1726 | version = "0.8.5" |
765 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1727 | source = "registry+https://github.com/rust-lang/crates.io-index" |
766 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" | 1728 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" |
767 | dependencies = [ | 1729 | dependencies = [ |
768 | "rand_core", | 1730 | "libc", |
1731 | "rand_chacha 0.3.1", | ||
1732 | "rand_core 0.6.4", | ||
1733 | ] | ||
1734 | |||
1735 | [[package]] | ||
1736 | name = "rand_chacha" | ||
1737 | version = "0.2.2" | ||
1738 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1739 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" | ||
1740 | dependencies = [ | ||
1741 | "ppv-lite86", | ||
1742 | "rand_core 0.5.1", | ||
1743 | ] | ||
1744 | |||
1745 | [[package]] | ||
1746 | name = "rand_chacha" | ||
1747 | version = "0.3.1" | ||
1748 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1749 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" | ||
1750 | dependencies = [ | ||
1751 | "ppv-lite86", | ||
1752 | "rand_core 0.6.4", | ||
1753 | ] | ||
1754 | |||
1755 | [[package]] | ||
1756 | name = "rand_core" | ||
1757 | version = "0.5.1" | ||
1758 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1759 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" | ||
1760 | dependencies = [ | ||
1761 | "getrandom 0.1.16", | ||
769 | ] | 1762 | ] |
770 | 1763 | ||
771 | [[package]] | 1764 | [[package]] |
@@ -773,12 +1766,76 @@ name = "rand_core" | |||
773 | version = "0.6.4" | 1766 | version = "0.6.4" |
774 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1767 | source = "registry+https://github.com/rust-lang/crates.io-index" |
775 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" | 1768 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" |
1769 | dependencies = [ | ||
1770 | "getrandom 0.2.8", | ||
1771 | ] | ||
1772 | |||
1773 | [[package]] | ||
1774 | name = "rand_hc" | ||
1775 | version = "0.2.0" | ||
1776 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1777 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" | ||
1778 | dependencies = [ | ||
1779 | "rand_core 0.5.1", | ||
1780 | ] | ||
1781 | |||
1782 | [[package]] | ||
1783 | name = "rand_pcg" | ||
1784 | version = "0.2.1" | ||
1785 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1786 | checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" | ||
1787 | dependencies = [ | ||
1788 | "rand_core 0.5.1", | ||
1789 | ] | ||
1790 | |||
1791 | [[package]] | ||
1792 | name = "rawpointer" | ||
1793 | version = "0.2.1" | ||
1794 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1795 | checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" | ||
1796 | |||
1797 | [[package]] | ||
1798 | name = "rayon" | ||
1799 | version = "1.6.1" | ||
1800 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1801 | checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" | ||
1802 | dependencies = [ | ||
1803 | "either", | ||
1804 | "rayon-core", | ||
1805 | ] | ||
1806 | |||
1807 | [[package]] | ||
1808 | name = "rayon-core" | ||
1809 | version = "1.10.2" | ||
1810 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1811 | checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b" | ||
1812 | dependencies = [ | ||
1813 | "crossbeam-channel", | ||
1814 | "crossbeam-deque", | ||
1815 | "crossbeam-utils", | ||
1816 | "num_cpus", | ||
1817 | ] | ||
1818 | |||
1819 | [[package]] | ||
1820 | name = "rctree" | ||
1821 | version = "0.5.0" | ||
1822 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1823 | checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f" | ||
1824 | |||
1825 | [[package]] | ||
1826 | name = "redox_syscall" | ||
1827 | version = "0.2.16" | ||
1828 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1829 | checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" | ||
1830 | dependencies = [ | ||
1831 | "bitflags", | ||
1832 | ] | ||
776 | 1833 | ||
777 | [[package]] | 1834 | [[package]] |
778 | name = "regex" | 1835 | name = "regex" |
779 | version = "1.7.0" | 1836 | version = "1.7.1" |
780 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1837 | source = "registry+https://github.com/rust-lang/crates.io-index" |
781 | checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" | 1838 | checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" |
782 | dependencies = [ | 1839 | dependencies = [ |
783 | "aho-corasick", | 1840 | "aho-corasick", |
784 | "memchr", | 1841 | "memchr", |
@@ -792,16 +1849,103 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
792 | checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" | 1849 | checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" |
793 | 1850 | ||
794 | [[package]] | 1851 | [[package]] |
1852 | name = "rgb" | ||
1853 | version = "0.8.36" | ||
1854 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1855 | checksum = "20ec2d3e3fc7a92ced357df9cebd5a10b6fb2aa1ee797bf7e9ce2f17dffc8f59" | ||
1856 | dependencies = [ | ||
1857 | "bytemuck", | ||
1858 | ] | ||
1859 | |||
1860 | [[package]] | ||
795 | name = "rustc-hash" | 1861 | name = "rustc-hash" |
796 | version = "1.1.0" | 1862 | version = "1.1.0" |
797 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1863 | source = "registry+https://github.com/rust-lang/crates.io-index" |
798 | checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" | 1864 | checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" |
799 | 1865 | ||
800 | [[package]] | 1866 | [[package]] |
1867 | name = "rustc_version" | ||
1868 | version = "0.4.0" | ||
1869 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1870 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" | ||
1871 | dependencies = [ | ||
1872 | "semver", | ||
1873 | ] | ||
1874 | |||
1875 | [[package]] | ||
1876 | name = "rustix" | ||
1877 | version = "0.36.8" | ||
1878 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1879 | checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644" | ||
1880 | dependencies = [ | ||
1881 | "bitflags", | ||
1882 | "errno", | ||
1883 | "io-lifetimes", | ||
1884 | "libc", | ||
1885 | "linux-raw-sys", | ||
1886 | "windows-sys", | ||
1887 | ] | ||
1888 | |||
1889 | [[package]] | ||
1890 | name = "safe_arch" | ||
1891 | version = "0.6.0" | ||
1892 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1893 | checksum = "794821e4ccb0d9f979512f9c1973480123f9bd62a90d74ab0f9426fcf8f4a529" | ||
1894 | dependencies = [ | ||
1895 | "bytemuck", | ||
1896 | ] | ||
1897 | |||
1898 | [[package]] | ||
1899 | name = "scopeguard" | ||
1900 | version = "1.1.0" | ||
1901 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1902 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" | ||
1903 | |||
1904 | [[package]] | ||
1905 | name = "scratch" | ||
1906 | version = "1.0.3" | ||
1907 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1908 | checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" | ||
1909 | |||
1910 | [[package]] | ||
1911 | name = "selectors" | ||
1912 | version = "0.24.0" | ||
1913 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1914 | checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416" | ||
1915 | dependencies = [ | ||
1916 | "bitflags", | ||
1917 | "cssparser", | ||
1918 | "derive_more", | ||
1919 | "fxhash", | ||
1920 | "log", | ||
1921 | "phf 0.8.0", | ||
1922 | "phf_codegen 0.8.0", | ||
1923 | "precomputed-hash", | ||
1924 | "servo_arc", | ||
1925 | "smallvec", | ||
1926 | ] | ||
1927 | |||
1928 | [[package]] | ||
1929 | name = "semver" | ||
1930 | version = "1.0.16" | ||
1931 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1932 | checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" | ||
1933 | |||
1934 | [[package]] | ||
801 | name = "serde" | 1935 | name = "serde" |
802 | version = "1.0.151" | 1936 | version = "1.0.152" |
1937 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1938 | checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" | ||
1939 | |||
1940 | [[package]] | ||
1941 | name = "servo_arc" | ||
1942 | version = "0.2.0" | ||
803 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1943 | source = "registry+https://github.com/rust-lang/crates.io-index" |
804 | checksum = "97fed41fc1a24994d044e6db6935e69511a1153b52c15eb42493b26fa87feba0" | 1944 | checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741" |
1945 | dependencies = [ | ||
1946 | "nodrop", | ||
1947 | "stable_deref_trait", | ||
1948 | ] | ||
805 | 1949 | ||
806 | [[package]] | 1950 | [[package]] |
807 | name = "shlex" | 1951 | name = "shlex" |
@@ -810,6 +1954,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
810 | checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" | 1954 | checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" |
811 | 1955 | ||
812 | [[package]] | 1956 | [[package]] |
1957 | name = "simba" | ||
1958 | version = "0.8.0" | ||
1959 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1960 | checksum = "50582927ed6f77e4ac020c057f37a268fc6aebc29225050365aacbb9deeeddc4" | ||
1961 | dependencies = [ | ||
1962 | "approx", | ||
1963 | "num-complex", | ||
1964 | "num-traits", | ||
1965 | "paste", | ||
1966 | "wide", | ||
1967 | ] | ||
1968 | |||
1969 | [[package]] | ||
813 | name = "siphasher" | 1970 | name = "siphasher" |
814 | version = "0.3.10" | 1971 | version = "0.3.10" |
815 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1972 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -817,9 +1974,9 @@ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" | |||
817 | 1974 | ||
818 | [[package]] | 1975 | [[package]] |
819 | name = "slab" | 1976 | name = "slab" |
820 | version = "0.4.7" | 1977 | version = "0.4.8" |
821 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1978 | source = "registry+https://github.com/rust-lang/crates.io-index" |
822 | checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" | 1979 | checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" |
823 | dependencies = [ | 1980 | dependencies = [ |
824 | "autocfg", | 1981 | "autocfg", |
825 | ] | 1982 | ] |
@@ -831,16 +1988,54 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
831 | checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" | 1988 | checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" |
832 | 1989 | ||
833 | [[package]] | 1990 | [[package]] |
1991 | name = "stable_deref_trait" | ||
1992 | version = "1.2.0" | ||
1993 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1994 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" | ||
1995 | |||
1996 | [[package]] | ||
1997 | name = "string_cache" | ||
1998 | version = "0.8.4" | ||
1999 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2000 | checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" | ||
2001 | dependencies = [ | ||
2002 | "new_debug_unreachable", | ||
2003 | "once_cell", | ||
2004 | "parking_lot", | ||
2005 | "phf_shared 0.10.0", | ||
2006 | "precomputed-hash", | ||
2007 | "serde", | ||
2008 | ] | ||
2009 | |||
2010 | [[package]] | ||
2011 | name = "string_cache_codegen" | ||
2012 | version = "0.5.2" | ||
2013 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2014 | checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" | ||
2015 | dependencies = [ | ||
2016 | "phf_generator 0.10.0", | ||
2017 | "phf_shared 0.10.0", | ||
2018 | "proc-macro2", | ||
2019 | "quote", | ||
2020 | ] | ||
2021 | |||
2022 | [[package]] | ||
834 | name = "strsim" | 2023 | name = "strsim" |
835 | version = "0.8.0" | 2024 | version = "0.8.0" |
836 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2025 | source = "registry+https://github.com/rust-lang/crates.io-index" |
837 | checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" | 2026 | checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" |
838 | 2027 | ||
839 | [[package]] | 2028 | [[package]] |
2029 | name = "strsim" | ||
2030 | version = "0.10.0" | ||
2031 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2032 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" | ||
2033 | |||
2034 | [[package]] | ||
840 | name = "syn" | 2035 | name = "syn" |
841 | version = "1.0.107" | 2036 | version = "1.0.109" |
842 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2037 | source = "registry+https://github.com/rust-lang/crates.io-index" |
843 | checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" | 2038 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" |
844 | dependencies = [ | 2039 | dependencies = [ |
845 | "proc-macro2", | 2040 | "proc-macro2", |
846 | "quote", | 2041 | "quote", |
@@ -861,10 +2056,21 @@ dependencies = [ | |||
861 | ] | 2056 | ] |
862 | 2057 | ||
863 | [[package]] | 2058 | [[package]] |
2059 | name = "tendril" | ||
2060 | version = "0.4.3" | ||
2061 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2062 | checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" | ||
2063 | dependencies = [ | ||
2064 | "futf", | ||
2065 | "mac", | ||
2066 | "utf-8", | ||
2067 | ] | ||
2068 | |||
2069 | [[package]] | ||
864 | name = "termcolor" | 2070 | name = "termcolor" |
865 | version = "1.1.3" | 2071 | version = "1.2.0" |
866 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2072 | source = "registry+https://github.com/rust-lang/crates.io-index" |
867 | checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" | 2073 | checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" |
868 | dependencies = [ | 2074 | dependencies = [ |
869 | "winapi-util", | 2075 | "winapi-util", |
870 | ] | 2076 | ] |
@@ -899,27 +2105,117 @@ dependencies = [ | |||
899 | ] | 2105 | ] |
900 | 2106 | ||
901 | [[package]] | 2107 | [[package]] |
2108 | name = "time" | ||
2109 | version = "0.1.45" | ||
2110 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2111 | checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" | ||
2112 | dependencies = [ | ||
2113 | "libc", | ||
2114 | "wasi 0.10.0+wasi-snapshot-preview1", | ||
2115 | "winapi", | ||
2116 | ] | ||
2117 | |||
2118 | [[package]] | ||
2119 | name = "tinyvec" | ||
2120 | version = "1.6.0" | ||
2121 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2122 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" | ||
2123 | dependencies = [ | ||
2124 | "tinyvec_macros", | ||
2125 | ] | ||
2126 | |||
2127 | [[package]] | ||
2128 | name = "tinyvec_macros" | ||
2129 | version = "0.1.1" | ||
2130 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2131 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" | ||
2132 | |||
2133 | [[package]] | ||
902 | name = "toml" | 2134 | name = "toml" |
903 | version = "0.5.10" | 2135 | version = "0.5.11" |
904 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2136 | source = "registry+https://github.com/rust-lang/crates.io-index" |
905 | checksum = "1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f" | 2137 | checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" |
906 | dependencies = [ | 2138 | dependencies = [ |
907 | "serde", | 2139 | "serde", |
908 | ] | 2140 | ] |
909 | 2141 | ||
910 | [[package]] | 2142 | [[package]] |
2143 | name = "toml_datetime" | ||
2144 | version = "0.6.1" | ||
2145 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2146 | checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" | ||
2147 | |||
2148 | [[package]] | ||
2149 | name = "toml_edit" | ||
2150 | version = "0.19.4" | ||
2151 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2152 | checksum = "9a1eb0622d28f4b9c90adc4ea4b2b46b47663fde9ac5fafcb14a1369d5508825" | ||
2153 | dependencies = [ | ||
2154 | "indexmap", | ||
2155 | "toml_datetime", | ||
2156 | "winnow", | ||
2157 | ] | ||
2158 | |||
2159 | [[package]] | ||
2160 | name = "typenum" | ||
2161 | version = "1.16.0" | ||
2162 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2163 | checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" | ||
2164 | |||
2165 | [[package]] | ||
2166 | name = "unicase" | ||
2167 | version = "2.6.0" | ||
2168 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2169 | checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" | ||
2170 | dependencies = [ | ||
2171 | "version_check", | ||
2172 | ] | ||
2173 | |||
2174 | [[package]] | ||
2175 | name = "unicode-bidi" | ||
2176 | version = "0.3.10" | ||
2177 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2178 | checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" | ||
2179 | |||
2180 | [[package]] | ||
911 | name = "unicode-ident" | 2181 | name = "unicode-ident" |
912 | version = "1.0.6" | 2182 | version = "1.0.6" |
913 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2183 | source = "registry+https://github.com/rust-lang/crates.io-index" |
914 | checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" | 2184 | checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" |
915 | 2185 | ||
916 | [[package]] | 2186 | [[package]] |
2187 | name = "unicode-normalization" | ||
2188 | version = "0.1.22" | ||
2189 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2190 | checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" | ||
2191 | dependencies = [ | ||
2192 | "tinyvec", | ||
2193 | ] | ||
2194 | |||
2195 | [[package]] | ||
917 | name = "unicode-width" | 2196 | name = "unicode-width" |
918 | version = "0.1.10" | 2197 | version = "0.1.10" |
919 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2198 | source = "registry+https://github.com/rust-lang/crates.io-index" |
920 | checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" | 2199 | checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" |
921 | 2200 | ||
922 | [[package]] | 2201 | [[package]] |
2202 | name = "url" | ||
2203 | version = "2.3.1" | ||
2204 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2205 | checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" | ||
2206 | dependencies = [ | ||
2207 | "form_urlencoded", | ||
2208 | "idna", | ||
2209 | "percent-encoding", | ||
2210 | ] | ||
2211 | |||
2212 | [[package]] | ||
2213 | name = "utf-8" | ||
2214 | version = "0.7.6" | ||
2215 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2216 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" | ||
2217 | |||
2218 | [[package]] | ||
923 | name = "vec_map" | 2219 | name = "vec_map" |
924 | version = "0.8.2" | 2220 | version = "0.8.2" |
925 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2221 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -938,6 +2234,78 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
938 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" | 2234 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" |
939 | 2235 | ||
940 | [[package]] | 2236 | [[package]] |
2237 | name = "wasi" | ||
2238 | version = "0.9.0+wasi-snapshot-preview1" | ||
2239 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2240 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" | ||
2241 | |||
2242 | [[package]] | ||
2243 | name = "wasi" | ||
2244 | version = "0.10.0+wasi-snapshot-preview1" | ||
2245 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2246 | checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" | ||
2247 | |||
2248 | [[package]] | ||
2249 | name = "wasi" | ||
2250 | version = "0.11.0+wasi-snapshot-preview1" | ||
2251 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2252 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" | ||
2253 | |||
2254 | [[package]] | ||
2255 | name = "wasm-bindgen" | ||
2256 | version = "0.2.84" | ||
2257 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2258 | checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" | ||
2259 | dependencies = [ | ||
2260 | "cfg-if", | ||
2261 | "wasm-bindgen-macro", | ||
2262 | ] | ||
2263 | |||
2264 | [[package]] | ||
2265 | name = "wasm-bindgen-backend" | ||
2266 | version = "0.2.84" | ||
2267 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2268 | checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" | ||
2269 | dependencies = [ | ||
2270 | "bumpalo", | ||
2271 | "log", | ||
2272 | "once_cell", | ||
2273 | "proc-macro2", | ||
2274 | "quote", | ||
2275 | "syn", | ||
2276 | "wasm-bindgen-shared", | ||
2277 | ] | ||
2278 | |||
2279 | [[package]] | ||
2280 | name = "wasm-bindgen-macro" | ||
2281 | version = "0.2.84" | ||
2282 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2283 | checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" | ||
2284 | dependencies = [ | ||
2285 | "quote", | ||
2286 | "wasm-bindgen-macro-support", | ||
2287 | ] | ||
2288 | |||
2289 | [[package]] | ||
2290 | name = "wasm-bindgen-macro-support" | ||
2291 | version = "0.2.84" | ||
2292 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2293 | checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" | ||
2294 | dependencies = [ | ||
2295 | "proc-macro2", | ||
2296 | "quote", | ||
2297 | "syn", | ||
2298 | "wasm-bindgen-backend", | ||
2299 | "wasm-bindgen-shared", | ||
2300 | ] | ||
2301 | |||
2302 | [[package]] | ||
2303 | name = "wasm-bindgen-shared" | ||
2304 | version = "0.2.84" | ||
2305 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2306 | checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" | ||
2307 | |||
2308 | [[package]] | ||
941 | name = "which" | 2309 | name = "which" |
942 | version = "3.1.1" | 2310 | version = "3.1.1" |
943 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2311 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -947,6 +2315,16 @@ dependencies = [ | |||
947 | ] | 2315 | ] |
948 | 2316 | ||
949 | [[package]] | 2317 | [[package]] |
2318 | name = "wide" | ||
2319 | version = "0.7.8" | ||
2320 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2321 | checksum = "b689b6c49d6549434bf944e6b0f39238cf63693cb7a147e9d887507fffa3b223" | ||
2322 | dependencies = [ | ||
2323 | "bytemuck", | ||
2324 | "safe_arch", | ||
2325 | ] | ||
2326 | |||
2327 | [[package]] | ||
950 | name = "winapi" | 2328 | name = "winapi" |
951 | version = "0.3.9" | 2329 | version = "0.3.9" |
952 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2330 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -978,6 +2356,92 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
978 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | 2356 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |
979 | 2357 | ||
980 | [[package]] | 2358 | [[package]] |
2359 | name = "windows-sys" | ||
2360 | version = "0.45.0" | ||
2361 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2362 | checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" | ||
2363 | dependencies = [ | ||
2364 | "windows-targets", | ||
2365 | ] | ||
2366 | |||
2367 | [[package]] | ||
2368 | name = "windows-targets" | ||
2369 | version = "0.42.1" | ||
2370 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2371 | checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" | ||
2372 | dependencies = [ | ||
2373 | "windows_aarch64_gnullvm", | ||
2374 | "windows_aarch64_msvc", | ||
2375 | "windows_i686_gnu", | ||
2376 | "windows_i686_msvc", | ||
2377 | "windows_x86_64_gnu", | ||
2378 | "windows_x86_64_gnullvm", | ||
2379 | "windows_x86_64_msvc", | ||
2380 | ] | ||
2381 | |||
2382 | [[package]] | ||
2383 | name = "windows_aarch64_gnullvm" | ||
2384 | version = "0.42.1" | ||
2385 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2386 | checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" | ||
2387 | |||
2388 | [[package]] | ||
2389 | name = "windows_aarch64_msvc" | ||
2390 | version = "0.42.1" | ||
2391 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2392 | checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" | ||
2393 | |||
2394 | [[package]] | ||
2395 | name = "windows_i686_gnu" | ||
2396 | version = "0.42.1" | ||
2397 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2398 | checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" | ||
2399 | |||
2400 | [[package]] | ||
2401 | name = "windows_i686_msvc" | ||
2402 | version = "0.42.1" | ||
2403 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2404 | checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" | ||
2405 | |||
2406 | [[package]] | ||
2407 | name = "windows_x86_64_gnu" | ||
2408 | version = "0.42.1" | ||
2409 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2410 | checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" | ||
2411 | |||
2412 | [[package]] | ||
2413 | name = "windows_x86_64_gnullvm" | ||
2414 | version = "0.42.1" | ||
2415 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2416 | checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" | ||
2417 | |||
2418 | [[package]] | ||
2419 | name = "windows_x86_64_msvc" | ||
2420 | version = "0.42.1" | ||
2421 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2422 | checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" | ||
2423 | |||
2424 | [[package]] | ||
2425 | name = "winnow" | ||
2426 | version = "0.3.3" | ||
2427 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2428 | checksum = "faf09497b8f8b5ac5d3bb4d05c0a99be20f26fd3d5f2db7b0716e946d5103658" | ||
2429 | dependencies = [ | ||
2430 | "memchr", | ||
2431 | ] | ||
2432 | |||
2433 | [[package]] | ||
2434 | name = "xml5ever" | ||
2435 | version = "0.17.0" | ||
2436 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2437 | checksum = "4034e1d05af98b51ad7214527730626f019682d797ba38b51689212118d8e650" | ||
2438 | dependencies = [ | ||
2439 | "log", | ||
2440 | "mac", | ||
2441 | "markup5ever", | ||
2442 | ] | ||
2443 | |||
2444 | [[package]] | ||
981 | name = "z3" | 2445 | name = "z3" |
982 | version = "0.11.2" | 2446 | version = "0.11.2" |
983 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2447 | source = "registry+https://github.com/rust-lang/crates.io-index" |