1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00

Merge pull request #6 from kathampy/master

Upgrade to `prost-0.5` and `prost-derive-0.5`; `dyn Future` warning
This commit is contained in:
Yuki Okushi 2019-10-02 17:35:51 +09:00 committed by GitHub
commit 789f2d1b21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -26,11 +26,11 @@ derive_more = "0.14"
actix = "0.8.1"
actix-web = "1.0.0-rc"
prost = "0.4"
prost = "0.5.0"
[dev-dependencies]
http = "^0.1"
prost-derive = "^0.4"
prost-derive = "0.5.0"
[workspace]
members = [

View File

@ -125,7 +125,7 @@ where
{
type Config = ProtoBufConfig;
type Error = Error;
type Future = Box<Future<Item = Self, Error = Error>>;
type Future = Box<dyn Future<Item = Self, Error = Error>>;
#[inline]
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future {
@ -164,7 +164,7 @@ pub struct ProtoBufMessage<T: Message + Default> {
length: Option<usize>,
stream: Option<Payload>,
err: Option<ProtoBufPayloadError>,
fut: Option<Box<Future<Item = T, Error = ProtoBufPayloadError>>>,
fut: Option<Box<dyn Future<Item = T, Error = ProtoBufPayloadError>>>,
}
impl<T: Message + Default> ProtoBufMessage<T> {