Age | Commit message (Collapse) | Author |
|
|
|
|
|
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.
|
|
For command line options.
|
|
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.
|
|
So cool. Enables us to mock HTTP requests super easily.
|
|
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.
|
|
To parse JSON payloads from GitHub the webhook.
|
|
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.
|
|
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.)
|