From 19fd8303b4ec7ed2b41d74de801c745a30349691 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 11 Aug 2016 23:29:18 -0700 Subject: [PATCH] Depend on freshly published openssl on crates.io No more git dependencies there! Closes #29 --- futures-minihttp/tls-example/Cargo.toml | 2 +- futures-tls/Cargo.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/futures-minihttp/tls-example/Cargo.toml b/futures-minihttp/tls-example/Cargo.toml index 072ec577312..e005fd965d6 100644 --- a/futures-minihttp/tls-example/Cargo.toml +++ b/futures-minihttp/tls-example/Cargo.toml @@ -7,4 +7,4 @@ authors = ["Alex Crichton "] 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" diff --git a/futures-tls/Cargo.toml b/futures-tls/Cargo.toml index 39d41318ed9..fb11585de59 100644 --- a/futures-tls/Cargo.toml +++ b/futures-tls/Cargo.toml @@ -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"