mirror of https://github.com/fafhrd91/actix-web
Merge branch 'master' into fix_accept-encoding_header_without_compress_feature
This commit is contained in:
commit
70519f90f5
|
@ -7,10 +7,12 @@
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* Print non-configured `Data<T>` type when attempting extraction. [#1743]
|
* Print non-configured `Data<T>` type when attempting extraction. [#1743]
|
||||||
|
* Re-export bytes::Buf{Mut} in web module. [#1750]
|
||||||
|
|
||||||
[#1723]: https://github.com/actix/actix-web/pull/1723
|
[#1723]: https://github.com/actix/actix-web/pull/1723
|
||||||
[#1743]: https://github.com/actix/actix-web/pull/1743
|
[#1743]: https://github.com/actix/actix-web/pull/1743
|
||||||
[#1748]: https://github.com/actix/actix-web/pull/1748
|
[#1748]: https://github.com/actix/actix-web/pull/1748
|
||||||
|
[#1750]: https://github.com/actix/actix-web/pull/1750
|
||||||
|
|
||||||
|
|
||||||
## 3.1.0 - 2020-09-29
|
## 3.1.0 - 2020-09-29
|
||||||
|
|
|
@ -4,7 +4,7 @@ use actix_router::IntoPattern;
|
||||||
use std::future::Future;
|
use std::future::Future;
|
||||||
|
|
||||||
pub use actix_http::Response as HttpResponse;
|
pub use actix_http::Response as HttpResponse;
|
||||||
pub use bytes::{Bytes, BytesMut};
|
pub use bytes::{Buf, BufMut, Bytes, BytesMut};
|
||||||
pub use futures_channel::oneshot::Canceled;
|
pub use futures_channel::oneshot::Canceled;
|
||||||
|
|
||||||
use crate::error::BlockingError;
|
use crate::error::BlockingError;
|
||||||
|
|
Loading…
Reference in New Issue