diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 80 |
1 files changed, 48 insertions, 32 deletions
@@ -233,6 +233,18 @@ dependencies = [ | |||
233 | ] | 233 | ] |
234 | 234 | ||
235 | [[package]] | 235 | [[package]] |
236 | name = "fallible-iterator" | ||
237 | version = "0.2.0" | ||
238 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
239 | checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" | ||
240 | |||
241 | [[package]] | ||
242 | name = "fallible-streaming-iterator" | ||
243 | version = "0.1.9" | ||
244 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
245 | checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" | ||
246 | |||
247 | [[package]] | ||
236 | name = "fastrand" | 248 | name = "fastrand" |
237 | version = "1.8.0" | 249 | version = "1.8.0" |
238 | source = "registry+https://github.com/rust-lang/crates.io-index" | 250 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -373,6 +385,15 @@ dependencies = [ | |||
373 | ] | 385 | ] |
374 | 386 | ||
375 | [[package]] | 387 | [[package]] |
388 | name = "hashlink" | ||
389 | version = "0.8.1" | ||
390 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
391 | checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa" | ||
392 | dependencies = [ | ||
393 | "hashbrown", | ||
394 | ] | ||
395 | |||
396 | [[package]] | ||
376 | name = "hermit-abi" | 397 | name = "hermit-abi" |
377 | version = "0.1.19" | 398 | version = "0.1.19" |
378 | source = "registry+https://github.com/rust-lang/crates.io-index" | 399 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -550,6 +571,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
550 | checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" | 571 | checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" |
551 | 572 | ||
552 | [[package]] | 573 | [[package]] |
574 | name = "libsqlite3-sys" | ||
575 | version = "0.25.2" | ||
576 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
577 | checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" | ||
578 | dependencies = [ | ||
579 | "cc", | ||
580 | "pkg-config", | ||
581 | "vcpkg", | ||
582 | ] | ||
583 | |||
584 | [[package]] | ||
553 | name = "link-cplusplus" | 585 | name = "link-cplusplus" |
554 | version = "1.0.7" | 586 | version = "1.0.7" |
555 | source = "registry+https://github.com/rust-lang/crates.io-index" | 587 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -615,15 +647,15 @@ dependencies = [ | |||
615 | 647 | ||
616 | [[package]] | 648 | [[package]] |
617 | name = "modlist" | 649 | name = "modlist" |
618 | version = "0.1.0" | 650 | version = "0.2.1" |
619 | dependencies = [ | 651 | dependencies = [ |
620 | "chrono", | 652 | "chrono", |
621 | "config", | 653 | "config", |
622 | "futures-util", | 654 | "futures-util", |
623 | "reqwest", | 655 | "reqwest", |
656 | "rusqlite", | ||
624 | "serde", | 657 | "serde", |
625 | "serde_json", | 658 | "serde_json", |
626 | "sqlite", | ||
627 | "tokio", | 659 | "tokio", |
628 | ] | 660 | ] |
629 | 661 | ||
@@ -928,6 +960,20 @@ dependencies = [ | |||
928 | ] | 960 | ] |
929 | 961 | ||
930 | [[package]] | 962 | [[package]] |
963 | name = "rusqlite" | ||
964 | version = "0.28.0" | ||
965 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
966 | checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a" | ||
967 | dependencies = [ | ||
968 | "bitflags", | ||
969 | "fallible-iterator", | ||
970 | "fallible-streaming-iterator", | ||
971 | "hashlink", | ||
972 | "libsqlite3-sys", | ||
973 | "smallvec", | ||
974 | ] | ||
975 | |||
976 | [[package]] | ||
931 | name = "rust-ini" | 977 | name = "rust-ini" |
932 | version = "0.18.0" | 978 | version = "0.18.0" |
933 | source = "registry+https://github.com/rust-lang/crates.io-index" | 979 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1077,36 +1123,6 @@ dependencies = [ | |||
1077 | ] | 1123 | ] |
1078 | 1124 | ||
1079 | [[package]] | 1125 | [[package]] |
1080 | name = "sqlite" | ||
1081 | version = "0.28.0" | ||
1082 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1083 | checksum = "125b4c6f5428ee2fc895b6c3633f7761084028481bca9a02dce6477d80eff083" | ||
1084 | dependencies = [ | ||
1085 | "libc", | ||
1086 | "sqlite3-sys", | ||
1087 | ] | ||
1088 | |||
1089 | [[package]] | ||
1090 | name = "sqlite3-src" | ||
1091 | version = "0.4.0" | ||
1092 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1093 | checksum = "d1815a7a02c996eb8e5c64f61fcb6fd9b12e593ce265c512c5853b2513635691" | ||
1094 | dependencies = [ | ||
1095 | "cc", | ||
1096 | "pkg-config", | ||
1097 | ] | ||
1098 | |||
1099 | [[package]] | ||
1100 | name = "sqlite3-sys" | ||
1101 | version = "0.14.0" | ||
1102 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1103 | checksum = "d47c99824fc55360ba00caf28de0b8a0458369b832e016a64c13af0ad9fbb9ee" | ||
1104 | dependencies = [ | ||
1105 | "libc", | ||
1106 | "sqlite3-src", | ||
1107 | ] | ||
1108 | |||
1109 | [[package]] | ||
1110 | name = "syn" | 1126 | name = "syn" |
1111 | version = "1.0.103" | 1127 | version = "1.0.103" |
1112 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1128 | source = "registry+https://github.com/rust-lang/crates.io-index" |