diff options
author | Teddy Wing | 2017-11-07 20:26:44 +0100 |
---|---|---|
committer | Teddy Wing | 2017-11-07 20:26:44 +0100 |
commit | e5d90c10ec3097838216f592775b4dae5fe52d32 (patch) | |
tree | 139837c355fccbe35ba1760b2688ffd222f4080a /Cargo.toml | |
parent | 7d7a858f8b8580700ebafa8a3e083282b54e20d0 (diff) | |
download | kipper-e5d90c10ec3097838216f592775b4dae5fe52d32.tar.bz2 |
Add 'reqwest' crate
To make HTTP requests easily with a friendly interface. Thanks to
https://stackoverflow.com/questions/14154753/how-do-i-make-an-http-request-from-rust/14189088#14189088
otherwise I was trying to use Hyper directly, which seemed a bit
complicated.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4,4 +4,5 @@ version = "0.0.1" [dependencies] json = "0.11.10" +reqwest = "0.8.1" rouille = "1.0.3" |