diff options
author | Teddy Wing | 2017-11-12 20:48:18 +0100 |
---|---|---|
committer | Teddy Wing | 2017-11-12 20:49:55 +0100 |
commit | 98fb0777107ed24e95cb3012a8b10ee3228829d5 (patch) | |
tree | a62257b1e583716708bbef43407349989b753890 /Cargo.toml | |
parent | b06e3fe2f1bcf7fa897648ab79e301ccab256ac8 (diff) | |
download | kipper-98fb0777107ed24e95cb3012a8b10ee3228829d5.tar.bz2 |
Add 'log' & 'stderrlog' crates
For logging capabilities. 'stderrlog' seemed like a reasonable option to
go with, even though it only logs to STDERR, given that I only feel the
need to log to STDERR.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -5,7 +5,9 @@ version = "0.0.1" [dependencies] getopts = "0.2.15" json = "0.11.10" +log = "0.3.8" mockito = "0.9.0" reqwest = "0.8.1" rouille = "1.0.3" +stderrlog = "0.2.3" url = "1.6.0" |