diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 53 |
1 files changed, 53 insertions, 0 deletions
@@ -232,6 +232,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
232 | checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" | 232 | checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" |
233 | 233 | ||
234 | [[package]] | 234 | [[package]] |
235 | name = "console" | ||
236 | version = "0.15.6" | ||
237 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
238 | checksum = "d0525278dce688103060006713371cedbad27186c7d913f33d866b498da0f595" | ||
239 | dependencies = [ | ||
240 | "encode_unicode", | ||
241 | "lazy_static", | ||
242 | "libc", | ||
243 | "unicode-width", | ||
244 | "windows-sys 0.45.0", | ||
245 | ] | ||
246 | |||
247 | [[package]] | ||
235 | name = "core-foundation" | 248 | name = "core-foundation" |
236 | version = "0.9.3" | 249 | version = "0.9.3" |
237 | source = "registry+https://github.com/rust-lang/crates.io-index" | 250 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -312,6 +325,12 @@ dependencies = [ | |||
312 | ] | 325 | ] |
313 | 326 | ||
314 | [[package]] | 327 | [[package]] |
328 | name = "encode_unicode" | ||
329 | version = "0.3.6" | ||
330 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
331 | checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" | ||
332 | |||
333 | [[package]] | ||
315 | name = "encoding_rs" | 334 | name = "encoding_rs" |
316 | version = "0.8.32" | 335 | version = "0.8.32" |
317 | source = "registry+https://github.com/rust-lang/crates.io-index" | 336 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -654,6 +673,18 @@ dependencies = [ | |||
654 | ] | 673 | ] |
655 | 674 | ||
656 | [[package]] | 675 | [[package]] |
676 | name = "indicatif" | ||
677 | version = "0.17.3" | ||
678 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
679 | checksum = "cef509aa9bc73864d6756f0d34d35504af3cf0844373afe9b8669a5b8005a729" | ||
680 | dependencies = [ | ||
681 | "console", | ||
682 | "number_prefix", | ||
683 | "portable-atomic 0.3.20", | ||
684 | "unicode-width", | ||
685 | ] | ||
686 | |||
687 | [[package]] | ||
657 | name = "instant" | 688 | name = "instant" |
658 | version = "0.1.12" | 689 | version = "0.1.12" |
659 | source = "registry+https://github.com/rust-lang/crates.io-index" | 690 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -806,6 +837,7 @@ dependencies = [ | |||
806 | "dirs", | 837 | "dirs", |
807 | "error-chain", | 838 | "error-chain", |
808 | "futures-util", | 839 | "futures-util", |
840 | "indicatif", | ||
809 | "reqwest", | 841 | "reqwest", |
810 | "rusqlite", | 842 | "rusqlite", |
811 | "serde", | 843 | "serde", |
@@ -862,6 +894,12 @@ dependencies = [ | |||
862 | ] | 894 | ] |
863 | 895 | ||
864 | [[package]] | 896 | [[package]] |
897 | name = "number_prefix" | ||
898 | version = "0.4.0" | ||
899 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
900 | checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" | ||
901 | |||
902 | [[package]] | ||
865 | name = "object" | 903 | name = "object" |
866 | version = "0.30.3" | 904 | version = "0.30.3" |
867 | source = "registry+https://github.com/rust-lang/crates.io-index" | 905 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -968,6 +1006,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
968 | checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" | 1006 | checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" |
969 | 1007 | ||
970 | [[package]] | 1008 | [[package]] |
1009 | name = "portable-atomic" | ||
1010 | version = "0.3.20" | ||
1011 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1012 | checksum = "e30165d31df606f5726b090ec7592c308a0eaf61721ff64c9a3018e344a8753e" | ||
1013 | dependencies = [ | ||
1014 | "portable-atomic 1.3.2", | ||
1015 | ] | ||
1016 | |||
1017 | [[package]] | ||
1018 | name = "portable-atomic" | ||
1019 | version = "1.3.2" | ||
1020 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1021 | checksum = "dc59d1bcc64fc5d021d67521f818db868368028108d37f0e98d74e33f68297b5" | ||
1022 | |||
1023 | [[package]] | ||
971 | name = "proc-macro2" | 1024 | name = "proc-macro2" |
972 | version = "1.0.56" | 1025 | version = "1.0.56" |
973 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1026 | source = "registry+https://github.com/rust-lang/crates.io-index" |