Use tokio::net::tcp::ConnectFuture instead of deprecated re-export.
This commit is contained in:
parent
2aff64b645
commit
e5089fa317
1 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,8 @@ use encoding::label::encoding_from_whatwg_label;
|
|||
use futures::{Async, Poll, Future, Sink, StartSend, Stream};
|
||||
use native_tls::{Certificate, TlsConnector, Identity};
|
||||
use tokio_codec::Decoder;
|
||||
use tokio::net::{TcpStream, ConnectFuture};
|
||||
use tokio::net::{TcpStream};
|
||||
use tokio::net::tcp::ConnectFuture;
|
||||
use tokio_mockstream::MockStream;
|
||||
use tokio_tls::{self, TlsStream};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue