aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.lock
AgeCommit message (Collapse)Author
2017-11-22Increase version v0.0.2 -> v0.0.3HEADv0.0.3masterTeddy Wing
2017-11-17Increase version v0.0.1 -> v0.0.2Teddy Wing
2017-11-12Add 'log' & 'stderrlog' cratesTeddy Wing
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.
2017-11-12Add 'getopts' crateTeddy Wing
For command line options.
2017-11-08Add 'url' crateTeddy Wing
So we can circumvent the mock problem we've been having with jenkins.rs:`request_job`. We need to take the URL supplied to it and split it up so we can get just the path part of the URL.
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.)