Remove openssl for now

This commit is contained in:
Alexis Mousset
2015-07-14 23:52:06 +02:00
parent 56f93bd614
commit bd4680d793
3 changed files with 0 additions and 4 deletions

View File

@@ -18,7 +18,6 @@ log = "0.3"
rustc-serialize = "0.3"
rust-crypto = "0.2"
bufstream = "0.1"
openssl = "0.6"
email = "*"
[dev-dependencies]

View File

@@ -13,8 +13,6 @@ use std::io;
use std::net::SocketAddr;
use std::net::TcpStream;
use openssl::ssl::{SslContext, SslStream};
/// A trait for the concept of opening a stream
pub trait Connector {
/// Opens a connection to the given IP socket

View File

@@ -147,7 +147,6 @@ extern crate time;
extern crate uuid;
extern crate email as email_format;
extern crate bufstream;
extern crate openssl;
mod extension;
pub mod client;