From 9af2b66fe4003706517d95ed94013af9cd365b24 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Fri, 26 Jun 2015 15:39:17 +0200 Subject: [PATCH] fix(cargo): fix linking on OSX 10.10 On OSX 10.10, attempting to run `cargo test` will yield a [linker error](https://gist.github.com/Byron/b7a50cdcf7c60234335d). Just removing the feature fixes the issue, even though I am not sure if it is breaking something further down the line. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3805b53d76..9a4fa44f51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,5 +41,5 @@ env_logger = "*" [features] default = ["ssl"] -ssl = ["openssl", "cookie/secure", "solicit/openssl"] +ssl = ["openssl", "cookie/secure"] nightly = []