Skip to content

Commit

Permalink
fix(cargo): fix linking on OSX 10.10
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Byron committed Jun 26, 2015
1 parent 5bf91f0 commit 9af2b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ env_logger = "*"

[features]
default = ["ssl"]
ssl = ["openssl", "cookie/secure", "solicit/openssl"]
ssl = ["openssl", "cookie/secure"]
nightly = []

0 comments on commit 9af2b66

Please sign in to comment.