diff options
author | Teddy Wing | 2017-11-08 23:02:22 +0100 |
---|---|---|
committer | Teddy Wing | 2017-11-08 23:02:22 +0100 |
commit | 32ad1916123325a8cc80fb76e0cbd5a2bb0b6841 (patch) | |
tree | 59e4e4d36725e31c14ec9a361e3cdad39b933f73 | |
parent | 5d2fa12b69ae16d222f57bba7d427b5323a689e9 (diff) | |
download | kipper-32ad1916123325a8cc80fb76e0cbd5a2bb0b6841.tar.bz2 |
Add 'url' crate
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.
-rw-r--r-- | Cargo.lock | 1 | ||||
-rw-r--r-- | Cargo.toml | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -6,6 +6,7 @@ dependencies = [ "mockito 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "reqwest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "rouille 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -7,3 +7,4 @@ json = "0.11.10" mockito = "0.9.0" reqwest = "0.8.1" rouille = "1.0.3" +url = "1.6.0" |