Reformat the source code

This commit is contained in:
Artem Vorotnikov
2020-08-05 07:08:03 +03:00
parent 253ff3f37b
commit 610d9baba4
742 changed files with 175791 additions and 141379 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -24,17 +24,17 @@ extern crate log;
#[macro_use]
extern crate futures;
extern crate http;
extern crate hyper;
extern crate hyper_rustls;
extern crate http;
extern crate bytes;
extern crate tokio;
extern crate url;
extern crate bytes;
/// Fetch client implementation.
pub mod client;
pub use url::Url;
pub use self::client::{Client, Fetch, Error, Response, Request, Abort, BodyReader};
pub use self::client::{Abort, BodyReader, Client, Error, Fetch, Request, Response};
pub use hyper::Method;
pub use url::Url;