mirror of https://github.com/fafhrd91/actix-net
suggestions and changelog
This commit is contained in:
parent
d97aa4ee39
commit
230db53b04
|
@ -1,6 +1,8 @@
|
|||
# Changes
|
||||
|
||||
* Use `.advance()` intead of `.split_to()`
|
||||
## Unreleased - 2020-xx-xx
|
||||
* Use `.advance()` instead of `.split_to()`.
|
||||
* Upgrade `tokio-util` to `0.3`.
|
||||
|
||||
## [0.2.0] - 2019-12-10
|
||||
|
||||
|
@ -8,7 +10,7 @@
|
|||
|
||||
## [0.2.0-alpha.4]
|
||||
|
||||
* Fix buffer remaining capacity calcualtion
|
||||
* Fix buffer remaining capacity calculation
|
||||
|
||||
## [0.2.0-alpha.3]
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# Changes
|
||||
|
||||
## Unreleased - 2020-xx-xx
|
||||
* Upgrade `tokio-util` to `0.3`.
|
||||
|
||||
## [1.0.6] - 2020-01-08
|
||||
|
||||
* Add `Clone` impl for `condition::Waiter`
|
||||
|
|
|
@ -69,7 +69,7 @@ where
|
|||
S::Future: 'static,
|
||||
T: AsyncRead + AsyncWrite,
|
||||
U: Encoder<I> + Decoder,
|
||||
// I: 'static,
|
||||
I: 'static,
|
||||
<U as Encoder<I>>::Error: std::fmt::Debug,
|
||||
{
|
||||
service: S,
|
||||
|
@ -111,7 +111,7 @@ where
|
|||
S::Future: 'static,
|
||||
T: AsyncRead + AsyncWrite,
|
||||
U: Decoder + Encoder<I>,
|
||||
// I: 'static,
|
||||
I: 'static,
|
||||
<U as Decoder>::Error: std::fmt::Debug,
|
||||
<U as Encoder<I>>::Error: std::fmt::Debug,
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue