Print Markdown to a paper in your terminal

update more dependencies

+354 -70
+352 -68
Cargo.lock
··· 9 9 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 10 11 11 [[package]] 12 - name = "adler32" 13 - version = "1.2.0" 14 - source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 16 - 17 - [[package]] 18 12 name = "aho-corasick" 19 13 version = "0.7.18" 20 14 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 67 61 source = "registry+https://github.com/rust-lang/crates.io-index" 68 62 checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 69 63 dependencies = [ 70 - "windows-sys", 64 + "windows-sys 0.48.0", 71 65 ] 72 66 73 67 [[package]] ··· 77 71 checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 78 72 dependencies = [ 79 73 "anstyle", 80 - "windows-sys", 74 + "windows-sys 0.48.0", 81 75 ] 82 76 83 77 [[package]] ··· 87 81 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 88 82 89 83 [[package]] 84 + name = "bit_field" 85 + version = "0.10.2" 86 + source = "registry+https://github.com/rust-lang/crates.io-index" 87 + checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" 88 + 89 + [[package]] 90 90 name = "bitflags" 91 91 version = "1.3.2" 92 92 source = "registry+https://github.com/rust-lang/crates.io-index" 93 93 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 94 94 95 95 [[package]] 96 + name = "bumpalo" 97 + version = "3.14.0" 98 + source = "registry+https://github.com/rust-lang/crates.io-index" 99 + checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 100 + 101 + [[package]] 96 102 name = "bytemuck" 97 - version = "1.9.1" 103 + version = "1.14.0" 98 104 source = "registry+https://github.com/rust-lang/crates.io-index" 99 - checksum = "cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc" 105 + checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 100 106 101 107 [[package]] 102 108 name = "byteorder" ··· 182 188 183 189 [[package]] 184 190 name = "console" 185 - version = "0.14.1" 191 + version = "0.15.7" 186 192 source = "registry+https://github.com/rust-lang/crates.io-index" 187 - checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45" 193 + checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 188 194 dependencies = [ 189 195 "encode_unicode", 190 196 "lazy_static", 191 197 "libc", 192 - "regex", 193 - "terminal_size", 194 198 "unicode-width", 195 - "winapi", 199 + "windows-sys 0.45.0", 196 200 ] 197 201 198 202 [[package]] ··· 250 254 ] 251 255 252 256 [[package]] 253 - name = "deflate" 254 - version = "0.8.6" 257 + name = "crunchy" 258 + version = "0.2.2" 255 259 source = "registry+https://github.com/rust-lang/crates.io-index" 256 - checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174" 257 - dependencies = [ 258 - "adler32", 259 - "byteorder", 260 - ] 260 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 261 261 262 262 [[package]] 263 263 name = "directories-next" ··· 302 302 ] 303 303 304 304 [[package]] 305 + name = "exr" 306 + version = "1.5.3" 307 + source = "registry+https://github.com/rust-lang/crates.io-index" 308 + checksum = "e8af5ef47e2ed89d23d0ecbc1b681b30390069de70260937877514377fc24feb" 309 + dependencies = [ 310 + "bit_field", 311 + "flume", 312 + "half", 313 + "lebe", 314 + "miniz_oxide 0.6.2", 315 + "smallvec", 316 + "threadpool", 317 + "zune-inflate", 318 + ] 319 + 320 + [[package]] 321 + name = "fdeflate" 322 + version = "0.3.1" 323 + source = "registry+https://github.com/rust-lang/crates.io-index" 324 + checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868" 325 + dependencies = [ 326 + "simd-adler32", 327 + ] 328 + 329 + [[package]] 330 + name = "flate2" 331 + version = "1.0.28" 332 + source = "registry+https://github.com/rust-lang/crates.io-index" 333 + checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 334 + dependencies = [ 335 + "crc32fast", 336 + "miniz_oxide 0.7.1", 337 + ] 338 + 339 + [[package]] 340 + name = "flume" 341 + version = "0.10.14" 342 + source = "registry+https://github.com/rust-lang/crates.io-index" 343 + checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 344 + dependencies = [ 345 + "futures-core", 346 + "futures-sink", 347 + "nanorand", 348 + "pin-project", 349 + "spin", 350 + ] 351 + 352 + [[package]] 353 + name = "futures-core" 354 + version = "0.3.29" 355 + source = "registry+https://github.com/rust-lang/crates.io-index" 356 + checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 357 + 358 + [[package]] 359 + name = "futures-sink" 360 + version = "0.3.29" 361 + source = "registry+https://github.com/rust-lang/crates.io-index" 362 + checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 363 + 364 + [[package]] 305 365 name = "getopts" 306 366 version = "0.2.21" 307 367 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 317 377 checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" 318 378 dependencies = [ 319 379 "cfg-if", 380 + "js-sys", 320 381 "libc", 321 382 "wasi", 383 + "wasm-bindgen", 322 384 ] 323 385 324 386 [[package]] 325 387 name = "gif" 326 - version = "0.11.3" 388 + version = "0.12.0" 327 389 source = "registry+https://github.com/rust-lang/crates.io-index" 328 - checksum = "c3a7187e78088aead22ceedeee99779455b23fc231fe13ec443f99bb71694e5b" 390 + checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045" 329 391 dependencies = [ 330 392 "color_quant", 331 393 "weezl", 332 394 ] 333 395 334 396 [[package]] 397 + name = "half" 398 + version = "2.3.1" 399 + source = "registry+https://github.com/rust-lang/crates.io-index" 400 + checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872" 401 + dependencies = [ 402 + "cfg-if", 403 + "crunchy", 404 + ] 405 + 406 + [[package]] 335 407 name = "heck" 336 408 version = "0.4.1" 337 409 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 354 426 355 427 [[package]] 356 428 name = "image" 357 - version = "0.23.14" 429 + version = "0.24.7" 358 430 source = "registry+https://github.com/rust-lang/crates.io-index" 359 - checksum = "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1" 431 + checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" 360 432 dependencies = [ 361 433 "bytemuck", 362 434 "byteorder", 363 435 "color_quant", 436 + "exr", 364 437 "gif", 365 438 "jpeg-decoder", 366 - "num-iter", 367 439 "num-rational", 368 440 "num-traits", 369 441 "png", 370 - "scoped_threadpool", 442 + "qoi", 371 443 "tiff", 372 444 ] 373 445 374 446 [[package]] 375 447 name = "jpeg-decoder" 376 - version = "0.1.22" 448 + version = "0.3.0" 377 449 source = "registry+https://github.com/rust-lang/crates.io-index" 378 - checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2" 450 + checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" 379 451 dependencies = [ 380 452 "rayon", 381 453 ] 382 454 383 455 [[package]] 456 + name = "js-sys" 457 + version = "0.3.65" 458 + source = "registry+https://github.com/rust-lang/crates.io-index" 459 + checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8" 460 + dependencies = [ 461 + "wasm-bindgen", 462 + ] 463 + 464 + [[package]] 384 465 name = "lazy_static" 385 466 version = "1.4.0" 386 467 source = "registry+https://github.com/rust-lang/crates.io-index" 387 468 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 388 469 389 470 [[package]] 471 + name = "lebe" 472 + version = "0.5.2" 473 + source = "registry+https://github.com/rust-lang/crates.io-index" 474 + checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" 475 + 476 + [[package]] 390 477 name = "libc" 391 478 version = "0.2.126" 392 479 source = "registry+https://github.com/rust-lang/crates.io-index" 393 480 checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" 394 481 395 482 [[package]] 483 + name = "lock_api" 484 + version = "0.4.11" 485 + source = "registry+https://github.com/rust-lang/crates.io-index" 486 + checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 487 + dependencies = [ 488 + "autocfg", 489 + "scopeguard", 490 + ] 491 + 492 + [[package]] 493 + name = "log" 494 + version = "0.4.20" 495 + source = "registry+https://github.com/rust-lang/crates.io-index" 496 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 497 + 498 + [[package]] 396 499 name = "memchr" 397 500 version = "2.5.0" 398 501 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 409 512 410 513 [[package]] 411 514 name = "miniz_oxide" 412 - version = "0.3.7" 515 + version = "0.6.2" 413 516 source = "registry+https://github.com/rust-lang/crates.io-index" 414 - checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435" 517 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 415 518 dependencies = [ 416 - "adler32", 519 + "adler", 417 520 ] 418 521 419 522 [[package]] 420 523 name = "miniz_oxide" 421 - version = "0.4.4" 524 + version = "0.7.1" 422 525 source = "registry+https://github.com/rust-lang/crates.io-index" 423 - checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" 526 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 424 527 dependencies = [ 425 528 "adler", 426 - "autocfg", 529 + "simd-adler32", 427 530 ] 428 531 429 532 [[package]] 430 - name = "num-integer" 431 - version = "0.1.45" 533 + name = "nanorand" 534 + version = "0.7.0" 432 535 source = "registry+https://github.com/rust-lang/crates.io-index" 433 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 536 + checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 434 537 dependencies = [ 435 - "autocfg", 436 - "num-traits", 538 + "getrandom", 437 539 ] 438 540 439 541 [[package]] 440 - name = "num-iter" 441 - version = "0.1.43" 542 + name = "num-integer" 543 + version = "0.1.45" 442 544 source = "registry+https://github.com/rust-lang/crates.io-index" 443 - checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 545 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 444 546 dependencies = [ 445 547 "autocfg", 446 - "num-integer", 447 548 "num-traits", 448 549 ] 449 550 450 551 [[package]] 451 552 name = "num-rational" 452 - version = "0.3.2" 553 + version = "0.4.1" 453 554 source = "registry+https://github.com/rust-lang/crates.io-index" 454 - checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07" 555 + checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 455 556 dependencies = [ 456 557 "autocfg", 457 558 "num-integer", ··· 500 601 ] 501 602 502 603 [[package]] 604 + name = "pin-project" 605 + version = "1.1.3" 606 + source = "registry+https://github.com/rust-lang/crates.io-index" 607 + checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 608 + dependencies = [ 609 + "pin-project-internal", 610 + ] 611 + 612 + [[package]] 613 + name = "pin-project-internal" 614 + version = "1.1.3" 615 + source = "registry+https://github.com/rust-lang/crates.io-index" 616 + checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 617 + dependencies = [ 618 + "proc-macro2", 619 + "quote", 620 + "syn 2.0.39", 621 + ] 622 + 623 + [[package]] 503 624 name = "png" 504 - version = "0.16.8" 625 + version = "0.17.10" 505 626 source = "registry+https://github.com/rust-lang/crates.io-index" 506 - checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6" 627 + checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" 507 628 dependencies = [ 508 629 "bitflags", 509 630 "crc32fast", 510 - "deflate", 511 - "miniz_oxide 0.3.7", 631 + "fdeflate", 632 + "flate2", 633 + "miniz_oxide 0.7.1", 512 634 ] 513 635 514 636 [[package]] ··· 530 652 "getopts", 531 653 "memchr", 532 654 "unicase", 655 + ] 656 + 657 + [[package]] 658 + name = "qoi" 659 + version = "0.4.1" 660 + source = "registry+https://github.com/rust-lang/crates.io-index" 661 + checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" 662 + dependencies = [ 663 + "bytemuck", 533 664 ] 534 665 535 666 [[package]] ··· 603 734 checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64" 604 735 605 736 [[package]] 606 - name = "scoped_threadpool" 607 - version = "0.1.9" 737 + name = "scopeguard" 738 + version = "1.1.0" 739 + source = "registry+https://github.com/rust-lang/crates.io-index" 740 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 741 + 742 + [[package]] 743 + name = "simd-adler32" 744 + version = "0.3.7" 745 + source = "registry+https://github.com/rust-lang/crates.io-index" 746 + checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 747 + 748 + [[package]] 749 + name = "smallvec" 750 + version = "1.11.2" 608 751 source = "registry+https://github.com/rust-lang/crates.io-index" 609 - checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8" 752 + checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 610 753 611 754 [[package]] 612 - name = "scopeguard" 613 - version = "1.1.0" 755 + name = "spin" 756 + version = "0.9.8" 614 757 source = "registry+https://github.com/rust-lang/crates.io-index" 615 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 758 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 759 + dependencies = [ 760 + "lock_api", 761 + ] 616 762 617 763 [[package]] 618 764 name = "strsim" ··· 687 833 ] 688 834 689 835 [[package]] 836 + name = "threadpool" 837 + version = "1.8.1" 838 + source = "registry+https://github.com/rust-lang/crates.io-index" 839 + checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 840 + dependencies = [ 841 + "num_cpus", 842 + ] 843 + 844 + [[package]] 690 845 name = "tiff" 691 - version = "0.6.1" 846 + version = "0.9.0" 692 847 source = "registry+https://github.com/rust-lang/crates.io-index" 693 - checksum = "9a53f4706d65497df0c4349241deddf35f84cee19c87ed86ea8ca590f4464437" 848 + checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211" 694 849 dependencies = [ 850 + "flate2", 695 851 "jpeg-decoder", 696 - "miniz_oxide 0.4.4", 697 852 "weezl", 698 853 ] 699 854 ··· 753 908 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 754 909 755 910 [[package]] 911 + name = "wasm-bindgen" 912 + version = "0.2.88" 913 + source = "registry+https://github.com/rust-lang/crates.io-index" 914 + checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce" 915 + dependencies = [ 916 + "cfg-if", 917 + "wasm-bindgen-macro", 918 + ] 919 + 920 + [[package]] 921 + name = "wasm-bindgen-backend" 922 + version = "0.2.88" 923 + source = "registry+https://github.com/rust-lang/crates.io-index" 924 + checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217" 925 + dependencies = [ 926 + "bumpalo", 927 + "log", 928 + "once_cell", 929 + "proc-macro2", 930 + "quote", 931 + "syn 2.0.39", 932 + "wasm-bindgen-shared", 933 + ] 934 + 935 + [[package]] 936 + name = "wasm-bindgen-macro" 937 + version = "0.2.88" 938 + source = "registry+https://github.com/rust-lang/crates.io-index" 939 + checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2" 940 + dependencies = [ 941 + "quote", 942 + "wasm-bindgen-macro-support", 943 + ] 944 + 945 + [[package]] 946 + name = "wasm-bindgen-macro-support" 947 + version = "0.2.88" 948 + source = "registry+https://github.com/rust-lang/crates.io-index" 949 + checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907" 950 + dependencies = [ 951 + "proc-macro2", 952 + "quote", 953 + "syn 2.0.39", 954 + "wasm-bindgen-backend", 955 + "wasm-bindgen-shared", 956 + ] 957 + 958 + [[package]] 959 + name = "wasm-bindgen-shared" 960 + version = "0.2.88" 961 + source = "registry+https://github.com/rust-lang/crates.io-index" 962 + checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" 963 + 964 + [[package]] 756 965 name = "weezl" 757 966 version = "0.1.6" 758 967 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 788 997 789 998 [[package]] 790 999 name = "windows-sys" 1000 + version = "0.45.0" 1001 + source = "registry+https://github.com/rust-lang/crates.io-index" 1002 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 1003 + dependencies = [ 1004 + "windows-targets 0.42.2", 1005 + ] 1006 + 1007 + [[package]] 1008 + name = "windows-sys" 791 1009 version = "0.48.0" 792 1010 source = "registry+https://github.com/rust-lang/crates.io-index" 793 1011 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 794 1012 dependencies = [ 795 - "windows-targets", 1013 + "windows-targets 0.48.5", 1014 + ] 1015 + 1016 + [[package]] 1017 + name = "windows-targets" 1018 + version = "0.42.2" 1019 + source = "registry+https://github.com/rust-lang/crates.io-index" 1020 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 1021 + dependencies = [ 1022 + "windows_aarch64_gnullvm 0.42.2", 1023 + "windows_aarch64_msvc 0.42.2", 1024 + "windows_i686_gnu 0.42.2", 1025 + "windows_i686_msvc 0.42.2", 1026 + "windows_x86_64_gnu 0.42.2", 1027 + "windows_x86_64_gnullvm 0.42.2", 1028 + "windows_x86_64_msvc 0.42.2", 796 1029 ] 797 1030 798 1031 [[package]] ··· 801 1034 source = "registry+https://github.com/rust-lang/crates.io-index" 802 1035 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 803 1036 dependencies = [ 804 - "windows_aarch64_gnullvm", 805 - "windows_aarch64_msvc", 806 - "windows_i686_gnu", 807 - "windows_i686_msvc", 808 - "windows_x86_64_gnu", 809 - "windows_x86_64_gnullvm", 810 - "windows_x86_64_msvc", 1037 + "windows_aarch64_gnullvm 0.48.5", 1038 + "windows_aarch64_msvc 0.48.5", 1039 + "windows_i686_gnu 0.48.5", 1040 + "windows_i686_msvc 0.48.5", 1041 + "windows_x86_64_gnu 0.48.5", 1042 + "windows_x86_64_gnullvm 0.48.5", 1043 + "windows_x86_64_msvc 0.48.5", 811 1044 ] 1045 + 1046 + [[package]] 1047 + name = "windows_aarch64_gnullvm" 1048 + version = "0.42.2" 1049 + source = "registry+https://github.com/rust-lang/crates.io-index" 1050 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 812 1051 813 1052 [[package]] 814 1053 name = "windows_aarch64_gnullvm" 815 1054 version = "0.48.5" 816 1055 source = "registry+https://github.com/rust-lang/crates.io-index" 817 1056 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1057 + 1058 + [[package]] 1059 + name = "windows_aarch64_msvc" 1060 + version = "0.42.2" 1061 + source = "registry+https://github.com/rust-lang/crates.io-index" 1062 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 818 1063 819 1064 [[package]] 820 1065 name = "windows_aarch64_msvc" ··· 824 1069 825 1070 [[package]] 826 1071 name = "windows_i686_gnu" 1072 + version = "0.42.2" 1073 + source = "registry+https://github.com/rust-lang/crates.io-index" 1074 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1075 + 1076 + [[package]] 1077 + name = "windows_i686_gnu" 827 1078 version = "0.48.5" 828 1079 source = "registry+https://github.com/rust-lang/crates.io-index" 829 1080 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 830 1081 831 1082 [[package]] 832 1083 name = "windows_i686_msvc" 1084 + version = "0.42.2" 1085 + source = "registry+https://github.com/rust-lang/crates.io-index" 1086 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1087 + 1088 + [[package]] 1089 + name = "windows_i686_msvc" 833 1090 version = "0.48.5" 834 1091 source = "registry+https://github.com/rust-lang/crates.io-index" 835 1092 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 836 1093 837 1094 [[package]] 838 1095 name = "windows_x86_64_gnu" 1096 + version = "0.42.2" 1097 + source = "registry+https://github.com/rust-lang/crates.io-index" 1098 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1099 + 1100 + [[package]] 1101 + name = "windows_x86_64_gnu" 839 1102 version = "0.48.5" 840 1103 source = "registry+https://github.com/rust-lang/crates.io-index" 841 1104 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 842 1105 843 1106 [[package]] 844 1107 name = "windows_x86_64_gnullvm" 1108 + version = "0.42.2" 1109 + source = "registry+https://github.com/rust-lang/crates.io-index" 1110 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1111 + 1112 + [[package]] 1113 + name = "windows_x86_64_gnullvm" 845 1114 version = "0.48.5" 846 1115 source = "registry+https://github.com/rust-lang/crates.io-index" 847 1116 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 848 1117 849 1118 [[package]] 850 1119 name = "windows_x86_64_msvc" 1120 + version = "0.42.2" 1121 + source = "registry+https://github.com/rust-lang/crates.io-index" 1122 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1123 + 1124 + [[package]] 1125 + name = "windows_x86_64_msvc" 851 1126 version = "0.48.5" 852 1127 source = "registry+https://github.com/rust-lang/crates.io-index" 853 1128 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1129 + 1130 + [[package]] 1131 + name = "zune-inflate" 1132 + version = "0.2.54" 1133 + source = "registry+https://github.com/rust-lang/crates.io-index" 1134 + checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" 1135 + dependencies = [ 1136 + "simd-adler32", 1137 + ]
+2 -2
Cargo.toml
··· 21 21 terminal_size = "0.1" 22 22 pulldown-cmark = "0.8" 23 23 ansi_term = "0.12" 24 - image = "0.23" 25 - console = { version = "0.14", features = ["unicode-width"] } 24 + image = "0.24" 25 + console = { version = "0.15", features = ["unicode-width"] } 26 26 directories-next = "2.0" 27 27 syncat-stylesheet = { version = "3.5.0", features = ["ansi_term"] } 28 28 unicode-width = "0.1"