From 6bf5af859240ad23b0deca1e32b502e2b8a4f1fd Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sat, 28 Feb 2015 10:19:46 +0100 Subject: [PATCH] fix(cargo): set openssl to compatible v0.4.3 In openssl >= 0.5.0, it's using `std::io`, which doesn't work with std::old_io used in hyper. To make it work consistently, `Cookie` was reset to the previous version v0.1.13 as well, which depends on our compatible openssl version. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5958bc8470..a385c9710a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,10 +12,10 @@ authors = ["Sean McArthur ", keywords = ["http", "hyper", "hyperium"] [dependencies] -cookie = "*" +cookie = "= 0.1.13" log = ">= 0.2.0" mime = "*" -openssl = "*" +openssl = "0.4.3" rustc-serialize = "*" time = "*" unicase = "*"