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.
This commit is contained in:
Sebastian Thiel
2015-06-26 15:39:17 +02:00
parent 5bf91f09ee
commit 9af2b66fe4

View File

@@ -41,5 +41,5 @@ env_logger = "*"
[features] [features]
default = ["ssl"] default = ["ssl"]
ssl = ["openssl", "cookie/secure", "solicit/openssl"] ssl = ["openssl", "cookie/secure"]
nightly = [] nightly = []