aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.lock
AgeCommit message (Collapse)Author
2017-11-08Add 'mockito' crateTeddy Wing
So cool. Enables us to mock HTTP requests super easily.
2017-11-07Add 'reqwest' crateTeddy Wing
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.
2017-11-07Add 'json' crateTeddy Wing
To parse JSON payloads from GitHub the webhook.
2017-11-07Add 'rouille' crateTeddy Wing
A neat web micro-framework. Seems small and lightweight, nice macro syntax. Upgraded to Rust 1.21.0 at the same time, as it or its dependencies wouldn't compile on 1.16.0.
2017-11-07Initial commit. Cargo init.Teddy Wing
Initialised new project with: $ cargo init --bin kipper Rust 1.16.0. (I know, it's super old, but that's what I have on my machine right now without going out to get the latest version.)