diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 54 |
1 files changed, 53 insertions, 1 deletions
@@ -180,6 +180,26 @@ dependencies = [ | |||
180 | ] | 180 | ] |
181 | 181 | ||
182 | [[package]] | 182 | [[package]] |
183 | name = "dirs" | ||
184 | version = "4.0.0" | ||
185 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
186 | checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" | ||
187 | dependencies = [ | ||
188 | "dirs-sys", | ||
189 | ] | ||
190 | |||
191 | [[package]] | ||
192 | name = "dirs-sys" | ||
193 | version = "0.3.7" | ||
194 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
195 | checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" | ||
196 | dependencies = [ | ||
197 | "libc", | ||
198 | "redox_users", | ||
199 | "winapi", | ||
200 | ] | ||
201 | |||
202 | [[package]] | ||
183 | name = "encoding_rs" | 203 | name = "encoding_rs" |
184 | version = "0.8.31" | 204 | version = "0.8.31" |
185 | source = "registry+https://github.com/rust-lang/crates.io-index" | 205 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -595,9 +615,10 @@ dependencies = [ | |||
595 | 615 | ||
596 | [[package]] | 616 | [[package]] |
597 | name = "modlist" | 617 | name = "modlist" |
598 | version = "0.6.2" | 618 | version = "0.8.0" |
599 | dependencies = [ | 619 | dependencies = [ |
600 | "chrono", | 620 | "chrono", |
621 | "dirs", | ||
601 | "error-chain", | 622 | "error-chain", |
602 | "futures-util", | 623 | "futures-util", |
603 | "reqwest", | 624 | "reqwest", |
@@ -790,6 +811,17 @@ dependencies = [ | |||
790 | ] | 811 | ] |
791 | 812 | ||
792 | [[package]] | 813 | [[package]] |
814 | name = "redox_users" | ||
815 | version = "0.4.3" | ||
816 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
817 | checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" | ||
818 | dependencies = [ | ||
819 | "getrandom", | ||
820 | "redox_syscall", | ||
821 | "thiserror", | ||
822 | ] | ||
823 | |||
824 | [[package]] | ||
793 | name = "remove_dir_all" | 825 | name = "remove_dir_all" |
794 | version = "0.5.3" | 826 | version = "0.5.3" |
795 | source = "registry+https://github.com/rust-lang/crates.io-index" | 827 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1019,6 +1051,26 @@ dependencies = [ | |||
1019 | ] | 1051 | ] |
1020 | 1052 | ||
1021 | [[package]] | 1053 | [[package]] |
1054 | name = "thiserror" | ||
1055 | version = "1.0.38" | ||
1056 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1057 | checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" | ||
1058 | dependencies = [ | ||
1059 | "thiserror-impl", | ||
1060 | ] | ||
1061 | |||
1062 | [[package]] | ||
1063 | name = "thiserror-impl" | ||
1064 | version = "1.0.38" | ||
1065 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1066 | checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" | ||
1067 | dependencies = [ | ||
1068 | "proc-macro2", | ||
1069 | "quote", | ||
1070 | "syn", | ||
1071 | ] | ||
1072 | |||
1073 | [[package]] | ||
1022 | name = "time" | 1074 | name = "time" |
1023 | version = "0.1.45" | 1075 | version = "0.1.45" |
1024 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1076 | source = "registry+https://github.com/rust-lang/crates.io-index" |