Skip to content

Commit

Permalink
Depend on freshly published openssl on crates.io
Browse files Browse the repository at this point in the history
No more git dependencies there!

Closes rust-lang#29
  • Loading branch information
alexcrichton committed Aug 12, 2016
1 parent c4af380 commit 19fd830
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion futures-minihttp/tls-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ authors = ["Alex Crichton <[email protected]>"]
futures = { path = "../.." }
futures-minihttp = { path = ".." }
futures-tls = { path = "../../futures-tls", features = ["force-openssl"] }
openssl = { git = "https://github.com/alexcrichton/rust-openssl", branch = "tmp" }
openssl = "0.8"
8 changes: 4 additions & 4 deletions futures-tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ futures-io = { path = "../futures-io", version = "0.1.0" }
log = "0.3"

# Optional dependency that can be enabled with the `force-openssl` feature
openssl = { git = "https://github.com/alexcrichton/rust-openssl", branch = "tmp", optional = true }
openssl-verify = { git = "https://github.com/alexcrichton/rust-openssl-verify", branch = "tmp", optional = true }
openssl = { version = "0.8", optional = true }
openssl-verify = { version = "0.2", optional = true }

[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
openssl = { git = "https://github.com/alexcrichton/rust-openssl", branch = "tmp" }
openssl-verify = { git = "https://github.com/alexcrichton/rust-openssl-verify", branch = "tmp" }
openssl = "0.8"
openssl-verify = "0.2"

[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "0.1"
Expand Down

0 comments on commit 19fd830

Please sign in to comment.