Merge pull request #232 from tafia/hyper-proxy

Remove proxy handling in favor of hyper-proxy crate
This commit is contained in:
Sean McArthur
2018-01-02 10:12:44 -08:00
committed by GitHub
8 changed files with 65 additions and 515 deletions

View File

@@ -132,6 +132,7 @@ extern crate bytes;
#[macro_use]
extern crate futures;
extern crate hyper;
extern crate hyper_proxy;
extern crate hyper_tls;
#[macro_use]
extern crate log;
@@ -170,7 +171,6 @@ pub use self::tls::{Certificate, Identity};
mod error;
mod async_impl;
mod connect;
mod body;
mod client;
mod into_url;