Publicly reexport TLS crates

cc #254
This commit is contained in:
Steven Fackler 2017-05-01 21:50:05 -07:00
parent d406277ef9
commit f990e9c112
4 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
//! Native TLS support.
extern crate native_tls;
pub extern crate native_tls;
use std::error::Error;
use std::fmt;

View File

@ -1,5 +1,5 @@
//! OpenSSL support.
extern crate openssl;
pub extern crate openssl;
use std::error::Error;
use std::fmt;

View File

@ -1,6 +1,6 @@
//! SChannel support.
extern crate schannel;
pub extern crate schannel;
use std::error::Error;
use std::fmt;

View File

@ -1,5 +1,5 @@
//! Security Framework support.
extern crate security_framework;
pub extern crate security_framework;
use self::security_framework::secure_transport::{SslStream, ClientBuilder};
use tls::{Stream, TlsStream, TlsHandshake};