There are many changes involved with this, but let's just talk about
user-facing changes.
- Creating a `Client` and `Server` now needs a Tokio `Core` event loop
to attach to.
- `Request` and `Response` both no longer implement the
`std::io::{Read,Write}` traits, but instead represent their bodies as a
`futures::Stream` of items, where each item is a `Chunk`.
- The `Client.request` method now takes a `Request`, instead of being
used as a builder, and returns a `Future` that resolves to `Response`.
- The `Handler` trait for servers is no more, and instead the Tokio
`Service` trait is used. This allows interoperability with generic
middleware.
BREAKING CHANGE: A big sweeping set of breaking changes.
		
	
		
			
				
	
	
		
			71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![doc(html_root_url = "https://hyperium.github.io/hyper/")]
 | |
| #![deny(missing_docs)]
 | |
| #![deny(warnings)]
 | |
| #![deny(missing_debug_implementations)]
 | |
| #![cfg_attr(all(test, feature = "nightly"), feature(test))]
 | |
| 
 | |
| //! # Hyper
 | |
| //!
 | |
| //! Hyper is a fast, modern HTTP implementation written in and for Rust. It
 | |
| //! is a low-level typesafe abstraction over raw HTTP, providing an elegant
 | |
| //! layer over "stringly-typed" HTTP.
 | |
| //!
 | |
| //! Hyper provides both a [Client](client/index.html) and a
 | |
| //! [Server](server/index.html), along with a
 | |
| //! [typed Headers system](header/index.html).
 | |
| 
 | |
| extern crate cookie;
 | |
| extern crate futures;
 | |
| extern crate futures_cpupool;
 | |
| extern crate httparse;
 | |
| #[macro_use] extern crate language_tags;
 | |
| #[macro_use] extern crate log;
 | |
| #[macro_use] pub extern crate mime;
 | |
| extern crate relay;
 | |
| extern crate rustc_serialize as serialize;
 | |
| extern crate time;
 | |
| #[macro_use] extern crate tokio_core as tokio;
 | |
| extern crate tokio_proto;
 | |
| extern crate tokio_service;
 | |
| extern crate unicase;
 | |
| #[macro_use] extern crate url;
 | |
| 
 | |
| #[cfg(all(test, feature = "nightly"))]
 | |
| extern crate test;
 | |
| 
 | |
| 
 | |
| pub use url::Url;
 | |
| pub use client::Client;
 | |
| pub use error::{Result, Error};
 | |
| pub use header::Headers;
 | |
| pub use http::{Body, Chunk};
 | |
| pub use method::Method::{self, Get, Head, Post, Delete};
 | |
| pub use status::StatusCode::{self, Ok, BadRequest, NotFound};
 | |
| pub use server::Server;
 | |
| pub use uri::RequestUri;
 | |
| pub use version::HttpVersion;
 | |
| 
 | |
| macro_rules! unimplemented {
 | |
|     () => ({
 | |
|         panic!("unimplemented")
 | |
|     });
 | |
|     ($msg:expr) => ({
 | |
|         unimplemented!("{}", $msg)
 | |
|     });
 | |
|     ($fmt:expr, $($arg:tt)*) => ({
 | |
|         panic!(concat!("unimplemented: ", $fmt), $($arg)*)
 | |
|     });
 | |
| }
 | |
| 
 | |
| #[cfg(test)]
 | |
| mod mock;
 | |
| pub mod client;
 | |
| pub mod error;
 | |
| mod method;
 | |
| pub mod header;
 | |
| mod http;
 | |
| pub mod server;
 | |
| pub mod status;
 | |
| mod uri;
 | |
| mod version;
 |