1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-07-01 12:15:08 +02:00

update deps

This commit is contained in:
Nikolay Kim
2019-01-26 22:09:26 -08:00
parent f2251b8059
commit 42277c5c8f
3 changed files with 8 additions and 9 deletions

View File

@ -7,7 +7,7 @@ use super::{Codec, Frame, Message};
pub struct Transport<S, T>
where
S: Service<Frame, Response = Message>,
S: Service<Frame, Response = Message> + 'static,
T: AsyncRead + AsyncWrite,
{
inner: FramedTransport<S, T, Codec>,