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