summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock54
1 files changed, 53 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f7a63d6..788f68c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -180,6 +180,26 @@ dependencies = [
180] 180]
181 181
182[[package]] 182[[package]]
183name = "dirs"
184version = "4.0.0"
185source = "registry+https://github.com/rust-lang/crates.io-index"
186checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
187dependencies = [
188 "dirs-sys",
189]
190
191[[package]]
192name = "dirs-sys"
193version = "0.3.7"
194source = "registry+https://github.com/rust-lang/crates.io-index"
195checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
196dependencies = [
197 "libc",
198 "redox_users",
199 "winapi",
200]
201
202[[package]]
183name = "encoding_rs" 203name = "encoding_rs"
184version = "0.8.31" 204version = "0.8.31"
185source = "registry+https://github.com/rust-lang/crates.io-index" 205source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -595,9 +615,10 @@ dependencies = [
595 615
596[[package]] 616[[package]]
597name = "modlist" 617name = "modlist"
598version = "0.6.2" 618version = "0.8.0"
599dependencies = [ 619dependencies = [
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]]
814name = "redox_users"
815version = "0.4.3"
816source = "registry+https://github.com/rust-lang/crates.io-index"
817checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
818dependencies = [
819 "getrandom",
820 "redox_syscall",
821 "thiserror",
822]
823
824[[package]]
793name = "remove_dir_all" 825name = "remove_dir_all"
794version = "0.5.3" 826version = "0.5.3"
795source = "registry+https://github.com/rust-lang/crates.io-index" 827source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1019,6 +1051,26 @@ dependencies = [
1019] 1051]
1020 1052
1021[[package]] 1053[[package]]
1054name = "thiserror"
1055version = "1.0.38"
1056source = "registry+https://github.com/rust-lang/crates.io-index"
1057checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
1058dependencies = [
1059 "thiserror-impl",
1060]
1061
1062[[package]]
1063name = "thiserror-impl"
1064version = "1.0.38"
1065source = "registry+https://github.com/rust-lang/crates.io-index"
1066checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
1067dependencies = [
1068 "proc-macro2",
1069 "quote",
1070 "syn",
1071]
1072
1073[[package]]
1022name = "time" 1074name = "time"
1023version = "0.1.45" 1075version = "0.1.45"
1024source = "registry+https://github.com/rust-lang/crates.io-index" 1076source = "registry+https://github.com/rust-lang/crates.io-index"