//! Minimal hand-rolled HTTP/1.1 client.
//!
//! # Example
//!
//! ```
//! # fn main() -> Result<(), net_cat::Error> {
//! use net_cat::{Method, Request, Url};
//!
//! let url = Url::parse("http://example.com/")?;
//! let request = Request::new(Method::Get, url).with_header("Accept", "text/html");
//! // `fetch(&request)` would perform a real network call -- doctest is
//! // offline-safe, so it's elided.
//! assert_eq!(request.method().as_str(), "GET");
//! # Ok(())
//! # }
//! ```
pub use Error;
pub use fetch;
pub use Headers;
pub use Method;
pub use Request;
pub use Response;
pub use Url;