Reexport deps

This helps encapsulate deps and match crate versions for downstream use.
This commit is contained in:
Sander Maijers 2018-07-16 12:50:05 +02:00
parent 508dbb95a1
commit b4aa18277f
No known key found for this signature in database
GPG Key ID: F955BB3582DEAE09

View File

@ -1,7 +1,7 @@
//! Asynchronous TLS/SSL streams for Tokio using [Rustls](https://github.com/ctz/rustls).
extern crate rustls;
extern crate webpki;
pub extern crate rustls;
pub extern crate webpki;
#[cfg(feature = "tokio")] mod tokio_impl;
#[cfg(feature = "unstable-futures")] mod futures_impl;