From 4e1d9bd75091583ff9d8f49e6e8cd46458677457 Mon Sep 17 00:00:00 2001 From: Lewin Bormann Date: Wed, 27 Apr 2016 19:19:20 +0200 Subject: [PATCH] fix(dependencies): hyper also broke us The Url::query_pairs() function returns a different type now. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c5d362aae..a083a4f63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,8 +14,8 @@ build = "src/build.rs" chrono = ">= 0.2" log = ">= 0.3" mime = ">= 0.1" -url = ">= 0.5" -hyper = ">= 0.8.0" +url = "= 0.5" +hyper = "0.8.0" itertools = ">= 0.4" serde = "0.6.0" serde_json = "0.6.0"