diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 69 |
1 files changed, 69 insertions, 0 deletions
@@ -72,6 +72,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
72 | checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a" | 72 | checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a" |
73 | 73 | ||
74 | [[package]] | 74 | [[package]] |
75 | name = "atty" | ||
76 | version = "0.2.14" | ||
77 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
78 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | ||
79 | dependencies = [ | ||
80 | "hermit-abi", | ||
81 | "libc", | ||
82 | "winapi 0.3.9", | ||
83 | ] | ||
84 | |||
85 | [[package]] | ||
75 | name = "autocfg" | 86 | name = "autocfg" |
76 | version = "0.1.7" | 87 | version = "0.1.7" |
77 | source = "registry+https://github.com/rust-lang/crates.io-index" | 88 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -171,6 +182,19 @@ dependencies = [ | |||
171 | ] | 182 | ] |
172 | 183 | ||
173 | [[package]] | 184 | [[package]] |
185 | name = "env_logger" | ||
186 | version = "0.7.1" | ||
187 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
188 | checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" | ||
189 | dependencies = [ | ||
190 | "atty", | ||
191 | "humantime", | ||
192 | "log", | ||
193 | "regex", | ||
194 | "termcolor", | ||
195 | ] | ||
196 | |||
197 | [[package]] | ||
174 | name = "event-listener" | 198 | name = "event-listener" |
175 | version = "2.4.0" | 199 | version = "2.4.0" |
176 | source = "registry+https://github.com/rust-lang/crates.io-index" | 200 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -366,8 +390,10 @@ version = "0.1.0" | |||
366 | dependencies = [ | 390 | dependencies = [ |
367 | "anyhow", | 391 | "anyhow", |
368 | "hyper", | 392 | "hyper", |
393 | "log", | ||
369 | "multer", | 394 | "multer", |
370 | "nanoid", | 395 | "nanoid", |
396 | "pretty_env_logger", | ||
371 | "rusqlite", | 397 | "rusqlite", |
372 | "smol", | 398 | "smol", |
373 | "url", | 399 | "url", |
@@ -410,6 +436,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
410 | checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" | 436 | checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9" |
411 | 437 | ||
412 | [[package]] | 438 | [[package]] |
439 | name = "humantime" | ||
440 | version = "1.3.0" | ||
441 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
442 | checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" | ||
443 | dependencies = [ | ||
444 | "quick-error", | ||
445 | ] | ||
446 | |||
447 | [[package]] | ||
413 | name = "hyper" | 448 | name = "hyper" |
414 | version = "0.13.7" | 449 | version = "0.13.7" |
415 | source = "registry+https://github.com/rust-lang/crates.io-index" | 450 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -709,6 +744,16 @@ dependencies = [ | |||
709 | ] | 744 | ] |
710 | 745 | ||
711 | [[package]] | 746 | [[package]] |
747 | name = "pretty_env_logger" | ||
748 | version = "0.4.0" | ||
749 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
750 | checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d" | ||
751 | dependencies = [ | ||
752 | "env_logger", | ||
753 | "log", | ||
754 | ] | ||
755 | |||
756 | [[package]] | ||
712 | name = "proc-macro-hack" | 757 | name = "proc-macro-hack" |
713 | version = "0.5.18" | 758 | version = "0.5.18" |
714 | source = "registry+https://github.com/rust-lang/crates.io-index" | 759 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -730,6 +775,12 @@ dependencies = [ | |||
730 | ] | 775 | ] |
731 | 776 | ||
732 | [[package]] | 777 | [[package]] |
778 | name = "quick-error" | ||
779 | version = "1.2.3" | ||
780 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
781 | checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" | ||
782 | |||
783 | [[package]] | ||
733 | name = "quote" | 784 | name = "quote" |
734 | version = "1.0.7" | 785 | version = "1.0.7" |
735 | source = "registry+https://github.com/rust-lang/crates.io-index" | 786 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -951,6 +1002,15 @@ dependencies = [ | |||
951 | ] | 1002 | ] |
952 | 1003 | ||
953 | [[package]] | 1004 | [[package]] |
1005 | name = "termcolor" | ||
1006 | version = "1.1.0" | ||
1007 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1008 | checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f" | ||
1009 | dependencies = [ | ||
1010 | "winapi-util", | ||
1011 | ] | ||
1012 | |||
1013 | [[package]] | ||
954 | name = "thread_local" | 1014 | name = "thread_local" |
955 | version = "1.0.1" | 1015 | version = "1.0.1" |
956 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1016 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1156,6 +1216,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1156 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | 1216 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" |
1157 | 1217 | ||
1158 | [[package]] | 1218 | [[package]] |
1219 | name = "winapi-util" | ||
1220 | version = "0.1.5" | ||
1221 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1222 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" | ||
1223 | dependencies = [ | ||
1224 | "winapi 0.3.9", | ||
1225 | ] | ||
1226 | |||
1227 | [[package]] | ||
1159 | name = "winapi-x86_64-pc-windows-gnu" | 1228 | name = "winapi-x86_64-pc-windows-gnu" |
1160 | version = "0.4.0" | 1229 | version = "0.4.0" |
1161 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1230 | source = "registry+https://github.com/rust-lang/crates.io-index" |