1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-26 22:07:42 +02:00

update tokio verion and prep alpha3 release

This commit is contained in:
Nikolay Kim
2019-12-07 09:57:43 +06:00
parent 5674840c01
commit cbdbc05dbd
17 changed files with 30 additions and 30 deletions

View File

@ -1,6 +1,6 @@
# Changes
## [1.0.0-alpha.3] - 2019-12-xx
## [1.0.0-alpha.3] - 2019-12-06
### Changed

View File

@ -81,7 +81,7 @@ where
{
A(#[pin] A::Future, Option<Cell<B>>),
B(#[pin] B::Future),
Empty
Empty,
}
impl<A, B> Future for ThenServiceResponse<A, B>
@ -111,7 +111,7 @@ where
this.state.set(State::Empty);
r
}),
State::Empty => panic!("future must not be polled after it returned `Poll::Ready`")
State::Empty => panic!("future must not be polled after it returned `Poll::Ready`"),
}
}
}