separate out ConnectionPool

This commit is contained in:
Martin Algesten
2018-06-30 13:41:52 +02:00
parent b54f747d16
commit 3b249e0313
4 changed files with 34 additions and 32 deletions

View File

@@ -1,4 +1,5 @@
use cookie::{Cookie, CookieJar};
use conn::ConnectionPool;
use error::Error;
use response::{self, Response};
use std::sync::Mutex;
@@ -7,7 +8,6 @@ use header::{add_header, get_all_headers, get_header, has_header, Header};
// to get to share private fields
include!("request.rs");
include!("conn.rs");
include!("stream.rs");
include!("unit.rs");