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