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