A hyper based tower transport layer.
Simple client connection example, check it out here
``` rust let connector = Connector::new(HttpConnector::new(1)); let mut hyper = Connect::new(connector, Builder::new());
let request = hyper .makeservice(dst) .andthen(|mut conn| { conn.call(Request::new(Body::empty())) }) .and_then(|response| { // do something with response... });
hyper::rt::run(request); ```
This project is licensed under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in tower-hyper
by you, shall be licensed as MIT, without any additional terms or conditions.